patches.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	Christian Hewitt <christianshewitt@gmail.com>,
	Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 146/411] drm/meson: use unsigned long long / Hz for frequency types
Date: Mon, 23 Jun 2025 15:04:50 +0200	[thread overview]
Message-ID: <20250623130637.288916360@linuxfoundation.org> (raw)
In-Reply-To: <20250623130632.993849527@linuxfoundation.org>

5.15-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

[ Upstream commit 1017560164b6bbcbc93579266926e6e96675262a ]

Christian reports that 4K output using YUV420 encoding fails with the
following error:
  Fatal Error, invalid HDMI vclk freq 593406

Modetest shows the following:
  3840x2160 59.94 3840 4016 4104 4400 2160 2168 2178 2250 593407 flags: xxxx, xxxx,
  drm calculated value -------------------------------------^

This indicates that there's a (1kHz) mismatch between the clock
calculated by the drm framework and the meson driver.

Relevant function call stack:
(drm framework)
  -> meson_encoder_hdmi_atomic_enable()
    -> meson_encoder_hdmi_set_vclk()
      -> meson_vclk_setup()

The video clock requested by the drm framework is 593407kHz. This is
passed by meson_encoder_hdmi_atomic_enable() to
meson_encoder_hdmi_set_vclk() and the following formula is applied:
- the frequency is halved (which would be 296703.5kHz) and rounded down
  to the next full integer, which is 296703kHz
- TMDS clock is calculated (296703kHz * 10)
- video encoder clock is calculated - this needs to match a table from
  meson_vclk.c and so it doubles the previously halved value again
  (resulting in 593406kHz)
- meson_vclk_setup() can't find (either directly, or by deriving it from
  594000kHz * 1000 / 1001 and rounding to the closest integer value -
  which is 593407kHz as originally requested by the drm framework) a
  matching clock in it's internal table and errors out with "invalid
  HDMI vclk freq"

Fix the division precision by switching the whole meson driver to use
unsigned long long (64-bit) Hz values for clock frequencies instead of
unsigned int (32-bit) kHz to fix the rouding error.

Fixes: e5fab2ec9ca4 ("drm/meson: vclk: add support for YUV420 setup")
Reported-by: Christian Hewitt <christianshewitt@gmail.com>
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20250421201300.778955-3-martin.blumenstingl@googlemail.com
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20250421201300.778955-3-martin.blumenstingl@googlemail.com
Stable-dep-of: d17e61ab63fb ("drm/meson: fix debug log statement when setting the HDMI clocks")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/meson/meson_drv.c          |   2 +-
 drivers/gpu/drm/meson/meson_drv.h          |   2 +-
 drivers/gpu/drm/meson/meson_encoder_hdmi.c |  29 +--
 drivers/gpu/drm/meson/meson_vclk.c         | 195 +++++++++++----------
 drivers/gpu/drm/meson/meson_vclk.h         |  13 +-
 5 files changed, 126 insertions(+), 115 deletions(-)

diff --git a/drivers/gpu/drm/meson/meson_drv.c b/drivers/gpu/drm/meson/meson_drv.c
index 829aadc1258a1..2df2315b09755 100644
--- a/drivers/gpu/drm/meson/meson_drv.c
+++ b/drivers/gpu/drm/meson/meson_drv.c
@@ -166,7 +166,7 @@ static const struct meson_drm_soc_attr meson_drm_soc_attrs[] = {
 	/* S805X/S805Y HDMI PLL won't lock for HDMI PHY freq > 1,65GHz */
 	{
 		.limits = {
-			.max_hdmi_phy_freq = 1650000,
+			.max_hdmi_phy_freq = 1650000000,
 		},
 		.attrs = (const struct soc_device_attribute []) {
 			{ .soc_id = "GXL (S805*)", },
diff --git a/drivers/gpu/drm/meson/meson_drv.h b/drivers/gpu/drm/meson/meson_drv.h
index 177dac3ca3bea..2e4d7740974f5 100644
--- a/drivers/gpu/drm/meson/meson_drv.h
+++ b/drivers/gpu/drm/meson/meson_drv.h
@@ -31,7 +31,7 @@ struct meson_drm_match_data {
 };
 
 struct meson_drm_soc_limits {
-	unsigned int max_hdmi_phy_freq;
+	unsigned long long max_hdmi_phy_freq;
 };
 
 struct meson_drm {
diff --git a/drivers/gpu/drm/meson/meson_encoder_hdmi.c b/drivers/gpu/drm/meson/meson_encoder_hdmi.c
index b075c9bc3a500..95137c2d3c56d 100644
--- a/drivers/gpu/drm/meson/meson_encoder_hdmi.c
+++ b/drivers/gpu/drm/meson/meson_encoder_hdmi.c
@@ -68,12 +68,12 @@ static void meson_encoder_hdmi_set_vclk(struct meson_encoder_hdmi *encoder_hdmi,
 {
 	struct meson_drm *priv = encoder_hdmi->priv;
 	int vic = drm_match_cea_mode(mode);
-	unsigned int phy_freq;
-	unsigned int vclk_freq;
-	unsigned int venc_freq;
-	unsigned int hdmi_freq;
+	unsigned long long phy_freq;
+	unsigned long long vclk_freq;
+	unsigned long long venc_freq;
+	unsigned long long hdmi_freq;
 
-	vclk_freq = mode->clock;
+	vclk_freq = mode->clock * 1000;
 
 	/* For 420, pixel clock is half unlike venc clock */
 	if (encoder_hdmi->output_bus_fmt == MEDIA_BUS_FMT_UYYVYY8_0_5X24)
@@ -105,7 +105,8 @@ static void meson_encoder_hdmi_set_vclk(struct meson_encoder_hdmi *encoder_hdmi,
 	if (mode->flags & DRM_MODE_FLAG_DBLCLK)
 		venc_freq /= 2;
 
-	dev_dbg(priv->dev, "vclk:%d phy=%d venc=%d hdmi=%d enci=%d\n",
+	dev_dbg(priv->dev,
+		"vclk:%lluHz phy=%lluHz venc=%lluHz hdmi=%lluHz enci=%d\n",
 		phy_freq, vclk_freq, venc_freq, hdmi_freq,
 		priv->venc.hdmi_use_enci);
 
@@ -120,10 +121,11 @@ static enum drm_mode_status meson_encoder_hdmi_mode_valid(struct drm_bridge *bri
 	struct meson_encoder_hdmi *encoder_hdmi = bridge_to_meson_encoder_hdmi(bridge);
 	struct meson_drm *priv = encoder_hdmi->priv;
 	bool is_hdmi2_sink = display_info->hdmi.scdc.supported;
-	unsigned int phy_freq;
-	unsigned int vclk_freq;
-	unsigned int venc_freq;
-	unsigned int hdmi_freq;
+	unsigned long long clock = mode->clock * 1000;
+	unsigned long long phy_freq;
+	unsigned long long vclk_freq;
+	unsigned long long venc_freq;
+	unsigned long long hdmi_freq;
 	int vic = drm_match_cea_mode(mode);
 	enum drm_mode_status status;
 
@@ -142,12 +144,12 @@ static enum drm_mode_status meson_encoder_hdmi_mode_valid(struct drm_bridge *bri
 		if (status != MODE_OK)
 			return status;
 
-		return meson_vclk_dmt_supported_freq(priv, mode->clock);
+		return meson_vclk_dmt_supported_freq(priv, clock);
 	/* Check against supported VIC modes */
 	} else if (!meson_venc_hdmi_supported_vic(vic))
 		return MODE_BAD;
 
-	vclk_freq = mode->clock;
+	vclk_freq = clock;
 
 	/* For 420, pixel clock is half unlike venc clock */
 	if (drm_mode_is_420_only(display_info, mode) ||
@@ -177,7 +179,8 @@ static enum drm_mode_status meson_encoder_hdmi_mode_valid(struct drm_bridge *bri
 	if (mode->flags & DRM_MODE_FLAG_DBLCLK)
 		venc_freq /= 2;
 
-	dev_dbg(priv->dev, "%s: vclk:%d phy=%d venc=%d hdmi=%d\n",
+	dev_dbg(priv->dev,
+		"%s: vclk:%lluHz phy=%lluHz venc=%lluHz hdmi=%lluHz\n",
 		__func__, phy_freq, vclk_freq, venc_freq, hdmi_freq);
 
 	return meson_vclk_vic_supported_freq(priv, phy_freq, vclk_freq);
diff --git a/drivers/gpu/drm/meson/meson_vclk.c b/drivers/gpu/drm/meson/meson_vclk.c
index 2a82119eb58ed..3325580d885d0 100644
--- a/drivers/gpu/drm/meson/meson_vclk.c
+++ b/drivers/gpu/drm/meson/meson_vclk.c
@@ -110,7 +110,10 @@
 #define HDMI_PLL_LOCK		BIT(31)
 #define HDMI_PLL_LOCK_G12A	(3 << 30)
 
-#define FREQ_1000_1001(_freq)	DIV_ROUND_CLOSEST(_freq * 1000, 1001)
+#define PIXEL_FREQ_1000_1001(_freq)	\
+	DIV_ROUND_CLOSEST_ULL((_freq) * 1000ULL, 1001ULL)
+#define PHY_FREQ_1000_1001(_freq)	\
+	(PIXEL_FREQ_1000_1001(DIV_ROUND_DOWN_ULL(_freq, 10ULL)) * 10)
 
 /* VID PLL Dividers */
 enum {
@@ -360,11 +363,11 @@ enum {
 };
 
 struct meson_vclk_params {
-	unsigned int pll_freq;
-	unsigned int phy_freq;
-	unsigned int vclk_freq;
-	unsigned int venc_freq;
-	unsigned int pixel_freq;
+	unsigned long long pll_freq;
+	unsigned long long phy_freq;
+	unsigned long long vclk_freq;
+	unsigned long long venc_freq;
+	unsigned long long pixel_freq;
 	unsigned int pll_od1;
 	unsigned int pll_od2;
 	unsigned int pll_od3;
@@ -372,11 +375,11 @@ struct meson_vclk_params {
 	unsigned int vclk_div;
 } params[] = {
 	[MESON_VCLK_HDMI_ENCI_54000] = {
-		.pll_freq = 4320000,
-		.phy_freq = 270000,
-		.vclk_freq = 54000,
-		.venc_freq = 54000,
-		.pixel_freq = 54000,
+		.pll_freq = 4320000000,
+		.phy_freq = 270000000,
+		.vclk_freq = 54000000,
+		.venc_freq = 54000000,
+		.pixel_freq = 54000000,
 		.pll_od1 = 4,
 		.pll_od2 = 4,
 		.pll_od3 = 1,
@@ -384,11 +387,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_DDR_54000] = {
-		.pll_freq = 4320000,
-		.phy_freq = 270000,
-		.vclk_freq = 54000,
-		.venc_freq = 54000,
-		.pixel_freq = 27000,
+		.pll_freq = 4320000000,
+		.phy_freq = 270000000,
+		.vclk_freq = 54000000,
+		.venc_freq = 54000000,
+		.pixel_freq = 27000000,
 		.pll_od1 = 4,
 		.pll_od2 = 4,
 		.pll_od3 = 1,
@@ -396,11 +399,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_DDR_148500] = {
-		.pll_freq = 2970000,
-		.phy_freq = 742500,
-		.vclk_freq = 148500,
-		.venc_freq = 148500,
-		.pixel_freq = 74250,
+		.pll_freq = 2970000000,
+		.phy_freq = 742500000,
+		.vclk_freq = 148500000,
+		.venc_freq = 148500000,
+		.pixel_freq = 74250000,
 		.pll_od1 = 4,
 		.pll_od2 = 1,
 		.pll_od3 = 1,
@@ -408,11 +411,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_74250] = {
-		.pll_freq = 2970000,
-		.phy_freq = 742500,
-		.vclk_freq = 74250,
-		.venc_freq = 74250,
-		.pixel_freq = 74250,
+		.pll_freq = 2970000000,
+		.phy_freq = 742500000,
+		.vclk_freq = 74250000,
+		.venc_freq = 74250000,
+		.pixel_freq = 74250000,
 		.pll_od1 = 2,
 		.pll_od2 = 2,
 		.pll_od3 = 2,
@@ -420,11 +423,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_148500] = {
-		.pll_freq = 2970000,
-		.phy_freq = 1485000,
-		.vclk_freq = 148500,
-		.venc_freq = 148500,
-		.pixel_freq = 148500,
+		.pll_freq = 2970000000,
+		.phy_freq = 1485000000,
+		.vclk_freq = 148500000,
+		.venc_freq = 148500000,
+		.pixel_freq = 148500000,
 		.pll_od1 = 1,
 		.pll_od2 = 2,
 		.pll_od3 = 2,
@@ -432,11 +435,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_297000] = {
-		.pll_freq = 5940000,
-		.phy_freq = 2970000,
-		.venc_freq = 297000,
-		.vclk_freq = 297000,
-		.pixel_freq = 297000,
+		.pll_freq = 5940000000,
+		.phy_freq = 2970000000,
+		.venc_freq = 297000000,
+		.vclk_freq = 297000000,
+		.pixel_freq = 297000000,
 		.pll_od1 = 2,
 		.pll_od2 = 1,
 		.pll_od3 = 1,
@@ -444,11 +447,11 @@ struct meson_vclk_params {
 		.vclk_div = 2,
 	},
 	[MESON_VCLK_HDMI_594000] = {
-		.pll_freq = 5940000,
-		.phy_freq = 5940000,
-		.venc_freq = 594000,
-		.vclk_freq = 594000,
-		.pixel_freq = 594000,
+		.pll_freq = 5940000000,
+		.phy_freq = 5940000000,
+		.venc_freq = 594000000,
+		.vclk_freq = 594000000,
+		.pixel_freq = 594000000,
 		.pll_od1 = 1,
 		.pll_od2 = 1,
 		.pll_od3 = 2,
@@ -456,11 +459,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_594000_YUV420] = {
-		.pll_freq = 5940000,
-		.phy_freq = 2970000,
-		.venc_freq = 594000,
-		.vclk_freq = 594000,
-		.pixel_freq = 297000,
+		.pll_freq = 5940000000,
+		.phy_freq = 2970000000,
+		.venc_freq = 594000000,
+		.vclk_freq = 594000000,
+		.pixel_freq = 297000000,
 		.pll_od1 = 2,
 		.pll_od2 = 1,
 		.pll_od3 = 1,
@@ -617,16 +620,16 @@ static void meson_hdmi_pll_set_params(struct meson_drm *priv, unsigned int m,
 				3 << 20, pll_od_to_reg(od3) << 20);
 }
 
-#define XTAL_FREQ 24000
+#define XTAL_FREQ (24 * 1000 * 1000)
 
 static unsigned int meson_hdmi_pll_get_m(struct meson_drm *priv,
-					 unsigned int pll_freq)
+					 unsigned long long pll_freq)
 {
 	/* The GXBB PLL has a /2 pre-multiplier */
 	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB))
-		pll_freq /= 2;
+		pll_freq = DIV_ROUND_DOWN_ULL(pll_freq, 2);
 
-	return pll_freq / XTAL_FREQ;
+	return DIV_ROUND_DOWN_ULL(pll_freq, XTAL_FREQ);
 }
 
 #define HDMI_FRAC_MAX_GXBB	4096
@@ -635,12 +638,13 @@ static unsigned int meson_hdmi_pll_get_m(struct meson_drm *priv,
 
 static unsigned int meson_hdmi_pll_get_frac(struct meson_drm *priv,
 					    unsigned int m,
-					    unsigned int pll_freq)
+					    unsigned long long pll_freq)
 {
-	unsigned int parent_freq = XTAL_FREQ;
+	unsigned long long parent_freq = XTAL_FREQ;
 	unsigned int frac_max = HDMI_FRAC_MAX_GXL;
 	unsigned int frac_m;
 	unsigned int frac;
+	u32 remainder;
 
 	/* The GXBB PLL has a /2 pre-multiplier and a larger FRAC width */
 	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
@@ -652,11 +656,11 @@ static unsigned int meson_hdmi_pll_get_frac(struct meson_drm *priv,
 		frac_max = HDMI_FRAC_MAX_G12A;
 
 	/* We can have a perfect match !*/
-	if (pll_freq / m == parent_freq &&
-	    pll_freq % m == 0)
+	if (div_u64_rem(pll_freq, m, &remainder) == parent_freq &&
+	    remainder == 0)
 		return 0;
 
-	frac = div_u64((u64)pll_freq * (u64)frac_max, parent_freq);
+	frac = mul_u64_u64_div_u64(pll_freq, frac_max, parent_freq);
 	frac_m = m * frac_max;
 	if (frac_m > frac)
 		return frac_max;
@@ -666,7 +670,7 @@ static unsigned int meson_hdmi_pll_get_frac(struct meson_drm *priv,
 }
 
 static bool meson_hdmi_pll_validate_params(struct meson_drm *priv,
-					   unsigned int m,
+					   unsigned long long m,
 					   unsigned int frac)
 {
 	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
@@ -694,7 +698,7 @@ static bool meson_hdmi_pll_validate_params(struct meson_drm *priv,
 }
 
 static bool meson_hdmi_pll_find_params(struct meson_drm *priv,
-				       unsigned int freq,
+				       unsigned long long freq,
 				       unsigned int *m,
 				       unsigned int *frac,
 				       unsigned int *od)
@@ -706,7 +710,7 @@ static bool meson_hdmi_pll_find_params(struct meson_drm *priv,
 			continue;
 		*frac = meson_hdmi_pll_get_frac(priv, *m, freq * *od);
 
-		DRM_DEBUG_DRIVER("PLL params for %dkHz: m=%x frac=%x od=%d\n",
+		DRM_DEBUG_DRIVER("PLL params for %lluHz: m=%x frac=%x od=%d\n",
 				 freq, *m, *frac, *od);
 
 		if (meson_hdmi_pll_validate_params(priv, *m, *frac))
@@ -718,7 +722,7 @@ static bool meson_hdmi_pll_find_params(struct meson_drm *priv,
 
 /* pll_freq is the frequency after the OD dividers */
 enum drm_mode_status
-meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned int freq)
+meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned long long freq)
 {
 	unsigned int od, m, frac;
 
@@ -741,7 +745,7 @@ EXPORT_SYMBOL_GPL(meson_vclk_dmt_supported_freq);
 
 /* pll_freq is the frequency after the OD dividers */
 static void meson_hdmi_pll_generic_set(struct meson_drm *priv,
-				       unsigned int pll_freq)
+				       unsigned long long pll_freq)
 {
 	unsigned int od, m, frac, od1, od2, od3;
 
@@ -756,7 +760,7 @@ static void meson_hdmi_pll_generic_set(struct meson_drm *priv,
 			od1 = od / od2;
 		}
 
-		DRM_DEBUG_DRIVER("PLL params for %dkHz: m=%x frac=%x od=%d/%d/%d\n",
+		DRM_DEBUG_DRIVER("PLL params for %lluHz: m=%x frac=%x od=%d/%d/%d\n",
 				 pll_freq, m, frac, od1, od2, od3);
 
 		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
@@ -764,17 +768,18 @@ static void meson_hdmi_pll_generic_set(struct meson_drm *priv,
 		return;
 	}
 
-	DRM_ERROR("Fatal, unable to find parameters for PLL freq %d\n",
+	DRM_ERROR("Fatal, unable to find parameters for PLL freq %lluHz\n",
 		  pll_freq);
 }
 
 enum drm_mode_status
-meson_vclk_vic_supported_freq(struct meson_drm *priv, unsigned int phy_freq,
-			      unsigned int vclk_freq)
+meson_vclk_vic_supported_freq(struct meson_drm *priv,
+			      unsigned long long phy_freq,
+			      unsigned long long vclk_freq)
 {
 	int i;
 
-	DRM_DEBUG_DRIVER("phy_freq = %d vclk_freq = %d\n",
+	DRM_DEBUG_DRIVER("phy_freq = %lluHz vclk_freq = %lluHz\n",
 			 phy_freq, vclk_freq);
 
 	/* Check against soc revision/package limits */
@@ -785,19 +790,19 @@ meson_vclk_vic_supported_freq(struct meson_drm *priv, unsigned int phy_freq,
 	}
 
 	for (i = 0 ; params[i].pixel_freq ; ++i) {
-		DRM_DEBUG_DRIVER("i = %d pixel_freq = %d alt = %d\n",
+		DRM_DEBUG_DRIVER("i = %d pixel_freq = %lluHz alt = %lluHz\n",
 				 i, params[i].pixel_freq,
-				 FREQ_1000_1001(params[i].pixel_freq));
-		DRM_DEBUG_DRIVER("i = %d phy_freq = %d alt = %d\n",
+				 PIXEL_FREQ_1000_1001(params[i].pixel_freq));
+		DRM_DEBUG_DRIVER("i = %d phy_freq = %lluHz alt = %lluHz\n",
 				 i, params[i].phy_freq,
-				 FREQ_1000_1001(params[i].phy_freq/10)*10);
+				 PHY_FREQ_1000_1001(params[i].phy_freq));
 		/* Match strict frequency */
 		if (phy_freq == params[i].phy_freq &&
 		    vclk_freq == params[i].vclk_freq)
 			return MODE_OK;
 		/* Match 1000/1001 variant */
-		if (phy_freq == (FREQ_1000_1001(params[i].phy_freq/10)*10) &&
-		    vclk_freq == FREQ_1000_1001(params[i].vclk_freq))
+		if (phy_freq == PHY_FREQ_1000_1001(params[i].phy_freq) &&
+		    vclk_freq == PIXEL_FREQ_1000_1001(params[i].vclk_freq))
 			return MODE_OK;
 	}
 
@@ -805,8 +810,9 @@ meson_vclk_vic_supported_freq(struct meson_drm *priv, unsigned int phy_freq,
 }
 EXPORT_SYMBOL_GPL(meson_vclk_vic_supported_freq);
 
-static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
-			   unsigned int od1, unsigned int od2, unsigned int od3,
+static void meson_vclk_set(struct meson_drm *priv,
+			   unsigned long long pll_base_freq, unsigned int od1,
+			   unsigned int od2, unsigned int od3,
 			   unsigned int vid_pll_div, unsigned int vclk_div,
 			   unsigned int hdmi_tx_div, unsigned int venc_div,
 			   bool hdmi_use_enci, bool vic_alternate_clock)
@@ -826,15 +832,15 @@ static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
 		meson_hdmi_pll_generic_set(priv, pll_base_freq);
 	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 		switch (pll_base_freq) {
-		case 2970000:
+		case 2970000000:
 			m = 0x3d;
 			frac = vic_alternate_clock ? 0xd02 : 0xe00;
 			break;
-		case 4320000:
+		case 4320000000:
 			m = vic_alternate_clock ? 0x59 : 0x5a;
 			frac = vic_alternate_clock ? 0xe8f : 0;
 			break;
-		case 5940000:
+		case 5940000000:
 			m = 0x7b;
 			frac = vic_alternate_clock ? 0xa05 : 0xc00;
 			break;
@@ -844,15 +850,15 @@ static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
 	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL)) {
 		switch (pll_base_freq) {
-		case 2970000:
+		case 2970000000:
 			m = 0x7b;
 			frac = vic_alternate_clock ? 0x281 : 0x300;
 			break;
-		case 4320000:
+		case 4320000000:
 			m = vic_alternate_clock ? 0xb3 : 0xb4;
 			frac = vic_alternate_clock ? 0x347 : 0;
 			break;
-		case 5940000:
+		case 5940000000:
 			m = 0xf7;
 			frac = vic_alternate_clock ? 0x102 : 0x200;
 			break;
@@ -861,15 +867,15 @@ static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
 		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
 	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) {
 		switch (pll_base_freq) {
-		case 2970000:
+		case 2970000000:
 			m = 0x7b;
 			frac = vic_alternate_clock ? 0x140b4 : 0x18000;
 			break;
-		case 4320000:
+		case 4320000000:
 			m = vic_alternate_clock ? 0xb3 : 0xb4;
 			frac = vic_alternate_clock ? 0x1a3ee : 0;
 			break;
-		case 5940000:
+		case 5940000000:
 			m = 0xf7;
 			frac = vic_alternate_clock ? 0x8148 : 0x10000;
 			break;
@@ -1025,14 +1031,14 @@ static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
 }
 
 void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
-		      unsigned int phy_freq, unsigned int vclk_freq,
-		      unsigned int venc_freq, unsigned int dac_freq,
+		      unsigned long long phy_freq, unsigned long long vclk_freq,
+		      unsigned long long venc_freq, unsigned long long dac_freq,
 		      bool hdmi_use_enci)
 {
 	bool vic_alternate_clock = false;
-	unsigned int freq;
-	unsigned int hdmi_tx_div;
-	unsigned int venc_div;
+	unsigned long long freq;
+	unsigned long long hdmi_tx_div;
+	unsigned long long venc_div;
 
 	if (target == MESON_VCLK_TARGET_CVBS) {
 		meson_venci_cvbs_clock_config(priv);
@@ -1052,27 +1058,27 @@ void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
 		return;
 	}
 
-	hdmi_tx_div = vclk_freq / dac_freq;
+	hdmi_tx_div = DIV_ROUND_DOWN_ULL(vclk_freq, dac_freq);
 
 	if (hdmi_tx_div == 0) {
-		pr_err("Fatal Error, invalid HDMI-TX freq %d\n",
+		pr_err("Fatal Error, invalid HDMI-TX freq %lluHz\n",
 		       dac_freq);
 		return;
 	}
 
-	venc_div = vclk_freq / venc_freq;
+	venc_div = DIV_ROUND_DOWN_ULL(vclk_freq, venc_freq);
 
 	if (venc_div == 0) {
-		pr_err("Fatal Error, invalid HDMI venc freq %d\n",
+		pr_err("Fatal Error, invalid HDMI venc freq %lluHz\n",
 		       venc_freq);
 		return;
 	}
 
 	for (freq = 0 ; params[freq].pixel_freq ; ++freq) {
 		if ((phy_freq == params[freq].phy_freq ||
-		     phy_freq == FREQ_1000_1001(params[freq].phy_freq/10)*10) &&
+		     phy_freq == PHY_FREQ_1000_1001(params[freq].phy_freq)) &&
 		    (vclk_freq == params[freq].vclk_freq ||
-		     vclk_freq == FREQ_1000_1001(params[freq].vclk_freq))) {
+		     vclk_freq == PIXEL_FREQ_1000_1001(params[freq].vclk_freq))) {
 			if (vclk_freq != params[freq].vclk_freq)
 				vic_alternate_clock = true;
 			else
@@ -1098,7 +1104,8 @@ void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
 	}
 
 	if (!params[freq].pixel_freq) {
-		pr_err("Fatal Error, invalid HDMI vclk freq %d\n", vclk_freq);
+		pr_err("Fatal Error, invalid HDMI vclk freq %lluHz\n",
+		       vclk_freq);
 		return;
 	}
 
diff --git a/drivers/gpu/drm/meson/meson_vclk.h b/drivers/gpu/drm/meson/meson_vclk.h
index 60617aaf18dd1..7ac55744e5749 100644
--- a/drivers/gpu/drm/meson/meson_vclk.h
+++ b/drivers/gpu/drm/meson/meson_vclk.h
@@ -20,17 +20,18 @@ enum {
 };
 
 /* 27MHz is the CVBS Pixel Clock */
-#define MESON_VCLK_CVBS			27000
+#define MESON_VCLK_CVBS			(27 * 1000 * 1000)
 
 enum drm_mode_status
-meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned int freq);
+meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned long long freq);
 enum drm_mode_status
-meson_vclk_vic_supported_freq(struct meson_drm *priv, unsigned int phy_freq,
-			      unsigned int vclk_freq);
+meson_vclk_vic_supported_freq(struct meson_drm *priv,
+			      unsigned long long phy_freq,
+			      unsigned long long vclk_freq);
 
 void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
-		      unsigned int phy_freq, unsigned int vclk_freq,
-		      unsigned int venc_freq, unsigned int dac_freq,
+		      unsigned long long phy_freq, unsigned long long vclk_freq,
+		      unsigned long long venc_freq, unsigned long long dac_freq,
 		      bool hdmi_use_enci);
 
 #endif /* __MESON_VCLK_H */
-- 
2.39.5




  parent reply	other threads:[~2025-06-23 21:17 UTC|newest]

Thread overview: 427+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-23 13:02 [PATCH 5.15 000/411] 5.15.186-rc1 review Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 001/411] tracing: Fix compilation warning on arm32 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 002/411] pinctrl: armada-37xx: use correct OUTPUT_VAL register for GPIOs > 31 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 003/411] pinctrl: armada-37xx: set GPIO output value before setting direction Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 004/411] acpi-cpufreq: Fix nominal_freq units to KHz in get_max_boost_ratio() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 005/411] rtc: Make rtc_time64_to_tm() support dates before 1970 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 006/411] rtc: Fix offset calculation for .start_secs < 0 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 007/411] usb: quirks: Add NO_LPM quirk for SanDisk Extreme 55AE Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 008/411] usb: storage: Ignore UAS driver for SanDisk 3.2 Gen2 storage device Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 009/411] USB: serial: pl2303: add new chip PL2303GC-Q20 and PL2303GT-2AB Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 010/411] usb: usbtmc: Fix timeout value in get_stb Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 011/411] thunderbolt: Do not double dequeue a configuration request Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 012/411] gfs2: gfs2_create_inode error handling fix Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 013/411] perf/core: Fix broken throttling when max_samples_per_tick=1 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 014/411] crypto: sun8i-ss - do not use sg_dma_len before calling DMA functions Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 015/411] x86/cpu: Sanitize CPUID(0x80000000) output Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 016/411] crypto: marvell/cesa - Handle zero-length skcipher requests Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 017/411] crypto: marvell/cesa - Avoid empty transfer descriptor Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 018/411] crypto: lrw - Only add ecb if it is not already there Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 019/411] crypto: xts " Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 020/411] crypto: sun8i-ce - move fallback ahash_request to the end of the struct Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 021/411] EDAC/skx_common: Fix general protection fault Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 022/411] power: reset: at91-reset: Optimize at91_reset() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 023/411] PM: wakeup: Delete space in the end of string shown by pm_show_wakelocks() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 024/411] x86/mtrr: Check if fixed-range MTRRs exist in mtrr_save_fixed_ranges() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 025/411] ACPI: OSI: Stop advertising support for "3.0 _SCP Extensions" Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 026/411] spi: sh-msiof: Fix maximum DMA transfer size Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 027/411] drm/amd/pp: Fix potential NULL pointer dereference in atomctrl_initialize_mc_reg_table Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 028/411] media: rkvdec: Fix frame size enumeration Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 029/411] fs/ntfs3: handle hdr_first_de() return value Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 030/411] m68k: mac: Fix macintosh_config for Mac II Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 031/411] firmware: psci: Fix refcount leak in psci_dt_init Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 032/411] selftests/seccomp: fix syscall_restart test for arm compat Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 033/411] drm: rcar-du: Fix memory leak in rcar_du_vsps_init() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 034/411] drm/vkms: Adjust vkms_state->active_planes allocation type Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 035/411] drm/tegra: rgb: Fix the unbound reference count Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 036/411] firmware: SDEI: Allow sdei initialization without ACPI_APEI_GHES Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 037/411] wifi: ath11k: fix node corruption in ar->arvifs list Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 038/411] IB/cm: use rwlock for MAD agent lock Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 039/411] bpf, sockmap: fix duplicated data transmission Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 040/411] f2fs: fix to do sanity check on sbi->total_valid_block_count Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 041/411] net: ncsi: Fix GCPS 64-bit member variables Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 042/411] libbpf: Fix buffer overflow in bpf_object__init_prog Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 043/411] wifi: rtw88: do not ignore hardware read error during DPK Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 045/411] iommu: Protect against overflow in iommu_pgsize() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 046/411] f2fs: clean up w/ fscrypt_is_bounce_page() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 047/411] f2fs: fix to detect gcing page in f2fs_is_cp_guaranteed() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 048/411] libbpf: Use proper errno value in linker Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 049/411] netfilter: bridge: Move specific fragmented packet to slow_path instead of dropping it Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 050/411] netfilter: nft_quota: match correctly when the quota just depleted Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 051/411] RDMA/mlx5: Fix error flow upon firmware failure for RQ destruction Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 052/411] bpf: Fix uninitialized values in BPF_{CORE,PROBE}_READ Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 053/411] clk: qcom: gcc-sm6350: Add *_wait_val values for GDSCs Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 054/411] clk: bcm: rpi: Add NULL check in raspberrypi_clk_register() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 055/411] ktls, sockmap: Fix missing uncharge operation Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 056/411] libbpf: Use proper errno value in nlattr Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 057/411] pinctrl: at91: Fix possible out-of-boundary access Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 058/411] bpf: Fix WARN() in get_bpf_raw_tp_regs Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 059/411] clk: qcom: gcc-msm8939: Fix mclk0 & mclk1 for 24 MHz Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 060/411] s390/bpf: Store backchain even for leaf progs Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 061/411] wifi: rtw88: fix the para buffer size to avoid reading out of bounds Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 062/411] wifi: ath9k_htc: Abort software beacon handling if disabled Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 063/411] netfilter: nf_tables: nft_fib_ipv6: fix VRF ipv4/ipv6 result discrepancy Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 064/411] vfio/type1: Fix error unwind in migration dirty bitmap allocation Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 065/411] bpf, sockmap: Avoid using sk_socket after free when sending Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 066/411] netfilter: nft_tunnel: fix geneve_opt dump Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 067/411] net: usb: aqc111: fix error handling of usbnet read calls Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 068/411] bpf: Avoid __bpf_prog_ret0_warn when jit fails Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 069/411] net: lan743x: rename lan743x_reset_phy to lan743x_hw_reset_phy Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 070/411] calipso: Dont call calipso functions for AF_INET sk Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 071/411] net: openvswitch: Fix the dead loop of MPLS parse Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 072/411] net: phy: mscc: Stop clearing the the UDPv4 checksum for L2 frames Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 073/411] f2fs: use d_inode(dentry) cleanup dentry->d_inode Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 074/411] f2fs: fix to correct check conditions in f2fs_cross_rename Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 075/411] ARM: dts: at91: usb_a9263: fix GPIO for Dataflash chip select Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 076/411] ARM: dts: at91: at91sam9263: fix NAND chip selects Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 077/411] arm64: dts: imx8mm-beacon: Fix RTC capacitive load Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 078/411] arm64: dts: imx8mn-beacon: " Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 079/411] Squashfs: check return result of sb_min_blocksize Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 080/411] ocfs2: fix possible memory leak in ocfs2_finish_quota_recovery Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 081/411] nilfs2: add pointer check for nilfs_direct_propagate() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 082/411] nilfs2: do not propagate ENOENT error from nilfs_btree_propagate() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 083/411] bus: fsl-mc: fix double-free on mc_dev Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 084/411] ARM: dts: qcom: apq8064 merge hw splinlock into corresponding syscon device Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 085/411] arm64: dts: rockchip: disable unrouted USB controllers and PHY on RK3399 Puma with Haikou Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 086/411] soc: aspeed: lpc: Fix impossible judgment condition Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 087/411] soc: aspeed: Add NULL check in aspeed_lpc_enable_snoop() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 088/411] fbdev: core: fbcvt: avoid division by 0 in fb_cvt_hperiod() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 089/411] randstruct: gcc-plugin: Remove bogus void member Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 090/411] randstruct: gcc-plugin: Fix attribute addition Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 091/411] perf build: Warn when libdebuginfod devel files are not available Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 092/411] perf ui browser hists: Set actions->thread before calling do_zoom_thread() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 093/411] backlight: pm8941: Add NULL check in wled_configure() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 094/411] perf scripts python: exported-sql-viewer.py: Fix pattern matching with Python 3 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 095/411] remoteproc: qcom_wcnss_iris: Add missing put_device() on error in probe Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 096/411] rpmsg: qcom_smd: Fix uninitialized return variable in __qcom_smd_send() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 097/411] mfd: exynos-lpass: Avoid calling exynos_lpass_disable() twice in exynos_lpass_remove() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 098/411] mfd: stmpe-spi: Correct the name used in MODULE_DEVICE_TABLE Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 099/411] perf tests switch-tracking: Fix timestamp comparison Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 100/411] perf record: Fix incorrect --user-regs comments Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 101/411] nfs: clear SB_RDONLY before getting superblock Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 102/411] nfs: ignore SB_RDONLY when remounting nfs Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 103/411] rtc: sh: assign correct interrupts with DT Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 104/411] PCI: cadence: Fix runtime atomic count underflow Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 105/411] dmaengine: ti: Add NULL check in udma_probe() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 106/411] PCI/DPC: Initialize aer_err_info before using it Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 107/411] usb: renesas_usbhs: Reorder clock handling and power management in probe Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 108/411] serial: Fix potential null-ptr-deref in mlb_usio_probe() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 109/411] iio: adc: ad7124: Fix 3dB filter frequency reading Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 110/411] MIPS: Loongson64: Add missing #interrupt-cells for loongson64c_ls7a Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 111/411] vt: remove VT_RESIZE and VT_RESIZEX from vt_compat_ioctl() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 112/411] net: stmmac: platform: guarantee uniqueness of bus_id Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 113/411] gve: Fix RX_BUFFERS_POSTED stat to report per-queue fill_cnt Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 114/411] net: tipc: fix refcount warning in tipc_aead_encrypt Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 115/411] driver: net: ethernet: mtk_star_emac: fix suspend/resume issue Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 116/411] net/mlx4_en: Prevent potential integer overflow calculating Hz Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 117/411] spi: bcm63xx-spi: fix shared reset Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 118/411] spi: bcm63xx-hsspi: " Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 119/411] Bluetooth: L2CAP: Fix not responding with L2CAP_CR_LE_ENCRYPTION Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 120/411] ice: create new Tx scheduler nodes for new queues only Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 121/411] net: dsa: tag_brcm: legacy: fix pskb_may_pull length Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 122/411] vmxnet3: correctly report gso type for UDP tunnels Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 123/411] PM: sleep: Fix power.is_suspended cleanup for direct-complete devices Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 124/411] gve: add missing NULL check for gve_alloc_pending_packet() in TX DQO Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 125/411] netfilter: nf_set_pipapo_avx2: fix initial map fill Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 126/411] wireguard: device: enable threaded NAPI Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 127/411] seg6: Fix validation of nexthop addresses Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 128/411] fix propagation graph breakage by MOVE_MOUNT_SET_GROUP move_mount(2) Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 129/411] do_change_type(): refuse to operate on unmounted/not ours mounts Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 130/411] pmdomain: core: Fix error checking in genpd_dev_pm_attach_by_id() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 131/411] Input: synaptics-rmi4 - convert to use sysfs_emit() APIs Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 132/411] Input: synaptics-rmi - fix crash with unsupported versions of F34 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 133/411] arm64: dts: ti: k3-am65-main: Drop deprecated ti,otap-del-sel property Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 134/411] arm64: dts: ti: k3-am65-main: Fix sdhci node properties Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 135/411] arm64: dts: ti: k3-am65-main: Add missing taps to sdhci0 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 136/411] serial: sh-sci: Check if TX data was written to device in .tx_empty() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 137/411] serial: sh-sci: Move runtime PM enable to sci_probe_single() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 138/411] serial: sh-sci: Clean sci_ports[0] after at earlycon exit Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 139/411] scsi: core: ufs: Fix a hang in the error handler Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 140/411] ptp: remove ptp->n_vclocks check logic in ptp_vclock_in_use() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 141/411] ath10k: snoc: fix unbalanced IRQ enable in crash recovery Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 142/411] scsi: iscsi: Fix incorrect error path labels for flashnode operations Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 143/411] net_sched: sch_sfq: fix a potential crash on gso_skb handling Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 144/411] powerpc/powernv/memtrace: Fix out of bounds issue in memtrace mmap Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 145/411] powerpc/vas: Return -EINVAL if the offset is non-zero in mmap() Greg Kroah-Hartman
2025-06-23 13:04 ` Greg Kroah-Hartman [this message]
2025-06-23 13:04 ` [PATCH 5.15 147/411] drm/meson: fix debug log statement when setting the HDMI clocks Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 148/411] drm/meson: use vclk_freq instead of pixel_freq in debug print Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 149/411] drm/meson: fix more rounding issues with 59.94Hz modes Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 150/411] i40e: return false from i40e_reset_vf if reset is in progress Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 151/411] i40e: retry VFLR handling if there is ongoing VF reset Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 152/411] net: Fix TOCTOU issue in sk_is_readable() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 153/411] macsec: MACsec SCI assignment for ES = 0 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 154/411] net: mdio: C22 is now optional, EOPNOTSUPP if not provided Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 155/411] net/mdiobus: Fix potential out-of-bounds read/write access Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 156/411] net/mlx5: Ensure fw pages are always allocated on same NUMA Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 157/411] net/mlx5: Fix return value when searching for existing flow group Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 158/411] net_sched: prio: fix a race in prio_tune() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 159/411] net_sched: red: fix a race in __red_change() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 160/411] net_sched: tbf: fix a race in tbf_change() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 161/411] sch_ets: make est_qlen_notify() idempotent Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 162/411] net_sched: ets: fix a race in ets_qdisc_change() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 163/411] fs/filesystems: Fix potential unsigned integer underflow in fs_name() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 164/411] nvmet-fcloop: access fcpreq only when holding reqlock Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 165/411] perf: Ensure bpf_perf_link path is properly serialized Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 166/411] ALSA: usb-audio: Add implicit feedback quirk for RODE AI-1 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 167/411] posix-cpu-timers: fix race between handle_posix_cpu_timers() and posix_cpu_timer_del() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 168/411] x86/boot/compressed: prefer cc-option for CFLAGS additions Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 169/411] MIPS: Move -Wa,-msoft-float check from as-option to cc-option Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 170/411] MIPS: Prefer cc-option for additions to cflags Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 171/411] kbuild: Update assembler calls to use proper flags and language target Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 172/411] drm/amd/display: Do not add -mhard-float to dml_ccflags for clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 173/411] mips: Include KBUILD_CPPFLAGS in CHECKFLAGS invocation Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 175/411] kbuild: add $(CLANG_FLAGS) to KBUILD_CPPFLAGS Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 176/411] kbuild: Add KBUILD_CPPFLAGS to as-option invocation Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 177/411] drm/amd/display: Do not add -mhard-float to dcn2{1,0}_resource.o for clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 178/411] usb: usbtmc: Fix read_stb function and get_stb ioctl Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 179/411] VMCI: fix race between vmci_host_setup_notify and vmci_ctx_unset_notify Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 180/411] usb: cdnsp: Fix issue with detecting command completion event Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 181/411] usb: cdnsp: Fix issue with detecting USB 3.2 speed Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 182/411] usb: Flush altsetting 0 endpoints before reinitializating them after reset Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 183/411] usb: typec: tcpm/tcpci_maxim: Fix bounds check in process_rx() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 184/411] xen/arm: call uaccess_ttbr0_enable for dm_op hypercall Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 185/411] x86/iopl: Cure TIF_IO_BITMAP inconsistencies Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 186/411] calipso: unlock rcu before returning -EAFNOSUPPORT Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 187/411] net: usb: aqc111: debug info before sanitation Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 188/411] drm/meson: Use 1000ULL when operating with mode->clock Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 189/411] kbuild: userprogs: fix bitsize and target detection on clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 190/411] kbuild: hdrcheck: fix cross build with clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 191/411] xfs: allow inode inactivation during a ro mount log recovery Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 192/411] configfs: Do not override creating attribute file failure in populate_attrs() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 193/411] crypto: marvell/cesa - Do not chain submitted requests Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 194/411] gfs2: move msleep to sleepable context Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 195/411] ASoC: qcom: sdm845: Add error handling in sdm845_slim_snd_hw_params() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 196/411] ASoC: meson: meson-card-utils: use of_property_present() for DT parsing Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 197/411] powerpc/pseries/msi: Avoid reading PCI device registers in reduced power states Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 198/411] net/mlx5_core: Add error handling inmlx5_query_nic_vport_qkey_viol_cntr() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 199/411] net/mlx5: Add error handling in mlx5_query_nic_vport_node_guid() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 200/411] wifi: p54: prevent buffer-overflow in p54_rx_eeprom_readback() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 201/411] nfsd: nfsd4_spo_must_allow() must check this is a v4 compound request Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 202/411] nfsd: Initialize ssc before laundromat_work to prevent NULL dereference Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 203/411] jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 204/411] wifi: rtlwifi: disable ASPM for RTL8723BE with subsystem ID 11ad:1723 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 205/411] media: ov8856: suppress probe deferral errors Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 206/411] media: ccs-pll: Start VT pre-PLL multiplier search from correct value Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 207/411] media: ccs-pll: Start OP " Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 208/411] media: ccs-pll: Correct the upper limit of maximum op_pre_pll_clk_div Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 209/411] media: ccs-pll: Check for too high VT PLL multiplier in dual PLL case Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 210/411] media: cxusb: no longer judge rbuf when the write fails Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 211/411] media: gspca: Add error handling for stv06xx_read_sensor() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 212/411] media: v4l2-dev: fix error handling in __video_register_device() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 213/411] media: venus: Fix probe error handling Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 214/411] media: videobuf2: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 215/411] media: vidtv: Terminating the subsequent process of initialization failure Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 216/411] media: vivid: Change the siize of the composing Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 217/411] media: uvcvideo: Return the number of processed controls Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 218/411] media: uvcvideo: Send control events for partial succeeds Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 219/411] media: uvcvideo: Fix deferred probing error Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 220/411] ARM: 9447/1: arm/memremap: fix arch_memremap_can_ram_remap() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 221/411] ARM: omap: pmic-cpcap: do not mess around without CPCAP or OMAP4 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 222/411] bus: mhi: host: Fix conflict between power_up and SYSERR Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 223/411] can: tcan4x5x: fix power regulator retrieval during probe Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 224/411] ata: pata_via: Force PIO for ATAPI devices on VT6415/VT6330 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 225/411] bus: fsl-mc: do not add a device-link for the UAPI used DPMCP device Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 226/411] bus: fsl-mc: fix GET/SET_TAILDROP command ids Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 227/411] ext4: inline: fix len overflow in ext4_prepare_inline_data Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 228/411] ext4: fix calculation of credits for extent tree modification Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 229/411] ext4: factor out ext4_get_maxbytes() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 230/411] ext4: ensure i_size is smaller than maxbytes Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 231/411] Input: ims-pcu - check record size in ims_pcu_flash_firmware() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 232/411] f2fs: prevent kernel warning due to negative i_nlink from corrupted image Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 233/411] f2fs: fix to do sanity check on sit_bitmap_size Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 234/411] NFC: nci: uart: Set tty->disc_data only in success path Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 235/411] EDAC/altera: Use correct write width with the INTTEST register Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 236/411] fbdev: Fix fb_set_var to prevent null-ptr-deref in fb_videomode_to_var Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 237/411] vgacon: Add check for vc_origin address range in vgacon_scroll() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 238/411] parisc: fix building with gcc-15 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 239/411] clk: meson-g12a: add missing fclk_div2 to spicc Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 240/411] ipc: fix to protect IPCS lookups using RCU Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 241/411] RDMA/iwcm: Fix use-after-free of work objects after cm_id destruction Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 242/411] mm: fix ratelimit_pages update error in dirty_ratio_handler() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 243/411] mtd: rawnand: sunxi: Add randomizer configuration in sunxi_nfc_hw_ecc_write_chunk Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 244/411] mtd: nand: sunxi: Add randomizer configuration before randomizer enable Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 245/411] dm-mirror: fix a tiny race condition Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 246/411] ftrace: Fix UAF when lookup kallsym after ftrace disabled Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 247/411] net: ch9200: fix uninitialised access during mii_nway_restart Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 248/411] staging: iio: ad5933: Correct settling cycles encoding per datasheet Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 249/411] mips: Add -std= flag specified in KBUILD_CFLAGS to vdso CFLAGS Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 250/411] regulator: max14577: Add error check for max14577_read_reg() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 251/411] remoteproc: core: Cleanup acquired resources when rproc_handle_resources() fails in rproc_attach() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 252/411] remoteproc: core: Release rproc->clean_table after rproc_attach() fails Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 253/411] uio_hv_generic: Use correct size for interrupt and monitor pages Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 254/411] PCI: cadence-ep: Correct PBA offset in .set_msix() callback Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 255/411] PCI: Add ACS quirk for Loongson PCIe Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 256/411] PCI: Fix lock symmetry in pci_slot_unlock() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 257/411] PCI: dw-rockchip: Fix PHY function call sequence in rockchip_pcie_phy_deinit() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 258/411] iio: accel: fxls8962af: Fix temperature scan element sign Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 259/411] iio: imu: inv_icm42600: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 260/411] iio: adc: ad7606_spi: fix reg write value mask Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 261/411] ACPICA: fix acpi operand cache leak in dswstate.c Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 262/411] clocksource: Fix the CPUs choice in the watchdog per CPU verification Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 263/411] ACPICA: Avoid sequence overread in call to strncmp() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 264/411] ASoC: tas2770: Power cycle amp on ISENSE/VSENSE change Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 265/411] ACPI: bus: Bail out if acpi_kobj registration fails Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 266/411] ACPICA: fix acpi parse and parseext cache leaks Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 267/411] power: supply: bq27xxx: Retrieve again when busy Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 268/411] ACPICA: utilities: Fix overflow check in vsnprintf() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 269/411] ASoC: tegra210_ahub: Add check to of_device_get_match_data() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 270/411] PM: runtime: fix denying of auto suspend in pm_suspend_timer_fn() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 271/411] ACPI: battery: negate current when discharging Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 272/411] drm/amdgpu/gfx6: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 273/411] sunrpc: update nextcheck time when adding new cache entries Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 274/411] drm/bridge: analogix_dp: Add irq flag IRQF_NO_AUTOEN instead of calling disable_irq() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 275/411] exfat: fix double free in delayed_free Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 276/411] drm/bridge: anx7625: change the gpiod_set_value API Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 277/411] media: i2c: imx334: Enable runtime PM before sub-device registration Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 278/411] drm/msm/hdmi: add runtime PM calls to DDC transfer function Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 279/411] media: uapi: v4l: Fix V4L2_TYPE_IS_OUTPUT condition Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 280/411] drm/amd/display: Add NULL pointer checks in dm_force_atomic_commit() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 281/411] drm/msm/a6xx: Increase HFI response timeout Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 282/411] media: i2c: imx334: Fix runtime PM handling in remove function Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 283/411] drm/amdgpu/gfx10: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 284/411] media: ccs-pll: Better validate VT PLL branch Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 285/411] media: uapi: v4l: Change V4L2_TYPE_IS_CAPTURE condition Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 286/411] drm/amdgpu/gfx7: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 287/411] ext4: ext4: unify EXT4_EX_NOCACHE|NOFAIL flags in ext4_ext_remove_space() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 288/411] jfs: fix array-index-out-of-bounds read in add_missing_indices Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 289/411] media: ti: cal: Fix wrong goto on error path Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 290/411] media: rkvdec: Initialize the m2m context before the controls Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 291/411] sunrpc: fix race in cache cleanup causing stale nextcheck time Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 292/411] ext4: prevent stale extent cache entries caused by concurrent get es_cache Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 293/411] drm/amdgpu/gfx8: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 294/411] drm/amdgpu/gfx9: " Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 295/411] jfs: Fix null-ptr-deref in jfs_ioc_trim Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 296/411] drm/msm/dpu: dont select single flush for active CTL blocks Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 297/411] drm/amdkfd: Set SDMA_RLCx_IB_CNTL/SWITCH_INSIDE_IB Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 298/411] media: tc358743: ignore video while HPD is low Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 299/411] media: platform: exynos4-is: Add hardware sync wait to fimc_is_hw_change_mode() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 300/411] media: i2c: imx334: update mode_3840x2160_regs array Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 301/411] nios2: force update_mmu_cache on spurious tlb-permission--related pagefaults Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 302/411] pmdomain: ti: Fix STANDBY handling of PER power domain Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 303/411] thermal/drivers/qcom/tsens: Update conditions to strictly evaluate for IP v2+ Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 304/411] cpufreq: Force sync policy boost with global boost on sysfs update Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 305/411] net: macb: Check return value of dma_set_mask_and_coherent() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 306/411] tipc: use kfree_sensitive() for aead cleanup Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 307/411] i2c: designware: Invoke runtime suspend on quick slave re-registration Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 308/411] emulex/benet: correct command version selection in be_cmd_get_stats() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 309/411] wifi: mt76: mt76x2: Add support for LiteOn WN4516R,WN4519R Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 310/411] sctp: Do not wake readers in __sctp_write_space() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 311/411] cpufreq: scmi: Skip SCMI devices that arent used by the CPUs Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 312/411] i2c: npcm: Add clock toggle recovery Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 313/411] net: dlink: add synchronization for stats update Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 314/411] tcp: always seek for minimal rtt in tcp_rcv_rtt_update() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 315/411] tcp: fix initial tp->rcvq_space.space value for passive TS enabled flows Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 316/411] ipv4/route: Use this_cpu_inc() for stats on PREEMPT_RT Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 317/411] net: atlantic: generate software timestamp just before the doorbell Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 318/411] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_set_by_name() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 319/411] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get_direction() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 320/411] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_gpio_set_direction() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 321/411] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 322/411] net: mlx4: add SOF_TIMESTAMPING_TX_SOFTWARE flag when getting ts info Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 323/411] wifi: mac80211: do not offer a mesh path if forwarding is disabled Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 324/411] clk: rockchip: rk3036: mark ddrphy as critical Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 325/411] libbpf: Add identical pointer detection to btf_dedup_is_equiv() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 326/411] scsi: lpfc: Fix lpfc_check_sli_ndlp() handling for GEN_REQUEST64 commands Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 327/411] iommu/amd: Ensure GA log notifier callbacks finish running before module unload Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 328/411] net: bridge: mcast: re-implement br_multicast_{enable, disable}_port functions Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 329/411] vxlan: Do not treat dst cache initialization errors as fatal Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 330/411] software node: Correct a OOB check in software_node_get_reference_args() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 331/411] pinctrl: mcp23s08: Reset all pins to input at probe Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 332/411] scsi: lpfc: Use memcpy() for BIOS version Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 333/411] sock: Correct error checking condition for (assign|release)_proto_idx() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 334/411] i40e: fix MMIO write access to an invalid page in i40e_clear_hw Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 335/411] bpf, sockmap: Fix data lost during EAGAIN retries Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 336/411] octeontx2-pf: Add error log forcn10k_map_unmap_rq_policer() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 337/411] watchdog: da9052_wdt: respect TWDMIN Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 338/411] bus: fsl-mc: increase MC_CMD_COMPLETION_TIMEOUT_MS value Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 339/411] ARM: OMAP2+: Fix l4ls clk domain handling in STANDBY Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 340/411] tee: Prevent size calculation wraparound on 32-bit kernels Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 341/411] Revert "bus: ti-sysc: Probe for l4_wkup and l4_cfg interconnect devices first" Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 342/411] platform/x86: dell_rbu: Fix list usage Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 343/411] platform/x86: dell_rbu: Stop overwriting data buffer Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 344/411] powerpc/eeh: Fix missing PE bridge reconfiguration during VFIO EEH recovery Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 345/411] Revert "x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2" on v6.6 and older Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 346/411] drivers/rapidio/rio_cm.c: prevent possible heap overwrite Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 347/411] jffs2: check that raw node were preallocated before writing summary Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 348/411] jffs2: check jffs2_prealloc_raw_node_refs() result in few other places Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 349/411] scsi: storvsc: Increase the timeouts to storvsc_timeout Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 350/411] scsi: s390: zfcp: Ensure synchronous unit_add Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 351/411] udmabuf: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 352/411] selftests/x86: Add a test to detect infinite SIGTRAP handler loop Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 353/411] selinux: fix selinux_xfrm_alloc_user() to set correct ctx_len Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 354/411] atm: Revert atm_account_tx() if copy_from_iter_full() fails Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 355/411] HID: usbhid: Eliminate recurrent out-of-bounds bug in usbhid_parse() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 356/411] block: default BLOCK_LEGACY_AUTOLOAD to y Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 357/411] Input: sparcspkr - avoid unannotated fall-through Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 358/411] ALSA: usb-audio: Rename ALSA kcontrol PCM and PCM1 for the KTMicro sound card Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 359/411] ALSA: hda/intel: Add Thinkpad E15 to PM deny list Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 360/411] ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 361/411] iio: accel: fxls8962af: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 362/411] mm/hugetlb: unshare page tables during VMA split, not before Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 363/411] mm: hugetlb: independent PMD page table shared count Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 364/411] mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 365/411] erofs: remove unused trace event erofs_destroy_inode Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 366/411] drm/msm/dsi/dsi_phy_10nm: Fix missing initial VCO rate Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 367/411] drm/nouveau/bl: increase buffer size to avoid truncate warning Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 368/411] hwmon: (occ) Add soft minimum power cap attribute Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 369/411] hwmon: (occ) Rework attribute registration for stack usage Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 370/411] hwmon: (occ) fix unaligned accesses Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 371/411] pldmfw: Select CRC32 when PLDMFW is selected Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 372/411] aoe: clean device rq_list in aoedev_downdev() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 373/411] net: ice: Perform accurate aRFS flow match Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 374/411] ptp: fix breakage after ptp_vclock_in_use() rework Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 375/411] wifi: carl9170: do not ping device which has failed to load firmware Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 376/411] mpls: Use rcu_dereference_rtnl() in mpls_route_input_rcu() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 377/411] atm: atmtcp: Free invalid length skb in atmtcp_c_send() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 378/411] tcp: fix tcp_packet_delayed() for tcp_is_non_sack_preventing_reopen() behavior Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 379/411] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 380/411] calipso: Fix null-ptr-deref in calipso_req_{set,del}attr() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 381/411] net: atm: add lec_mutex Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 382/411] net: atm: fix /proc/net/atm/lec handling Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 383/411] ARM: dts: am335x-bone-common: Add GPIO PHY reset on revision C3 board Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 384/411] ARM: dts: am335x-bone-common: Increase MDIO reset deassert time Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 385/411] ARM: dts: am335x-bone-common: Increase MDIO reset deassert delay to 50ms Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 386/411] serial: sh-sci: Increment the runtime usage counter for the earlycon device Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 387/411] Revert "cpufreq: tegra186: Share policy per cluster" Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 388/411] arm64: move AARCH64_BREAK_FAULT into insn-def.h Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 389/411] arm64: insn: add encoders for atomic operations Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 390/411] arm64: insn: Add support for encoding DSB Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 391/411] arm64: proton-pack: Expose whether the platform is mitigated by firmware Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 392/411] arm64: proton-pack: Expose whether the branchy loop k value Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 393/411] arm64: spectre: increase parameters that can be used to turn off bhb mitigation individually Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 394/411] arm64: bpf: Add BHB mitigation to the epilogue for cBPF programs Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 395/411] arm64: bpf: Only mitigate cBPF programs loaded by unprivileged users Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 396/411] arm64: proton-pack: Add new CPUs k values for branch mitigation Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 397/411] net_sched: sch_sfq: annotate data-races around q->perturb_period Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 398/411] net_sched: sch_sfq: handle bigger packets Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 399/411] net_sched: sch_sfq: dont allow 1 packet limit Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 400/411] net_sched: sch_sfq: use a temporary work area for validating configuration Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 401/411] net_sched: sch_sfq: move the limit validation Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 402/411] net_sched: sch_sfq: reject invalid perturb period Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 403/411] mm/huge_memory: fix dereferencing invalid pmd migration entry Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 404/411] ext4: make abort mount option handling standard Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 405/411] ext4: avoid remount errors with abort mount option Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 406/411] net: Fix checksum update for ILA adj-transport Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 407/411] bpf: Fix L4 csum update on IPv6 in CHECKSUM_COMPLETE Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 408/411] s390/pci: Fix __pcilg_mio_inuser() inline assembly Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 409/411] perf: Fix sample vs do_exit() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 410/411] arm64/ptrace: Fix stack-out-of-bounds read in regs_get_kernel_stack_nth() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 411/411] scsi: elx: efct: Fix memory leak in efct_hw_parse_filter() Greg Kroah-Hartman
2025-06-23 20:42 ` [PATCH 5.15 000/411] 5.15.186-rc1 review Naresh Kamboju
2025-06-24 10:18   ` Greg Kroah-Hartman
2025-06-25  1:45     ` Naresh Kamboju
2025-06-25  8:39       ` Greg Kroah-Hartman
2025-11-06 19:32         ` Kees Cook
2025-11-21  9:36           ` Greg Kroah-Hartman
2025-11-21 18:00             ` Kees Cook
2025-06-23 20:49 ` Florian Fainelli
2025-06-24  8:39 ` Ron Economos
2025-06-25  7:23 ` Jon Hunter
2025-06-25  7:32 ` Vijayendra Suman
2025-07-07 18:05 ` Guenter Roeck
2025-07-08 16:05   ` Martin Blumenstingl
2025-07-12 12:37     ` Greg Kroah-Hartman
2025-07-14 19:56       ` Martin Blumenstingl
2025-07-21 13:48         ` Greg Kroah-Hartman
2025-07-21 14:12         ` Guenter Roeck

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=20250623130637.288916360@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=christianshewitt@gmail.com \
    --cc=martin.blumenstingl@googlemail.com \
    --cc=neil.armstrong@linaro.org \
    --cc=patches@lists.linux.dev \
    --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).