From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
Srinivas Kandagatla <srinivas.kandagatla@linaro.org>,
Stephen Boyd <sboyd@kernel.org>, Mark Brown <broonie@kernel.org>,
Feng Liu <Feng.Liu3@windriver.com>, He Zhe <Zhe.He@windriver.com>
Subject: [PATCH 5.10 105/270] ASoC: q6afe-clocks: fix reprobing of the driver
Date: Mon, 2 Jun 2025 15:46:30 +0200 [thread overview]
Message-ID: <20250602134311.525244023@linuxfoundation.org> (raw)
In-Reply-To: <20250602134307.195171844@linuxfoundation.org>
5.10-stable review patch. If anyone has any objections, please let me know.
------------------
From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
commit 96fadf7e8ff49fdb74754801228942b67c3eeebd upstream.
Q6afe-clocks driver can get reprobed. For example if the APR services
are restarted after the firmware crash. However currently Q6afe-clocks
driver will oops because hw.init will get cleared during first _probe
call. Rewrite the driver to fill the clock data at runtime rather than
using big static array of clocks.
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
Fixes: 520a1c396d19 ("ASoC: q6afe-clocks: add q6afe clock controller")
Link: https://lore.kernel.org/r/20210327092857.3073879-1-dmitry.baryshkov@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
[Minor context change fixed]
Signed-off-by: Feng Liu <Feng.Liu3@windriver.com>
Signed-off-by: He Zhe <Zhe.He@windriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
sound/soc/qcom/qdsp6/q6afe-clocks.c | 209 ++++++++++++++++++------------------
sound/soc/qcom/qdsp6/q6afe.c | 2
sound/soc/qcom/qdsp6/q6afe.h | 2
3 files changed, 108 insertions(+), 105 deletions(-)
--- a/sound/soc/qcom/qdsp6/q6afe-clocks.c
+++ b/sound/soc/qcom/qdsp6/q6afe-clocks.c
@@ -11,33 +11,29 @@
#include <linux/slab.h>
#include "q6afe.h"
-#define Q6AFE_CLK(id) &(struct q6afe_clk) { \
+#define Q6AFE_CLK(id) { \
.clk_id = id, \
.afe_clk_id = Q6AFE_##id, \
.name = #id, \
- .attributes = LPASS_CLK_ATTRIBUTE_COUPLE_NO, \
.rate = 19200000, \
- .hw.init = &(struct clk_init_data) { \
- .ops = &clk_q6afe_ops, \
- .name = #id, \
- }, \
}
-#define Q6AFE_VOTE_CLK(id, blkid, n) &(struct q6afe_clk) { \
+#define Q6AFE_VOTE_CLK(id, blkid, n) { \
.clk_id = id, \
.afe_clk_id = blkid, \
- .name = #n, \
- .hw.init = &(struct clk_init_data) { \
- .ops = &clk_vote_q6afe_ops, \
- .name = #id, \
- }, \
+ .name = n, \
}
-struct q6afe_clk {
- struct device *dev;
+struct q6afe_clk_init {
int clk_id;
int afe_clk_id;
char *name;
+ int rate;
+};
+
+struct q6afe_clk {
+ struct device *dev;
+ int afe_clk_id;
int attributes;
int rate;
uint32_t handle;
@@ -48,8 +44,7 @@ struct q6afe_clk {
struct q6afe_cc {
struct device *dev;
- struct q6afe_clk **clks;
- int num_clks;
+ struct q6afe_clk *clks[Q6AFE_MAX_CLK_ID];
};
static int clk_q6afe_prepare(struct clk_hw *hw)
@@ -105,7 +100,7 @@ static int clk_vote_q6afe_block(struct c
struct q6afe_clk *clk = to_q6afe_clk(hw);
return q6afe_vote_lpass_core_hw(clk->dev, clk->afe_clk_id,
- clk->name, &clk->handle);
+ clk_hw_get_name(&clk->hw), &clk->handle);
}
static void clk_unvote_q6afe_block(struct clk_hw *hw)
@@ -120,84 +115,76 @@ static const struct clk_ops clk_vote_q6a
.unprepare = clk_unvote_q6afe_block,
};
-struct q6afe_clk *q6afe_clks[Q6AFE_MAX_CLK_ID] = {
- [LPASS_CLK_ID_PRI_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_PRI_MI2S_IBIT),
- [LPASS_CLK_ID_PRI_MI2S_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_PRI_MI2S_EBIT),
- [LPASS_CLK_ID_SEC_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_SEC_MI2S_IBIT),
- [LPASS_CLK_ID_SEC_MI2S_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_SEC_MI2S_EBIT),
- [LPASS_CLK_ID_TER_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_TER_MI2S_IBIT),
- [LPASS_CLK_ID_TER_MI2S_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_TER_MI2S_EBIT),
- [LPASS_CLK_ID_QUAD_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUAD_MI2S_IBIT),
- [LPASS_CLK_ID_QUAD_MI2S_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUAD_MI2S_EBIT),
- [LPASS_CLK_ID_SPEAKER_I2S_IBIT] =
- Q6AFE_CLK(LPASS_CLK_ID_SPEAKER_I2S_IBIT),
- [LPASS_CLK_ID_SPEAKER_I2S_EBIT] =
- Q6AFE_CLK(LPASS_CLK_ID_SPEAKER_I2S_EBIT),
- [LPASS_CLK_ID_SPEAKER_I2S_OSR] =
- Q6AFE_CLK(LPASS_CLK_ID_SPEAKER_I2S_OSR),
- [LPASS_CLK_ID_QUI_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUI_MI2S_IBIT),
- [LPASS_CLK_ID_QUI_MI2S_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUI_MI2S_EBIT),
- [LPASS_CLK_ID_SEN_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_SEN_MI2S_IBIT),
- [LPASS_CLK_ID_SEN_MI2S_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_SEN_MI2S_EBIT),
- [LPASS_CLK_ID_INT0_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_INT0_MI2S_IBIT),
- [LPASS_CLK_ID_INT1_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_INT1_MI2S_IBIT),
- [LPASS_CLK_ID_INT2_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_INT2_MI2S_IBIT),
- [LPASS_CLK_ID_INT3_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_INT3_MI2S_IBIT),
- [LPASS_CLK_ID_INT4_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_INT4_MI2S_IBIT),
- [LPASS_CLK_ID_INT5_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_INT5_MI2S_IBIT),
- [LPASS_CLK_ID_INT6_MI2S_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_INT6_MI2S_IBIT),
- [LPASS_CLK_ID_QUI_MI2S_OSR] = Q6AFE_CLK(LPASS_CLK_ID_QUI_MI2S_OSR),
- [LPASS_CLK_ID_PRI_PCM_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_PRI_PCM_IBIT),
- [LPASS_CLK_ID_PRI_PCM_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_PRI_PCM_EBIT),
- [LPASS_CLK_ID_SEC_PCM_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_SEC_PCM_IBIT),
- [LPASS_CLK_ID_SEC_PCM_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_SEC_PCM_EBIT),
- [LPASS_CLK_ID_TER_PCM_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_TER_PCM_IBIT),
- [LPASS_CLK_ID_TER_PCM_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_TER_PCM_EBIT),
- [LPASS_CLK_ID_QUAD_PCM_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUAD_PCM_IBIT),
- [LPASS_CLK_ID_QUAD_PCM_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUAD_PCM_EBIT),
- [LPASS_CLK_ID_QUIN_PCM_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUIN_PCM_IBIT),
- [LPASS_CLK_ID_QUIN_PCM_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUIN_PCM_EBIT),
- [LPASS_CLK_ID_QUI_PCM_OSR] = Q6AFE_CLK(LPASS_CLK_ID_QUI_PCM_OSR),
- [LPASS_CLK_ID_PRI_TDM_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_PRI_TDM_IBIT),
- [LPASS_CLK_ID_PRI_TDM_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_PRI_TDM_EBIT),
- [LPASS_CLK_ID_SEC_TDM_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_SEC_TDM_IBIT),
- [LPASS_CLK_ID_SEC_TDM_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_SEC_TDM_EBIT),
- [LPASS_CLK_ID_TER_TDM_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_TER_TDM_IBIT),
- [LPASS_CLK_ID_TER_TDM_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_TER_TDM_EBIT),
- [LPASS_CLK_ID_QUAD_TDM_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUAD_TDM_IBIT),
- [LPASS_CLK_ID_QUAD_TDM_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUAD_TDM_EBIT),
- [LPASS_CLK_ID_QUIN_TDM_IBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUIN_TDM_IBIT),
- [LPASS_CLK_ID_QUIN_TDM_EBIT] = Q6AFE_CLK(LPASS_CLK_ID_QUIN_TDM_EBIT),
- [LPASS_CLK_ID_QUIN_TDM_OSR] = Q6AFE_CLK(LPASS_CLK_ID_QUIN_TDM_OSR),
- [LPASS_CLK_ID_MCLK_1] = Q6AFE_CLK(LPASS_CLK_ID_MCLK_1),
- [LPASS_CLK_ID_MCLK_2] = Q6AFE_CLK(LPASS_CLK_ID_MCLK_2),
- [LPASS_CLK_ID_MCLK_3] = Q6AFE_CLK(LPASS_CLK_ID_MCLK_3),
- [LPASS_CLK_ID_MCLK_4] = Q6AFE_CLK(LPASS_CLK_ID_MCLK_4),
- [LPASS_CLK_ID_INTERNAL_DIGITAL_CODEC_CORE] =
- Q6AFE_CLK(LPASS_CLK_ID_INTERNAL_DIGITAL_CODEC_CORE),
- [LPASS_CLK_ID_INT_MCLK_0] = Q6AFE_CLK(LPASS_CLK_ID_INT_MCLK_0),
- [LPASS_CLK_ID_INT_MCLK_1] = Q6AFE_CLK(LPASS_CLK_ID_INT_MCLK_1),
- [LPASS_CLK_ID_WSA_CORE_MCLK] = Q6AFE_CLK(LPASS_CLK_ID_WSA_CORE_MCLK),
- [LPASS_CLK_ID_WSA_CORE_NPL_MCLK] =
- Q6AFE_CLK(LPASS_CLK_ID_WSA_CORE_NPL_MCLK),
- [LPASS_CLK_ID_VA_CORE_MCLK] = Q6AFE_CLK(LPASS_CLK_ID_VA_CORE_MCLK),
- [LPASS_CLK_ID_TX_CORE_MCLK] = Q6AFE_CLK(LPASS_CLK_ID_TX_CORE_MCLK),
- [LPASS_CLK_ID_TX_CORE_NPL_MCLK] =
- Q6AFE_CLK(LPASS_CLK_ID_TX_CORE_NPL_MCLK),
- [LPASS_CLK_ID_RX_CORE_MCLK] = Q6AFE_CLK(LPASS_CLK_ID_RX_CORE_MCLK),
- [LPASS_CLK_ID_RX_CORE_NPL_MCLK] =
- Q6AFE_CLK(LPASS_CLK_ID_RX_CORE_NPL_MCLK),
- [LPASS_CLK_ID_VA_CORE_2X_MCLK] =
- Q6AFE_CLK(LPASS_CLK_ID_VA_CORE_2X_MCLK),
- [LPASS_HW_AVTIMER_VOTE] = Q6AFE_VOTE_CLK(LPASS_HW_AVTIMER_VOTE,
- Q6AFE_LPASS_CORE_AVTIMER_BLOCK,
- "LPASS_AVTIMER_MACRO"),
- [LPASS_HW_MACRO_VOTE] = Q6AFE_VOTE_CLK(LPASS_HW_MACRO_VOTE,
- Q6AFE_LPASS_CORE_HW_MACRO_BLOCK,
- "LPASS_HW_MACRO"),
- [LPASS_HW_DCODEC_VOTE] = Q6AFE_VOTE_CLK(LPASS_HW_DCODEC_VOTE,
- Q6AFE_LPASS_CORE_HW_DCODEC_BLOCK,
- "LPASS_HW_DCODEC"),
+static const struct q6afe_clk_init q6afe_clks[] = {
+ Q6AFE_CLK(LPASS_CLK_ID_PRI_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_PRI_MI2S_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SEC_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SEC_MI2S_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_TER_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_TER_MI2S_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUAD_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUAD_MI2S_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SPEAKER_I2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SPEAKER_I2S_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SPEAKER_I2S_OSR),
+ Q6AFE_CLK(LPASS_CLK_ID_QUI_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUI_MI2S_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SEN_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SEN_MI2S_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_INT0_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_INT1_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_INT2_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_INT3_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_INT4_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_INT5_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_INT6_MI2S_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUI_MI2S_OSR),
+ Q6AFE_CLK(LPASS_CLK_ID_PRI_PCM_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_PRI_PCM_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SEC_PCM_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SEC_PCM_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_TER_PCM_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_TER_PCM_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUAD_PCM_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUAD_PCM_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUIN_PCM_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUIN_PCM_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUI_PCM_OSR),
+ Q6AFE_CLK(LPASS_CLK_ID_PRI_TDM_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_PRI_TDM_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SEC_TDM_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_SEC_TDM_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_TER_TDM_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_TER_TDM_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUAD_TDM_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUAD_TDM_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUIN_TDM_IBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUIN_TDM_EBIT),
+ Q6AFE_CLK(LPASS_CLK_ID_QUIN_TDM_OSR),
+ Q6AFE_CLK(LPASS_CLK_ID_MCLK_1),
+ Q6AFE_CLK(LPASS_CLK_ID_MCLK_2),
+ Q6AFE_CLK(LPASS_CLK_ID_MCLK_3),
+ Q6AFE_CLK(LPASS_CLK_ID_MCLK_4),
+ Q6AFE_CLK(LPASS_CLK_ID_INTERNAL_DIGITAL_CODEC_CORE),
+ Q6AFE_CLK(LPASS_CLK_ID_INT_MCLK_0),
+ Q6AFE_CLK(LPASS_CLK_ID_INT_MCLK_1),
+ Q6AFE_CLK(LPASS_CLK_ID_WSA_CORE_MCLK),
+ Q6AFE_CLK(LPASS_CLK_ID_WSA_CORE_NPL_MCLK),
+ Q6AFE_CLK(LPASS_CLK_ID_VA_CORE_MCLK),
+ Q6AFE_CLK(LPASS_CLK_ID_TX_CORE_MCLK),
+ Q6AFE_CLK(LPASS_CLK_ID_TX_CORE_NPL_MCLK),
+ Q6AFE_CLK(LPASS_CLK_ID_RX_CORE_MCLK),
+ Q6AFE_CLK(LPASS_CLK_ID_RX_CORE_NPL_MCLK),
+ Q6AFE_CLK(LPASS_CLK_ID_VA_CORE_2X_MCLK),
+ Q6AFE_VOTE_CLK(LPASS_HW_AVTIMER_VOTE,
+ Q6AFE_LPASS_CORE_AVTIMER_BLOCK,
+ "LPASS_AVTIMER_MACRO"),
+ Q6AFE_VOTE_CLK(LPASS_HW_MACRO_VOTE,
+ Q6AFE_LPASS_CORE_HW_MACRO_BLOCK,
+ "LPASS_HW_MACRO"),
+ Q6AFE_VOTE_CLK(LPASS_HW_DCODEC_VOTE,
+ Q6AFE_LPASS_CORE_HW_DCODEC_BLOCK,
+ "LPASS_HW_DCODEC"),
};
static struct clk_hw *q6afe_of_clk_hw_get(struct of_phandle_args *clkspec,
@@ -207,7 +194,7 @@ static struct clk_hw *q6afe_of_clk_hw_ge
unsigned int idx = clkspec->args[0];
unsigned int attr = clkspec->args[1];
- if (idx >= cc->num_clks || attr > LPASS_CLK_ATTRIBUTE_COUPLE_DIVISOR) {
+ if (idx >= Q6AFE_MAX_CLK_ID || attr > LPASS_CLK_ATTRIBUTE_COUPLE_DIVISOR) {
dev_err(cc->dev, "Invalid clk specifier (%d, %d)\n", idx, attr);
return ERR_PTR(-EINVAL);
}
@@ -230,20 +217,36 @@ static int q6afe_clock_dev_probe(struct
if (!cc)
return -ENOMEM;
- cc->clks = &q6afe_clks[0];
- cc->num_clks = ARRAY_SIZE(q6afe_clks);
+ cc->dev = dev;
for (i = 0; i < ARRAY_SIZE(q6afe_clks); i++) {
- if (!q6afe_clks[i])
- continue;
+ unsigned int id = q6afe_clks[i].clk_id;
+ struct clk_init_data init = {
+ .name = q6afe_clks[i].name,
+ };
+ struct q6afe_clk *clk;
+
+ clk = devm_kzalloc(dev, sizeof(*clk), GFP_KERNEL);
+ if (!clk)
+ return -ENOMEM;
+
+ clk->dev = dev;
+ clk->afe_clk_id = q6afe_clks[i].afe_clk_id;
+ clk->rate = q6afe_clks[i].rate;
+ clk->hw.init = &init;
+
+ if (clk->rate)
+ init.ops = &clk_q6afe_ops;
+ else
+ init.ops = &clk_vote_q6afe_ops;
- q6afe_clks[i]->dev = dev;
+ cc->clks[id] = clk;
- ret = devm_clk_hw_register(dev, &q6afe_clks[i]->hw);
+ ret = devm_clk_hw_register(dev, &clk->hw);
if (ret)
return ret;
}
- ret = of_clk_add_hw_provider(dev->of_node, q6afe_of_clk_hw_get, cc);
+ ret = devm_of_clk_add_hw_provider(dev, q6afe_of_clk_hw_get, cc);
if (ret)
return ret;
--- a/sound/soc/qcom/qdsp6/q6afe.c
+++ b/sound/soc/qcom/qdsp6/q6afe.c
@@ -1681,7 +1681,7 @@ int q6afe_unvote_lpass_core_hw(struct de
EXPORT_SYMBOL(q6afe_unvote_lpass_core_hw);
int q6afe_vote_lpass_core_hw(struct device *dev, uint32_t hw_block_id,
- char *client_name, uint32_t *client_handle)
+ const char *client_name, uint32_t *client_handle)
{
struct q6afe *afe = dev_get_drvdata(dev->parent);
struct afe_cmd_remote_lpass_core_hw_vote_request *vote_cfg;
--- a/sound/soc/qcom/qdsp6/q6afe.h
+++ b/sound/soc/qcom/qdsp6/q6afe.h
@@ -236,7 +236,7 @@ int q6afe_port_set_sysclk(struct q6afe_p
int q6afe_set_lpass_clock(struct device *dev, int clk_id, int clk_src,
int clk_root, unsigned int freq);
int q6afe_vote_lpass_core_hw(struct device *dev, uint32_t hw_block_id,
- char *client_name, uint32_t *client_handle);
+ const char *client_name, uint32_t *client_handle);
int q6afe_unvote_lpass_core_hw(struct device *dev, uint32_t hw_block_id,
uint32_t client_handle);
#endif /* __Q6AFE_H__ */
next prev parent reply other threads:[~2025-06-02 14:42 UTC|newest]
Thread overview: 286+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-02 13:44 [PATCH 5.10 000/270] 5.10.238-rc1 review Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 001/270] ALSA: usb-audio: Add second USB ID for Jabra Evolve 65 headset Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 002/270] drm/nouveau: Fix WARN_ON in nouveau_fence_context_kill() Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 003/270] EDAC/altera: Test the correct error reg offset Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 004/270] EDAC/altera: Set DDR and SDMMC interrupt mask before registration Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 005/270] i2c: imx-lpi2c: Fix clock count when probe defers Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 006/270] parisc: Fix double SIGFPE crash Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 007/270] amd-xgbe: Fix to ensure dependent features are toggled with RX checksum offload Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 008/270] mmc: renesas_sdhi: Fix error handling in renesas_sdhi_probe Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 009/270] wifi: brcm80211: fmac: Add error handling for brcmf_usb_dl_writeimage() Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 010/270] dm-integrity: fix a warning on invalid table line Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 011/270] dm: always update the array size in realloc_argv on success Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 012/270] iommu/amd: Fix potential buffer overflow in parse_ivrs_acpihid Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 013/270] iommu/vt-d: Apply quirk_iommu_igfx for 8086:0044 (QM57/QS57) Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 5.10 014/270] tracing: Fix oob write in trace_seq_to_buffer() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 015/270] net/sched: act_mirred: dont override retval if we already lost the skb Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 016/270] net/mlx5: E-Switch, Initialize MAC Address for Default GID Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 017/270] net/mlx5: Remove return statement exist at the end of void function Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 018/270] net/mlx5: E-switch, Fix error handling for enabling roce Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 019/270] net_sched: drr: Fix double list add in class with netem as child qdisc Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 020/270] net_sched: hfsc: Fix a UAF vulnerability " Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 021/270] net_sched: ets: Fix double list add " Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 022/270] net_sched: qfq: " Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 023/270] net: dlink: Correct endianness handling of led_mode Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 024/270] net: ipv6: fix UDPv6 GSO segmentation with NAT Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 025/270] bnxt_en: Fix ethtool -d byte order for 32-bit values Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 026/270] nvme-tcp: fix premature queue removal and I/O failover Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 027/270] net: lan743x: Fix memleak issue when GSO enabled Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 028/270] net: fec: ERR007885 Workaround for conventional TX Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 029/270] PCI: imx6: Skip controller_id generation logic for i.MX7D Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 030/270] of: module: add buffer overflow check in of_modalias() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 031/270] net: phy: microchip: implement generic .handle_interrupt() callback Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 032/270] net: phy: microchip: remove the use of .ack_interrupt() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 033/270] net: phy: microchip: force IRQ polling mode for lan88xx Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 034/270] Revert "drm/meson: vclk: fix calculation of 59.94 fractional rates" Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 035/270] irqchip/gic-v2m: Add const to of_device_id Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 036/270] irqchip/gic-v2m: Mark a few functions __init Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 037/270] irqchip/gic-v2m: Prevent use after free of gicv2m_get_fwnode() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 038/270] usb: chipidea: ci_hdrc_imx: use dev_err_probe() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 039/270] usb: chipidea: ci_hdrc_imx: implement usb_phy_init() error handling Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 040/270] dm: fix copying after src array boundaries Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 041/270] scsi: target: Fix WRITE_SAME No Data Buffer crash Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 042/270] can: mcp251xfd: mcp251xfd_remove(): fix order of unregistration calls Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 043/270] openvswitch: Fix unsafe attribute parsing in output_userspace() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 044/270] can: gw: use call_rcu() instead of costly synchronize_rcu() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 045/270] rcu/kvfree: Add kvfree_rcu_mightsleep() and kfree_rcu_mightsleep() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 046/270] can: gw: fix RCU/BH usage in cgw_create_job() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 047/270] netfilter: ipset: fix region locking in hash types Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 048/270] net: dsa: b53: allow leaky reserved multicast Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 049/270] net: dsa: b53: fix VLAN ID for untagged vlan on bridge leave Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 050/270] net: dsa: b53: fix learning on VLAN unaware bridges Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 051/270] Input: synaptics - enable InterTouch on Dynabook Portege X30-D Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 052/270] Input: synaptics - enable InterTouch on Dynabook Portege X30L-G Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 053/270] Input: synaptics - enable InterTouch on Dell Precision M3800 Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 054/270] Input: synaptics - enable SMBus for HP Elitebook 850 G1 Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 055/270] Input: synaptics - enable InterTouch on TUXEDO InfinityBook Pro 14 v5 Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 056/270] staging: iio: adc: ad7816: Correct conditional logic for store mode Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 057/270] staging: axis-fifo: Remove hardware resets for user errors Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 058/270] staging: axis-fifo: Correct handling of tx_fifo_depth for size validation Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 059/270] iio: adc: ad7606: fix serial register access Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 060/270] iio: adis16201: Correct inclinometer channel resolution Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 061/270] iio: imu: st_lsm6dsx: fix possible lockup in st_lsm6dsx_read_fifo Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 062/270] iio: imu: st_lsm6dsx: fix possible lockup in st_lsm6dsx_read_tagged_fifo Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 063/270] usb: uhci-platform: Make the clock really optional Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 064/270] xenbus: Use kref to track req lifetime Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 065/270] module: ensure that kobject_put() is safe for module type kobjects Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 066/270] ocfs2: switch osb->disable_recovery to enum Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 067/270] ocfs2: implement handshaking with ocfs2 recovery thread Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 068/270] ocfs2: stop quota recovery before disabling quotas Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 069/270] usb: gadget: tegra-xudc: ACK ST_RC after clearing CTRL_RUN Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 070/270] usb: host: tegra: Prevent host controller crash when OTG port is used Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 071/270] usb: typec: tcpm: delay SNK_TRY_WAIT_DEBOUNCE to SRC_TRYWAIT transition Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 072/270] usb: typec: ucsi: displayport: Fix NULL pointer access Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 073/270] USB: usbtmc: use interruptible sleep in usbtmc_read Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 5.10 074/270] usb: usbtmc: Fix erroneous get_stb ioctl error returns Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 075/270] usb: usbtmc: Fix erroneous wait_srq ioctl return Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 076/270] usb: usbtmc: Fix erroneous generic_read " Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 077/270] types: Complement the aligned types with signed 64-bit one Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 078/270] iio: adc: dln2: Use aligned_s64 for timestamp Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 079/270] MIPS: Fix MAX_REG_OFFSET Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 080/270] drm/panel: simple: Update timings for AUO G101EVN010 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 081/270] nvme: unblock ctrl state transition for firmware update Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 082/270] do_umount(): add missing barrier before refcount checks in sync case Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 083/270] platform/x86: asus-wmi: Fix wlan_ctrl_by_user detection Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 084/270] iio: adc: ad7768-1: Fix insufficient alignment of timestamp Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 085/270] iio: chemical: sps30: use aligned_s64 for timestamp Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 086/270] RDMA/rxe: Fix slab-use-after-free Read in rxe_queue_cleanup bug Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 087/270] nfs: handle failure of nfs_get_lock_context in unlock path Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 088/270] spi: loopback-test: Do not split 1024-byte hexdumps Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 089/270] net_sched: Flush gso_skb list too during ->change() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 090/270] net: cadence: macb: Fix a possible deadlock in macb_halt_tx Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 091/270] net: dsa: sja1105: discard incoming frames in BR_STATE_LISTENING Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 092/270] ALSA: sh: SND_AICA should depend on SH_DMA_API Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 093/270] qlcnic: fix memory leak in qlcnic_sriov_channel_cfg_cmd() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 094/270] NFSv4/pnfs: Reset the layout state after a layoutreturn Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 095/270] dmaengine: Revert "dmaengine: dmatest: Fix dmatest waiting less when interrupted" Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 096/270] ACPI: PPTT: Fix processor subtable walk Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 097/270] ALSA: es1968: Add error handling for snd_pcm_hw_constraint_pow2() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 098/270] tracing: samples: Initialize trace_array_printk() with the correct function Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 099/270] phy: Fix error handling in tegra_xusb_port_init Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 100/270] phy: renesas: rcar-gen3-usb2: Set timing registers only once Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 101/270] wifi: mt76: disable napi on driver removal Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 102/270] dmaengine: ti: k3-udma: Add missing locking Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 103/270] dmaengine: ti: k3-udma: Use cap_mask directly from dma_device structure instead of a local copy Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 104/270] clocksource/i8253: Use raw_spinlock_irqsave() in clockevent_i8253_disable() Greg Kroah-Hartman
2025-06-02 13:46 ` Greg Kroah-Hartman [this message]
2025-06-02 13:46 ` [PATCH 5.10 106/270] drm/vmwgfx: Fix a deadlock in dma buf fence polling Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 107/270] usb: typec: altmodes/displayport: create sysfs nodes as drivers default device attribute group Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 108/270] usb: typec: fix potential array underflow in ucsi_ccg_sync_control() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 109/270] usb: typec: fix pm usage counter imbalance " Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 110/270] selftests/mm: compaction_test: support platform with huge mount of memory Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 111/270] btrfs: dont BUG_ON() when 0 reference count at btrfs_lookup_extent_info() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 112/270] netfilter: nf_tables: pass nft_chain to destroy function, not nft_ctx Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 113/270] netfilter: nf_tables: wait for rcu grace period on net_device removal Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 114/270] netfilter: nf_tables: do not defer rule destruction via call_rcu Greg Kroah-Hartman
2025-06-06 22:43 ` Alexey Khoroshilov
2025-06-02 13:46 ` [PATCH 5.10 115/270] ice: arfs: fix use-after-free when freeing @rx_cpu_rmap Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 116/270] scsi: target: iscsi: Fix timeout on deleted connection Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 117/270] dma-mapping: avoid potential unused data compilation warning Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 118/270] cgroup: Fix compilation issue due to cgroup_mutex not being exported Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 119/270] kconfig: merge_config: use an empty file as initfile Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 120/270] NFSv4: Check for delegation validity in nfs_start_delegation_return_locked() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 121/270] mailbox: use error ret code of of_parse_phandle_with_args() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 122/270] fbdev: fsl-diu-fb: add missing device_remove_file() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 123/270] fbcon: Use correct erase colour for clearing in fbcon Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 124/270] fbdev: core: tileblit: Implement missing margin clearing for tileblit Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 125/270] NFSv4: Treat ENETUNREACH errors as fatal for state recovery Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 126/270] SUNRPC: rpc_clnt_set_transport() must not change the autobind setting Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 127/270] SUNRPC: rpcbind should never reset the port to the value 0 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 128/270] thermal/drivers/qoriq: Power down TMU on system suspend Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 129/270] dql: Fix dql->limit value when reset Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 130/270] tools/build: Dont pass test log files to linker Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 131/270] pNFS/flexfiles: Report ENETDOWN as a connection error Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 132/270] libnvdimm/labels: Fix divide error in nd_label_data_init() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 133/270] mmc: host: Wait for Vdd to settle on card power off Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 5.10 134/270] i2c: qup: Vote for interconnect bandwidth to DRAM Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 135/270] i2c: pxa: fix call balance of i2c->clk handling routines Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 136/270] btrfs: avoid linker error in btrfs_find_create_tree_block() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 137/270] btrfs: send: return -ENAMETOOLONG when attempting a path that is too long Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 138/270] clocksource/drivers/timer-riscv: Stop stimecmp when cpu hotplug Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 139/270] um: Store full CSGSFS and SS register from mcontext Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 140/270] um: Update min_low_pfn to match changes in uml_reserved Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 141/270] ext4: reorder capability check last Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 142/270] scsi: st: Tighten the page format heuristics with MODE SELECT Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 143/270] scsi: st: ERASE does not change tape location Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 144/270] tcp: reorganize tcp_in_ack_event() and tcp_count_delivered() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 145/270] rtc: rv3032: fix EERD location Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 146/270] kbuild: fix argument parsing in scripts/config Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 147/270] dm: restrict dm device size to 2^63-512 bytes Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 148/270] xen: Add support for XenServer 6.1 platform device Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 149/270] posix-timers: Add cond_resched() to posix_timer_add() search loop Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 150/270] netfilter: conntrack: Bound nf_conntrack sysctl writes Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 151/270] arm64/mm: Check PUD_TYPE_TABLE in pud_bad() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 152/270] mmc: sdhci: Disable SD card clock before changing parameters Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 153/270] ipv6: save dontfrag in cork Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 154/270] arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 155/270] powerpc/prom_init: Fixup missing #size-cells on PowerBook6,7 Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 156/270] tcp: bring back NUMA dispersion in inet_ehash_locks_alloc() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 157/270] rtc: ds1307: stop disabling alarms on probe Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 158/270] ieee802154: ca8210: Use proper setters and getters for bitwise types Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 159/270] ARM: tegra: Switch DSI-B clock parent to PLLD on Tegra114 Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 160/270] media: c8sectpfe: Call of_node_put(i2c_bus) only once in c8sectpfe_probe() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 161/270] dm cache: prevent BUG_ON by blocking retries on failed device resumes Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 162/270] orangefs: Do not truncate file size Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 163/270] drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 164/270] media: cx231xx: set device_caps for 417 Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 165/270] pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned" Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 166/270] net: ethernet: ti: cpsw_new: populate netdev of_node Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 167/270] net: pktgen: fix mpls maximum labels list parsing Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 168/270] ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 169/270] clk: imx8mp: inform CCF of maximum frequency of clocks Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 170/270] x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2 Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 171/270] hwmon: (gpio-fan) Add missing mutex locks Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 172/270] drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 173/270] fpga: altera-cvp: Increase credit timeout Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 174/270] PCI: brcmstb: Expand inbound window size up to 64GB Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 175/270] PCI: brcmstb: Add a softdep to MIP MSI-X driver Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 176/270] net/mlx5: Avoid report two health errors on same syndrome Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 177/270] drm/amdkfd: KFD release_work possible circular locking Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 178/270] net: xgene-v2: remove incorrect ACPI_PTR annotation Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 179/270] bonding: report duplicate MAC address in all situations Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 180/270] soc: ti: k3-socinfo: Do not use syscon helper to build regmap Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 181/270] x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 182/270] cpuidle: menu: Avoid discarding useful information Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 183/270] libbpf: Fix out-of-bound read Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 184/270] MIPS: Use arch specific syscall name match function Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 185/270] MIPS: pm-cps: Use per-CPU variables as per-CPU, not per-core Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 186/270] clocksource: mips-gic-timer: Enable counter when CPUs start Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 187/270] scsi: mpt3sas: Send a diag reset if target reset fails Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 188/270] wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 189/270] wifi: rtw88: Fix rtw_init_ht_cap() " Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 190/270] wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31 Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 191/270] net: pktgen: fix access outside of user given buffer in pktgen_thread_write() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 192/270] EDAC/ie31200: work around false positive build warning Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 193/270] can: c_can: Use of_property_present() to test existence of DT property Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 5.10 194/270] eth: mlx4: dont try to complete XDP frames in netpoll Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 195/270] PCI: Fix old_size lower bound in calculate_iosize() too Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 196/270] ACPI: HED: Always initialize before evged Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 197/270] net/mlx5: Modify LSB bitmask in temperature event to include only the first bit Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 198/270] net/mlx5: Apply rate-limiting to high temperature warning Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 199/270] ASoC: ops: Enforce platform maximum on initial value Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 200/270] ASoC: tas2764: Power up/down amp on mute ops Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 201/270] ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 202/270] pinctrl: devicetree: do not goto err when probing hogs in pinctrl_dt_to_map Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 203/270] smack: recognize ipv4 CIPSO w/o categories Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 204/270] media: v4l: Memset argument to 0 before calling get_mbus_config pad op Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 205/270] net/mlx4_core: Avoid impossible mlx4_db_alloc() order value Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 206/270] phy: core: dont require set_mode() callback for phy_get_mode() to work Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 207/270] drm/amd/display: Initial psr_version with correct setting Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 208/270] net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 209/270] net/mlx5e: set the tx_queue_len for pfifo_fast Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 210/270] net/mlx5e: reduce rep rxq depth to 256 for ECPF Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 211/270] ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 212/270] wifi: rtw88: Fix download_firmware_validate() for RTL8814AU Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 213/270] hwmon: (xgene-hwmon) use appropriate type for the latency value Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 214/270] vxlan: Annotate FDB data races Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 215/270] rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 216/270] rcu: fix header guard for rcu_all_qs() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 217/270] scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 218/270] scsi: st: Restore some drive settings after reset Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 219/270] HID: usbkbd: Fix the bit shift number for LED_KANA Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 220/270] drm/ast: Find VBIOS mode from regular display size Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 221/270] bpftool: Fix readlink usage in get_fd_type Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 222/270] perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 223/270] wifi: rtw88: Dont use static local variable in rtw8822b_set_tx_power_index_by_rate Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 224/270] spi: zynqmp-gqspi: Always acknowledge interrupts Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 225/270] regulator: ad5398: Add device tree support Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 226/270] drm/atomic: clarify the rules around drm_atomic_state->allow_modeset Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 227/270] drm: Add valid clones check Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 228/270] pinctrl: meson: define the pull up/down resistor value as 60 kOhm Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 229/270] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Acer Aspire SW3-013 Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 230/270] ALSA: hda/realtek: Add quirk for HP Spectre x360 15-df1xxx Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 231/270] nvmet-tcp: dont restore null sk_state_change Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 232/270] btrfs: correct the order of prelim_ref arguments in btrfs__prelim_ref Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 233/270] xenbus: Allow PVH dom0 a non-local xenstore Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 234/270] __legitimize_mnt(): check for MNT_SYNC_UMOUNT should be under mount_lock Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 235/270] xfrm: Sanitize marks before insert Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 236/270] bridge: netfilter: Fix forwarding of fragmented packets Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 237/270] net: dwmac-sun8i: Use parsed internal PHY address instead of 1 Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 238/270] sch_hfsc: Fix qlen accounting bug when using peek in hfsc_enqueue() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 239/270] net/tipc: fix slab-use-after-free Read in tipc_aead_encrypt_done Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 240/270] crypto: algif_hash - fix double free in hash_accept Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 241/270] padata: do not leak refcount in reorder_work Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 242/270] can: bcm: add locking for bcm_op runtime updates Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 243/270] can: bcm: add missing rcu read protection for procfs content Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 244/270] ALSA: pcm: Fix race of buffer access at PCM OSS layer Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 245/270] llc: fix data loss when reading from a socket in llc_ui_recvmsg() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 246/270] drm/edid: fixed the bug that hdr metadata was not reset Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 247/270] memcg: always call cond_resched() after fn() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 248/270] mm/page_alloc.c: avoid infinite retries caused by cpuset race Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 249/270] spi: spi-fsl-dspi: restrict register range for regmap access Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 250/270] spi: spi-fsl-dspi: Halt the module after a new message transfer Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 251/270] spi: spi-fsl-dspi: Reset SR flags before sending a new message Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 252/270] kbuild: Disable -Wdefault-const-init-unsafe Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 253/270] drm/i915/gvt: fix unterminated-string-initialization warning Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 5.10 254/270] smb: client: Fix use-after-free in cifs_fill_dirent Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 255/270] smb: client: Reset all search buffer pointers when releasing buffer Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 256/270] net_sched: hfsc: Address reentrant enqueue adding class to eltree twice Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 257/270] coredump: fix error handling for replace_fd() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 258/270] pid: add pidfd_prepare() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 259/270] fork: use pidfd_prepare() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 260/270] coredump: hand a pidfd to the usermode coredump helper Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 261/270] HID: quirks: Add ADATA XPG alpha wireless mouse support Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 262/270] nfs: dont share pNFS DS connections between net namespaces Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 263/270] platform/x86: thinkpad_acpi: Support also NEC Lavie X1475JAS Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 264/270] um: let make clean properly clean underlying SUBARCH as well Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 265/270] spi: spi-sun4i: fix early activation Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 266/270] tpm: tis: Double the timeout B to 4s Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 267/270] platform/x86: fujitsu-laptop: Support Lifebook S2110 hotkeys Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 268/270] platform/x86: thinkpad_acpi: Ignore battery threshold change event notification Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 269/270] xen/swiotlb: relax alignment requirements Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 5.10 270/270] perf/arm-cmn: Initialise cmn->cpu earlier Greg Kroah-Hartman
2025-06-02 16:49 ` [PATCH 5.10 000/270] 5.10.238-rc1 review Florian Fainelli
2025-06-02 16:50 ` Florian Fainelli
2025-06-03 7:58 ` Greg Kroah-Hartman
2025-06-03 16:00 ` Florian Fainelli
2025-06-04 8:06 ` Greg Kroah-Hartman
2025-06-04 18:29 ` Florian Fainelli
2025-06-02 20:37 ` Pavel Machek
2025-06-03 5:48 ` Naresh Kamboju
2025-06-03 7:57 ` Greg Kroah-Hartman
2025-06-03 9:45 ` Mark Brown
2025-06-03 10:06 ` Greg Kroah-Hartman
2025-06-03 10:46 ` Mark Brown
2025-06-04 8:09 ` Greg Kroah-Hartman
2025-06-04 9:40 ` Jon Hunter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250602134311.525244023@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=Feng.Liu3@windriver.com \
--cc=Zhe.He@windriver.com \
--cc=broonie@kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=patches@lists.linux.dev \
--cc=sboyd@kernel.org \
--cc=srinivas.kandagatla@linaro.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox