stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	Jacopo Mondi <jacopo@jmondi.org>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.18 343/879] media: imx: imx-mipi-csis: Rename csi_state to mipi_csis_device
Date: Tue,  7 Jun 2022 18:57:41 +0200	[thread overview]
Message-ID: <20220607165012.816757520@linuxfoundation.org> (raw)
In-Reply-To: <20220607165002.659942637@linuxfoundation.org>

From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

[ Upstream commit c1cc03eafd319369075dd66b091bd8d309a5b726 ]

Usage of "state" for the device-specific data structure is confusing, as
it can also refer to the subdev state. Rename the structure to
mipi_csis_device, and the corresponding state variables to csis.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/media/platform/nxp/imx-mipi-csis.c | 553 +++++++++++----------
 1 file changed, 277 insertions(+), 276 deletions(-)

diff --git a/drivers/media/platform/nxp/imx-mipi-csis.c b/drivers/media/platform/nxp/imx-mipi-csis.c
index 0a72734db55e..d9719d0b2f0a 100644
--- a/drivers/media/platform/nxp/imx-mipi-csis.c
+++ b/drivers/media/platform/nxp/imx-mipi-csis.c
@@ -310,7 +310,7 @@ struct mipi_csis_info {
 	unsigned int num_clocks;
 };
 
-struct csi_state {
+struct mipi_csis_device {
 	struct device *dev;
 	void __iomem *regs;
 	struct clk_bulk_data *clks;
@@ -487,59 +487,60 @@ static const struct csis_pix_format *find_csis_format(u32 code)
  * Hardware configuration
  */
 
-static inline u32 mipi_csis_read(struct csi_state *state, u32 reg)
+static inline u32 mipi_csis_read(struct mipi_csis_device *csis, u32 reg)
 {
-	return readl(state->regs + reg);
+	return readl(csis->regs + reg);
 }
 
-static inline void mipi_csis_write(struct csi_state *state, u32 reg, u32 val)
+static inline void mipi_csis_write(struct mipi_csis_device *csis, u32 reg,
+				   u32 val)
 {
-	writel(val, state->regs + reg);
+	writel(val, csis->regs + reg);
 }
 
-static void mipi_csis_enable_interrupts(struct csi_state *state, bool on)
+static void mipi_csis_enable_interrupts(struct mipi_csis_device *csis, bool on)
 {
-	mipi_csis_write(state, MIPI_CSIS_INT_MSK, on ? 0xffffffff : 0);
-	mipi_csis_write(state, MIPI_CSIS_DBG_INTR_MSK, on ? 0xffffffff : 0);
+	mipi_csis_write(csis, MIPI_CSIS_INT_MSK, on ? 0xffffffff : 0);
+	mipi_csis_write(csis, MIPI_CSIS_DBG_INTR_MSK, on ? 0xffffffff : 0);
 }
 
-static void mipi_csis_sw_reset(struct csi_state *state)
+static void mipi_csis_sw_reset(struct mipi_csis_device *csis)
 {
-	u32 val = mipi_csis_read(state, MIPI_CSIS_CMN_CTRL);
+	u32 val = mipi_csis_read(csis, MIPI_CSIS_CMN_CTRL);
 
-	mipi_csis_write(state, MIPI_CSIS_CMN_CTRL,
+	mipi_csis_write(csis, MIPI_CSIS_CMN_CTRL,
 			val | MIPI_CSIS_CMN_CTRL_RESET);
 	usleep_range(10, 20);
 }
 
-static void mipi_csis_system_enable(struct csi_state *state, int on)
+static void mipi_csis_system_enable(struct mipi_csis_device *csis, int on)
 {
 	u32 val, mask;
 
-	val = mipi_csis_read(state, MIPI_CSIS_CMN_CTRL);
+	val = mipi_csis_read(csis, MIPI_CSIS_CMN_CTRL);
 	if (on)
 		val |= MIPI_CSIS_CMN_CTRL_ENABLE;
 	else
 		val &= ~MIPI_CSIS_CMN_CTRL_ENABLE;
-	mipi_csis_write(state, MIPI_CSIS_CMN_CTRL, val);
+	mipi_csis_write(csis, MIPI_CSIS_CMN_CTRL, val);
 
-	val = mipi_csis_read(state, MIPI_CSIS_DPHY_CMN_CTRL);
+	val = mipi_csis_read(csis, MIPI_CSIS_DPHY_CMN_CTRL);
 	val &= ~MIPI_CSIS_DPHY_CMN_CTRL_ENABLE;
 	if (on) {
-		mask = (1 << (state->bus.num_data_lanes + 1)) - 1;
+		mask = (1 << (csis->bus.num_data_lanes + 1)) - 1;
 		val |= (mask & MIPI_CSIS_DPHY_CMN_CTRL_ENABLE);
 	}
-	mipi_csis_write(state, MIPI_CSIS_DPHY_CMN_CTRL, val);
+	mipi_csis_write(csis, MIPI_CSIS_DPHY_CMN_CTRL, val);
 }
 
-/* Called with the state.lock mutex held */
-static void __mipi_csis_set_format(struct csi_state *state)
+/* Called with the csis.lock mutex held */
+static void __mipi_csis_set_format(struct mipi_csis_device *csis)
 {
-	struct v4l2_mbus_framefmt *mf = &state->format_mbus[CSIS_PAD_SINK];
+	struct v4l2_mbus_framefmt *mf = &csis->format_mbus[CSIS_PAD_SINK];
 	u32 val;
 
 	/* Color format */
-	val = mipi_csis_read(state, MIPI_CSIS_ISP_CONFIG_CH(0));
+	val = mipi_csis_read(csis, MIPI_CSIS_ISP_CONFIG_CH(0));
 	val &= ~(MIPI_CSIS_ISPCFG_ALIGN_32BIT | MIPI_CSIS_ISPCFG_FMT_MASK
 		| MIPI_CSIS_ISPCFG_PIXEL_MASK);
 
@@ -556,28 +557,28 @@ static void __mipi_csis_set_format(struct csi_state *state)
 	 *
 	 * TODO: Verify which other formats require DUAL (or QUAD) modes.
 	 */
-	if (state->csis_fmt->data_type == MIPI_CSI2_DATA_TYPE_YUV422_8)
+	if (csis->csis_fmt->data_type == MIPI_CSI2_DATA_TYPE_YUV422_8)
 		val |= MIPI_CSIS_ISPCFG_PIXEL_MODE_DUAL;
 
-	val |= MIPI_CSIS_ISPCFG_FMT(state->csis_fmt->data_type);
-	mipi_csis_write(state, MIPI_CSIS_ISP_CONFIG_CH(0), val);
+	val |= MIPI_CSIS_ISPCFG_FMT(csis->csis_fmt->data_type);
+	mipi_csis_write(csis, MIPI_CSIS_ISP_CONFIG_CH(0), val);
 
 	/* Pixel resolution */
 	val = mf->width | (mf->height << 16);
-	mipi_csis_write(state, MIPI_CSIS_ISP_RESOL_CH(0), val);
+	mipi_csis_write(csis, MIPI_CSIS_ISP_RESOL_CH(0), val);
 }
 
-static int mipi_csis_calculate_params(struct csi_state *state)
+static int mipi_csis_calculate_params(struct mipi_csis_device *csis)
 {
 	s64 link_freq;
 	u32 lane_rate;
 
 	/* Calculate the line rate from the pixel rate. */
-	link_freq = v4l2_get_link_freq(state->src_sd->ctrl_handler,
-				       state->csis_fmt->width,
-				       state->bus.num_data_lanes * 2);
+	link_freq = v4l2_get_link_freq(csis->src_sd->ctrl_handler,
+				       csis->csis_fmt->width,
+				       csis->bus.num_data_lanes * 2);
 	if (link_freq < 0) {
-		dev_err(state->dev, "Unable to obtain link frequency: %d\n",
+		dev_err(csis->dev, "Unable to obtain link frequency: %d\n",
 			(int)link_freq);
 		return link_freq;
 	}
@@ -585,7 +586,7 @@ static int mipi_csis_calculate_params(struct csi_state *state)
 	lane_rate = link_freq * 2;
 
 	if (lane_rate < 80000000 || lane_rate > 1500000000) {
-		dev_dbg(state->dev, "Out-of-bound lane rate %u\n", lane_rate);
+		dev_dbg(csis->dev, "Out-of-bound lane rate %u\n", lane_rate);
 		return -EINVAL;
 	}
 
@@ -595,57 +596,57 @@ static int mipi_csis_calculate_params(struct csi_state *state)
 	 * (which is documented as corresponding to CSI-2 v0.87 to v1.00) until
 	 * we figure out how to compute it correctly.
 	 */
-	state->hs_settle = (lane_rate - 5000000) / 45000000;
-	state->clk_settle = 0;
+	csis->hs_settle = (lane_rate - 5000000) / 45000000;
+	csis->clk_settle = 0;
 
-	dev_dbg(state->dev, "lane rate %u, Tclk_settle %u, Ths_settle %u\n",
-		lane_rate, state->clk_settle, state->hs_settle);
+	dev_dbg(csis->dev, "lane rate %u, Tclk_settle %u, Ths_settle %u\n",
+		lane_rate, csis->clk_settle, csis->hs_settle);
 
-	if (state->debug.hs_settle < 0xff) {
-		dev_dbg(state->dev, "overriding Ths_settle with %u\n",
-			state->debug.hs_settle);
-		state->hs_settle = state->debug.hs_settle;
+	if (csis->debug.hs_settle < 0xff) {
+		dev_dbg(csis->dev, "overriding Ths_settle with %u\n",
+			csis->debug.hs_settle);
+		csis->hs_settle = csis->debug.hs_settle;
 	}
 
-	if (state->debug.clk_settle < 4) {
-		dev_dbg(state->dev, "overriding Tclk_settle with %u\n",
-			state->debug.clk_settle);
-		state->clk_settle = state->debug.clk_settle;
+	if (csis->debug.clk_settle < 4) {
+		dev_dbg(csis->dev, "overriding Tclk_settle with %u\n",
+			csis->debug.clk_settle);
+		csis->clk_settle = csis->debug.clk_settle;
 	}
 
 	return 0;
 }
 
-static void mipi_csis_set_params(struct csi_state *state)
+static void mipi_csis_set_params(struct mipi_csis_device *csis)
 {
-	int lanes = state->bus.num_data_lanes;
+	int lanes = csis->bus.num_data_lanes;
 	u32 val;
 
-	val = mipi_csis_read(state, MIPI_CSIS_CMN_CTRL);
+	val = mipi_csis_read(csis, MIPI_CSIS_CMN_CTRL);
 	val &= ~MIPI_CSIS_CMN_CTRL_LANE_NR_MASK;
 	val |= (lanes - 1) << MIPI_CSIS_CMN_CTRL_LANE_NR_OFFSET;
-	if (state->info->version == MIPI_CSIS_V3_3)
+	if (csis->info->version == MIPI_CSIS_V3_3)
 		val |= MIPI_CSIS_CMN_CTRL_INTER_MODE;
-	mipi_csis_write(state, MIPI_CSIS_CMN_CTRL, val);
+	mipi_csis_write(csis, MIPI_CSIS_CMN_CTRL, val);
 
-	__mipi_csis_set_format(state);
+	__mipi_csis_set_format(csis);
 
-	mipi_csis_write(state, MIPI_CSIS_DPHY_CMN_CTRL,
-			MIPI_CSIS_DPHY_CMN_CTRL_HSSETTLE(state->hs_settle) |
-			MIPI_CSIS_DPHY_CMN_CTRL_CLKSETTLE(state->clk_settle));
+	mipi_csis_write(csis, MIPI_CSIS_DPHY_CMN_CTRL,
+			MIPI_CSIS_DPHY_CMN_CTRL_HSSETTLE(csis->hs_settle) |
+			MIPI_CSIS_DPHY_CMN_CTRL_CLKSETTLE(csis->clk_settle));
 
 	val = (0 << MIPI_CSIS_ISP_SYNC_HSYNC_LINTV_OFFSET)
 	    | (0 << MIPI_CSIS_ISP_SYNC_VSYNC_SINTV_OFFSET)
 	    | (0 << MIPI_CSIS_ISP_SYNC_VSYNC_EINTV_OFFSET);
-	mipi_csis_write(state, MIPI_CSIS_ISP_SYNC_CH(0), val);
+	mipi_csis_write(csis, MIPI_CSIS_ISP_SYNC_CH(0), val);
 
-	val = mipi_csis_read(state, MIPI_CSIS_CLK_CTRL);
+	val = mipi_csis_read(csis, MIPI_CSIS_CLK_CTRL);
 	val |= MIPI_CSIS_CLK_CTRL_WCLK_SRC;
 	val |= MIPI_CSIS_CLK_CTRL_CLKGATE_TRAIL_CH0(15);
 	val &= ~MIPI_CSIS_CLK_CTRL_CLKGATE_EN_MSK;
-	mipi_csis_write(state, MIPI_CSIS_CLK_CTRL, val);
+	mipi_csis_write(csis, MIPI_CSIS_CLK_CTRL, val);
 
-	mipi_csis_write(state, MIPI_CSIS_DPHY_BCTRL_L,
+	mipi_csis_write(csis, MIPI_CSIS_DPHY_BCTRL_L,
 			MIPI_CSIS_DPHY_BCTRL_L_BIAS_REF_VOLT_715MV |
 			MIPI_CSIS_DPHY_BCTRL_L_BGR_CHOPPER_FREQ_3MHZ |
 			MIPI_CSIS_DPHY_BCTRL_L_REG_12P_LVL_CTL_1_2V |
@@ -653,95 +654,95 @@ static void mipi_csis_set_params(struct csi_state *state)
 			MIPI_CSIS_DPHY_BCTRL_L_LP_RX_VREF_LVL_715MV |
 			MIPI_CSIS_DPHY_BCTRL_L_LP_CD_HYS_60MV |
 			MIPI_CSIS_DPHY_BCTRL_L_B_DPHYCTRL(20000000));
-	mipi_csis_write(state, MIPI_CSIS_DPHY_BCTRL_H, 0);
+	mipi_csis_write(csis, MIPI_CSIS_DPHY_BCTRL_H, 0);
 
 	/* Update the shadow register. */
-	val = mipi_csis_read(state, MIPI_CSIS_CMN_CTRL);
-	mipi_csis_write(state, MIPI_CSIS_CMN_CTRL,
+	val = mipi_csis_read(csis, MIPI_CSIS_CMN_CTRL);
+	mipi_csis_write(csis, MIPI_CSIS_CMN_CTRL,
 			val | MIPI_CSIS_CMN_CTRL_UPDATE_SHADOW |
 			MIPI_CSIS_CMN_CTRL_UPDATE_SHADOW_CTRL);
 }
 
-static int mipi_csis_clk_enable(struct csi_state *state)
+static int mipi_csis_clk_enable(struct mipi_csis_device *csis)
 {
-	return clk_bulk_prepare_enable(state->info->num_clocks, state->clks);
+	return clk_bulk_prepare_enable(csis->info->num_clocks, csis->clks);
 }
 
-static void mipi_csis_clk_disable(struct csi_state *state)
+static void mipi_csis_clk_disable(struct mipi_csis_device *csis)
 {
-	clk_bulk_disable_unprepare(state->info->num_clocks, state->clks);
+	clk_bulk_disable_unprepare(csis->info->num_clocks, csis->clks);
 }
 
-static int mipi_csis_clk_get(struct csi_state *state)
+static int mipi_csis_clk_get(struct mipi_csis_device *csis)
 {
 	unsigned int i;
 	int ret;
 
-	state->clks = devm_kcalloc(state->dev, state->info->num_clocks,
-				   sizeof(*state->clks), GFP_KERNEL);
+	csis->clks = devm_kcalloc(csis->dev, csis->info->num_clocks,
+				  sizeof(*csis->clks), GFP_KERNEL);
 
-	if (!state->clks)
+	if (!csis->clks)
 		return -ENOMEM;
 
-	for (i = 0; i < state->info->num_clocks; i++)
-		state->clks[i].id = mipi_csis_clk_id[i];
+	for (i = 0; i < csis->info->num_clocks; i++)
+		csis->clks[i].id = mipi_csis_clk_id[i];
 
-	ret = devm_clk_bulk_get(state->dev, state->info->num_clocks,
-				state->clks);
+	ret = devm_clk_bulk_get(csis->dev, csis->info->num_clocks,
+				csis->clks);
 	if (ret < 0)
 		return ret;
 
 	/* Set clock rate */
-	ret = clk_set_rate(state->clks[MIPI_CSIS_CLK_WRAP].clk,
-			   state->clk_frequency);
+	ret = clk_set_rate(csis->clks[MIPI_CSIS_CLK_WRAP].clk,
+			   csis->clk_frequency);
 	if (ret < 0)
-		dev_err(state->dev, "set rate=%d failed: %d\n",
-			state->clk_frequency, ret);
+		dev_err(csis->dev, "set rate=%d failed: %d\n",
+			csis->clk_frequency, ret);
 
 	return ret;
 }
 
-static void mipi_csis_start_stream(struct csi_state *state)
+static void mipi_csis_start_stream(struct mipi_csis_device *csis)
 {
-	mipi_csis_sw_reset(state);
-	mipi_csis_set_params(state);
-	mipi_csis_system_enable(state, true);
-	mipi_csis_enable_interrupts(state, true);
+	mipi_csis_sw_reset(csis);
+	mipi_csis_set_params(csis);
+	mipi_csis_system_enable(csis, true);
+	mipi_csis_enable_interrupts(csis, true);
 }
 
-static void mipi_csis_stop_stream(struct csi_state *state)
+static void mipi_csis_stop_stream(struct mipi_csis_device *csis)
 {
-	mipi_csis_enable_interrupts(state, false);
-	mipi_csis_system_enable(state, false);
+	mipi_csis_enable_interrupts(csis, false);
+	mipi_csis_system_enable(csis, false);
 }
 
 static irqreturn_t mipi_csis_irq_handler(int irq, void *dev_id)
 {
-	struct csi_state *state = dev_id;
+	struct mipi_csis_device *csis = dev_id;
 	unsigned long flags;
 	unsigned int i;
 	u32 status;
 	u32 dbg_status;
 
-	status = mipi_csis_read(state, MIPI_CSIS_INT_SRC);
-	dbg_status = mipi_csis_read(state, MIPI_CSIS_DBG_INTR_SRC);
+	status = mipi_csis_read(csis, MIPI_CSIS_INT_SRC);
+	dbg_status = mipi_csis_read(csis, MIPI_CSIS_DBG_INTR_SRC);
 
-	spin_lock_irqsave(&state->slock, flags);
+	spin_lock_irqsave(&csis->slock, flags);
 
 	/* Update the event/error counters */
-	if ((status & MIPI_CSIS_INT_SRC_ERRORS) || state->debug.enable) {
+	if ((status & MIPI_CSIS_INT_SRC_ERRORS) || csis->debug.enable) {
 		for (i = 0; i < MIPI_CSIS_NUM_EVENTS; i++) {
-			struct mipi_csis_event *event = &state->events[i];
+			struct mipi_csis_event *event = &csis->events[i];
 
 			if ((!event->debug && (status & event->mask)) ||
 			    (event->debug && (dbg_status & event->mask)))
 				event->counter++;
 		}
 	}
-	spin_unlock_irqrestore(&state->slock, flags);
+	spin_unlock_irqrestore(&csis->slock, flags);
 
-	mipi_csis_write(state, MIPI_CSIS_INT_SRC, status);
-	mipi_csis_write(state, MIPI_CSIS_DBG_INTR_SRC, dbg_status);
+	mipi_csis_write(csis, MIPI_CSIS_INT_SRC, status);
+	mipi_csis_write(csis, MIPI_CSIS_DBG_INTR_SRC, dbg_status);
 
 	return IRQ_HANDLED;
 }
@@ -750,47 +751,47 @@ static irqreturn_t mipi_csis_irq_handler(int irq, void *dev_id)
  * PHY regulator and reset
  */
 
-static int mipi_csis_phy_enable(struct csi_state *state)
+static int mipi_csis_phy_enable(struct mipi_csis_device *csis)
 {
-	if (state->info->version != MIPI_CSIS_V3_3)
+	if (csis->info->version != MIPI_CSIS_V3_3)
 		return 0;
 
-	return regulator_enable(state->mipi_phy_regulator);
+	return regulator_enable(csis->mipi_phy_regulator);
 }
 
-static int mipi_csis_phy_disable(struct csi_state *state)
+static int mipi_csis_phy_disable(struct mipi_csis_device *csis)
 {
-	if (state->info->version != MIPI_CSIS_V3_3)
+	if (csis->info->version != MIPI_CSIS_V3_3)
 		return 0;
 
-	return regulator_disable(state->mipi_phy_regulator);
+	return regulator_disable(csis->mipi_phy_regulator);
 }
 
-static void mipi_csis_phy_reset(struct csi_state *state)
+static void mipi_csis_phy_reset(struct mipi_csis_device *csis)
 {
-	if (state->info->version != MIPI_CSIS_V3_3)
+	if (csis->info->version != MIPI_CSIS_V3_3)
 		return;
 
-	reset_control_assert(state->mrst);
+	reset_control_assert(csis->mrst);
 	msleep(20);
-	reset_control_deassert(state->mrst);
+	reset_control_deassert(csis->mrst);
 }
 
-static int mipi_csis_phy_init(struct csi_state *state)
+static int mipi_csis_phy_init(struct mipi_csis_device *csis)
 {
-	if (state->info->version != MIPI_CSIS_V3_3)
+	if (csis->info->version != MIPI_CSIS_V3_3)
 		return 0;
 
 	/* Get MIPI PHY reset and regulator. */
-	state->mrst = devm_reset_control_get_exclusive(state->dev, NULL);
-	if (IS_ERR(state->mrst))
-		return PTR_ERR(state->mrst);
+	csis->mrst = devm_reset_control_get_exclusive(csis->dev, NULL);
+	if (IS_ERR(csis->mrst))
+		return PTR_ERR(csis->mrst);
 
-	state->mipi_phy_regulator = devm_regulator_get(state->dev, "phy");
-	if (IS_ERR(state->mipi_phy_regulator))
-		return PTR_ERR(state->mipi_phy_regulator);
+	csis->mipi_phy_regulator = devm_regulator_get(csis->dev, "phy");
+	if (IS_ERR(csis->mipi_phy_regulator))
+		return PTR_ERR(csis->mipi_phy_regulator);
 
-	return regulator_set_voltage(state->mipi_phy_regulator, 1000000,
+	return regulator_set_voltage(csis->mipi_phy_regulator, 1000000,
 				     1000000);
 }
 
@@ -798,36 +799,36 @@ static int mipi_csis_phy_init(struct csi_state *state)
  * Debug
  */
 
-static void mipi_csis_clear_counters(struct csi_state *state)
+static void mipi_csis_clear_counters(struct mipi_csis_device *csis)
 {
 	unsigned long flags;
 	unsigned int i;
 
-	spin_lock_irqsave(&state->slock, flags);
+	spin_lock_irqsave(&csis->slock, flags);
 	for (i = 0; i < MIPI_CSIS_NUM_EVENTS; i++)
-		state->events[i].counter = 0;
-	spin_unlock_irqrestore(&state->slock, flags);
+		csis->events[i].counter = 0;
+	spin_unlock_irqrestore(&csis->slock, flags);
 }
 
-static void mipi_csis_log_counters(struct csi_state *state, bool non_errors)
+static void mipi_csis_log_counters(struct mipi_csis_device *csis, bool non_errors)
 {
 	unsigned int num_events = non_errors ? MIPI_CSIS_NUM_EVENTS
 				: MIPI_CSIS_NUM_EVENTS - 8;
 	unsigned long flags;
 	unsigned int i;
 
-	spin_lock_irqsave(&state->slock, flags);
+	spin_lock_irqsave(&csis->slock, flags);
 
 	for (i = 0; i < num_events; ++i) {
-		if (state->events[i].counter > 0 || state->debug.enable)
-			dev_info(state->dev, "%s events: %d\n",
-				 state->events[i].name,
-				 state->events[i].counter);
+		if (csis->events[i].counter > 0 || csis->debug.enable)
+			dev_info(csis->dev, "%s events: %d\n",
+				 csis->events[i].name,
+				 csis->events[i].counter);
 	}
-	spin_unlock_irqrestore(&state->slock, flags);
+	spin_unlock_irqrestore(&csis->slock, flags);
 }
 
-static int mipi_csis_dump_regs(struct csi_state *state)
+static int mipi_csis_dump_regs(struct mipi_csis_device *csis)
 {
 	static const struct {
 		u32 offset;
@@ -851,11 +852,11 @@ static int mipi_csis_dump_regs(struct csi_state *state)
 	unsigned int i;
 	u32 cfg;
 
-	dev_info(state->dev, "--- REGISTERS ---\n");
+	dev_info(csis->dev, "--- REGISTERS ---\n");
 
 	for (i = 0; i < ARRAY_SIZE(registers); i++) {
-		cfg = mipi_csis_read(state, registers[i].offset);
-		dev_info(state->dev, "%14s: 0x%08x\n", registers[i].name, cfg);
+		cfg = mipi_csis_read(csis, registers[i].offset);
+		dev_info(csis->dev, "%14s: 0x%08x\n", registers[i].name, cfg);
 	}
 
 	return 0;
@@ -863,123 +864,123 @@ static int mipi_csis_dump_regs(struct csi_state *state)
 
 static int mipi_csis_dump_regs_show(struct seq_file *m, void *private)
 {
-	struct csi_state *state = m->private;
+	struct mipi_csis_device *csis = m->private;
 
-	return mipi_csis_dump_regs(state);
+	return mipi_csis_dump_regs(csis);
 }
 DEFINE_SHOW_ATTRIBUTE(mipi_csis_dump_regs);
 
-static void mipi_csis_debugfs_init(struct csi_state *state)
+static void mipi_csis_debugfs_init(struct mipi_csis_device *csis)
 {
-	state->debug.hs_settle = UINT_MAX;
-	state->debug.clk_settle = UINT_MAX;
+	csis->debug.hs_settle = UINT_MAX;
+	csis->debug.clk_settle = UINT_MAX;
 
-	state->debugfs_root = debugfs_create_dir(dev_name(state->dev), NULL);
+	csis->debugfs_root = debugfs_create_dir(dev_name(csis->dev), NULL);
 
-	debugfs_create_bool("debug_enable", 0600, state->debugfs_root,
-			    &state->debug.enable);
-	debugfs_create_file("dump_regs", 0600, state->debugfs_root, state,
+	debugfs_create_bool("debug_enable", 0600, csis->debugfs_root,
+			    &csis->debug.enable);
+	debugfs_create_file("dump_regs", 0600, csis->debugfs_root, csis,
 			    &mipi_csis_dump_regs_fops);
-	debugfs_create_u32("tclk_settle", 0600, state->debugfs_root,
-			   &state->debug.clk_settle);
-	debugfs_create_u32("ths_settle", 0600, state->debugfs_root,
-			   &state->debug.hs_settle);
+	debugfs_create_u32("tclk_settle", 0600, csis->debugfs_root,
+			   &csis->debug.clk_settle);
+	debugfs_create_u32("ths_settle", 0600, csis->debugfs_root,
+			   &csis->debug.hs_settle);
 }
 
-static void mipi_csis_debugfs_exit(struct csi_state *state)
+static void mipi_csis_debugfs_exit(struct mipi_csis_device *csis)
 {
-	debugfs_remove_recursive(state->debugfs_root);
+	debugfs_remove_recursive(csis->debugfs_root);
 }
 
 /* -----------------------------------------------------------------------------
  * V4L2 subdev operations
  */
 
-static struct csi_state *mipi_sd_to_csis_state(struct v4l2_subdev *sdev)
+static struct mipi_csis_device *sd_to_mipi_csis_device(struct v4l2_subdev *sdev)
 {
-	return container_of(sdev, struct csi_state, sd);
+	return container_of(sdev, struct mipi_csis_device, sd);
 }
 
 static int mipi_csis_s_stream(struct v4l2_subdev *sd, int enable)
 {
-	struct csi_state *state = mipi_sd_to_csis_state(sd);
+	struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
 	int ret;
 
 	if (enable) {
-		ret = mipi_csis_calculate_params(state);
+		ret = mipi_csis_calculate_params(csis);
 		if (ret < 0)
 			return ret;
 
-		mipi_csis_clear_counters(state);
+		mipi_csis_clear_counters(csis);
 
-		ret = pm_runtime_resume_and_get(state->dev);
+		ret = pm_runtime_resume_and_get(csis->dev);
 		if (ret < 0)
 			return ret;
 
-		ret = v4l2_subdev_call(state->src_sd, core, s_power, 1);
+		ret = v4l2_subdev_call(csis->src_sd, core, s_power, 1);
 		if (ret < 0 && ret != -ENOIOCTLCMD)
 			goto done;
 	}
 
-	mutex_lock(&state->lock);
+	mutex_lock(&csis->lock);
 
 	if (enable) {
-		if (state->state & ST_SUSPENDED) {
+		if (csis->state & ST_SUSPENDED) {
 			ret = -EBUSY;
 			goto unlock;
 		}
 
-		mipi_csis_start_stream(state);
-		ret = v4l2_subdev_call(state->src_sd, video, s_stream, 1);
+		mipi_csis_start_stream(csis);
+		ret = v4l2_subdev_call(csis->src_sd, video, s_stream, 1);
 		if (ret < 0)
 			goto unlock;
 
-		mipi_csis_log_counters(state, true);
+		mipi_csis_log_counters(csis, true);
 
-		state->state |= ST_STREAMING;
+		csis->state |= ST_STREAMING;
 	} else {
-		v4l2_subdev_call(state->src_sd, video, s_stream, 0);
-		ret = v4l2_subdev_call(state->src_sd, core, s_power, 0);
+		v4l2_subdev_call(csis->src_sd, video, s_stream, 0);
+		ret = v4l2_subdev_call(csis->src_sd, core, s_power, 0);
 		if (ret == -ENOIOCTLCMD)
 			ret = 0;
-		mipi_csis_stop_stream(state);
-		state->state &= ~ST_STREAMING;
-		if (state->debug.enable)
-			mipi_csis_log_counters(state, true);
+		mipi_csis_stop_stream(csis);
+		csis->state &= ~ST_STREAMING;
+		if (csis->debug.enable)
+			mipi_csis_log_counters(csis, true);
 	}
 
 unlock:
-	mutex_unlock(&state->lock);
+	mutex_unlock(&csis->lock);
 
 done:
 	if (!enable || ret < 0)
-		pm_runtime_put(state->dev);
+		pm_runtime_put(csis->dev);
 
 	return ret;
 }
 
 static struct v4l2_mbus_framefmt *
-mipi_csis_get_format(struct csi_state *state,
+mipi_csis_get_format(struct mipi_csis_device *csis,
 		     struct v4l2_subdev_state *sd_state,
 		     enum v4l2_subdev_format_whence which,
 		     unsigned int pad)
 {
 	if (which == V4L2_SUBDEV_FORMAT_TRY)
-		return v4l2_subdev_get_try_format(&state->sd, sd_state, pad);
+		return v4l2_subdev_get_try_format(&csis->sd, sd_state, pad);
 
-	return &state->format_mbus[pad];
+	return &csis->format_mbus[pad];
 }
 
 static int mipi_csis_init_cfg(struct v4l2_subdev *sd,
 			      struct v4l2_subdev_state *sd_state)
 {
-	struct csi_state *state = mipi_sd_to_csis_state(sd);
+	struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
 	struct v4l2_mbus_framefmt *fmt_sink;
 	struct v4l2_mbus_framefmt *fmt_source;
 	enum v4l2_subdev_format_whence which;
 
 	which = sd_state ? V4L2_SUBDEV_FORMAT_TRY : V4L2_SUBDEV_FORMAT_ACTIVE;
-	fmt_sink = mipi_csis_get_format(state, sd_state, which, CSIS_PAD_SINK);
+	fmt_sink = mipi_csis_get_format(csis, sd_state, which, CSIS_PAD_SINK);
 
 	fmt_sink->code = MEDIA_BUS_FMT_UYVY8_1X16;
 	fmt_sink->width = MIPI_CSIS_DEF_PIX_WIDTH;
@@ -1001,7 +1002,7 @@ static int mipi_csis_init_cfg(struct v4l2_subdev *sd,
 	if (!sd_state)
 		return 0;
 
-	fmt_source = mipi_csis_get_format(state, sd_state, which,
+	fmt_source = mipi_csis_get_format(csis, sd_state, which,
 					  CSIS_PAD_SOURCE);
 	*fmt_source = *fmt_sink;
 
@@ -1012,15 +1013,15 @@ static int mipi_csis_get_fmt(struct v4l2_subdev *sd,
 			     struct v4l2_subdev_state *sd_state,
 			     struct v4l2_subdev_format *sdformat)
 {
-	struct csi_state *state = mipi_sd_to_csis_state(sd);
+	struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
 	struct v4l2_mbus_framefmt *fmt;
 
-	fmt = mipi_csis_get_format(state, sd_state, sdformat->which,
+	fmt = mipi_csis_get_format(csis, sd_state, sdformat->which,
 				   sdformat->pad);
 
-	mutex_lock(&state->lock);
+	mutex_lock(&csis->lock);
 	sdformat->format = *fmt;
-	mutex_unlock(&state->lock);
+	mutex_unlock(&csis->lock);
 
 	return 0;
 }
@@ -1029,7 +1030,7 @@ static int mipi_csis_enum_mbus_code(struct v4l2_subdev *sd,
 				    struct v4l2_subdev_state *sd_state,
 				    struct v4l2_subdev_mbus_code_enum *code)
 {
-	struct csi_state *state = mipi_sd_to_csis_state(sd);
+	struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
 
 	/*
 	 * The CSIS can't transcode in any way, the source format is identical
@@ -1041,7 +1042,7 @@ static int mipi_csis_enum_mbus_code(struct v4l2_subdev *sd,
 		if (code->index > 0)
 			return -EINVAL;
 
-		fmt = mipi_csis_get_format(state, sd_state, code->which,
+		fmt = mipi_csis_get_format(csis, sd_state, code->which,
 					   code->pad);
 		code->code = fmt->code;
 		return 0;
@@ -1062,7 +1063,7 @@ static int mipi_csis_set_fmt(struct v4l2_subdev *sd,
 			     struct v4l2_subdev_state *sd_state,
 			     struct v4l2_subdev_format *sdformat)
 {
-	struct csi_state *state = mipi_sd_to_csis_state(sd);
+	struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
 	struct csis_pix_format const *csis_fmt;
 	struct v4l2_mbus_framefmt *fmt;
 	unsigned int align;
@@ -1110,10 +1111,10 @@ static int mipi_csis_set_fmt(struct v4l2_subdev *sd,
 			      &sdformat->format.height, 1,
 			      CSIS_MAX_PIX_HEIGHT, 0, 0);
 
-	fmt = mipi_csis_get_format(state, sd_state, sdformat->which,
+	fmt = mipi_csis_get_format(csis, sd_state, sdformat->which,
 				   sdformat->pad);
 
-	mutex_lock(&state->lock);
+	mutex_lock(&csis->lock);
 
 	fmt->code = csis_fmt->code;
 	fmt->width = sdformat->format.width;
@@ -1126,7 +1127,7 @@ static int mipi_csis_set_fmt(struct v4l2_subdev *sd,
 	sdformat->format = *fmt;
 
 	/* Propagate the format from sink to source. */
-	fmt = mipi_csis_get_format(state, sd_state, sdformat->which,
+	fmt = mipi_csis_get_format(csis, sd_state, sdformat->which,
 				   CSIS_PAD_SOURCE);
 	*fmt = sdformat->format;
 
@@ -1135,22 +1136,22 @@ static int mipi_csis_set_fmt(struct v4l2_subdev *sd,
 
 	/* Store the CSIS format descriptor for active formats. */
 	if (sdformat->which == V4L2_SUBDEV_FORMAT_ACTIVE)
-		state->csis_fmt = csis_fmt;
+		csis->csis_fmt = csis_fmt;
 
-	mutex_unlock(&state->lock);
+	mutex_unlock(&csis->lock);
 
 	return 0;
 }
 
 static int mipi_csis_log_status(struct v4l2_subdev *sd)
 {
-	struct csi_state *state = mipi_sd_to_csis_state(sd);
+	struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
 
-	mutex_lock(&state->lock);
-	mipi_csis_log_counters(state, true);
-	if (state->debug.enable && (state->state & ST_POWERED))
-		mipi_csis_dump_regs(state);
-	mutex_unlock(&state->lock);
+	mutex_lock(&csis->lock);
+	mipi_csis_log_counters(csis, true);
+	if (csis->debug.enable && (csis->state & ST_POWERED))
+		mipi_csis_dump_regs(csis);
+	mutex_unlock(&csis->lock);
 
 	return 0;
 }
@@ -1185,10 +1186,10 @@ static int mipi_csis_link_setup(struct media_entity *entity,
 				const struct media_pad *remote_pad, u32 flags)
 {
 	struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
-	struct csi_state *state = mipi_sd_to_csis_state(sd);
+	struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
 	struct v4l2_subdev *remote_sd;
 
-	dev_dbg(state->dev, "link setup %s -> %s", remote_pad->entity->name,
+	dev_dbg(csis->dev, "link setup %s -> %s", remote_pad->entity->name,
 		local_pad->entity->name);
 
 	/* We only care about the link to the source. */
@@ -1198,12 +1199,12 @@ static int mipi_csis_link_setup(struct media_entity *entity,
 	remote_sd = media_entity_to_v4l2_subdev(remote_pad->entity);
 
 	if (flags & MEDIA_LNK_FL_ENABLED) {
-		if (state->src_sd)
+		if (csis->src_sd)
 			return -EBUSY;
 
-		state->src_sd = remote_sd;
+		csis->src_sd = remote_sd;
 	} else {
-		state->src_sd = NULL;
+		csis->src_sd = NULL;
 	}
 
 	return 0;
@@ -1219,18 +1220,18 @@ static const struct media_entity_operations mipi_csis_entity_ops = {
  * Async subdev notifier
  */
 
-static struct csi_state *
+static struct mipi_csis_device *
 mipi_notifier_to_csis_state(struct v4l2_async_notifier *n)
 {
-	return container_of(n, struct csi_state, notifier);
+	return container_of(n, struct mipi_csis_device, notifier);
 }
 
 static int mipi_csis_notify_bound(struct v4l2_async_notifier *notifier,
 				  struct v4l2_subdev *sd,
 				  struct v4l2_async_subdev *asd)
 {
-	struct csi_state *state = mipi_notifier_to_csis_state(notifier);
-	struct media_pad *sink = &state->sd.entity.pads[CSIS_PAD_SINK];
+	struct mipi_csis_device *csis = mipi_notifier_to_csis_state(notifier);
+	struct media_pad *sink = &csis->sd.entity.pads[CSIS_PAD_SINK];
 
 	return v4l2_create_fwnode_links_to_pad(sd, sink, 0);
 }
@@ -1239,7 +1240,7 @@ static const struct v4l2_async_notifier_operations mipi_csis_notify_ops = {
 	.bound = mipi_csis_notify_bound,
 };
 
-static int mipi_csis_async_register(struct csi_state *state)
+static int mipi_csis_async_register(struct mipi_csis_device *csis)
 {
 	struct v4l2_fwnode_endpoint vep = {
 		.bus_type = V4L2_MBUS_CSI2_DPHY,
@@ -1249,9 +1250,9 @@ static int mipi_csis_async_register(struct csi_state *state)
 	unsigned int i;
 	int ret;
 
-	v4l2_async_nf_init(&state->notifier);
+	v4l2_async_nf_init(&csis->notifier);
 
-	ep = fwnode_graph_get_endpoint_by_id(dev_fwnode(state->dev), 0, 0,
+	ep = fwnode_graph_get_endpoint_by_id(dev_fwnode(csis->dev), 0, 0,
 					     FWNODE_GRAPH_ENDPOINT_NEXT);
 	if (!ep)
 		return -ENOTCONN;
@@ -1262,19 +1263,19 @@ static int mipi_csis_async_register(struct csi_state *state)
 
 	for (i = 0; i < vep.bus.mipi_csi2.num_data_lanes; ++i) {
 		if (vep.bus.mipi_csi2.data_lanes[i] != i + 1) {
-			dev_err(state->dev,
+			dev_err(csis->dev,
 				"data lanes reordering is not supported");
 			ret = -EINVAL;
 			goto err_parse;
 		}
 	}
 
-	state->bus = vep.bus.mipi_csi2;
+	csis->bus = vep.bus.mipi_csi2;
 
-	dev_dbg(state->dev, "data lanes: %d\n", state->bus.num_data_lanes);
-	dev_dbg(state->dev, "flags: 0x%08x\n", state->bus.flags);
+	dev_dbg(csis->dev, "data lanes: %d\n", csis->bus.num_data_lanes);
+	dev_dbg(csis->dev, "flags: 0x%08x\n", csis->bus.flags);
 
-	asd = v4l2_async_nf_add_fwnode_remote(&state->notifier, ep,
+	asd = v4l2_async_nf_add_fwnode_remote(&csis->notifier, ep,
 					      struct v4l2_async_subdev);
 	if (IS_ERR(asd)) {
 		ret = PTR_ERR(asd);
@@ -1283,13 +1284,13 @@ static int mipi_csis_async_register(struct csi_state *state)
 
 	fwnode_handle_put(ep);
 
-	state->notifier.ops = &mipi_csis_notify_ops;
+	csis->notifier.ops = &mipi_csis_notify_ops;
 
-	ret = v4l2_async_subdev_nf_register(&state->sd, &state->notifier);
+	ret = v4l2_async_subdev_nf_register(&csis->sd, &csis->notifier);
 	if (ret)
 		return ret;
 
-	return v4l2_async_register_subdev(&state->sd);
+	return v4l2_async_register_subdev(&csis->sd);
 
 err_parse:
 	fwnode_handle_put(ep);
@@ -1304,23 +1305,23 @@ static int mipi_csis_async_register(struct csi_state *state)
 static int mipi_csis_pm_suspend(struct device *dev, bool runtime)
 {
 	struct v4l2_subdev *sd = dev_get_drvdata(dev);
-	struct csi_state *state = mipi_sd_to_csis_state(sd);
+	struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
 	int ret = 0;
 
-	mutex_lock(&state->lock);
-	if (state->state & ST_POWERED) {
-		mipi_csis_stop_stream(state);
-		ret = mipi_csis_phy_disable(state);
+	mutex_lock(&csis->lock);
+	if (csis->state & ST_POWERED) {
+		mipi_csis_stop_stream(csis);
+		ret = mipi_csis_phy_disable(csis);
 		if (ret)
 			goto unlock;
-		mipi_csis_clk_disable(state);
-		state->state &= ~ST_POWERED;
+		mipi_csis_clk_disable(csis);
+		csis->state &= ~ST_POWERED;
 		if (!runtime)
-			state->state |= ST_SUSPENDED;
+			csis->state |= ST_SUSPENDED;
 	}
 
 unlock:
-	mutex_unlock(&state->lock);
+	mutex_unlock(&csis->lock);
 
 	return ret ? -EAGAIN : 0;
 }
@@ -1328,28 +1329,28 @@ static int mipi_csis_pm_suspend(struct device *dev, bool runtime)
 static int mipi_csis_pm_resume(struct device *dev, bool runtime)
 {
 	struct v4l2_subdev *sd = dev_get_drvdata(dev);
-	struct csi_state *state = mipi_sd_to_csis_state(sd);
+	struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
 	int ret = 0;
 
-	mutex_lock(&state->lock);
-	if (!runtime && !(state->state & ST_SUSPENDED))
+	mutex_lock(&csis->lock);
+	if (!runtime && !(csis->state & ST_SUSPENDED))
 		goto unlock;
 
-	if (!(state->state & ST_POWERED)) {
-		ret = mipi_csis_phy_enable(state);
+	if (!(csis->state & ST_POWERED)) {
+		ret = mipi_csis_phy_enable(csis);
 		if (ret)
 			goto unlock;
 
-		state->state |= ST_POWERED;
-		mipi_csis_clk_enable(state);
+		csis->state |= ST_POWERED;
+		mipi_csis_clk_enable(csis);
 	}
-	if (state->state & ST_STREAMING)
-		mipi_csis_start_stream(state);
+	if (csis->state & ST_STREAMING)
+		mipi_csis_start_stream(csis);
 
-	state->state &= ~ST_SUSPENDED;
+	csis->state &= ~ST_SUSPENDED;
 
 unlock:
-	mutex_unlock(&state->lock);
+	mutex_unlock(&csis->lock);
 
 	return ret ? -EAGAIN : 0;
 }
@@ -1384,14 +1385,14 @@ static const struct dev_pm_ops mipi_csis_pm_ops = {
  * Probe/remove & platform driver
  */
 
-static int mipi_csis_subdev_init(struct csi_state *state)
+static int mipi_csis_subdev_init(struct mipi_csis_device *csis)
 {
-	struct v4l2_subdev *sd = &state->sd;
+	struct v4l2_subdev *sd = &csis->sd;
 
 	v4l2_subdev_init(sd, &mipi_csis_subdev_ops);
 	sd->owner = THIS_MODULE;
 	snprintf(sd->name, sizeof(sd->name), "csis-%s",
-		 dev_name(state->dev));
+		 dev_name(csis->dev));
 
 	sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
 	sd->ctrl_handler = NULL;
@@ -1399,26 +1400,26 @@ static int mipi_csis_subdev_init(struct csi_state *state)
 	sd->entity.function = MEDIA_ENT_F_VID_IF_BRIDGE;
 	sd->entity.ops = &mipi_csis_entity_ops;
 
-	sd->dev = state->dev;
+	sd->dev = csis->dev;
 
-	state->csis_fmt = &mipi_csis_formats[0];
+	csis->csis_fmt = &mipi_csis_formats[0];
 	mipi_csis_init_cfg(sd, NULL);
 
-	state->pads[CSIS_PAD_SINK].flags = MEDIA_PAD_FL_SINK
+	csis->pads[CSIS_PAD_SINK].flags = MEDIA_PAD_FL_SINK
 					 | MEDIA_PAD_FL_MUST_CONNECT;
-	state->pads[CSIS_PAD_SOURCE].flags = MEDIA_PAD_FL_SOURCE
+	csis->pads[CSIS_PAD_SOURCE].flags = MEDIA_PAD_FL_SOURCE
 					   | MEDIA_PAD_FL_MUST_CONNECT;
 	return media_entity_pads_init(&sd->entity, CSIS_PADS_NUM,
-				      state->pads);
+				      csis->pads);
 }
 
-static int mipi_csis_parse_dt(struct csi_state *state)
+static int mipi_csis_parse_dt(struct mipi_csis_device *csis)
 {
-	struct device_node *node = state->dev->of_node;
+	struct device_node *node = csis->dev->of_node;
 
 	if (of_property_read_u32(node, "clock-frequency",
-				 &state->clk_frequency))
-		state->clk_frequency = DEFAULT_SCLK_CSIS_FREQ;
+				 &csis->clk_frequency))
+		csis->clk_frequency = DEFAULT_SCLK_CSIS_FREQ;
 
 	return 0;
 }
@@ -1426,78 +1427,78 @@ static int mipi_csis_parse_dt(struct csi_state *state)
 static int mipi_csis_probe(struct platform_device *pdev)
 {
 	struct device *dev = &pdev->dev;
-	struct csi_state *state;
+	struct mipi_csis_device *csis;
 	int irq;
 	int ret;
 
-	state = devm_kzalloc(dev, sizeof(*state), GFP_KERNEL);
-	if (!state)
+	csis = devm_kzalloc(dev, sizeof(*csis), GFP_KERNEL);
+	if (!csis)
 		return -ENOMEM;
 
-	mutex_init(&state->lock);
-	spin_lock_init(&state->slock);
+	mutex_init(&csis->lock);
+	spin_lock_init(&csis->slock);
 
-	state->dev = dev;
-	state->info = of_device_get_match_data(dev);
+	csis->dev = dev;
+	csis->info = of_device_get_match_data(dev);
 
-	memcpy(state->events, mipi_csis_events, sizeof(state->events));
+	memcpy(csis->events, mipi_csis_events, sizeof(csis->events));
 
 	/* Parse DT properties. */
-	ret = mipi_csis_parse_dt(state);
+	ret = mipi_csis_parse_dt(csis);
 	if (ret < 0) {
 		dev_err(dev, "Failed to parse device tree: %d\n", ret);
 		return ret;
 	}
 
 	/* Acquire resources. */
-	state->regs = devm_platform_ioremap_resource(pdev, 0);
-	if (IS_ERR(state->regs))
-		return PTR_ERR(state->regs);
+	csis->regs = devm_platform_ioremap_resource(pdev, 0);
+	if (IS_ERR(csis->regs))
+		return PTR_ERR(csis->regs);
 
 	irq = platform_get_irq(pdev, 0);
 	if (irq < 0)
 		return irq;
 
-	ret = mipi_csis_phy_init(state);
+	ret = mipi_csis_phy_init(csis);
 	if (ret < 0)
 		return ret;
 
-	ret = mipi_csis_clk_get(state);
+	ret = mipi_csis_clk_get(csis);
 	if (ret < 0)
 		return ret;
 
 	/* Reset PHY and enable the clocks. */
-	mipi_csis_phy_reset(state);
+	mipi_csis_phy_reset(csis);
 
-	ret = mipi_csis_clk_enable(state);
+	ret = mipi_csis_clk_enable(csis);
 	if (ret < 0) {
-		dev_err(state->dev, "failed to enable clocks: %d\n", ret);
+		dev_err(csis->dev, "failed to enable clocks: %d\n", ret);
 		return ret;
 	}
 
 	/* Now that the hardware is initialized, request the interrupt. */
 	ret = devm_request_irq(dev, irq, mipi_csis_irq_handler, 0,
-			       dev_name(dev), state);
+			       dev_name(dev), csis);
 	if (ret) {
 		dev_err(dev, "Interrupt request failed\n");
 		goto disable_clock;
 	}
 
 	/* Initialize and register the subdev. */
-	ret = mipi_csis_subdev_init(state);
+	ret = mipi_csis_subdev_init(csis);
 	if (ret < 0)
 		goto disable_clock;
 
-	platform_set_drvdata(pdev, &state->sd);
+	platform_set_drvdata(pdev, &csis->sd);
 
-	ret = mipi_csis_async_register(state);
+	ret = mipi_csis_async_register(csis);
 	if (ret < 0) {
 		dev_err(dev, "async register failed: %d\n", ret);
 		goto cleanup;
 	}
 
 	/* Initialize debugfs. */
-	mipi_csis_debugfs_init(state);
+	mipi_csis_debugfs_init(csis);
 
 	/* Enable runtime PM. */
 	pm_runtime_enable(dev);
@@ -1508,20 +1509,20 @@ static int mipi_csis_probe(struct platform_device *pdev)
 	}
 
 	dev_info(dev, "lanes: %d, freq: %u\n",
-		 state->bus.num_data_lanes, state->clk_frequency);
+		 csis->bus.num_data_lanes, csis->clk_frequency);
 
 	return 0;
 
 unregister_all:
-	mipi_csis_debugfs_exit(state);
+	mipi_csis_debugfs_exit(csis);
 cleanup:
-	media_entity_cleanup(&state->sd.entity);
-	v4l2_async_nf_unregister(&state->notifier);
-	v4l2_async_nf_cleanup(&state->notifier);
-	v4l2_async_unregister_subdev(&state->sd);
+	media_entity_cleanup(&csis->sd.entity);
+	v4l2_async_nf_unregister(&csis->notifier);
+	v4l2_async_nf_cleanup(&csis->notifier);
+	v4l2_async_unregister_subdev(&csis->sd);
 disable_clock:
-	mipi_csis_clk_disable(state);
-	mutex_destroy(&state->lock);
+	mipi_csis_clk_disable(csis);
+	mutex_destroy(&csis->lock);
 
 	return ret;
 }
@@ -1529,18 +1530,18 @@ static int mipi_csis_probe(struct platform_device *pdev)
 static int mipi_csis_remove(struct platform_device *pdev)
 {
 	struct v4l2_subdev *sd = platform_get_drvdata(pdev);
-	struct csi_state *state = mipi_sd_to_csis_state(sd);
+	struct mipi_csis_device *csis = sd_to_mipi_csis_device(sd);
 
-	mipi_csis_debugfs_exit(state);
-	v4l2_async_nf_unregister(&state->notifier);
-	v4l2_async_nf_cleanup(&state->notifier);
-	v4l2_async_unregister_subdev(&state->sd);
+	mipi_csis_debugfs_exit(csis);
+	v4l2_async_nf_unregister(&csis->notifier);
+	v4l2_async_nf_cleanup(&csis->notifier);
+	v4l2_async_unregister_subdev(&csis->sd);
 
 	pm_runtime_disable(&pdev->dev);
 	mipi_csis_pm_suspend(&pdev->dev, true);
-	mipi_csis_clk_disable(state);
-	media_entity_cleanup(&state->sd.entity);
-	mutex_destroy(&state->lock);
+	mipi_csis_clk_disable(csis);
+	media_entity_cleanup(&csis->sd.entity);
+	mutex_destroy(&csis->lock);
 	pm_runtime_set_suspended(&pdev->dev);
 
 	return 0;
-- 
2.35.1




  parent reply	other threads:[~2022-06-07 21:27 UTC|newest]

Thread overview: 894+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-07 16:51 [PATCH 5.18 000/879] 5.18.3-rc1 review Greg Kroah-Hartman
2022-06-07 16:51 ` [PATCH 5.18 001/879] arm64: Initialize jump labels before setup_machine_fdt() Greg Kroah-Hartman
2022-06-08  9:11   ` Catalin Marinas
2022-06-08 11:58     ` Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 002/879] binfmt_flat: do not stop relocating GOT entries prematurely on riscv Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 003/879] parisc: fix a crash with multicore scheduler Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 004/879] parisc/stifb: Implement fb_is_primary_device() Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 005/879] parisc/stifb: Keep track of hardware path of graphics card Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 006/879] RISC-V: Mark IORESOURCE_EXCLUSIVE for reserved mem instead of IORESOURCE_BUSY Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 007/879] riscv: Initialize thread pointer before calling C functions Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 008/879] riscv: Fix irq_work when SMP is disabled Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 009/879] riscv: Wire up memfd_secret in UAPI header Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 010/879] riscv: Move alternative length validation into subsection Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 011/879] ALSA: hda/realtek - Add new type for ALC245 Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 012/879] ALSA: hda/realtek: Enable 4-speaker output for Dell XPS 15 9520 laptop Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 013/879] ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 014/879] ALSA: usb-audio: Cancel pending work at closing a MIDI substream Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 015/879] USB: serial: pl2303: fix type detection for odd device Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 016/879] USB: serial: option: add Quectel BG95 modem Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 017/879] USB: new quirk for Dell Gen 2 devices Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 018/879] usb: isp1760: Fix out-of-bounds array access Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 019/879] usb: dwc3: gadget: Move null pinter check to proper place Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 020/879] usb: core: hcd: Add support for deferring roothub registration Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 021/879] fs/ntfs3: provide block_invalidate_folio to fix memory leak Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 022/879] fs/ntfs3: Update valid size if -EIOCBQUEUED Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 023/879] fs/ntfs3: Fix fiemap + fix shrink file size (to remove preallocated space) Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 024/879] fs/ntfs3: Keep preallocated only if option prealloc enabled Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 025/879] fs/ntfs3: Check new size for limits Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 026/879] fs/ntfs3: In function ntfs_set_acl_ex do not change inode->i_mode if called from function ntfs_init_acl Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 027/879] fs/ntfs3: Fix some memory leaks in an error handling path of log_replay() Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 028/879] fs/ntfs3: Update i_ctime when xattr is added Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 029/879] fs/ntfs3: Restore ntfs_xattr_get_acl and ntfs_xattr_set_acl functions Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 030/879] cifs: dont call cifs_dfs_query_info_nonascii_quirk() if nodfs was set Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 031/879] cifs: fix ntlmssp on old servers Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 032/879] cifs: fix potential double free during failed mount Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 033/879] cifs: when extending a file with falloc we should make files not-sparse Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 034/879] xhci: Set HCD flag to defer primary roothub registration Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 035/879] xhci: Allow host runtime PM as default for Intel Alder Lake N xHCI Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 036/879] platform/x86: intel-hid: fix _DSM function index handling Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 037/879] x86/MCE/AMD: Fix memory leak when threshold_create_bank() fails Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 038/879] perf/x86/intel: Fix event constraints for ICL Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 039/879] x86/kexec: fix memory leak of elf header buffer Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 040/879] x86/sgx: Set active memcg prior to shmem allocation Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 041/879] kthread: Dont allocate kthread_struct for init and umh Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 042/879] ptrace/um: Replace PT_DTRACE with TIF_SINGLESTEP Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 043/879] ptrace/xtensa: Replace PT_SINGLESTEP " Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 044/879] ptrace: Reimplement PTRACE_KILL by always sending SIGKILL Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 045/879] btrfs: add "0x" prefix for unsupported optional features Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 046/879] btrfs: return correct error number for __extent_writepage_io() Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 047/879] btrfs: repair super block num_devices automatically Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 048/879] btrfs: fix the error handling for submit_extent_page() for btrfs_do_readpage() Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 049/879] btrfs: fix deadlock between concurrent dio writes when low on free data space Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 050/879] btrfs: zoned: properly finish block group on metadata write Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 051/879] btrfs: zoned: zone finish unused block group Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 052/879] btrfs: zoned: finish block group when there are no more allocatable bytes left Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 053/879] btrfs: zoned: fix comparison of alloc_offset vs meta_write_pointer Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 054/879] iommu/vt-d: Add RPLS to quirk list to skip TE disabling Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 055/879] drm/selftests: fix a shift-out-of-bounds bug Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 056/879] drm/vmwgfx: validate the screen formats Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 057/879] ath11k: fix the warning of dev_wake in mhi_pm_disable_transition() Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 058/879] drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 059/879] selftests/bpf: Fix vfs_link kprobe definition Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 060/879] selftests/bpf: Fix parsing of prog types in UAPI hdr for bpftool sync Greg Kroah-Hartman
2022-06-07 16:52 ` [PATCH 5.18 061/879] ath11k: Change max no of active probe SSID and BSSID to fw capability Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 062/879] selftests/bpf: Fix file descriptor leak in load_kallsyms() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 063/879] rtw89: ser: fix CAM leaks occurring in L2 reset Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 064/879] rtw89: fix misconfiguration on hw_scan channel time Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 065/879] mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 066/879] b43legacy: Fix assigning negative value to unsigned variable Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 067/879] b43: " Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 068/879] ipw2x00: Fix potential NULL dereference in libipw_xmit() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 069/879] ipv6: fix locking issues with loops over idev->addr_list Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 070/879] fbcon: Consistently protect deferred_takeover with console_lock() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 071/879] x86/platform/uv: Update TSC sync state for UV5 Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 072/879] ACPICA: Avoid cache flush inside virtual machines Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 073/879] libbpf: Fix a bug with checking bpf_probe_read_kernel() support in old kernels Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 074/879] mac80211: minstrel_ht: fix where rate stats are stored (fixes debugfs output) Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 075/879] drm/komeda: return early if drm_universal_plane_init() fails Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 076/879] drm/amd/display: Disabling Z10 on DCN31 Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 077/879] rcu-tasks: Fix race in schedule and flush work Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 078/879] rcu-tasks: Handle sparse cpu_possible_mask in rcu_tasks_invoke_cbs() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 079/879] rcu: Make TASKS_RUDE_RCU select IRQ_WORK Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 080/879] sfc: ef10: Fix assigning negative value to unsigned variable Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 081/879] ALSA: jack: Access input_dev under mutex Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 082/879] rtw88: fix incorrect frequency reported Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 083/879] rtw88: 8821c: fix debugfs rssi value Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 084/879] spi: spi-rspi: Remove setting {src,dst}_{addr,addr_width} based on DMA direction Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 085/879] tools/power turbostat: fix ICX DRAM power numbers Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 086/879] tcp: consume incoming skb leading to a reset Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 087/879] loop: implement ->free_disk Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 088/879] scsi: lpfc: Move cfg_log_verbose check before calling lpfc_dmp_dbg() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 089/879] scsi: lpfc: Fix SCSI I/O completion and abort handler deadlock Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 090/879] scsi: lpfc: Fix null pointer dereference after failing to issue FLOGI and PLOGI Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 091/879] scsi: lpfc: Protect memory leak for NPIV ports sending PLOGI_RJT Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 092/879] scsi: lpfc: Fix call trace observed during I/O with CMF enabled Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 093/879] cpuidle: PSCI: Improve support for suspend-to-RAM for PSCI OSI mode Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 094/879] drm/amdgpu/pm: fix the null pointer while the smu is disabled Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 095/879] drm/amd/pm: fix double free in si_parse_power_table() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 096/879] ASoC: rsnd: care default case on rsnd_ssiu_busif_err_status_clear() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 097/879] ASoC: rsnd: care return value from rsnd_node_fixed_index() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 098/879] net: macb: In ZynqMP initialization make SGMII phy configuration optional Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 099/879] ath9k: fix QCA9561 PA bias level Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 100/879] media: Revert "media: dw9768: activate runtime PM and turn off device" Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 101/879] media: i2c: dw9714: Disable the regulator when the driver fails to probe Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 102/879] media: venus: hfi: avoid null dereference in deinit Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 103/879] media: venus: do not queue internal buffers from previous sequence Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 104/879] media: pci: cx23885: Fix the error handling in cx23885_initdev() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 105/879] media: cx25821: Fix the warning when removing the module Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 106/879] md/bitmap: dont set sb values if cant pass sanity check Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 107/879] mmc: jz4740: Apply DMA engine limits to maximum segment size Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 108/879] drivers: mmc: sdhci_am654: Add the quirk to set TESTCD bit Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 109/879] scsi: megaraid: Fix error check return value of register_chrdev() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 110/879] drm/amdgpu/sdma: Fix incorrect calculations of the wptr of the doorbells Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 111/879] scsi: ufs: Use pm_runtime_resume_and_get() instead of pm_runtime_get_sync() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 112/879] scsi: lpfc: Fix resource leak in lpfc_sli4_send_seq_to_ulp() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 113/879] ath11k: disable spectral scan during spectral deinit Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 114/879] ASoC: Intel: bytcr_rt5640: Add quirk for the HP Pro Tablet 408 Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 115/879] drm/plane: Move range check for format_count earlier Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 116/879] drm/amdkfd: Fix circular lock dependency warning Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 117/879] drm/amd/pm: fix the compile warning Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 118/879] ath10k: skip ath10k_halt during suspend for driver state RESTARTING Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 119/879] arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 120/879] drm: msm: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 16:53 ` [PATCH 5.18 121/879] drm/msm/dpu: Clean up CRC debug logs Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 122/879] xtensa: move trace_hardirqs_off call back to entry.S Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 123/879] ath11k: fix warning of not found station for bssid in message Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 124/879] scsi: target: tcmu: Fix possible data corruption Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 125/879] ipv6: Dont send rs packets to the interface of ARPHRD_TUNNEL Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 126/879] net/mlx5: use kvfree() for kvzalloc() in mlx5_ct_fs_smfs_matcher_create Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 127/879] net/mlx5: fs, delete the FTE when there are no rules attached to it Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 128/879] ASoC: dapm: Dont fold register value changes into notifications Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 129/879] ASoC: SOF: ipc3-topology: Correct get_control_data for non bytes payload Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 130/879] mlxsw: spectrum_dcb: Do not warn about priority changes Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 131/879] mlxsw: Treat LLDP packets as control Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 132/879] drm/amdgpu/psp: move PSP memory alloc from hw_init to sw_init Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 133/879] drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 134/879] regulator: mt6315: Enforce regulator-compatible, not name Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 135/879] ice: always check VF VSI pointer values Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 136/879] HID: bigben: fix slab-out-of-bounds Write in bigben_probe Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 137/879] drm/tegra: gem: Do not try to dereference ERR_PTR() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 138/879] of: Support more than one crash kernel regions for kexec -s Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 139/879] ASoC: tscs454: Add endianness flag in snd_soc_component_driver Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 140/879] net/mlx5: Increase FW pre-init timeout for health recovery Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 141/879] ASoC: Intel: sof_ssp_amp: fix no DMIC BE Link on Chromebooks Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 142/879] scsi: hisi_sas: Undo RPM resume for failed notify phy event for v3 HW Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 143/879] scsi: lpfc: Inhibit aborts if external loopback plug is inserted Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 144/879] scsi: lpfc: Alter FPIN stat accounting logic Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 145/879] net: remove two BUG() from skb_checksum_help() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 146/879] s390/preempt: disable __preempt_count_add() optimization for PROFILE_ALL_BRANCHES Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 147/879] perf/amd/ibs: Cascade pmu init functions return value Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 148/879] sched/core: Avoid obvious double update_rq_clock warning Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 149/879] spi: stm32-qspi: Fix wait_cmd timeout in APM mode Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 150/879] dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 151/879] fs: hold writers when changing mounts idmapping Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 152/879] ASoC: SOF: amd: add missing platform_device_unregister in acp_pci_rn_probe Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 153/879] ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 154/879] ipmi:ssif: Check for NULL msg when handling events and messages Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 155/879] ipmi: Add an intializer for ipmi_smi_msg struct Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 156/879] ipmi: Fix pr_fmt to avoid compilation issues Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 157/879] kunit: bail out of test filtering logic quicker if OOM Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 158/879] rtlwifi: Use pr_warn instead of WARN_ONCE Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 159/879] mt76: mt7915: accept rx frames with non-standard VHT MCS10-11 Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 160/879] mt76: mt7921: " Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 161/879] mt76: fix encap offload ethernet type check Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 162/879] media: rga: fix possible memory leak in rga_probe Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 163/879] media: coda: limit frame interval enumeration to supported encoder frame sizes Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 164/879] media: hantro: HEVC: unconditionnaly set pps_{cb/cr}_qp_offset values Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 165/879] media: ccs-core.c: fix failure to call clk_disable_unprepare Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 166/879] media: imon: reorganize serialization Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 167/879] media: cec-adap.c: fix is_configuring state Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 168/879] usbnet: Run unregister_netdev() before unbind() again Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 169/879] Bluetooth: HCI: Add HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN quirk Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 170/879] Bluetooth: btusb: Set HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN for QCA Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 171/879] Bluetooth: btusb: Set HCI_QUIRK_BROKEN_ERR_DATA_REPORTING " Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 172/879] bnxt_en: Configure ptp filters during bnxt open Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 173/879] media: mediatek: vcodec: prevent kernel crash when rmmod mtk-vcodec-dec.ko Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 174/879] openrisc: start CPU timer early in boot Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 175/879] nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 176/879] ASoC: rt5645: Fix errorenous cleanup order Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 177/879] nbd: Fix hung on disconnect request if socket is closed before Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 178/879] drm/amd/pm: update smartshift powerboost calc for smu12 Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 179/879] drm/amd/pm: update smartshift powerboost calc for smu13 Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 180/879] drm/amdgpu: Move mutex_init(&smu->message_lock) to smu_early_init() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.18 181/879] btrfs: fix anon_dev leak in create_subvol() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 182/879] kunit: tool: make parser stop overwriting status of suites w/ no_tests Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 183/879] net: phy: micrel: Allow probing without .driver_data Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 184/879] media: exynos4-is: Fix compile warning Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 185/879] media: hantro: Stop using H.264 parameter pic_num Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 186/879] rtw89: cfo: check mac_id to avoid out-of-bounds Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 187/879] of/fdt: Ignore disabled memory nodes Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 188/879] blk-throttle: Set BIO_THROTTLED when bio has been throttled Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 189/879] ASoC: max98357a: remove dependency on GPIOLIB Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 190/879] ASoC: rt1015p: " Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 191/879] ACPI: CPPC: Assume no transition latency if no PCCT Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 192/879] nvme: set non-mdts limits in nvme_scan_work Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 193/879] can: mcp251xfd: silence clangs -Wunaligned-access warning Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 194/879] x86/microcode: Add explicit CPU vendor dependency Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 195/879] net: ipa: ignore endianness if there is no header Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 196/879] selftests/bpf: Add missing trampoline program type to trampoline_count test Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 197/879] m68k: atari: Make Atari ROM port I/O write macros return void Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 198/879] hwmon: (pmbus) Add get_voltage/set_voltage ops Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 199/879] rxrpc: Return an error to sendmsg if call failed Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 200/879] rxrpc, afs: Fix selection of abort codes Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 201/879] afs: Adjust ACK interpretation to try and cope with NAT Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 202/879] eth: tg3: silence the GCC 12 array-bounds warning Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 203/879] char: tpm: cr50_i2c: Suppress duplicated error message in .remove() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 204/879] selftests/bpf: fix btf_dump/btf_dump due to recent clang change Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 205/879] gfs2: use i_lock spin_lock for inode qadata Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 206/879] linux/types.h: reinstate "__bitwise__" macro for user space use Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 207/879] scsi: target: tcmu: Avoid holding XArray lock when calling lock_page Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 208/879] kunit: fix executor OOM error handling logic on non-UML Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 209/879] IB/rdmavt: add missing locks in rvt_ruc_loopback Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 210/879] PCI/ASPM: Make Intel DG2 L1 acceptable latency unlimited Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 211/879] ARM: dts: ox820: align interrupt controller node name with dtschema Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 212/879] ARM: dts: socfpga: " Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 213/879] ARM: dts: s5pv210: align DMA channels " Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 214/879] ASoC: amd: Add driver data to acp6x machine driver Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 215/879] arm64: dts: qcom: msm8994: Fix the cont_splash_mem address Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 216/879] arm64: dts: qcom: msm8994: Fix BLSP[12]_DMA channels count Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 217/879] PM / devfreq: rk3399_dmc: Disable edev on remove() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 218/879] crypto: ccree - use fine grained DMA mapping dir Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 219/879] crypto: qat - fix off-by-one error in PFVF debug print Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 220/879] soc: ti: ti_sci_pm_domains: Check for null return of devm_kcalloc Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 221/879] fs: jfs: fix possible NULL pointer dereference in dbFree() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 222/879] arm64: dts: qcom: sdm845-xiaomi-beryllium: fix typo in panels vddio-supply property Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 223/879] ALSA: usb-audio: Add quirk bits for enabling/disabling generic implicit fb Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 224/879] ALSA: usb-audio: Move generic implicit fb quirk entries into quirks.c Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 225/879] ARM: OMAP1: clock: Fix UART rate reporting algorithm Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 226/879] powerpc/fadump: Fix fadump to work with a different endian capture kernel Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 227/879] fat: add ratelimit to fat*_ent_bread() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 228/879] pinctrl: renesas: rzn1: Fix possible null-ptr-deref in sh_pfc_map_resources() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 229/879] ARM: versatile: Add missing of_node_put in dcscb_init Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 230/879] ARM: dts: exynos: add atmel,24c128 fallback to Samsung EEPROM Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 231/879] arm64: dts: qcom: sc7280-idp: Configure CTS pin to bias-bus-hold for bluetooth Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 232/879] arm64: dts: qcom: sc7280-qcard: " Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 233/879] ARM: hisi: Add missing of_node_put after of_find_compatible_node Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 234/879] cpufreq: Avoid unnecessary frequency updates due to mismatch Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 235/879] PCI: microchip: Add missing chained_irq_enter()/exit() calls Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 236/879] powerpc/rtas: Keep MSR[RI] set when calling RTAS Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 237/879] PCI: Avoid pci_dev_lock() AB/BA deadlock with sriov_numvfs_store() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 238/879] PCI: cadence: Clear FLR in device capabilities register Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 239/879] KVM: PPC: Book3S HV Nested: L2 LPCR should inherit L1 LPES setting Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 240/879] alpha: fix alloc_zeroed_user_highpage_movable() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.18 241/879] tracing: incorrect isolate_mote_t cast in mm_vmscan_lru_isolate Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 242/879] cifs: return ENOENT for DFS lookup_cache_entry() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 243/879] powerpc/powernv/vas: Assign real address to rx_fifo in vas_rx_win_attr Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 244/879] powerpc/xics: fix refcount leak in icp_opal_init() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 245/879] powerpc/powernv: fix missing of_node_put in uv_init() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 246/879] macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 247/879] powerpc/iommu: Add missing of_node_put in iommu_init_early_dart Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 248/879] fanotify: fix incorrect fmode_t casts Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 249/879] smb3: check for null tcon Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 250/879] RDMA/hfi1: Prevent panic when SDMA is disabled Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 251/879] cifs: do not use tcpStatus after negotiate completes Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 252/879] Input: gpio-keys - cancel delayed work only in case of GPIO Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 253/879] drm: fix EDID struct for old ARM OABI format Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 254/879] drm/bridge_connector: enable HPD by default if supported Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 255/879] drm/selftests: missing error code in igt_buddy_alloc_smoke() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 256/879] drm/omap: fix NULL but dereferenced coccicheck error Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 257/879] dt-bindings: display: sitronix, st7735r: Fix backlight in example Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 258/879] drm/bridge: anx7625: check the return on anx7625_aux_trans Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 259/879] drm: ssd130x: Fix COM scan direction register mask Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 260/879] drm: ssd130x: Always apply segment remap setting Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 261/879] drm/solomon: Make DRM_SSD130X depends on MMU Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 262/879] drm/format-helper: Rename drm_fb_xrgb8888_to_mono_reversed() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 263/879] drm/format-helper: Fix XRGB888 to monochrome conversion Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 264/879] drm/ssd130x: Fix rectangle updates Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 265/879] drm/ssd130x: Reduce temporary buffer sizes Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 266/879] fbdev: defio: fix the pagelist corruption Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 267/879] drm/vmwgfx: Fix an invalid read Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 268/879] ath11k: acquire ab->base_lock in unassign when finding the peer by addr Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 269/879] drm: bridge: it66121: Fix the register page length Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 270/879] drm/bridge: it6505: Fix build error Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 271/879] ath9k: fix ar9003_get_eepmisc Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 272/879] drm/edid: fix invalid EDID extension block filtering Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 273/879] drm/bridge: anx7625: add missing destroy_workqueue() in anx7625_i2c_probe() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 274/879] drm/bridge: adv7511: clean up CEC adapter when probe fails Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 275/879] drm: bridge: icn6211: Fix register layout Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 276/879] drm: bridge: icn6211: Fix HFP_HSW_HBP_HI and HFP_MIN handling Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 277/879] mtd: spinand: gigadevice: fix Quad IO for GD5F1GQ5UExxG Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 278/879] spi: qcom-qspi: Add minItems to interconnect-names Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 279/879] ASoC: codecs: Fix error handling in power domain init and exit handlers Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 280/879] ASoC: cs35l41: Fix an out-of-bounds access in otp_packed_element_t Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 281/879] ASoC: SOF: ipc3-topology: Set scontrol->priv to NULL after freeing it Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 282/879] ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 283/879] ASoC: mediatek: Fix missing of_node_put in mt2701_wm8960_machine_probe Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 284/879] docs: driver-api/thermal/intel_dptf: Use copyright symbol Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 285/879] x86/delay: Fix the wrong asm constraint in delay_loop() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 286/879] drm/mediatek: Add vblank register/unregister callback functions Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 287/879] drm/mediatek: Fix DPI component detection for MT8192 Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 288/879] drm/vc4: kms: Take old state core clock rate into account Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 289/879] drm/vc4: hvs: Fix frame count register readout Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 290/879] drm/mediatek: Fix mtk_cec_mask() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 291/879] drm/amd/amdgpu: Only reserve vram for firmware with vega9 MS_HYPERV host Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 292/879] drm/vc4: hvs: Reset muxes at probe time Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 293/879] drm/vc4: txp: Dont set TXP_VSTART_AT_EOF Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 294/879] drm/vc4: txp: Force alpha to be 0xff if its disabled Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 295/879] libbpf: Dont error out on CO-RE relos for overriden weak subprogs Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 296/879] x86/PCI: Fix ALi M1487 (IBC) PIRQ router link value interpretation Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 297/879] mptcp: optimize release_cb for the common case Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 298/879] mptcp: reset the packet scheduler on incoming MP_PRIO Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 299/879] mptcp: reset the packet scheduler on PRIO change Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 300/879] nl80211: show SSID for P2P_GO interfaces Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.18 301/879] drm/komeda: Fix an undefined behavior bug in komeda_plane_add() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 302/879] drm: mali-dp: potential dereference of null pointer Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 303/879] drm/amd/amdgpu: Fix asm/hypervisor.h build error Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 304/879] spi: spi-ti-qspi: Fix return value handling of wait_for_completion_timeout Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 305/879] scftorture: Fix distribution of short handler delays Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 306/879] net: ethernet: ti: am65-cpsw: Fix build error without PHYLINK Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 307/879] net: dsa: mt7530: 1G can also support 1000BASE-X link mode Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 308/879] ixp4xx_eth: fix error check return value of platform_get_irq() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 309/879] NFC: NULL out the dev->rfkill to prevent UAF Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 310/879] cpufreq: governor: Use kobject release() method to free dbs_data Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 311/879] efi: Allow to enable EFI runtime services by default on RT Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 312/879] efi: Add missing prototype for efi_capsule_setup_info Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 313/879] device property: Allow error pointer to be passed to fwnode APIs Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 314/879] drm/amd/amdgpu: Remove static from variable in RLCG Reg RW Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 315/879] net: dsa: qca8k: correctly handle mdio read error Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 316/879] target: remove an incorrect unmap zeroes data deduction Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 317/879] drbd: remove assign_p_sizes_qlim Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 318/879] drbd: use bdev based limit helpers in drbd_send_sizes Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 319/879] drbd: use bdev_alignment_offset instead of queue_alignment_offset Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 320/879] drbd: fix duplicate array initializer Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 321/879] EDAC/dmc520: Dont print an error for each unconfigured interrupt line Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 322/879] bpf: Move rcu lock management out of BPF_PROG_RUN routines Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 323/879] drm/bridge: anx7625: Use uint8 for lane-swing arrays Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 324/879] mtd: rawnand: denali: Use managed device resources Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 325/879] HID: hid-led: fix maximum brightness for Dream Cheeky Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 326/879] HID: elan: Fix potential double free in elan_input_configured Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 327/879] drm/bridge: Fix error handling in analogix_dp_probe Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 328/879] regulator: da9121: Fix uninit-value in da9121_assign_chip_model() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 329/879] drm/mediatek: dpi: Use mt8183 output formats for mt8192 Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 330/879] signal: Deliver SIGTRAP on perf event asynchronously if blocked Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 331/879] sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 332/879] sched/psi: report zeroes for CPU full at the system level Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 333/879] spi: img-spfi: Fix pm_runtime_get_sync() error checking Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 334/879] drm/bridge: Fix it6505 Kconfig DRM_DP_AUX_BUS dependency Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 335/879] cpufreq: Fix possible race in cpufreq online error path Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 336/879] printk: add missing memory barrier to wake_up_klogd() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 337/879] printk: wake waiters for safe and NMI contexts Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 338/879] ath9k_htc: fix potential out of bounds access with invalid rxstatus->rs_keyix Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 339/879] media: i2c: max9286: fix kernel oops when removing module Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 340/879] media: amphion: fix decoders interlaced field Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 341/879] media: hantro: Implement support for encoder commands Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 342/879] media: hantro: Empty encoder capture buffers by default Greg Kroah-Hartman
2022-06-07 16:57 ` Greg Kroah-Hartman [this message]
2022-06-07 16:57 ` [PATCH 5.18 344/879] media: imx: imx-mipi-csis: Fix active format initialization on source pad Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 345/879] drm/panel: simple: Add missing bus flags for Innolux G070Y2-L01 Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 346/879] ALSA: pcm: Check for null pointer of pointer substream before dereferencing it Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 347/879] mtdblock: warn if opened on NAND Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 348/879] inotify: show inotify mask flags in proc fdinfo Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 349/879] fsnotify: fix wrong lockdep annotations Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 350/879] spi: rockchip: fix missing error on unsupported SPI_CS_HIGH Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 351/879] of: overlay: do not break notify on NOTIFY_{OK|STOP} Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 352/879] selftests/damon: add damon to selftests root Makefile Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 353/879] drm/msm: properly add and remove internal bridges Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 354/879] drm/msm/dpu: adjust display_v_end for eDP and DP Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 355/879] scsi: iscsi: Fix harmless double shift bug Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 356/879] scsi: ufs: qcom: Fix ufs_qcom_resume() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 357/879] scsi: ufs: core: Exclude UECxx from SFR dump list Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 358/879] drm/v3d: Fix null pointer dereference of pointer perfmon Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 359/879] selftests/resctrl: Fix null pointer dereference on open failed Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 360/879] libbpf: Fix logic for finding matching program for CO-RE relocation Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.18 361/879] mtd: spi-nor: core: Check written SR value in spi_nor_write_16bit_sr_and_check() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 362/879] x86/pm: Fix false positive kmemleak report in msr_build_context() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 363/879] mtd: rawnand: cadence: fix possible null-ptr-deref in cadence_nand_dt_probe() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 364/879] mtd: rawnand: intel: fix possible null-ptr-deref in ebu_nand_probe() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 365/879] x86/speculation: Add missing prototype for unpriv_ebpf_notify() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 366/879] ASoC: rk3328: fix disabling mclk on pclk probe failure Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 367/879] perf tools: Add missing headers needed by util/data.h Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 368/879] drm/msm/disp/dpu1: set vbif hw config to NULL to avoid use after memory free during pm runtime resume Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 369/879] drm/msm/dp: stop event kernel thread when DP unbind Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 370/879] drm/msm/dp: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 371/879] drm/msm/dp: reset DP controller before transmit phy test pattern Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 372/879] drm/msm/dp: do not stop transmitting phy test pattern during DP phy compliance test Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 373/879] drm/msm/dsi: fix error checks and return values for DSI xmit functions Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 374/879] drm/msm/hdmi: check return value after calling platform_get_resource_byname() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 375/879] drm/msm/hdmi: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 376/879] drm/msm: add missing include to msm_drv.c Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 377/879] drm/panel: panel-simple: Fix proper bpc for AM-1280800N3TZQW-T00H Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 378/879] drm/bridge: it6505: Send DPCD SET_POWER to downstream Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 379/879] drm/msm: Fix null pointer dereferences without iommu Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 380/879] kunit: fix debugfs code to use enum kunit_status, not bool Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 381/879] drm/rockchip: vop: fix possible null-ptr-deref in vop_bind() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 382/879] spi: cadence-quadspi: fix Direct Access Mode disable for SoCFPGA Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 383/879] perf tools: Use Python devtools for version autodetection rather than runtime Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 384/879] virtio_blk: fix the discard_granularity and discard_alignment queue limits Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 385/879] nl80211: dont hold RTNL in color change request Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 386/879] x86: Fix return value of __setup handlers Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 387/879] irqchip/exiu: Fix acknowledgment of edge triggered interrupts Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 388/879] irqchip/aspeed-i2c-ic: Fix irq_of_parse_and_map() return value Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 389/879] irqchip/aspeed-scu-ic: " Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 390/879] x86/mm: Cleanup the control_va_addr_alignment() __setup handler Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 391/879] arm64: fix types in copy_highpage() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 392/879] regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 393/879] wl1251: dynamically allocate memory used for DMA Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 394/879] linkage: Fix issue with missing symbol size Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 395/879] ACPI: AGDI: Fix missing prototype warning for acpi_agdi_init() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 396/879] drm/msm/disp/dpu1: avoid clearing hw interrupts if hw_intr is null during drm uninit Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 397/879] drm/msm/dsi: fix address for second DSI PHY on SDM660 Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 398/879] drm/msm/dp: fix event thread stuck in wait_event after kthread_stop() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 399/879] drm/msm/mdp5: Return error code in mdp5_pipe_release when deadlock is detected Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 400/879] drm/msm/mdp5: Return error code in mdp5_mixer_release " Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 401/879] drm/msm: return an error pointer in msm_gem_prime_get_sg_table() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 402/879] media: uvcvideo: Fix missing check to determine if element is found in list Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 403/879] arm64: stackleak: fix current_top_of_stack() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 404/879] iomap: iomap_write_failed fix Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 405/879] spi: spi-fsl-qspi: check return value after calling platform_get_resource_byname() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 406/879] selftests/bpf: Prevent skeleton generation race Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 407/879] Revert "cpufreq: Fix possible race in cpufreq online error path" Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 408/879] regulator: qcom_smd: Fix up PM8950 regulator configuration Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 409/879] samples: bpf: Dont fail for a missing VMLINUX_BTF when VMLINUX_H is provided Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 410/879] perf/amd/ibs: Use interrupt regs ip for stack unwinding Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 411/879] ath11k: Dont check arvif->is_started before sending management frames Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 412/879] scsi: lpfc: Fix element offset in __lpfc_sli_release_iocbq_s4() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 413/879] scsi: lpfc: Fix dmabuf ptr assignment in lpfc_ct_reject_event() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 414/879] wilc1000: fix crash observed in AP mode with cfg80211_register_netdevice() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 415/879] HID: amd_sfh: Modify the bus name Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 416/879] HID: amd_sfh: Modify the hid name Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 417/879] ASoC: fsl: Fix refcount leak in imx_sgtl5000_probe Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 418/879] ASoC: imx-hdmi: Fix refcount leak in imx_hdmi_probe Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 419/879] ASoC: mxs-saif: Fix refcount leak in mxs_saif_probe Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 420/879] regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.18 421/879] PM: EM: Decrement policy counter Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 422/879] dma-direct: dont fail on highmem CMA pages in dma_direct_alloc_pages Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 423/879] ASoC: samsung: Fix refcount leak in aries_audio_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 424/879] block: Fix the bio.bi_opf comment Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 425/879] kselftest/cgroup: fix test_stress.sh to use OUTPUT dir Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 426/879] scripts/faddr2line: Fix overlapping text section failures Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 427/879] media: aspeed: Fix an error handling path in aspeed_video_probe() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 428/879] media: exynos4-is: Fix PM disable depth imbalance in fimc_is_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 429/879] mt76: mt7915: fix DBDC default band selection on MT7915D Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 430/879] mt76: mt7921: honor pm user configuration in mt7921_sniffer_interface_iter Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 431/879] mt76: mt7915: fix unbounded shift in mt7915_mcu_beacon_mbss Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 432/879] mt76: mt7921: Fix the error handling path of mt7921_pci_probe() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 433/879] mt76: mt7915: fix possible uninitialized pointer dereference in mt7986_wmac_gpio_setup Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 434/879] mt76: mt7915: fix possible NULL pointer dereference in mt7915_mac_fill_rx_vector Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 435/879] mt76: mt7915: do not pass data pointer to mt7915_mcu_muru_debug_set Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 436/879] mt76: mt7915: report rx mode value in mt7915_mac_fill_rx_rate Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 437/879] mt76: fix antenna config missing in 6G cap Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 438/879] mt76: mt7921: fix kernel crash at mt7921_pci_remove Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 439/879] mt76: do not attempt to reorder received 802.3 packets without agg session Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 440/879] mt76: fix tx status related use-after-free race on station removal Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 441/879] mt76: mt7915: fix twt table_mask to u16 in mt7915_dev Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 442/879] media: st-delta: Fix PM disable depth imbalance in delta_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 443/879] media: atmel: atmel-isc: Fix PM disable depth imbalance in atmel_isc_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 444/879] media: i2c: rdacm2x: properly set subdev entity function Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 445/879] media: exynos4-is: Change clk_disable to clk_disable_unprepare Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 446/879] media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 447/879] media: make RADIO_ADAPTERS tristate Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 448/879] media: vsp1: Fix offset calculation for plane cropping Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 449/879] media: atmel: atmel-sama5d2-isc: fix wrong mask in YUYV format check Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 450/879] media: hantro: HEVC: Fix tile info buffer value computation Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 451/879] Bluetooth: mt7921s: Fix the incorrect pointer check Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 452/879] Bluetooth: fix dangling sco_conn and use-after-free in sco_sock_timeout Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 453/879] Bluetooth: use hdev lock in activate_scan for hci_is_adv_monitoring Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 454/879] Bluetooth: use hdev lock for accept_list and reject_list in conn req Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 455/879] Bluetooth: protect le accept and resolv lists with hdev->lock Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 456/879] Bluetooth: btmtksdio: fix use-after-free at btmtksdio_recv_event Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 457/879] Bluetooth: btmtksdio: fix possible FW initialization failure Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 458/879] Bluetooth: btmtksdio: fix the reset takes too long Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 459/879] media: mediatek: vcodec: Fix v4l2 compliance decoder cmd test fail Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 460/879] io_uring: avoid io-wq -EAGAIN looping for !IOPOLL Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 461/879] io_uring: only wake when the correct events are set Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 462/879] irqchip/gic-v3: Ensure pseudo-NMIs have an ISB between ack and handling Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 463/879] irqchip/gic-v3: Refactor ISB + EOIR at ack time Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 464/879] irqchip/gic-v3: Fix priority mask handling Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 465/879] nvme: set dma alignment to dword Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 466/879] m68k: math-emu: Fix dependencies of math emulation support Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 467/879] net: annotate races around sk->sk_bound_dev_if Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 468/879] sctp: read sk->sk_bound_dev_if once in sctp_rcv() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 469/879] net: hinic: add missing destroy_workqueue in hinic_pf_to_mgmt_init Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 470/879] ASoC: ti: j721e-evm: Fix refcount leak in j721e_soc_probe_* Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 471/879] kselftest/arm64: bti: force static linking Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 472/879] media: ov7670: remove ov7670_power_off from ov7670_remove Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 473/879] media: i2c: ov2640: Depend on V4L2_ASYNC Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 474/879] media: i2c: ov5648: fix wrong pointer passed to IS_ERR() and PTR_ERR() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 475/879] media: rkvdec: Stop overclocking the decoder Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 476/879] media: rkvdec: h264: Fix dpb_valid implementation Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 477/879] media: rkvdec: h264: Fix bit depth wrap in pps packet Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 478/879] regulator: scmi: Fix refcount leak in scmi_regulator_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 479/879] blk-cgroup: always terminate io.stat lines Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 480/879] erofs: fix buffer copy overflow of ztailpacking feature Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.18 481/879] net/mlx5e: Correct the calculation of max channels for rep Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 482/879] ext4: reject the commit option on ext2 filesystems Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 483/879] drm/msm/dsi: dont powerup at modeset time for parade-ps8640 Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 484/879] drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 485/879] drm: msm: fix possible memory leak in mdp5_crtc_cursor_set() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 486/879] x86/sev: Annotate stack change in the #VC handler Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 487/879] drm/msm: dont free the IRQ if it was not requested Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 488/879] selftests/bpf: Add missed ima_setup.sh in Makefile Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 489/879] drm/msm/dpu: handle pm_runtime_get_sync() errors in bind path Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 490/879] drm/i915: Fix CFI violation with show_dynamic_id() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 491/879] thermal/drivers/bcm2711: Dont clamp temperature at zero Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 492/879] thermal/drivers/broadcom: Fix potential NULL dereference in sr_thermal_probe Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 493/879] thermal/core: Fix memory leak in __thermal_cooling_device_register() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 494/879] thermal/drivers/imx_sc_thermal: Fix refcount leak in imx_sc_thermal_probe Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 495/879] bfq: Relax waker detection for shared queues Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 496/879] bfq: Allow current waker to defend against a tentative one Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 497/879] ASoC: codecs: lpass: Fix passing zero to PTR_ERR Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 498/879] ASoC: wm2000: fix missing clk_disable_unprepare() on error in wm2000_anc_transition() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 499/879] cpuidle: psci: Fix regression leading to no genpd governor Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 500/879] cpuidle: riscv-sbi: Fix code to allow a genpd governor to be used Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 501/879] platform/x86: intel_cht_int33fe: Set driver data Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 502/879] PM: domains: Fix initialization of genpds next_wakeup Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 503/879] net: macb: Fix PTP one step sync support Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 504/879] scsi: hisi_sas: Fix rescan after deleting a disk Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 505/879] scsi: hisi_sas: Fix memory ordering in hisi_sas_task_deliver() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 506/879] NFC: hci: fix sleep in atomic context bugs in nfc_hci_hcp_message_tx Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 507/879] bonding: fix missed rcu protection Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 508/879] ASoC: max98090: Move check for invalid values before casting in max98090_put_enab_tlv() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 509/879] perf parse-events: Support different format of the topdown event name Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 510/879] net: stmmac: fix out-of-bounds access in a selftest Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 511/879] amt: fix gateway mode stuck Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 512/879] amt: fix memory leak for advertisement message Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 513/879] hv_netvsc: Fix potential dereference of NULL pointer Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 514/879] hwmon: (dimmtemp) Fix bitmap handling Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 515/879] hwmon: (pmbus) Check PEC support before reading other registers Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 516/879] rxrpc: Fix locking issue Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 517/879] rxrpc: Fix listen() setting the bar too high for the prealloc rings Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 518/879] rxrpc: Dont try to resend the request if were receiving the reply Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 519/879] rxrpc: Fix overlapping ACK accounting Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 520/879] rxrpc: Dont let ack.previousPacket regress Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 521/879] rxrpc: Fix decision on when to generate an IDLE ACK Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 522/879] hinic: Avoid some over memory allocation Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 523/879] dpaa2-eth: retrieve the virtual address before dma_unmap Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 524/879] dpaa2-eth: use the correct software annotation field Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 525/879] dpaa2-eth: unmap the SGT buffer before accessing its contents Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 526/879] net: dsa: restrict SMSC_LAN9303_I2C kconfig Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 527/879] net/smc: postpone sk_refcnt increment in connect() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 528/879] net/smc: fix listen processing for SMC-Rv2 Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 529/879] dma-direct: dont over-decrypt memory Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 530/879] Bluetooth: hci_conn: Fix hci_connect_le_sync Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 531/879] Revert "net/smc: fix listen processing for SMC-Rv2" Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 532/879] media: lirc: revert removal of unused feature flags Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 533/879] arm64: dts: rockchip: Move drive-impedance-ohm to emmc phy on rk3399 Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 534/879] arm64: dts: mt8192: Fix nor_flash status disable typo Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 535/879] PCI/ACPI: Allow D3 only if Root Port can signal and wake from D3 Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 536/879] memory: samsung: exynos5422-dmc: Avoid some over memory allocation Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 537/879] ARM: dts: BCM5301X: Update pin controller node name Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 538/879] ARM: dts: suniv: F1C100: fix watchdog compatible Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 539/879] soc: qcom: smp2p: Fix missing of_node_put() in smp2p_parse_ipc Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 540/879] soc: qcom: smsm: Fix missing of_node_put() in smsm_parse_ipc Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.18 541/879] arm64: defconfig: reenable SM_DISPCC_8250 Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 542/879] PCI: cadence: Fix find_first_zero_bit() limit Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 543/879] PCI: rockchip: " Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 544/879] PCI: mediatek: Fix refcount leak in mtk_pcie_subsys_powerup() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 545/879] PCI: dwc: Fix setting error return on MSI DMA mapping failure Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 546/879] ARM: dts: ci4x10: Adapt to changes in imx6qdl.dtsi regarding fec clocks Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 547/879] arm64: dts: qcom: sc7280: Fix sar1_irq_odl node name Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 548/879] arm64: dts: qcom: sc7280-herobrine: Drop outputs on fpmcu pins Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 549/879] soc: qcom: llcc: Add MODULE_DEVICE_TABLE() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 550/879] cxl/pci: Add debug for DVSEC range init failures Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 551/879] cxl/pci: Make cxl_dvsec_ranges() failure not fatal to cxl_pci Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 552/879] KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 553/879] KVM: nVMX: Clear IDT vectoring on nested VM-Exit for double/triple fault Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 554/879] arm64: dts: juno: Fix SCMI power domain IDs for ETF and CS funnel Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 555/879] crypto: qat - set CIPHER capability for DH895XCC Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 556/879] crypto: qat - set COMPRESSION " Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 557/879] platform/chrome: cros_ec: fix error handling in cros_ec_register() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 558/879] ARM: dts: imx6dl-colibri: Fix I2C pinmuxing Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 559/879] platform/chrome: Re-introduce cros_ec_cmd_xfer and use it for ioctls Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 560/879] can: xilinx_can: mark bit timing constants as const Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 561/879] ARM: dts: stm32: Fix PHY post-reset delay on Avenger96 Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 562/879] dt-bindings: soc: qcom: smd-rpm: Fix missing MSM8936 compatible Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 563/879] ARM: dts: qcom: sdx55: remove wrong unit address from RPMH RSC clocks Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 564/879] arm64: dts: qcom: sm8450: Fix missing iommus for qup Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 565/879] arm64: dts: qcom: sm8450: Fix missing iommus for qup1 Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 566/879] ARM: dts: bcm2835-rpi-zero-w: Fix GPIO line name for Wifi/BT Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 567/879] ARM: dts: bcm2837-rpi-cm3-io3: Fix GPIO line names for SMPS I2C Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 568/879] ARM: dts: bcm2837-rpi-3-b-plus: Fix GPIO line name of power LED Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 569/879] ARM: dts: bcm2835-rpi-b: Fix GPIO line names Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 570/879] misc: ocxl: fix possible double free in ocxl_file_register_afu Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 571/879] hwrng: cn10k - Optimize cn10k_rng_read() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 572/879] hwrng: cn10k - Make check_rng_health() return an error code Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 573/879] crypto: marvell/cesa - ECB does not IV Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 574/879] gpiolib: of: Introduce hook for missing gpio-ranges Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 575/879] pinctrl: bcm2835: implement " Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 576/879] drm/msm: simplify gpu_busy callback Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 577/879] drm/msm: return the average load over the polling period Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 578/879] arm: mediatek: select arch timer for mt7629 Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 579/879] pinctrl/rockchip: support deferring other gpio params Greg Kroah-Hartman
2022-06-08 10:25   ` Caleb Connolly
2022-06-08 10:32     ` Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 580/879] pinctrl: mediatek: mt8195: enable driver on mtk platforms Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 581/879] arm64: dts: qcom: qrb5165-rb5: Fix can-clock node name Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 582/879] Drivers: hv: vmbus: Fix handling of messages with transaction ID of zero Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 583/879] powerpc/fadump: fix PT_LOAD segment for boot memory area Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 584/879] mfd: ipaq-micro: Fix error check return value of platform_get_irq() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 585/879] scsi: fcoe: Fix Wstringop-overflow warnings in fcoe_wwn_from_mac() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 586/879] soc: bcm: Check for NULL return of devm_kzalloc() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 587/879] arm64: dts: ti: k3-am64-mcu: remove incorrect UART base clock rates Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 588/879] ASoC: sh: rz-ssi: Propagate error codes returned from platform_get_irq_byname() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 589/879] ASoC: sh: rz-ssi: Release the DMA channels in rz_ssi_probe() error path Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 590/879] firmware: arm_scmi: Fix list protocols enumeration in the base protocol Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 591/879] nvdimm: Fix firmware activation deadlock scenarios Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 592/879] nvdimm: Allow overwrite in the presence of disabled dimms Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 593/879] pinctrl: mvebu: Fix irq_of_parse_and_map() return value Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 594/879] crypto: ccp - Fix the INIT_EX data file open failure Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 595/879] drivers/base/node.c: fix compaction sysfs file leak Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 596/879] dax: fix cache flush on PMD-mapped pages Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 597/879] drivers/base/memory: fix an unlikely reference counting issue in __add_memory_block() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 598/879] firmware: arm_ffa: Fix uuid parameter to ffa_partition_probe Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 599/879] firmware: arm_ffa: Remove incorrect assignment of driver_data Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 600/879] ocfs2: fix mounting crash if journal is not alloced Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.18 601/879] list: fix a data-race around ep->rdllist Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 602/879] drm/msm/dpu: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 603/879] powerpc/8xx: export cpm_setbrg for modules Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 604/879] pinctrl: renesas: r8a779a0: Fix GPIO function on I2C-capable pins Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 605/879] pinctrl: renesas: r8a779f0: " Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 606/879] pinctrl: renesas: core: Fix possible null-ptr-deref in sh_pfc_map_resources() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 607/879] powerpc/idle: Fix return value of __setup() handler Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 608/879] powerpc/4xx/cpm: " Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 609/879] RDMA/hns: Add the detection for CMDQ status in the device initialization process Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 610/879] arm64: dts: marvell: espressobin-ultra: fix SPI-NOR config Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 611/879] arm64: dts: marvell: espressobin-ultra: enable front USB3 port Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 612/879] ASoC: atmel-pdmic: Remove endianness flag on pdmic component Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 613/879] ASoC: atmel-classd: Remove endianness flag on class d component Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 614/879] proc: fix dentry/inode overinstantiating under /proc/${pid}/net Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 615/879] ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 616/879] PCI: imx6: Fix PERST# start-up sequence Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 617/879] PCI: mediatek-gen3: Assert resets to ensure expected init state Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 618/879] module.h: simplify MODULE_IMPORT_NS Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 619/879] module: fix [e_shstrndx].sh_size=0 OOB access Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 620/879] tty: fix deadlock caused by calling printk() under tty_port->lock Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 621/879] crypto: sun8i-ss - rework handling of IV Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 622/879] crypto: sun8i-ss - handle zero sized sg Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 623/879] crypto: cryptd - Protect per-CPU resource by disabling BH Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 624/879] ARM: dts: at91: sama7g5: remove interrupt-parent from gic node Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 625/879] ARM: dts: lan966x: swap dma channels for crypto node Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 626/879] hugetlbfs: fix hugetlbfs_statfs() locking Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 627/879] x86/mce: relocate set{clear}_mce_nospec() functions Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 628/879] mce: fix set_mce_nospec to always unmap the whole page Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 629/879] Input: sparcspkr - fix refcount leak in bbc_beep_probe Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 630/879] PCI/AER: Clear MULTI_ERR_COR/UNCOR_RCV bits Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 631/879] KVM: PPC: Book3S HV: Fix vcore_blocked tracepoint Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 632/879] PCI: microchip: Fix potential race in interrupt handling Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 633/879] cxl/mem: Drop mem_enabled check from wait_for_media() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 634/879] hwrng: omap3-rom - fix using wrong clk_disable() in omap_rom_rng_runtime_resume() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 635/879] perf evlist: Keep topdown counters in weak group Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 636/879] perf stat: Always keep perf metrics topdown events in a group Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 637/879] mailbox: pcc: Fix an invalid-load caught by the address sanitizer Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 638/879] powerpc/64: Only WARN if __pa()/__va() called with bad addresses Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 639/879] powerpc/powernv: Get L1D flush requirements from device-tree Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 640/879] powerpc/powernv: Get STF barrier " Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 641/879] powerpc/perf: Fix the threshold compare group constraint for power10 Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 642/879] powerpc/perf: Fix the threshold compare group constraint for power9 Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 643/879] macintosh: via-pmu and via-cuda need RTC_LIB Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 644/879] powerpc/xive: Fix refcount leak in xive_spapr_init Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 645/879] powerpc/fsl_rio: Fix refcount leak in fsl_rio_setup Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 646/879] powerpc/papr_scm: Fix leaking nvdimm_events_map elements Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 647/879] powerpc/fsl_book3e: Dont set rodata RO too early Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 648/879] gpio: sim: Use correct order for the parameters of devm_kcalloc() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 649/879] mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 650/879] nfsd: destroy percpu stats counters after reply cache shutdown Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 651/879] mailbox: forward the hrtimer if not queued and under a lock Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 652/879] RDMA/rxe: Fix an error handling path in rxe_get_mcg() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 653/879] RDMA/hfi1: Prevent use of lock before it is initialized Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 654/879] pinctrl: apple: Use a raw spinlock for the regmap Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 655/879] KVM: LAPIC: Drop pending LAPIC timer injection when canceling the timer Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 656/879] Input: stmfts - do not leave device disabled in stmfts_input_open Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 657/879] OPP: call of_node_put() on error path in _bandwidth_supported() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 658/879] dmaengine: ti: k3-psil-am62: Update PSIL thread for saul Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 659/879] f2fs: fix to do sanity check on inline_dots inode Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 660/879] f2fs: fix dereference of stale list iterator after loop body Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.18 661/879] riscv: Fixup difference with defconfig Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 662/879] iommu/amd: Enable swiotlb in all cases Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 663/879] iommu/amd: Do not call sleep while holding spinlock Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 664/879] iommu/mediatek: Fix 2 HW sharing pgtable issue Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 665/879] iommu/mediatek: Add list_del in mtk_iommu_remove Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 666/879] iommu/mediatek: Remove clk_disable " Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 667/879] iommu/mediatek: Add mutex for m4u_group and m4u_dom in data Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 668/879] i2c: at91: use dma safe buffers Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 669/879] cpufreq: mediatek: Use module_init and add module_exit Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 670/879] cpufreq: mediatek: Unregister platform device on exit Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 671/879] iommu/arm-smmu-v3-sva: Fix mm use-after-free Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 672/879] MIPS: Loongson: Use hwmon_device_register_with_groups() to register hwmon Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 673/879] iommu/mediatek: Fix NULL pointer dereference when printing dev_name Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 674/879] i2c: at91: Initialize dma_buf in at91_twi_xfer() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 675/879] dmaengine: idxd: Fix the error handling path in idxd_cdev_register() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 676/879] NFS: Do not report EINTR/ERESTARTSYS as mapping errors Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 677/879] NFS: fsync() should report filesystem errors over EINTR/ERESTARTSYS Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 678/879] NFS: Dont report ENOSPC write errors twice Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 679/879] NFS: Do not report flush errors in nfs_write_end() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 680/879] NFS: Dont report errors from nfs_pageio_complete() more than once Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 681/879] NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 682/879] NFS: Further fixes to the writeback error handling Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 683/879] NFS: Pass i_size to fscache_unuse_cookie() when a file is released Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 684/879] video: fbdev: clcdfb: Fix refcount leak in clcdfb_of_vram_setup Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 685/879] dmaengine: stm32-mdma: remove GISR1 register Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 686/879] dmaengine: stm32-mdma: fix chan initialization in stm32_mdma_irq_handler() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 687/879] iommu/amd: Increase timeout waiting for GA log enablement Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 688/879] i2c: npcm: Fix timeout calculation Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 689/879] i2c: npcm: Correct register access width Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 690/879] i2c: npcm: Handle spurious interrupts Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 691/879] i2c: rcar: fix PM ref counts in probe error paths Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 692/879] tracing: Reset the function filter after completing trampoline/graph selftest Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 693/879] RISC-V: Split out the XIP fixups into their own file Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 694/879] RISC-V: Fix the XIP build Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 695/879] MIPS: RALINK: Define pci_remap_iospace under CONFIG_PCI_DRIVERS_GENERIC Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 696/879] perf build: Fix btf__load_from_kernel_by_id() feature check Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 697/879] perf c2c: Use stdio interface if slang is not supported Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 698/879] rtla: Avoid record NULL pointer dereference Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 699/879] rtla: Dont overwrite existing directory mode Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 700/879] rtla: Minor grammar fix for rtla README Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 701/879] rtla: Fix __set_sched_attr error message Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 702/879] rtla: Remove procps-ng dependency Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 703/879] tracing/timerlat: Notify IRQ new max latency only if stop tracing is set Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 704/879] perf jevents: Fix event syntax error caused by ExtSel Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 705/879] video: fbdev: vesafb: Fix a use-after-free due early fb_info cleanup Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 706/879] NFSv4: Fix free of uninitialized nfs4_label on referral lookup Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 707/879] NFSv4.1 mark qualified async operations as MOVEABLE tasks Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 708/879] f2fs: fix to avoid f2fs_bug_on() in dec_valid_node_count() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 709/879] f2fs: fix to do sanity check on block address in f2fs_do_zero_range() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 710/879] f2fs: fix to clear dirty inode in f2fs_evict_inode() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 711/879] f2fs: fix deadloop in foreground GC Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 712/879] f2fs: dont need inode lock for system hidden quota Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 713/879] f2fs: fix to do sanity check on total_data_blocks Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 714/879] f2fs: dont use casefolded comparison for "." and ".." Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 715/879] f2fs: fix fallocate to use file_modified to update permissions consistently Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 716/879] f2fs: fix to do sanity check for inline inode Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 717/879] objtool: Fix objtool regression on x32 systems Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 718/879] objtool: Fix symbol creation Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 719/879] wifi: mac80211: fix use-after-free in chanctx code Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 720/879] iwlwifi: fw: init SAR GEO table only if data is present Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.18 721/879] iwlwifi: mvm: fix assert 1F04 upon reconfig Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 722/879] iwlwifi: mei: clear the sap data header before sending Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 723/879] iwlwifi: mei: fix potential NULL-ptr deref Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 724/879] ipmi:ipmb: Fix refcount leak in ipmi_ipmb_probe Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 725/879] fs-writeback: writeback_sb_inodes:Recalculate wrote according skipped pages Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 726/879] efi: Do not import certificates from UEFI Secure Boot for T2 Macs Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 727/879] bfq: Avoid false marking of bic as stably merged Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 728/879] bfq: Avoid merging queues with different parents Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 729/879] bfq: Split shared queues on move between cgroups Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 730/879] bfq: Update cgroup information before merging bio Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 731/879] bfq: Drop pointless unlock-lock pair Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 732/879] bfq: Remove pointless bfq_init_rq() calls Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 733/879] bfq: Track whether bfq_group is still online Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 734/879] bfq: Get rid of __bio_blkcg() usage Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 735/879] bfq: Make sure bfqg for which we are queueing requests is online Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 736/879] ext4: mark group as trimmed only if it was fully scanned Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 737/879] ext4: fix use-after-free in ext4_rename_dir_prepare Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 738/879] ext4: fix journal_ioprio mount option handling Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 739/879] ext4: fix race condition between ext4_write and ext4_convert_inline_data Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 740/879] ext4: fix warning in ext4_handle_inode_extension Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 741/879] ext4: fix memory leak in parse_apply_sb_mount_options() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 742/879] ext4: fix bug_on in ext4_writepages Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 743/879] ext4: filter out EXT4_FC_REPLAY from on-disk superblock field s_state Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 744/879] ext4: fix bug_on in __es_tree_search Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 745/879] ext4: verify dir block before splitting it Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 746/879] ext4: avoid cycles in directory h-tree Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 747/879] ACPI: property: Release subnode properties with data nodes Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 748/879] tty: goldfish: Introduce gf_ioread32()/gf_iowrite32() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 749/879] tracing: Have event format check not flag %p* on __get_dynamic_array() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 750/879] tracing: Fix potential double free in create_var_ref() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 751/879] tracing: Fix return value of trace_pid_write() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 752/879] tracing: Initialize integer variable to prevent garbage return value Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 753/879] drm/amdgpu: add beige goby PCI ID Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 754/879] PCI/PM: Fix bridge_d3_blacklist[] Elo i2 overwrite of Gigabyte X299 Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 755/879] PCI: qcom: Fix pipe clock imbalance Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 756/879] PCI: qcom: Fix runtime PM imbalance on probe errors Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 757/879] PCI: qcom: Fix unbalanced PHY init " Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 758/879] staging: r8188eu: prevent ->Ssid overflow in rtw_wx_set_scan() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 759/879] block: Fix potential deadlock in blk_ia_range_sysfs_show() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 760/879] mm, compaction: fast_find_migrateblock() should return pfn in the target zone Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 761/879] s390/perf: obtain sie_block from the right address Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 762/879] s390/stp: clock_delta should be signed Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 763/879] dlm: fix plock invalid read Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 764/879] dlm: uninitialized variable on error in dlm_listen_for_all() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 765/879] dlm: fix wake_up() calls for pending remove Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 766/879] dlm: fix missing lkb refcount handling Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 767/879] ocfs2: dlmfs: fix error handling of user_dlm_destroy_lock Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 768/879] scsi: dc395x: Fix a missing check on list iterator Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 769/879] scsi: ufs: qcom: Add a readl() to make sure ref_clk gets enabled Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 770/879] landlock: Add clang-format exceptions Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 771/879] landlock: Format with clang-format Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 772/879] selftests/landlock: Add clang-format exceptions Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 773/879] selftests/landlock: Normalize array assignment Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 774/879] selftests/landlock: Format with clang-format Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 775/879] samples/landlock: Add clang-format exceptions Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 776/879] samples/landlock: Format with clang-format Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 777/879] landlock: Fix landlock_add_rule(2) documentation Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 778/879] selftests/landlock: Make tests build with old libc Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 779/879] selftests/landlock: Extend tests for minimal valid attribute size Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 780/879] selftests/landlock: Add tests for unknown access rights Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.18 781/879] selftests/landlock: Extend access right tests to directories Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 782/879] selftests/landlock: Fully test file rename with "remove" access Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 783/879] selftests/landlock: Add tests for O_PATH Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 784/879] landlock: Change landlock_add_rule(2) argument check ordering Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 785/879] landlock: Change landlock_restrict_self(2) " Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 786/879] selftests/landlock: Test landlock_create_ruleset(2) argument " Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 787/879] landlock: Define access_mask_t to enforce a consistent access mask size Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 788/879] landlock: Reduce the maximum number of layers to 16 Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 789/879] landlock: Create find_rule() from unmask_layers() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 790/879] landlock: Fix same-layer rule unions Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 791/879] drm/amdgpu/cs: make commands with 0 chunks illegal behaviour Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 792/879] drm/nouveau/subdev/bus: Ratelimit logging for fault errors Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 793/879] drm/etnaviv: check for reaped mapping in etnaviv_iommu_unmap_gem Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 794/879] drm/nouveau/clk: Fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 795/879] drm/nouveau/kms/nv50-: atom: fix " Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 796/879] drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 797/879] drm/i915/dsi: fix VBT send packet port selection for ICL+ Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 798/879] md: fix an incorrect NULL check in does_sb_need_changing Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 799/879] md: fix an incorrect NULL check in md_reload_sb Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 800/879] mtd: cfi_cmdset_0002: Move and rename chip_check/chip_ready/chip_good_for_write Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 801/879] mtd: cfi_cmdset_0002: Use chip_ready() for write on S29GL064N Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 802/879] media: coda: Fix reported H264 profile Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 803/879] media: coda: Add more H264 levels for CODA960 Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 804/879] ima: remove the IMA_TEMPLATE Kconfig option Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 805/879] Kconfig: Add option for asm goto w/ tied outputs to workaround clang-13 bug Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 806/879] lib/string_helpers: fix not adding strarray to devices resource list Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 807/879] RDMA/hfi1: Fix potential integer multiplication overflow errors Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 808/879] mmc: core: Allows to override the timeout value for ioctl() path Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 809/879] csky: patch_text: Fixup last cpu should be master Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 810/879] irqchip/armada-370-xp: Do not touch Performance Counter Overflow on A375, A38x, A39x Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 811/879] irqchip: irq-xtensa-mx: fix initial IRQ affinity Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 812/879] thermal: devfreq_cooling: use local ops instead of global ops Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 813/879] mt76: fix use-after-free by removing a non-RCU wcid pointer Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 814/879] cfg80211: declare MODULE_FIRMWARE for regulatory.db Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 815/879] mac80211: upgrade passive scan to active scan on DFS channels after beacon rx Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 816/879] um: virtio_uml: Fix broken device handling in time-travel Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 817/879] um: Use asm-generic/dma-mapping.h Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 818/879] um: chan_user: Fix winch_tramp() return value Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 819/879] um: Fix out-of-bounds read in LDT setup Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 820/879] MIPS: IP27: Remove incorrect `cpu_has_fpu override Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 821/879] MIPS: IP30: " Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 822/879] kexec_file: drop weak attribute from arch_kexec_apply_relocations[_add] Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 823/879] ftrace: Clean up hash direct_functions on register failures Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 824/879] ksmbd: fix outstanding credits related bugs Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 825/879] iommu/msm: Fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 826/879] iommu/dma: Fix iova map result check bug Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 827/879] kprobes: Fix build errors with CONFIG_KRETPROBES=n Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 828/879] Revert "mm/cma.c: remove redundant cma_mutex lock" Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 829/879] mm/page_owner: use strscpy() instead of strlcpy() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 830/879] mm/page_alloc: always attempt to allocate at least one page during bulk allocation Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 831/879] nodemask.h: fix compilation error with GCC12 Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 832/879] hugetlb: fix huge_pmd_unshare address update Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 833/879] mm/memremap: fix missing call to untrack_pfn() in pagemap_range() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 834/879] xtensa/simdisk: fix proc_read_simdisk() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 835/879] rtl818x: Prevent using not initialized queues Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 836/879] ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 837/879] carl9170: tx: fix an incorrect use of list iterator Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 838/879] stm: ltdc: fix two incorrect NULL checks on " Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 839/879] bcache: improve multithreaded bch_btree_check() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 840/879] bcache: improve multithreaded bch_sectors_dirty_init() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.18 841/879] bcache: remove incremental dirty sector counting for bch_sectors_dirty_init() Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 842/879] bcache: avoid journal no-space deadlock by reserving 1 journal bucket Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 843/879] serial: pch: dont overwrite xmit->buf[0] by x_char Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 844/879] tilcdc: tilcdc_external: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 845/879] gma500: " Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 846/879] arm64: dts: qcom: ipq8074: fix the sleep clock frequency Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 847/879] arm64: tegra: Add missing DFLL reset on Tegra210 Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 848/879] clk: tegra: Add missing reset deassertion Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 849/879] phy: qcom-qmp: fix struct clk leak on probe errors Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 850/879] ARM: dts: s5pv210: Remove spi-cs-high on panel in Aries Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 851/879] ARM: pxa: maybe fix gpio lookup tables Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 852/879] ceph: fix decoding of client session messages flags Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 853/879] misc: fastrpc: fix list iterator in fastrpc_req_mem_unmap_impl Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 854/879] SMB3: EBADF/EIO errors in rename/open caused by race condition in smb2_compound_op Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 855/879] docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0 Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 856/879] dt-bindings: gpio: altera: correct interrupt-cells Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 857/879] vdpasim: allow to enable a vq repeatedly Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 858/879] blk-iolatency: Fix inflight count imbalances and IO hangs on offline Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 859/879] coresight: core: Fix coresight device probe failure issue Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 860/879] phy: qcom-qmp: fix reset-controller leak on probe errors Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 861/879] net: ipa: fix page free in ipa_endpoint_trans_release() Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 862/879] net: ipa: fix page free in ipa_endpoint_replenish_one() Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 863/879] media: lirc: add missing exceptions for lirc uapi header file Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 864/879] kseltest/cgroup: Make test_stress.sh work if run interactively Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 865/879] perf evlist: Extend arch_evsel__must_be_in_group to support hybrid systems Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 866/879] Revert "random: use static branch for crng_ready()" Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 867/879] staging: r8188eu: delete rtw_wx_read/write32() Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 868/879] binder: fix sender_euid type in uapi header Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 869/879] RDMA/hns: Remove the num_cqc_timer variable Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 870/879] RDMA/rxe: Generate a completion for unsupported/invalid opcode Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 871/879] ext4: only allow test_dummy_encryption when supported Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 872/879] fs: add two trivial lookup helpers Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 873/879] exportfs: support idmapped mounts Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 874/879] fs/ntfs3: Fix invalid free in log_replay Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 875/879] md: Dont set mddev private to NULL in raid0 pers->free Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 876/879] md: fix double free of io_acct_set bioset Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 877/879] md: bcache: check the return value of kzalloc() in detached_dev_do_request() Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 878/879] macsec: fix UAF bug for real_dev Greg Kroah-Hartman
2022-06-07 17:06 ` [PATCH 5.18 879/879] tty: n_gsm: Fix packet data hex dump output Greg Kroah-Hartman
2022-06-08  0:45 ` [PATCH 5.18 000/879] 5.18.3-rc1 review Zan Aziz
2022-06-08  1:26 ` Shuah Khan
2022-06-08  6:54 ` Ron Economos
2022-06-08  9:19 ` Fenil Jain
2022-06-08 11:39 ` Naresh Kamboju
2022-06-08 19:16 ` Fox Chen
2022-06-08 20:21 ` Justin Forbes
2022-06-08 23:54 ` Guenter Roeck
2022-06-09  3:08 ` Bagas Sanjaya
2022-06-09  6:12 ` Jiri Slaby

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=20220607165012.816757520@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jacopo@jmondi.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=sashal@kernel.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;
as well as URLs for NNTP newsgroup(s).