public inbox for stable@vger.kernel.org
 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, Randy Dunlap <rdunlap@infradead.org>,
	John Stultz <jstultz@google.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Stephen Boyd <sboyd@kernel.org>, Jonathan Corbet <corbet@lwn.net>,
	linux-doc@vger.kernel.org, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 157/570] time: add kernel-doc in time.c
Date: Mon, 13 Apr 2026 17:54:48 +0200	[thread overview]
Message-ID: <20260413155836.332587301@linuxfoundation.org> (raw)
In-Reply-To: <20260413155830.386096114@linuxfoundation.org>

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

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

From: Randy Dunlap <rdunlap@infradead.org>

[ Upstream commit 67b3f564cb1e769ef8e45835129a4866152fcfdb ]

Add kernel-doc for all APIs that do not already have it.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: John Stultz <jstultz@google.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Stephen Boyd <sboyd@kernel.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Acked-by: John Stultz <jstultz@google.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20230704052405.5089-3-rdunlap@infradead.org
Stable-dep-of: 755a648e78f1 ("time/jiffies: Mark jiffies_64_to_clock_t() notrace")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 kernel/time/time.c | 169 ++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 158 insertions(+), 11 deletions(-)

diff --git a/kernel/time/time.c b/kernel/time/time.c
index a7fce68465a38..50390158e9d97 100644
--- a/kernel/time/time.c
+++ b/kernel/time/time.c
@@ -365,11 +365,14 @@ SYSCALL_DEFINE1(adjtimex_time32, struct old_timex32 __user *, utp)
 }
 #endif
 
-/*
- * Convert jiffies to milliseconds and back.
+/**
+ * jiffies_to_msecs - Convert jiffies to milliseconds
+ * @j: jiffies value
  *
  * Avoid unnecessary multiplications/divisions in the
- * two most common HZ cases:
+ * two most common HZ cases.
+ *
+ * Return: milliseconds value
  */
 unsigned int jiffies_to_msecs(const unsigned long j)
 {
@@ -388,6 +391,12 @@ unsigned int jiffies_to_msecs(const unsigned long j)
 }
 EXPORT_SYMBOL(jiffies_to_msecs);
 
+/**
+ * jiffies_to_usecs - Convert jiffies to microseconds
+ * @j: jiffies value
+ *
+ * Return: microseconds value
+ */
 unsigned int jiffies_to_usecs(const unsigned long j)
 {
 	/*
@@ -408,8 +417,15 @@ unsigned int jiffies_to_usecs(const unsigned long j)
 }
 EXPORT_SYMBOL(jiffies_to_usecs);
 
-/*
+/**
  * mktime64 - Converts date to seconds.
+ * @year0: year to convert
+ * @mon0: month to convert
+ * @day: day to convert
+ * @hour: hour to convert
+ * @min: minute to convert
+ * @sec: second to convert
+ *
  * Converts Gregorian date to seconds since 1970-01-01 00:00:00.
  * Assumes input in normal date format, i.e. 1980-12-31 23:59:59
  * => year=1980, mon=12, day=31, hour=23, min=59, sec=59.
@@ -427,6 +443,8 @@ EXPORT_SYMBOL(jiffies_to_usecs);
  *
  * An encoding of midnight at the end of the day as 24:00:00 - ie. midnight
  * tomorrow - (allowable under ISO 8601) is supported.
+ *
+ * Return: seconds since the epoch time for the given input date
  */
 time64_t mktime64(const unsigned int year0, const unsigned int mon0,
 		const unsigned int day, const unsigned int hour,
@@ -471,8 +489,7 @@ EXPORT_SYMBOL(ns_to_kernel_old_timeval);
  * Set seconds and nanoseconds field of a timespec variable and
  * normalize to the timespec storage format
  *
- * Note: The tv_nsec part is always in the range of
- *	0 <= tv_nsec < NSEC_PER_SEC
+ * Note: The tv_nsec part is always in the range of 0 <= tv_nsec < NSEC_PER_SEC.
  * For negative values only the tv_sec field is negative !
  */
 void set_normalized_timespec64(struct timespec64 *ts, time64_t sec, s64 nsec)
@@ -501,7 +518,7 @@ EXPORT_SYMBOL(set_normalized_timespec64);
  * ns_to_timespec64 - Convert nanoseconds to timespec64
  * @nsec:       the nanoseconds value to be converted
  *
- * Returns the timespec64 representation of the nsec parameter.
+ * Return: the timespec64 representation of the nsec parameter.
  */
 struct timespec64 ns_to_timespec64(const s64 nsec)
 {
@@ -548,6 +565,8 @@ EXPORT_SYMBOL(ns_to_timespec64);
  * runtime.
  * the _msecs_to_jiffies helpers are the HZ dependent conversion
  * routines found in include/linux/jiffies.h
+ *
+ * Return: jiffies value
  */
 unsigned long __msecs_to_jiffies(const unsigned int m)
 {
@@ -560,6 +579,12 @@ unsigned long __msecs_to_jiffies(const unsigned int m)
 }
 EXPORT_SYMBOL(__msecs_to_jiffies);
 
+/**
+ * __usecs_to_jiffies: - convert microseconds to jiffies
+ * @u:	time in milliseconds
+ *
+ * Return: jiffies value
+ */
 unsigned long __usecs_to_jiffies(const unsigned int u)
 {
 	if (u > jiffies_to_usecs(MAX_JIFFY_OFFSET))
@@ -568,7 +593,10 @@ unsigned long __usecs_to_jiffies(const unsigned int u)
 }
 EXPORT_SYMBOL(__usecs_to_jiffies);
 
-/*
+/**
+ * timespec64_to_jiffies - convert a timespec64 value to jiffies
+ * @value: pointer to &struct timespec64
+ *
  * The TICK_NSEC - 1 rounds up the value to the next resolution.  Note
  * that a remainder subtract here would not do the right thing as the
  * resolution values don't fall on second boundaries.  I.e. the line:
@@ -582,8 +610,9 @@ EXPORT_SYMBOL(__usecs_to_jiffies);
  *
  * The >> (NSEC_JIFFIE_SC - SEC_JIFFIE_SC) converts the scaled nsec
  * value to a scaled second value.
+ *
+ * Return: jiffies value
  */
-
 unsigned long
 timespec64_to_jiffies(const struct timespec64 *value)
 {
@@ -601,6 +630,11 @@ timespec64_to_jiffies(const struct timespec64 *value)
 }
 EXPORT_SYMBOL(timespec64_to_jiffies);
 
+/**
+ * jiffies_to_timespec64 - convert jiffies value to &struct timespec64
+ * @jiffies: jiffies value
+ * @value: pointer to &struct timespec64
+ */
 void
 jiffies_to_timespec64(const unsigned long jiffies, struct timespec64 *value)
 {
@@ -618,6 +652,13 @@ EXPORT_SYMBOL(jiffies_to_timespec64);
 /*
  * Convert jiffies/jiffies_64 to clock_t and back.
  */
+
+/**
+ * jiffies_to_clock_t - Convert jiffies to clock_t
+ * @x: jiffies value
+ *
+ * Return: jiffies converted to clock_t (CLOCKS_PER_SEC)
+ */
 clock_t jiffies_to_clock_t(unsigned long x)
 {
 #if (TICK_NSEC % (NSEC_PER_SEC / USER_HZ)) == 0
@@ -632,6 +673,12 @@ clock_t jiffies_to_clock_t(unsigned long x)
 }
 EXPORT_SYMBOL(jiffies_to_clock_t);
 
+/**
+ * clock_t_to_jiffies - Convert clock_t to jiffies
+ * @x: clock_t value
+ *
+ * Return: clock_t value converted to jiffies
+ */
 unsigned long clock_t_to_jiffies(unsigned long x)
 {
 #if (HZ % USER_HZ)==0
@@ -649,6 +696,12 @@ unsigned long clock_t_to_jiffies(unsigned long x)
 }
 EXPORT_SYMBOL(clock_t_to_jiffies);
 
+/**
+ * jiffies_64_to_clock_t - Convert jiffies_64 to clock_t
+ * @x: jiffies_64 value
+ *
+ * Return: jiffies_64 value converted to 64-bit "clock_t" (CLOCKS_PER_SEC)
+ */
 u64 jiffies_64_to_clock_t(u64 x)
 {
 #if (TICK_NSEC % (NSEC_PER_SEC / USER_HZ)) == 0
@@ -671,6 +724,12 @@ u64 jiffies_64_to_clock_t(u64 x)
 }
 EXPORT_SYMBOL(jiffies_64_to_clock_t);
 
+/**
+ * nsec_to_clock_t - Convert nsec value to clock_t
+ * @x: nsec value
+ *
+ * Return: nsec value converted to 64-bit "clock_t" (CLOCKS_PER_SEC)
+ */
 u64 nsec_to_clock_t(u64 x)
 {
 #if (NSEC_PER_SEC % USER_HZ) == 0
@@ -687,6 +746,12 @@ u64 nsec_to_clock_t(u64 x)
 #endif
 }
 
+/**
+ * jiffies64_to_nsecs - Convert jiffies64 to nanoseconds
+ * @j: jiffies64 value
+ *
+ * Return: nanoseconds value
+ */
 u64 jiffies64_to_nsecs(u64 j)
 {
 #if !(NSEC_PER_SEC % HZ)
@@ -697,6 +762,12 @@ u64 jiffies64_to_nsecs(u64 j)
 }
 EXPORT_SYMBOL(jiffies64_to_nsecs);
 
+/**
+ * jiffies64_to_msecs - Convert jiffies64 to milliseconds
+ * @j: jiffies64 value
+ *
+ * Return: milliseconds value
+ */
 u64 jiffies64_to_msecs(const u64 j)
 {
 #if HZ <= MSEC_PER_SEC && !(MSEC_PER_SEC % HZ)
@@ -719,6 +790,8 @@ EXPORT_SYMBOL(jiffies64_to_msecs);
  * note:
  *   NSEC_PER_SEC = 10^9 = (5^9 * 2^9) = (1953125 * 512)
  *   ULLONG_MAX ns = 18446744073.709551615 secs = about 584 years
+ *
+ * Return: nsecs converted to jiffies64 value
  */
 u64 nsecs_to_jiffies64(u64 n)
 {
@@ -750,6 +823,8 @@ EXPORT_SYMBOL(nsecs_to_jiffies64);
  * note:
  *   NSEC_PER_SEC = 10^9 = (5^9 * 2^9) = (1953125 * 512)
  *   ULLONG_MAX ns = 18446744073.709551615 secs = about 584 years
+ *
+ * Return: nsecs converted to jiffies value
  */
 unsigned long nsecs_to_jiffies(u64 n)
 {
@@ -757,10 +832,16 @@ unsigned long nsecs_to_jiffies(u64 n)
 }
 EXPORT_SYMBOL_GPL(nsecs_to_jiffies);
 
-/*
- * Add two timespec64 values and do a safety check for overflow.
+/**
+ * timespec64_add_safe - Add two timespec64 values and do a safety check
+ * for overflow.
+ * @lhs: first (left) timespec64 to add
+ * @rhs: second (right) timespec64 to add
+ *
  * It's assumed that both values are valid (>= 0).
  * And, each timespec64 is in normalized form.
+ *
+ * Return: sum of @lhs + @rhs
  */
 struct timespec64 timespec64_add_safe(const struct timespec64 lhs,
 				const struct timespec64 rhs)
@@ -778,6 +859,15 @@ struct timespec64 timespec64_add_safe(const struct timespec64 lhs,
 	return res;
 }
 
+/**
+ * get_timespec64 - get user's time value into kernel space
+ * @ts: destination &struct timespec64
+ * @uts: user's time value as &struct __kernel_timespec
+ *
+ * Handles compat or 32-bit modes.
+ *
+ * Return: %0 on success or negative errno on error
+ */
 int get_timespec64(struct timespec64 *ts,
 		   const struct __kernel_timespec __user *uts)
 {
@@ -801,6 +891,14 @@ int get_timespec64(struct timespec64 *ts,
 }
 EXPORT_SYMBOL_GPL(get_timespec64);
 
+/**
+ * put_timespec64 - convert timespec64 value to __kernel_timespec format and
+ * 		    copy the latter to userspace
+ * @ts: input &struct timespec64
+ * @uts: user's &struct __kernel_timespec
+ *
+ * Return: %0 on success or negative errno on error
+ */
 int put_timespec64(const struct timespec64 *ts,
 		   struct __kernel_timespec __user *uts)
 {
@@ -839,6 +937,15 @@ static int __put_old_timespec32(const struct timespec64 *ts64,
 	return copy_to_user(cts, &ts, sizeof(ts)) ? -EFAULT : 0;
 }
 
+/**
+ * get_old_timespec32 - get user's old-format time value into kernel space
+ * @ts: destination &struct timespec64
+ * @uts: user's old-format time value (&struct old_timespec32)
+ *
+ * Handles X86_X32_ABI compatibility conversion.
+ *
+ * Return: %0 on success or negative errno on error
+ */
 int get_old_timespec32(struct timespec64 *ts, const void __user *uts)
 {
 	if (COMPAT_USE_64BIT_TIME)
@@ -848,6 +955,16 @@ int get_old_timespec32(struct timespec64 *ts, const void __user *uts)
 }
 EXPORT_SYMBOL_GPL(get_old_timespec32);
 
+/**
+ * put_old_timespec32 - convert timespec64 value to &struct old_timespec32 and
+ * 			copy the latter to userspace
+ * @ts: input &struct timespec64
+ * @uts: user's &struct old_timespec32
+ *
+ * Handles X86_X32_ABI compatibility conversion.
+ *
+ * Return: %0 on success or negative errno on error
+ */
 int put_old_timespec32(const struct timespec64 *ts, void __user *uts)
 {
 	if (COMPAT_USE_64BIT_TIME)
@@ -857,6 +974,13 @@ int put_old_timespec32(const struct timespec64 *ts, void __user *uts)
 }
 EXPORT_SYMBOL_GPL(put_old_timespec32);
 
+/**
+ * get_itimerspec64 - get user's &struct __kernel_itimerspec into kernel space
+ * @it: destination &struct itimerspec64
+ * @uit: user's &struct __kernel_itimerspec
+ *
+ * Return: %0 on success or negative errno on error
+ */
 int get_itimerspec64(struct itimerspec64 *it,
 			const struct __kernel_itimerspec __user *uit)
 {
@@ -872,6 +996,14 @@ int get_itimerspec64(struct itimerspec64 *it,
 }
 EXPORT_SYMBOL_GPL(get_itimerspec64);
 
+/**
+ * put_itimerspec64 - convert &struct itimerspec64 to __kernel_itimerspec format
+ * 		      and copy the latter to userspace
+ * @it: input &struct itimerspec64
+ * @uit: user's &struct __kernel_itimerspec
+ *
+ * Return: %0 on success or negative errno on error
+ */
 int put_itimerspec64(const struct itimerspec64 *it,
 			struct __kernel_itimerspec __user *uit)
 {
@@ -887,6 +1019,13 @@ int put_itimerspec64(const struct itimerspec64 *it,
 }
 EXPORT_SYMBOL_GPL(put_itimerspec64);
 
+/**
+ * get_old_itimerspec32 - get user's &struct old_itimerspec32 into kernel space
+ * @its: destination &struct itimerspec64
+ * @uits: user's &struct old_itimerspec32
+ *
+ * Return: %0 on success or negative errno on error
+ */
 int get_old_itimerspec32(struct itimerspec64 *its,
 			const struct old_itimerspec32 __user *uits)
 {
@@ -898,6 +1037,14 @@ int get_old_itimerspec32(struct itimerspec64 *its,
 }
 EXPORT_SYMBOL_GPL(get_old_itimerspec32);
 
+/**
+ * put_old_itimerspec32 - convert &struct itimerspec64 to &struct
+ *			  old_itimerspec32 and copy the latter to userspace
+ * @its: input &struct itimerspec64
+ * @uits: user's &struct old_itimerspec32
+ *
+ * Return: %0 on success or negative errno on error
+ */
 int put_old_itimerspec32(const struct itimerspec64 *its,
 			struct old_itimerspec32 __user *uits)
 {
-- 
2.51.0




  parent reply	other threads:[~2026-04-13 16:25 UTC|newest]

Thread overview: 594+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-13 15:52 [PATCH 5.15 000/570] 5.15.203-rc1 review Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 001/570] ARM: clean up the memset64() C wrapper Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 002/570] ip6_tunnel: Fix usage of skb_vlan_inet_prepare() Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 003/570] scsi: lpfc: Properly set WC for DPP mapping Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 004/570] ALSA: usb-audio: Update for native DSD support quirks Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 005/570] ALSA: usb-audio: Remove VALIDATE_RATES quirk for Focusrite devices Greg Kroah-Hartman
2026-04-13 17:36   ` Geoffrey D. Bennett
2026-04-13 19:30     ` Sasha Levin
2026-04-13 15:52 ` [PATCH 5.15 006/570] scsi: ufs: core: Always initialize the UIC done completion Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 007/570] scsi: ufs: core: Move link recovery for hibern8 exit failure to wl_resume Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 008/570] ALSA: usb-audio: Cap the packet size pre-calculations Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 009/570] ALSA: usb-audio: Use inclusive terms Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 010/570] btrfs: fix incorrect key offset in error message in check_dev_extent_item() Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 011/570] bpf: Fix stack-out-of-bounds write in devmap Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 012/570] memory: mtk-smi: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 013/570] memory: mtk-smi: fix device leak on larb probe Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 014/570] ARM: OMAP2+: add missing of_node_put before break and return Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 015/570] ARM: omap2: Fix reference count leaks in omap_control_init() Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 016/570] scsi: ata: Call scsi_done() directly Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 017/570] ata: libata-scsi: drop DPRINTK calls for cdb translation Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 018/570] ata: libata: remove pointless VPRINTK() calls Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 019/570] ata: libata-scsi: refactor ata_scsi_translate() Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 020/570] drm/tegra: dsi: fix device leak on probe Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 021/570] bus: omap-ocp2scp: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 022/570] bus: omap-ocp2scp: fix OF populate on driver rebind Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 023/570] mfd: qcom-pm8xxx: switch away from using chained IRQ handlers Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 024/570] mfd: qcom-pm8xxx: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 025/570] mfd: qcom-pm8xxx: Fix OF populate on driver rebind Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 026/570] mfd: omap-usb-host: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 027/570] mfd: omap-usb-host: Fix OF populate on driver rebind Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 028/570] clk: tegra: tegra124-emc: fix device leak on set_rate() Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 029/570] usb: cdns3: remove redundant if branch Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 030/570] usb: cdns3: call cdns_power_is_lost() only once in cdns_resume() Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 031/570] usb: cdns3: fix role switching during resume Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 032/570] ALSA: hda/conexant: Add quirk for HP ZBook Studio G4 Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 033/570] hwmon: (max16065) Use READ/WRITE_ONCE to avoid compiler optimization induced race Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 034/570] ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset in error paths Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 035/570] fbcon: Use delayed work for cursor Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 036/570] fbcon: Extract fbcon_open/release helpers Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 037/570] fbcon: move more common code into fb_open() Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 038/570] fbcon: check return value of con2fb_acquire_newinfo() Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 039/570] ALSA: hda/conexant: Fix headphone jack handling on Acer Swift SF314 Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 040/570] net: arcnet: com20020-pci: fix support for 2.5Mbit cards Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 041/570] eventpoll: Fix integer overflow in ep_loop_check_proc() Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 042/570] media: dvb-core: fix wrong reinitialization of ringbuffer on reopen Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 043/570] nfc: pn533: properly drop the usb interface reference on disconnect Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 044/570] net: usb: kaweth: validate USB endpoints Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 045/570] net: usb: kalmia: " Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 046/570] net: usb: pegasus: " Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 047/570] can: ems_usb: ems_usb_read_bulk_callback(): check the proper length of a message Greg Kroah-Hartman
2026-04-13 15:52 ` [PATCH 5.15 048/570] can: ucan: Fix infinite loop from zero-length messages Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 049/570] can: usb: etas_es58x: correctly anchor the urb in the read bulk callback Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 050/570] HID: Add HID_CLAIMED_INPUT guards in raw_event callbacks missing them Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 051/570] x86/efi: defer freeing of boot services memory Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 052/570] platform/x86: dell-wmi-sysman: Dont hex dump plaintext password data Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 053/570] platform/x86: dell-wmi: Add audio/mic mute key codes Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 054/570] ALSA: usb-audio: Use correct version for UAC3 header validation Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 055/570] wifi: radiotap: reject radiotap with unknown bits Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 056/570] wifi: mac80211: fix NULL pointer dereference in mesh_rx_csa_frame() Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 057/570] IB/mthca: Add missed mthca_unmap_user_db() for mthca_create_srq() Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 058/570] net/sched: ets: fix divide by zero in the offload path Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 059/570] Squashfs: check metadata block offset is within range Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 060/570] drbd: fix "LOGIC BUG" in drbd_al_begin_io_nonblock() Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 061/570] scsi: core: Fix refcount leak for tagset_refcnt Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 062/570] selftests: mptcp: more stable simult_flows tests Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 063/570] platform/x86: thinkpad_acpi: Fix errors reading battery thresholds Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 064/570] net: ethernet: ti: am65-cpsw-nuss/cpsw-ale: Fix multicast entry handling in ALE table Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 065/570] net: dpaa2: replace dpaa2_mac_is_type_fixed() with dpaa2_mac_is_type_phy() Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 066/570] net: dpaa2-switch: assign port_priv->mac after dpaa2_mac_connect() call Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 067/570] net: dpaa2-switch replace direct MAC access with dpaa2_switch_port_has_mac() Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 068/570] net: dpaa2-switch: serialize changes to priv->mac with a mutex Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 069/570] dpaa2-switch: do not clear any interrupts automatically Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 070/570] dpaa2-switch: Fix interrupt storm after receiving bad if_id in IRQ handler Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 071/570] atm: lec: fix null-ptr-deref in lec_arp_clear_vccs Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 072/570] can: bcm: fix locking for bcm_op runtime updates Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 073/570] can: mcp251x: fix deadlock in error path of mcp251x_open Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 074/570] wifi: cw1200: Fix locking in error paths Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 075/570] wifi: wlcore: Fix a locking bug Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 076/570] indirect_call_wrapper: do not reevaluate function pointer Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 077/570] xen/acpi-processor: fix _CST detection using undersized evaluation buffer Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 078/570] ipv6: fix NULL pointer deref in ip6_rt_get_dev_rcu() Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 079/570] amd-xgbe: fix sleep while atomic on suspend/resume Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 080/570] net: sched: avoid qdisc_reset_all_tx_gt() vs dequeue race for lockless qdiscs Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 081/570] net: nfc: nci: Fix zero-length proprietary notifications Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 082/570] nfc: nci: free skb on nci_transceive early error paths Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 083/570] nfc: nci: clear NCI_DATA_EXCHANGE before calling completion callback Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 084/570] nfc: rawsock: cancel tx_work before socket teardown Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 085/570] net: stmmac: Fix error handling in VLAN add and delete paths Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 086/570] net: bridge: fix nd_tbl NULL dereference when IPv6 is disabled Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 087/570] net: vxlan: " Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 088/570] net: ipv6: fix panic when IPv4 route references loopback IPv6 nexthop Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 089/570] net/sched: Only allow act_ct to bind to clsact/ingress qdiscs and shared blocks Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 090/570] scsi: storvsc: Fix scheduling while atomic on PREEMPT_RT Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 091/570] ACPI: PM: Save NVS memory on Lenovo G70-35 Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 092/570] scsi: mpi3mr: Add NULL checks when resetting request and reply queues Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 093/570] unshare: fix unshare_fs() handling Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 094/570] ACPI: OSI: Add DMI quirk for Acer Aspire One D255 Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 095/570] scsi: ses: Fix devices attaching to different hosts Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 096/570] ALSA: usb-audio: Avoid implicit feedback mode on DIYINHK USB Audio 2.0 Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 097/570] ALSA: usb-audio: Check max frame size for implicit feedback mode, too Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 098/570] powerpc/uaccess: Fix inline assembly for clang build on PPC32 Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 099/570] remoteproc: sysmon: Correct subsys_name_len type in QMI request Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 100/570] remoteproc: mediatek: Unprepare SCP clock during system suspend Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 101/570] powerpc: 83xx: km83xx: Fix keymile vendor prefix Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 102/570] xprtrdma: Decrement re_receiving on the early exit paths Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 103/570] bonding: handle BOND_LINK_FAIL, BOND_LINK_BACK as valid link states Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 104/570] net/mlx5e: Fix DMA FIFO desync on error CQE SQ recovery Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 105/570] net/sched: teql: fix NULL pointer dereference in iptunnel_xmit on TEQL slave xmit Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 106/570] ASoC: soc-core: drop delayed_work_pending() check before flush Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 107/570] ASoC: soc-core: accept zero format at snd_soc_runtime_set_dai_fmt() Greg Kroah-Hartman
2026-04-13 15:53 ` [PATCH 5.15 108/570] ASoC: core: Exit all links before removing their components Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 109/570] ASoC: core: Do not call link_exit() on uninitialized rtd objects Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 110/570] ASoC: soc-core: flush delayed work before removing DAIs and widgets Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 111/570] serial: caif: hold tty->link reference in ldisc_open and ser_release Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 112/570] can: hi311x: hi3110_open(): add check for hi3110_power_enable() return value Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 113/570] netfilter: nft_set_pipapo: fix stack out-of-bounds read in pipapo_drop() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 114/570] netfilter: x_tables: guard option walkers against 1-byte tail reads Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 115/570] netfilter: nfnetlink_queue: fix entry leak in bridge verdict error path Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 116/570] netfilter: nfnetlink_cthelper: fix OOB read in nfnl_cthelper_dump_table() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 117/570] netfilter: xt_IDLETIMER: reject rev0 reuse of ALARM timer labels Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 118/570] regulator: pca9450: Make IRQ optional Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 119/570] regulator: pca9450: Correct interrupt type Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 120/570] sched: idle: Make skipping governor callbacks more consistent Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 121/570] nvme-pci: Fix slab-out-of-bounds in nvme_dbbuf_set Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 122/570] i40e: fix src IP mask checks and memcpy argument names in cloud filter Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 123/570] e1000/e1000e: Fix leak in DMA error cleanup Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 124/570] ACPI: OSL: fix __iomem type on return from acpi_os_map_generic_address() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 125/570] ASoC: amd: acp3x-rt5682-max9836: Add missing error check for clock acquisition Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 126/570] ASoC: detect empty DMI strings Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 127/570] octeontx2-af: devlink: fix NIX RAS reporter recovery condition Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 128/570] octeontx2-af: devlink health: use retained error fmsg API Greg Kroah-Hartman
2026-04-14 15:36   ` Harshit Mogalapalli
2026-04-13 15:54 ` [PATCH 5.15 129/570] octeontx2-af: devlink: fix NIX RAS reporter to use RAS interrupt status Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 130/570] Revert "arm64: dts: qcom: sdm845-oneplus: Mark l14a regulator as boot-on" Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 131/570] cgroup: fix race between task migration and iteration Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 132/570] net: usb: lan78xx: fix silent drop of packets with checksum errors Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 133/570] net: usb: lan78xx: skip LTM configuration for LAN7850 Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 134/570] usb/core/quirks: Add Huawei ME906S-device to wakeup quirk Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 135/570] usb: xhci: Fix memory leak in xhci_disable_slot() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 136/570] usb: yurex: fix race in probe Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 137/570] usb: misc: uss720: properly clean up reference in uss720_probe() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 138/570] usb: core: dont power off roothub PHYs if phy_set_mode() fails Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 139/570] usb: cdc-acm: Restore CAP_BRK functionnality to CH343 Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 140/570] USB: usbcore: Introduce usb_bulk_msg_killable() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 141/570] USB: usbtmc: Use usb_bulk_msg_killable() with user-specified timeouts Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 142/570] USB: core: Limit the length of unkillable synchronous timeouts Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 143/570] usb: class: cdc-wdm: fix reordering issue in read code path Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 144/570] usb: renesas_usbhs: fix use-after-free in ISR during device removal Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 145/570] usb: mdc800: handle signal and read racing Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 146/570] usb: image: mdc800: kill download URB on timeout Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 147/570] mm/tracing: rss_stat: ensure curr is false from kthread context Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 148/570] mmc: mmci: Fix device_node reference leak in of_get_dml_pipe_index() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 149/570] mmc: core: Avoid bitfield RMW for claim/retune flags Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 150/570] tipc: fix divide-by-zero in tipc_sk_filter_connect() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 151/570] libceph: Fix potential out-of-bounds access in ceph_handle_auth_reply() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 152/570] libceph: reject preamble if control segment is empty Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 153/570] libceph: prevent potential out-of-bounds reads in process_message_header() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 154/570] libceph: Use u32 for non-negative values in ceph_monmap_decode() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 155/570] libceph: admit message frames only in CEPH_CON_S_OPEN state Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 156/570] ceph: fix i_nlink underrun during async unlink Greg Kroah-Hartman
2026-04-13 15:54 ` Greg Kroah-Hartman [this message]
2026-04-13 15:54 ` [PATCH 5.15 158/570] time/jiffies: Mark jiffies_64_to_clock_t() notrace Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 159/570] device property: Allow secondary lookup in fwnode_get_next_child_node() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 160/570] irqchip/gic-v3-its: Limit number of per-device MSIs to the range the ITS supports Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 161/570] staging: rtl8723bs: fix potential out-of-bounds read in rtw_restruct_wmm_ie Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 162/570] staging: rtl8723bs: properly validate the data in rtw_get_ie_ex() Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 163/570] media: dvb-net: fix OOB access in ULE extension header tables Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 164/570] net: mana: Ring doorbell at 4 CQ wraparounds Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 165/570] ice: fix retry for AQ command 0x06EE Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 166/570] batman-adv: Avoid double-rtnl_lock ELP metric worker Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 167/570] parisc: Increase initial mapping to 64 MB with KALLSYMS Greg Kroah-Hartman
2026-04-13 15:54 ` [PATCH 5.15 168/570] nouveau/dpcd: return EBUSY for aux xfer if the device is asleep Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 169/570] hwmon: (pmbus/q54sj108a2) fix stack overflow in debugfs read Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 170/570] parisc: Fix initial page table creation for boot Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 171/570] net: ncsi: fix skb leak in error paths Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 172/570] net: ethernet: arc: emac: quiesce interrupts before requesting IRQ Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 173/570] drm/amdgpu: Fix use-after-free race in VM acquire Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 174/570] tracing: Fix trace_buf_size= cmdline parameter with sizes >= 2G Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 175/570] xfs: fix undersized l_iclog_roundoff values Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 176/570] lib/bootconfig: fix off-by-one in xbc_verify_tree() unclosed brace error Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 177/570] scsi: core: Fix error handling for scsi_alloc_sdev() Greg Kroah-Hartman
2026-04-14 16:07   ` Harshit Mogalapalli
2026-04-15 16:21     ` junxiao.bi
2026-04-17  8:36       ` Harshit Mogalapalli
2026-04-20 13:21     ` scsi: core: Move two statements (prerequisite for already-backported 4ce7ada40c00) Sasha Levin
2026-04-13 15:55 ` [PATCH 5.15 178/570] x86/apic: Disable x2apic on resume if the kernel expects so Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 179/570] lib/bootconfig: fix snprintf truncation check in xbc_node_compose_key_after() Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 180/570] lib/bootconfig: check bounds before writing in __xbc_open_brace() Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 181/570] btrfs: abort transaction on failure to update root in the received subvol ioctl Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 182/570] iio: dac: ds4424: reject -128 RAW value Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 183/570] iio: chemical: sps30_serial: fix buffer size in sps30_serial_read_meas() Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 184/570] iio: chemical: sps30_i2c: fix buffer size in sps30_i2c_read_meas() Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 185/570] iio: potentiometer: mcp4131: fix double application of wiper shift Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 186/570] iio: chemical: bme680: Fix measurement wait duration calculation Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 187/570] iio: gyro: mpu3050-core: fix pm_runtime error handling Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 188/570] iio: gyro: mpu3050-i2c: " Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 189/570] iio: imu: inv_icm42600: fix odr switch to the same value Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 190/570] i3c: mipi-i3c-hci: Use ETIMEDOUT instead of ETIME for timeout errors Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 191/570] i3c: mipi-i3c-hci: Restart DMA ring correctly after dequeue abort Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 192/570] i3c: mipi-i3c-hci: Add missing TID field to no-op command descriptor Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 193/570] bpf: Forget ranges when refining tnum after JSET Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 194/570] l2tp: do not use sock_hold() in pppol2tp_session_get_sock() Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 195/570] io_uring/io-wq: check IO_WQ_BIT_EXIT inside work run loop Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 196/570] driver: iio: add missing checks on iio_infos callback access Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 197/570] sunrpc: fix cache_request leak in cache_release Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 198/570] nvdimm/bus: Fix potential use after free in asynchronous initialization Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 199/570] NFC: nxp-nci: allow GPIOs to sleep Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 200/570] net: macb: fix use-after-free access to PTP clock Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 201/570] Bluetooth: L2CAP: Fix type confusion in l2cap_ecred_reconf_rsp() Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 202/570] Bluetooth: L2CAP: Validate L2CAP_INFO_RSP payload length before access Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 203/570] mmc: sdhci-pci-gli: fix GL9750 DMA write corruption Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 204/570] mmc: sdhci: fix timing selection for 1-bit bus width Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 205/570] mtd: rawnand: pl353: make sure optimal timings are applied Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 206/570] mtd: rawnand: cadence: Fix error check for dma_alloc_coherent() in cadence_nand_init() Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 207/570] mtd: Avoid boot crash in RedBoot partition table parser Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 208/570] iommu/vt-d: Fix intel iommu iotlb sync hardlockup and retry Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 209/570] serial: 8250_pci: add support for the AX99100 Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 210/570] serial: 8250: Fix TX deadlock when using DMA Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 211/570] serial: 8250: Add late synchronize_irq() to shutdown to handle DW UART BUSY Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 212/570] serial: uartlite: fix PM runtime usage count underflow on probe Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 213/570] drm/radeon: apply state adjust rules to some additional HAINAN vairants Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 214/570] mm/hugetlb: make detecting shared pte more reliable Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 215/570] mm/hugetlb: fix copy_hugetlb_page_range() to use ->pt_share_count Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 216/570] mm/hugetlb: fix hugetlb_pmd_shared() Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 217/570] mm/hugetlb: fix two comments related to huge_pmd_unshare() Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 218/570] mm/rmap: " Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 219/570] mm/hugetlb: fix excessive IPI broadcasts when unsharing PMD tables using mmu_gather Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 220/570] net: stmmac: dwmac-loongson: Set clk_csr_i to 100-150MHz Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 221/570] net: Handle napi_schedule() calls from non-interrupt Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 222/570] gve: defer interrupt enabling until NAPI registration Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 223/570] drm/exynos: vidi: use priv->vidi_dev for ctx lookup in vidi_connection_ioctl() Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 224/570] drm/exynos: vidi: fix to avoid directly dereferencing user pointer Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 225/570] drm/exynos: vidi: use ctx->lock to protect struct vidi_context member variables related to memory alloc/free Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 226/570] ksmbd: call ksmbd_vfs_kern_path_end_removing() on some error paths Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 227/570] ext4: dont set EXT4_GET_BLOCKS_CONVERT when splitting before submitting I/O Greg Kroah-Hartman
2026-04-13 15:55 ` [PATCH 5.15 228/570] ext4: drop extent cache when splitting extent fails Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 229/570] ext4: fix dirtyclusters double decrement on fs shutdown Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 230/570] ksmbd: fix null pointer dereference error in generate_encryptionkey Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 231/570] ext4: always allocate blocks only from groups inode can use Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 232/570] wifi: libertas: fix use-after-free in lbs_free_adapter() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 233/570] wifi: cfg80211: move scan done work to wiphy work Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 234/570] wifi: cfg80211: cancel rfkill_block work in wiphy_unregister() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 235/570] RDMA/irdma: Fix kernel stack leak in irdma_create_user_ah() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 236/570] smb: client: Dont log plaintext credentials in cifs_set_cifscreds Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 237/570] net: phy: register phy led_triggers during probe to avoid AB-BA deadlock Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 238/570] drm/amd/display: Use GFP_ATOMIC in dc_create_stream_for_sink Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 239/570] mptcp: pm: avoid sending RM_ADDR over same subflow Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 240/570] pmdomain: bcm: bcm2835-power: Increase ASB control timeout Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 241/570] batman-adv: avoid OGM aggregation when skb tailroom is insufficient Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 242/570] btrfs: tree-checker: fix misleading root drop_level error message Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 243/570] soc: fsl: qbman: fix race condition in qman_destroy_fq Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 244/570] wifi: mac80211: Fix static_branch_dec() underflow for aql_disable Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 245/570] wifi: cfg80211: cancel pmsr_free_wk in cfg80211_pmsr_wdev_down Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 246/570] of: Add cleanup.h based auto release via __free(device_node) markings Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 247/570] firmware: arm_scpi: Fix device_node reference leak in probe path Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 248/570] Bluetooth: LE L2CAP: Disconnect if received packets SDU exceeds IMTU Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 249/570] Bluetooth: LE L2CAP: Disconnect if sum of payload sizes exceed SDU Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 250/570] Bluetooth: SMP: make SM/PER/KDU/BI-04-C happy Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 251/570] Bluetooth: HIDP: Fix possible UAF Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 252/570] Bluetooth: qca: fix ROM version reading on WCN3998 chips Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 253/570] net/rose: fix NULL pointer dereference in rose_transmit_link on reconnect Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 254/570] netfilter: ctnetlink: remove refcounting in expectation dumpers Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 255/570] netfilter: ctnetlink: fix use-after-free in ctnetlink_dump_exp_ct() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 256/570] netfilter: nf_conntrack_sip: fix Content-Length u32 truncation in sip_help_tcp() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 257/570] netfilter: nf_conntrack_h323: fix OOB read in decode_int() CONS case Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 258/570] netfilter: nft_ct: add seqadj extension for natted connections Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 259/570] netfilter: nft_ct: drop pending enqueued packets on removal Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 260/570] netfilter: xt_CT: drop pending enqueued packets on template removal Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 261/570] netfilter: xt_time: use unsigned int for monthday bit shift Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 262/570] netfilter: nf_conntrack_h323: check for zero length in DecodeQ931() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 263/570] net: bcmgenet: increase WoL poll timeout Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 264/570] net: mana: Improve the HWC error handling Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 265/570] net: mana: fix use-after-free in mana_hwc_destroy_channel() by reordering teardown Greg Kroah-Hartman
2026-04-15 10:06   ` Harshit Mogalapalli
2026-04-13 15:56 ` [PATCH 5.15 266/570] sched: idle: Consolidate the handling of two special cases Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 267/570] PM: runtime: Fix a race condition related to device removal Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 268/570] net/smc: Only save the original clcsock callback functions Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 269/570] net/smc: Fix slab-out-of-bounds issue in fallback Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 270/570] net/smc: fix NULL dereference and UAF in smc_tcp_syn_recv_sock() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 271/570] net: usb: aqc111: Do not perform PM inside suspend callback Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 272/570] igc: fix missing update of skb->tail in igc_xmit_frame() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 273/570] wifi: mac80211: fix NULL deref in mesh_matches_local() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 274/570] wifi: wlcore: Return -ENOMEM instead of -EAGAIN if there is not enough headroom Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 275/570] ACPI: processor: Fix previous acpi_processor_errata_piix4() fix Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 276/570] net: macb: fix uninitialized rx_fs_lock Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 277/570] udp_tunnel: fix NULL deref caused by udp_sock_create6 when CONFIG_IPV6=n Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 278/570] net: bonding: fix NULL deref in bond_debug_rlb_hash_show Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 279/570] nfnetlink_osf: validate individual option lengths in fingerprints Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 280/570] net: mvpp2: guard flow control update with global_tx_fc in buffer switching Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 281/570] net: dsa: bcm_sf2: fix missing clk_disable_unprepare() in error paths Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 282/570] icmp: fix NULL pointer dereference in icmp_tag_validation() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 283/570] hwmon: (pmbus/isl68137) Fix unchecked return value and use sysfs_emit() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 284/570] i2c: fsi: Fix a potential leak in fsi_i2c_probe() Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 285/570] mtd: rawnand: serialize lock/unlock against other NAND operations Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 286/570] mtd: rawnand: brcmnand: skip DMA during panic write Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 287/570] ksmbd: fix use-after-free of share_conf in compound request Greg Kroah-Hartman
2026-04-13 15:56 ` [PATCH 5.15 288/570] drm/i915/gt: Check set_default_submission() before deferencing Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 289/570] lib/bootconfig: check xbc_init_node() return in override path Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 290/570] tools/bootconfig: fix fd leak in load_xbc_file() on fstat failure Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 291/570] netfilter: nf_tables: de-constify set commit ops function argument Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 292/570] netfilter: nft_set_pipapo: split gc into unlink and reclaim phase Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 293/570] xen/privcmd: restrict usage in unprivileged domU Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 294/570] xen/privcmd: add boot control for restricted usage in domU Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 295/570] sh: platform_early: remove pdev->driver_override check Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 296/570] bpf: Release module BTF IDR before module unload Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 297/570] HID: asus: avoid memory leak in asus_report_fixup() Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 298/570] platform/x86: intel-hid: Add Dell 14 Plus 2-in-1 to dmi_vgbs_allow_list Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 299/570] nvme-pci: cap queue creation to used queues Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 300/570] platform/x86: intel-hid: Enable 5-button array on ThinkPad X1 Fold 16 Gen 1 Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 301/570] platform/x86: touchscreen_dmi: Add quirk for y-inverted Goodix touchscreen on SUPI S10 Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 302/570] nvme-pci: ensure were polling a polled queue Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 303/570] HID: magicmouse: fix battery reporting for Apple Magic Trackpad 2 Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 304/570] HID: magicmouse: avoid memory leak in magicmouse_report_fixup() Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 305/570] net: usb: r8152: add TRENDnet TUC-ET2G Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 306/570] HID: mcp2221: cancel last I2C command on read error Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 307/570] module: Fix kernel panic when a symbol st_shndx is out of bounds Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 308/570] ASoC: fsl_easrc: Fix event generation in fsl_easrc_iec958_set_reg() Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 309/570] ASoC: fsl_easrc: Fix event generation in fsl_easrc_iec958_put_bits() Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 310/570] dma-buf: Include ioctl.h in UAPI header Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 311/570] ALSA: hda/realtek: Add headset jack quirk for Thinkpad X390 Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 312/570] xfrm: call xdo_dev_state_delete during state update Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 313/570] xfrm: Fix the usage of skb->sk Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 314/570] esp: fix skb leak with espintcp and async crypto Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 315/570] af_key: validate families in pfkey_send_migrate() Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 316/570] can: statistics: add missing atomic access in hot path Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 317/570] Bluetooth: L2CAP: Validate PDU length before reading SDU length in l2cap_ecred_data_rcv() Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 318/570] Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 319/570] Bluetooth: hci_ll: Fix firmware leak on error path Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 320/570] Bluetooth: L2CAP: Fix null-ptr-deref on l2cap_sock_ready_cb Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 321/570] pinctrl: mediatek: common: Fix probe failure for devices without EINT Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 322/570] ionic: fix persistent MAC address override on PF Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 323/570] nfc: nci: fix circular locking dependency in nci_close_device Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 324/570] net: openvswitch: Avoid releasing netdev before teardown completes Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 325/570] openvswitch: validate MPLS set/set_masked payload length Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 326/570] net/smc: fix double-free of smc_spd_priv when tee() duplicates splice pipe buffer Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 327/570] rtnetlink: count IFLA_INFO_SLAVE_KIND in if_nlmsg_size Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 328/570] platform/olpc: olpc-xo175-ec: Fix overflow error message to print inlen Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 329/570] net: fix fanout UAF in packet_release() via NETDEV_UP race Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 330/570] net: enetc: fix the output issue of ethtool --show-ring Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 331/570] dma-mapping: add missing `inline` for `dma_free_attrs` Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 332/570] Bluetooth: L2CAP: Fix ERTM re-init and zero pdu_len infinite loop Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 333/570] Bluetooth: btusb: clamp SCO altsetting table indices Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 334/570] netfilter: nfnetlink_log: fix uninitialized padding leak in NFULA_PAYLOAD Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 335/570] netfilter: ip6t_rt: reject oversized addrnr in rt_mt6_check() Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 336/570] netfilter: nf_conntrack_expect: skip expectations in other netns via proc Greg Kroah-Hartman
2026-04-15 11:15   ` Harshit Mogalapalli
2026-04-15 11:20     ` Pablo Neira Ayuso
2026-04-15 12:47       ` Sasha Levin
2026-04-13 15:57 ` [PATCH 5.15 337/570] netfilter: nf_conntrack_sip: fix use of uninitialized rtp_addr in process_sdp Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 338/570] netlink: introduce NLA_POLICY_MAX_BE Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 339/570] netfilter: nft_payload: reject out-of-range attributes via policy Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 340/570] netlink: hide validation union fields from kdoc Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 341/570] netlink: introduce bigendian integer types Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 342/570] netlink: allow be16 and be32 types in all uint policy checks Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 343/570] netfilter: ctnetlink: use netlink policy range checks Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 344/570] net: macb: use the current queue number for stats Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 345/570] regmap: Synchronize cache for the page selector Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 346/570] RDMA/rw: Fall back to direct SGE on MR pool exhaustion Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 347/570] RDMA/irdma: Update ibqp state to error if QP is already in error state Greg Kroah-Hartman
2026-04-13 15:57 ` [PATCH 5.15 348/570] RDMA/irdma: Remove a NOP wait_event() in irdma_modify_qp_roce() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 349/570] RDMA/irdma: Clean up unnecessary dereference of event->cm_node Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 350/570] RDMA/irdma: Remove reset check from irdma_modify_qp_to_err() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 351/570] RDMA/irdma: Fix deadlock during netdev reset with active connections Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 352/570] RDMA/irdma: Return EINVAL for invalid arp index error Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 353/570] scsi: scsi_transport_sas: Fix the maximum channel scanning issue Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 354/570] x86/efi: efi_unmap_boot_services: fix calculation of ranges_to_free size Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 355/570] drm/i915/gmbus: fix spurious timeout on 512-byte burst reads Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 356/570] ASoC: Intel: catpt: Fix the device initialization Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 357/570] ACPICA: include/acpi/acpixf.h: Fix indentation Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 358/570] ACPICA: Allow address_space_handler Install and _REG execution as 2 separate steps Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 359/570] ACPI: EC: Fix EC address space handler unregistration Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 360/570] ACPI: EC: Fix ECDT probe ordering issues Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 361/570] ACPI: EC: Install address space handler at the namespace root Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 362/570] ACPI: EC: clean up handlers on probe failure in acpi_ec_setup() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 363/570] hwmon: (adm1177) fix sysfs ABI violation and current unit conversion Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 364/570] sysctl: fix uninitialized variable in proc_do_large_bitmap Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 365/570] ASoC: adau1372: Fix unchecked clk_prepare_enable() return value Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 366/570] ASoC: adau1372: Fix clock leak on PLL lock failure Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 367/570] spi: spi-fsl-lpspi: fix teardown order issue (UAF) Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 368/570] s390/syscalls: Add spectre boundary for syscall dispatch table Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 369/570] s390/barrier: Make array_index_mask_nospec() __always_inline Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 370/570] can: gw: fix OOB heap access in cgw_csum_crc8_rel() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 371/570] cpufreq: conservative: Reset requested_freq on limits change Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 372/570] media: mc, v4l2: serialize REINIT and REQBUFS with req_queue_mutex Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 373/570] virtio_net: Fix UAF on dst_ops when IFF_XMIT_DST_RELEASE is cleared and napi_tx is false Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 374/570] erofs: add GFP_NOIO in the bio completion if needed Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 375/570] alarmtimer: Fix argument order in alarm_timer_forward() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 376/570] scsi: ibmvfc: Fix OOB access in ibmvfc_discover_targets_done() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 377/570] scsi: ses: Handle positive SCSI error from ses_recv_diag() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 378/570] jbd2: gracefully abort on checkpointing state corruptions Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 379/570] xfs: stop reclaim before pushing AIL during unmount Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 380/570] ext4: convert inline data to extents when truncate exceeds inline size Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 381/570] ext4: make recently_deleted() properly work with lazy itable initialization Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 382/570] ext4: avoid allocate block from corrupted group in ext4_mb_find_by_goal() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 383/570] ext4: reject mount if bigalloc with s_first_data_block != 0 Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 384/570] ext4: fix iloc.bh leak in ext4_fc_replay_inode() error paths Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 385/570] ext4: always drain queued discard work in ext4_mb_release() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 386/570] dmaengine: idxd: Fix not releasing workqueue on .release() Greg Kroah-Hartman
2026-04-15 11:42   ` Harshit Mogalapalli
2026-04-18  1:02     ` Sasha Levin
2026-04-13 15:58 ` [PATCH 5.15 387/570] phy: ti: j721e-wiz: Fix device node reference leak in wiz_get_lane_phy_types() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 388/570] dmaengine: xilinx: xilinx_dma: Fix dma_device directions Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 389/570] dmaengine: xilinx: xilinx_dma: Fix residue calculation for cyclic DMA Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 390/570] dmaengine: xilinx: xilinx_dma: Fix unmasked residue subtraction Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 391/570] btrfs: fix super block offset in error message in btrfs_validate_super() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 392/570] btrfs: fix lost error when running device stats on multiple devices fs Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 393/570] dmaengine: idxd: Remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 394/570] dmaengine: idxd: Fix freeing the allocated ida too late Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 395/570] dmaengine: xilinx_dma: Program interrupt delay timeout Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 396/570] dmaengine: xilinx_dma: Fix reset related timeout with two-channel AXIDMA Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 397/570] futex: Clear stale exiting pointer in futex_lock_pi() retry path Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 398/570] HID: wacom: fix out-of-bounds read in wacom_intuos_bt_irq Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 399/570] atm: lec: fix use-after-free in sock_def_readable() Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 400/570] btrfs: dont take device_list_mutex when querying zone info Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 401/570] objtool: Fix Clang jump table detection Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 402/570] HID: multitouch: Check to ensure report responses match the request Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 403/570] btrfs: reject root items with drop_progress and zero drop_level Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 404/570] dt-bindings: auxdisplay: ht16k33: Use unevaluatedProperties to fix common property warning Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 405/570] crypto: af-alg - fix NULL pointer dereference in scatterwalk Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 406/570] net: qrtr: replace qrtr_tx_flow radix_tree with xarray to fix memory leak Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 407/570] net: ipv6: ndisc: fix ndisc_ra_useropt to initialize nduseropt_padX fields to zero to prevent an info-leak Greg Kroah-Hartman
2026-04-13 15:58 ` [PATCH 5.15 408/570] tg3: Fix race for querying speed/duplex Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 409/570] ipv6: icmp: clear skb2->cb[] in ip6_err_gen_icmpv6_unreach() Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 410/570] ip6_tunnel: clear skb2->cb[] in ip4ip6_err() Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 411/570] bridge: br_nd_send: linearize skb before parsing ND options Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 412/570] net/sched: sch_hfsc: fix divide-by-zero in rtsc_min() Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 413/570] ipv6: prevent possible UaF in addrconf_permanent_addr() Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 414/570] net: sched: cls_api: fix tc_chain_fill_node to initialize tcm_info to zero to prevent an info-leak Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 415/570] NFC: pn533: bound the UART receive buffer Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 416/570] net: xilinx: axienet: Correct BD length masks to match AXIDMA IP spec Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 417/570] bpf: Fix regsafe() for pointers to packet Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 418/570] net: ipv6: flowlabel: defer exclusive option free until RCU teardown Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 419/570] netfilter: flowtable: strictly check for maximum number of actions Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 420/570] netfilter: nfnetlink_log: account for netlink header size Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 421/570] netfilter: x_tables: ensure names are nul-terminated Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 422/570] netfilter: ipset: use nla_strcmp for IPSET_ATTR_NAME attr Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 423/570] netfilter: nf_conntrack_helper: pass helper to expect cleanup Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 424/570] netfilter: ctnetlink: zero expect NAT fields when CTA_EXPECT_NAT absent Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 425/570] netfilter: x_tables: restrict xt_check_match/xt_check_target extensions for NFPROTO_ARP Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 426/570] netfilter: nf_tables: reject immediate NF_QUEUE verdict Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 427/570] Bluetooth: MGMT: validate LTK enc_size on load Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 428/570] rds: ib: reject FRMR registration before IB connection is established Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 429/570] net: macb: fix clk handling on PCI glue driver removal Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 430/570] net: macb: properly unregister fixed rate clocks Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 431/570] net/mlx5: Avoid "No data available" when FW version queries fail Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 432/570] net/x25: Fix potential double free of skb Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 433/570] net/x25: Fix overflow when accumulating packets Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 434/570] net/sched: cls_fw: fix NULL pointer dereference on shared blocks Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 435/570] net/sched: cls_flow: " Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 436/570] net: hsr: fix VLAN add unwind on slave errors Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 437/570] ipv6: avoid overflows in ip6_datagram_send_ctl() Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 438/570] bpf: reject direct access to nullable PTR_TO_BUF pointers Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 439/570] hwmon: (pxe1610) Check return value of page-select write in probe Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 440/570] hwmon: (tps53679) Fix device ID comparison and printing in tps53676_identify() Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 441/570] hwmon: (occ) Fix missing newline in occ_show_extended() Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 442/570] riscv: kgdb: fix several debug register assignment bugs Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 443/570] drm/ioc32: stop speculation on the drm_compat_ioctl path Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 444/570] wifi: wilc1000: fix u8 overflow in SSID scan buffer size calculation Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 445/570] USB: serial: option: add MeiG Smart SRM825WN Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 446/570] ALSA: caiaq: fix stack out-of-bounds read in init_card Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 447/570] ALSA: ctxfi: Fix missing SPDIFI1 index handling Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 448/570] Bluetooth: SMP: derive legacy responder STK authentication from MITM state Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 449/570] Bluetooth: SMP: force responder MITM requirements before building the pairing response Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 450/570] MIPS: Fix the GCC version check for `__multi3 workaround Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 451/570] hwmon: (occ) Fix division by zero in occ_show_power_1() Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 452/570] drm/ast: dp501: Fix initialization of SCU2C Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 453/570] USB: serial: io_edgeport: add support for Blackbox IC135A Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 454/570] USB: serial: option: add support for Rolling Wireless RW135R-GL Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 455/570] USB: core: add NO_LPM quirk for Razer Kiyo Pro webcam Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 456/570] Input: synaptics-rmi4 - fix a locking bug in an error path Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 457/570] Input: i8042 - add TUXEDO InfinityBook Max 16 Gen10 AMD to i8042 quirk table Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 458/570] Input: xpad - add support for Razer Wolverine V3 Pro Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 459/570] iio: dac: ad5770r: fix error return in ad5770r_read_raw() Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 460/570] iio: light: vcnl4035: fix scan buffer on big-endian Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 461/570] iio: imu: st_lsm6dsx: Set FIFO ODR for accelerometer and gyroscope only Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 462/570] iio: gyro: mpu3050: Fix incorrect free_irq() variable Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 463/570] iio: gyro: mpu3050: Fix irq resource leak Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 464/570] iio: gyro: mpu3050: Move iio_device_register() to correct location Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 465/570] iio: gyro: mpu3050: Fix out-of-sequence free_irq() Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 466/570] usb: quirks: add DELAY_INIT quirk for another Silicon Motion flash drive Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 467/570] usb: ulpi: fix double free in ulpi_register_interface() error path Greg Kroah-Hartman
2026-04-13 15:59 ` [PATCH 5.15 468/570] usb: usbtmc: Flush anchored URBs in usbtmc_release Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 469/570] usb: ehci-brcm: fix sleep during atomic Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 470/570] usb: dwc2: gadget: Fix spin_lock/unlock mismatch in dwc2_hsotg_udc_stop() Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 471/570] usb: cdns3: gadget: fix NULL pointer dereference in ep_queue Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 472/570] usb: cdns3: gadget: fix state inconsistency on gadget init failure Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 473/570] nvmet-tcp: fix use-before-check of sg in bounds validation Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 474/570] phy: renesas: rcar-gen3-usb2: Fix role detection on unbind/bind Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 475/570] phy: renesas: rcar-gen3-usb2: Move IRQ request in probe Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 476/570] phy: renesas: rcar-gen3-usb2: Lock around hardware registers and driver data Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 477/570] phy: renesas: rcar-gen3-usb2: Assert PLL reset on PHY power off Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 478/570] bridge: br_nd_send: validate ND option lengths Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 479/570] cdc-acm: new quirk for EPSON HMD Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 480/570] comedi: dt2815: add hardware detection to prevent crash Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 481/570] comedi: Reinit dev->spinlock between attachments to low-level drivers Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 482/570] comedi: ni_atmio16d: Fix invalid clean-up after failed attach Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 483/570] comedi: me_daq: Fix potential overrun of firmware buffer Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 484/570] comedi: me4000: " Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 485/570] netfilter: ipset: drop logically empty buckets in mtype_del Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 486/570] vxlan: validate ND option lengths in vxlan_na_create Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 487/570] net: ftgmac100: fix ring allocation unwind on open failure Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 488/570] thunderbolt: Fix property read in nhi_wake_supported() Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 489/570] USB: dummy-hcd: Fix locking/synchronization error Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 490/570] USB: dummy-hcd: Fix interrupt synchronization error Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 491/570] usb: gadget: dummy_hcd: fix premature URB completion when ZLP follows partial transfer Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 492/570] can: gs_usb: gs_usb_receive_bulk_callback(): fix URB memory leak Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 493/570] can: gs_usb: gs_usb_receive_bulk_callback(): unanchor URL on usb_submit_urb() error Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 494/570] can: gs_usb: gs_usb_receive_bulk_callback(): fix error message Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 495/570] fbcon: Set fb_display[i]->mode to NULL when the mode is released Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 496/570] net: mctp: Dont access ifa_index when missing Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 497/570] smb: client: Fix refcount leak for cifs_sb_tlink Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 498/570] staging: rtl8723bs: fix out-of-bounds read in rtw_get_ie() parser Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 499/570] usb: gadget: f_subset: Fix unbalanced refcnt in geth_free Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 500/570] usb: gadget: f_rndis: Protect RNDIS options with mutex Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 501/570] usb: gadget: f_uac1_legacy: validate control request size Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 502/570] io_uring/tctx: work around xa_store() allocation error issue Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 503/570] wifi: virt_wifi: remove SET_NETDEV_DEV to avoid use-after-free Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 504/570] ACPI: EC: Evaluate orphan _REG under EC device Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 505/570] lib/crypto: chacha: Zeroize permuted_state before it leaves scope Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 506/570] wifi: rt2x00usb: fix devres lifetime Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 507/570] xfrm_user: fix info leak in build_report() Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 508/570] mptcp: fix slab-use-after-free in __inet_lookup_established Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 509/570] Input: uinput - fix circular locking dependency with ff-core Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 510/570] Input: uinput - take event lock when submitting FF request "event" Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 511/570] media: uvcvideo: Mark invalid entities with id UVC_INVALID_ENTITY_ID Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 512/570] media: uvcvideo: Use heuristic to find stream entity Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 513/570] gpiolib: cdev: fix uninitialised kfifo Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 514/570] iio: adc: ad7923: Fix buffer overflow for tx_buf and ring_xfer Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 515/570] apparmor: validate DFA start states are in bounds in unpack_pdb Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 516/570] apparmor: fix memory leak in verify_header Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 517/570] apparmor: replace recursive profile removal with iterative approach Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 518/570] apparmor: fix: limit the number of levels of policy namespaces Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 519/570] apparmor: fix side-effect bug in match_char() macro usage Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 520/570] apparmor: fix missing bounds check on DEFAULT table in verify_dfa() Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 521/570] apparmor: Fix double free of ns_name in aa_replace_profiles() Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 522/570] apparmor: fix unprivileged local user can do privileged policy management Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 523/570] apparmor: fix differential encoding verification Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 524/570] apparmor: fix race on rawdata dereference Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 525/570] apparmor: fix race between freeing data and fs accessing it Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 526/570] netfilter: nft_ct: fix use-after-free in timeout object destroy Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 527/570] tipc: fix bc_ackers underflow on duplicate GRP_ACK_MSG Greg Kroah-Hartman
2026-04-13 16:00 ` [PATCH 5.15 528/570] wifi: brcmsmac: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 529/570] arm64: dts: hisilicon: poplar: Correct PCIe reset GPIO polarity Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 530/570] arm64: dts: hisilicon: hi3798cv200: Add missing dma-ranges Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 531/570] nfc: pn533: allocate rx skb before consuming bytes Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 532/570] batman-adv: reject oversized global TT response buffers Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 533/570] net/tls: fix use-after-free in -EBUSY error path of tls_do_encryption Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 534/570] net: altera-tse: fix skb leak on DMA mapping error in tse_start_xmit() Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 535/570] drm/i915/gt: fix refcount underflow in intel_engine_park_heartbeat Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 536/570] mmc: vub300: fix NULL-deref on disconnect Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 537/570] net: qualcomm: qca_uart: report the consumed byte on RX skb allocation failure Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 538/570] net: stmmac: fix integer underflow in chain mode Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 539/570] rxrpc: fix reference count leak in rxrpc_server_keyring() Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 540/570] rxrpc: Fix key/keyring checks in setsockopt(RXRPC_SECURITY_KEY/KEYRING) Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 541/570] netlink: add nla be16/32 types to minlen array Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 542/570] xen/privcmd: unregister xenstore notifier on module exit Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 543/570] Revert "mptcp: add needs_id for netlink appending addr" Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 544/570] seg6: separate dst_cache for input and output paths in seg6 lwtunnel Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 545/570] net: rfkill: prevent unlimited numbers of rfkill events from being created Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 546/570] usb: gadget: f_hid: move list and spinlock inits from bind to alloc Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 547/570] usb: gadget: u_ether: Fix race between gether_disconnect and eth_stop Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 548/570] usb: gadget: uvc: fix NULL pointer dereference during unbind race Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 549/570] ext4: publish jinode after initialization Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 550/570] ext4: fix the might_sleep() warnings in kvfree() Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 551/570] ext4: fix use-after-free in update_super_work when racing with umount Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 552/570] xfs: save ailp before dropping the AIL lock in push callbacks Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 553/570] dmaengine: sh: rz-dmac: Move CHCTRL updates under spinlock Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 554/570] dmaengine: sh: rz-dmac: Protect the driver specific lists Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 555/570] KVM: x86/mmu: Drop/zap existing present SPTE even when creating an MMIO SPTE Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 556/570] net: macb: Move devm_{free,request}_irq() out of spin lock area Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 557/570] scsi: target: tcm_loop: Drain commands in target_reset handler Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 558/570] mm/huge_memory: fix folio isnt locked in softleaf_to_folio() Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 559/570] x86/cpu: Enable FSGSBASE early in cpu_init_exception_handling() Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 560/570] tracing: Fix potential deadlock in cpu hotplug with osnoise Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 561/570] ksmbd: fix potencial OOB in get_file_all_info() for compound requests Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 562/570] ksmbd: replace hardcoded hdr2_len with offsetof() in smb2_calc_max_out_buf_len() Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 563/570] i2c: cp2615: replace deprecated strncpy with strscpy Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 564/570] i2c: cp2615: fix serial string NULL-deref at probe Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 565/570] Bluetooth: L2CAP: Fix accepting multiple L2CAP_ECRED_CONN_REQ Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 566/570] drm: Fix use-after-free on framebuffers and property blobs when calling drm_dev_unplug Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 567/570] ksmbd: Fix refcount leak when invalid session is found on session lookup Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 568/570] ksmbd: Fix dangling pointer in krb_authenticate Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 569/570] Revert "PCI: Enable ACS after configuring IOMMU for OF platforms" Greg Kroah-Hartman
2026-04-13 16:01 ` [PATCH 5.15 570/570] io_uring/poll: correctly handle io_poll_add() return value on update Greg Kroah-Hartman
2026-04-13 17:38 ` [PATCH 5.15 000/570] 5.15.203-rc1 review Brett A C Sheffield
2026-04-13 18:27 ` Florian Fainelli
2026-04-13 18:51 ` Nathan Chancellor
2026-04-14  7:53 ` Jon Hunter
2026-04-14  8:09 ` Pavel Machek
2026-04-14 11:58 ` Ron Economos
2026-04-14 14:30 ` Vijayendra Suman
2026-04-14 18:19 ` Mark Brown
2026-04-14 21:49 ` Shuah Khan
2026-04-16 15:04 ` Barry K. Nathan

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=20260413155836.332587301@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=corbet@lwn.net \
    --cc=jstultz@google.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=rdunlap@infradead.org \
    --cc=sashal@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tglx@linutronix.de \
    /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