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, Gui-Dong Han <hanguidong02@gmail.com>,
	Guenter Roeck <linux@roeck-us.net>
Subject: [PATCH 5.15 332/554] hwmon: (max16065) Use local variable to avoid TOCTOU
Date: Thu, 15 Jan 2026 17:46:38 +0100	[thread overview]
Message-ID: <20260115164258.248685114@linuxfoundation.org> (raw)
In-Reply-To: <20260115164246.225995385@linuxfoundation.org>

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

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

From: Gui-Dong Han <hanguidong02@gmail.com>

commit b8d5acdcf525f44e521ca4ef51dce4dac403dab4 upstream.

In max16065_current_show, data->curr_sense is read twice: once for the
error check and again for the calculation. Since
i2c_smbus_read_byte_data returns negative error codes on failure, if the
data changes to an error code between the check and the use, ADC_TO_CURR
results in an incorrect calculation.

Read data->curr_sense into a local variable to ensure consistency. Note
that data->curr_gain is constant and safe to access directly.

This aligns max16065_current_show with max16065_input_show, which
already uses a local variable for the same reason.

Link: https://lore.kernel.org/all/CALbr=LYJ_ehtp53HXEVkSpYoub+XYSTU8Rg=o1xxMJ8=5z8B-g@mail.gmail.com/
Fixes: f5bae2642e3d ("hwmon: Driver for MAX16065 System Manager and compatibles")
Cc: stable@vger.kernel.org
Signed-off-by: Gui-Dong Han <hanguidong02@gmail.com>
Link: https://lore.kernel.org/r/20251128124709.3876-1-hanguidong02@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/hwmon/max16065.c |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

--- a/drivers/hwmon/max16065.c
+++ b/drivers/hwmon/max16065.c
@@ -216,12 +216,13 @@ static ssize_t max16065_current_show(str
 				     struct device_attribute *da, char *buf)
 {
 	struct max16065_data *data = max16065_update_device(dev);
+	int curr_sense = data->curr_sense;
 
-	if (unlikely(data->curr_sense < 0))
-		return data->curr_sense;
+	if (unlikely(curr_sense < 0))
+		return curr_sense;
 
 	return sysfs_emit(buf, "%d\n",
-			  ADC_TO_CURR(data->curr_sense, data->curr_gain));
+			  ADC_TO_CURR(curr_sense, data->curr_gain));
 }
 
 static ssize_t max16065_limit_store(struct device *dev,



  parent reply	other threads:[~2026-01-15 17:29 UTC|newest]

Thread overview: 564+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-15 16:41 [PATCH 5.15 000/554] 5.15.198-rc1 review Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 001/554] xfrm: delete x->tunnel as we delete x Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 002/554] Revert "xfrm: destroy xfrm_state synchronously on net exit path" Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 003/554] xfrm: also call xfrm_state_delete_tunnel at destroy time for states that were never added Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 004/554] xfrm: flush all states in xfrm_state_fini Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 005/554] dpaa2-mac: bail if the dpmacs fwnode is not found Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 006/554] drm/i915/selftests: Fix inconsistent IS_ERR and PTR_ERR Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 007/554] leds: Replace all non-returning strlcpy with strscpy Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 008/554] leds: spi-byte: Use devm_led_classdev_register_ext() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 009/554] Documentation: process: Also mention Sasha Levin as stable tree maintainer Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 010/554] jbd2: avoid bug_on in jbd2_journal_get_create_access() when file system corrupted Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 011/554] ext4: refresh inline data size before write operations Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 012/554] locking/spinlock/debug: Fix data-race in do_raw_write_lock Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 013/554] ext4: add i_data_sem protection in ext4_destroy_inline_data_nolock() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 014/554] comedi: pcl818: fix null-ptr-deref in pcl818_ai_cancel() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 015/554] USB: serial: option: add Foxconn T99W760 Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 016/554] USB: serial: option: add Telit Cinterion FE910C04 new compositions Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 017/554] USB: serial: option: move Telit 0x10c7 composition in the right place Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 018/554] USB: serial: ftdi_sio: match on interface number for jtag Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 019/554] serial: add support of CPCI cards Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 020/554] USB: serial: belkin_sa: fix TIOCMBIS and TIOCMBIC Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 021/554] USB: serial: kobil_sct: " Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 022/554] spi: xilinx: increase number of retries before declaring stall Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 023/554] spi: imx: keep dma request disabled before dma transfer setup Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 024/554] bfs: Reconstruct file type when loading from disk Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 025/554] pinctrl: qcom: msm: Fix deadlock in pinmux configuration Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 026/554] platform/x86: acer-wmi: Ignore backlight event Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 027/554] platform/x86: huawei-wmi: add keys for HONOR models Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 028/554] HID: elecom: Add support for ELECOM M-XT3URBK (018F) Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 029/554] samples: work around glibc redefining some of our defines wrong Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 030/554] comedi: c6xdigio: Fix invalid PNP driver unregistration Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 031/554] comedi: multiq3: sanitize config options in multiq3_attach() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 032/554] comedi: check devices attached status in compat ioctls Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 033/554] staging: rtl8723bs: fix stack buffer overflow in OnAssocReq IE parsing Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 034/554] staging: rtl8723bs: fix out-of-bounds read in OnBeacon ESR " Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 035/554] smack: fix bug: unprivileged task can create labels Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 036/554] gpu: host1x: Fix race in syncpt alloc/free Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 037/554] drm/panel: visionox-rm69299: Dont clear all mode flags Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 038/554] drm/vgem-fence: Fix potential deadlock on release Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 039/554] USB: Fix descriptor count when handling invalid MBIM extended descriptor Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 040/554] irqchip/qcom-irq-combiner: Fix section mismatch Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 041/554] ntfs3: fix uninit memory after failed mi_read in mi_format_new Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 042/554] ntfs3: Fix uninit buffer allocated by __getname() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 043/554] rculist: Add hlist_nulls_replace_rcu() and hlist_nulls_replace_init_rcu() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 044/554] inet: Avoid ehash lookup race in inet_ehash_insert() Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 045/554] iio: imu: st_lsm6dsx: introduce st_lsm6dsx_device_set_enable routine Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 046/554] iio: imu: st_lsm6dsx: discard samples during filters settling time Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 047/554] iio: imu: st_lsm6dsx: Fix measurement unit for odr struct member Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 048/554] arm64: dts: imx8mm-venice-gw72xx: remove unused sdhc1 pinctrl Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 049/554] uio: uio_fsl_elbc_gpcm:: Add null pointer check to uio_fsl_elbc_gpcm_probe Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 050/554] crypto: asymmetric_keys - prevent overflow in asymmetric_key_generate_id Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 051/554] crypto: hisilicon/qm - restore original qos values Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 052/554] s390/smp: Fix fallback CPU detection Greg Kroah-Hartman
2026-01-15 16:41 ` [PATCH 5.15 053/554] s390/ap: Dont leak debug feature files if AP instructions are not available Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 054/554] firmware: imx: scu-irq: fix OF node leak in Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 055/554] phy: mscc: Fix PTP for VSC8574 and VSC8572 Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 056/554] sctp: Defer SCTP_DBG_OBJCNT_DEC() to sctp_destroy_sock() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 057/554] compiler-gcc.h: Define __SANITIZE_ADDRESS__ under hwaddress sanitizer Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 058/554] kmsan: introduce __no_sanitize_memory and __no_kmsan_checks Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 059/554] x86: kmsan: dont instrument stack walking functions Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 060/554] x86/dumpstack: Prevent KASAN false positive warnings in __show_regs() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 061/554] pinctrl: stm32: fix hwspinlock resource leak in probe function Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 062/554] i3c: remove i2c board info from i2c_dev_desc Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 063/554] i3c: support dynamically added i2c devices Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 064/554] i3c: Allow OF-alias-based persistent bus numbering Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 065/554] i3c: master: Inherit DMA masks and parameters from parent device Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 066/554] i3c: fix refcount inconsistency in i3c_master_register Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 067/554] i3c: master: svc: Prevent incomplete IBI transaction Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 068/554] power: supply: wm831x: Check wm831x_set_bits() return value Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 069/554] power: supply: apm_power: only unset own apm_get_power_status Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 070/554] scsi: target: Do not write NUL characters into ASCII configfs output Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 071/554] spi: tegra210-quad: use device_reset method Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 072/554] spi: tegra210-quad: add new chips to compatible Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 073/554] spi: tegra210-quad: combined sequence mode Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 074/554] spi: tegra210-quad: modify chip select (CS) deactivation Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 075/554] spi: tegra210-quad: Fix timeout handling Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 076/554] mfd: da9055: Fix missing regmap_del_irq_chip() in error path Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 077/554] ext4: minor defrag code improvements Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 078/554] ext4: correct the checking of quota files before moving extents Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 079/554] perf/x86/intel: Correct large PEBS flag check Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 080/554] regulator: core: disable supply if enabling main regulator fails Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 081/554] nbd: clean up return value checking of sock_xmit() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 082/554] nbd: partition nbd_read_stat() into nbd_read_reply() and nbd_handle_reply() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 083/554] nbd: defer config put in recv_work Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 084/554] scsi: stex: Fix reboot_notifier leak in probe error path Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 085/554] dt-bindings: PCI: convert amlogic,meson-pcie.txt to dt-schema Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 086/554] dt-bindings: PCI: amlogic: Fix the register name of the DBI region Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 087/554] RDMA/rtrs: server: Fix error handling in get_or_create_srv Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 088/554] ntfs3: init run lock for extend inode Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 089/554] powerpc/32: Fix unpaired stwcx. on interrupt exit Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 090/554] macintosh/mac_hid: fix race condition in mac_hid_toggle_emumouse Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 091/554] wifi: cw1200: Fix potential memory leak in cw1200_bh_rx_helper() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 092/554] nbd: defer config unlock in nbd_genl_connect Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 093/554] coresight: etm4x: Save restore TRFCR_EL1 Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 094/554] coresight: etm4x: Use Trace Filtering controls dynamically Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 095/554] coresight-etm4x: add isb() before reading the TRCSTATR Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 096/554] coresight: etm4x: Extract the trace unit controlling Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 097/554] coresight: etm4x: Add context synchronization before enabling trace Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 098/554] clk: renesas: r9a06g032: Export function to set dmamux Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 099/554] soc: renesas: r9a06g032-sysctrl: Handle h2mode setting based on USBF presence Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 100/554] clk: renesas: r9a06g032: Fix memory leak in error path Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 101/554] lib/vsprintf: Check pointer before dereferencing in time_and_date() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 102/554] ocfs2: relax BUG() to ocfs2_error() in __ocfs2_move_extent() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 103/554] ACPI: property: Fix fwnode refcount leak in acpi_fwnode_graph_parse_endpoint() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 104/554] scsi: sim710: Fix resource leak by adding missing ioport_unmap() calls Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 105/554] leds: netxbig: Fix GPIO descriptor leak in error paths Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 106/554] PCI: keystone: Exit ks_pcie_probe() for invalid mode Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 107/554] ps3disk: use memcpy_{from,to}_bvec index Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 108/554] selftests/bpf: Fix failure paths in send_signal test Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 109/554] watchdog: wdat_wdt: Stop watchdog when uninstalling module Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 110/554] watchdog: wdat_wdt: Fix ACPI table leak in probe function Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 111/554] NFSD/blocklayout: Fix minlength check in proc_layoutget Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 112/554] wifi: rtl818x: Fix potential memory leaks in rtl8180_init_rx_ring() Greg Kroah-Hartman
2026-01-15 16:42 ` [PATCH 5.15 113/554] powerpc/64s/ptdump: Fix kernel_hash_pagetable dump for ISA v3.00 HPTE format Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 114/554] fs/ntfs3: Remove unused mi_mark_free Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 115/554] fs/ntfs3: Add new argument is_mft to ntfs_mark_rec_free Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 116/554] fs/ntfs3: Make ni_ins_new_attr return error Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 117/554] fs/ntfs3: out1 also needs to put mi Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 118/554] fs/ntfs3: Prevent memory leaks in add sub record Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 119/554] drm/mediatek: Fix CCORR mtk_ctm_s31_32_to_s1_n function issue Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 120/554] pwm: bcm2835: Make sure the channel is enabled after pwm_request() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 121/554] mfd: mt6397-irq: Fix missing irq_domain_remove() in error path Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 122/554] mfd: mt6358-irq: " Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 123/554] wifi: rtl818x: rtl8187: Fix potential buffer underflow in rtl8187_rx_cb() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 124/554] ima: Handle error code returned by ima_filter_rule_match() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 125/554] usb: chaoskey: fix locking for O_NONBLOCK Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 126/554] usb: dwc2: disable platform lowlevel hw resources during shutdown Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 127/554] usb: dwc2: fix hang during shutdown if set as peripheral Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 128/554] usb: dwc2: fix hang during suspend " Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 129/554] usb: raw-gadget: cap raw_io transfer length to KMALLOC_MAX_SIZE Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 130/554] selftests/bpf: skip test_perf_branches_hw() on unsupported platforms Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 131/554] selftests/bpf: Improve reliability of test_perf_branches_no_hw() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 132/554] crypto: ccree - Correctly handle return of sg_nents_for_len Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 133/554] mt76: mt7615: Fix memory leak in mt7615_mcu_wtbl_sta_add() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 134/554] staging: fbtft: core: fix potential memory leak in fbtft_probe_common() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 135/554] PCI: dwc: Fix wrong PORT_LOGIC_LTSSM_STATE_MASK definition Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 136/554] wifi: ieee80211: correct FILS status codes Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 137/554] backlight: led_bl: Take led_access lock when required Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 138/554] backlight: led-bl: Add devlink to supplier LEDs Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 139/554] backlight: lp855x: Fix lp855x.h kernel-doc warnings Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 140/554] iommu/arm-smmu-qcom: Enable use of all SMR groups when running bare-metal Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 141/554] RDMA/irdma: Fix data race in irdma_sc_ccq_arm Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 142/554] RDMA/irdma: Fix data race in irdma_free_pble Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 143/554] ASoC: fsl_xcvr: Add Counter registers Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 144/554] ASoC: fsl_xcvr: Add support for i.MX93 platform Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 145/554] ASoC: fsl_xcvr: clear the channel status control memory Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 146/554] drm/amd/display: Fix logical vs bitwise bug in get_embedded_panel_info_v2_1() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 147/554] ACPI: processor_core: fix map_x2apic_id for amd-pstate on am4 Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 148/554] ext4: remove unused return value of __mb_check_buddy Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 149/554] ext4: improve integrity checking in __mb_check_buddy by enhancing order-0 validation Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 150/554] vdpa: Introduce and use vdpa device get, set config helpers Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 151/554] vdpa: Introduce query of device config layout Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 152/554] vdpa: Sync calls set/get config/status with cf_mutex Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 153/554] virtio_vdpa: fix misleading return in void function Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 154/554] virtio: fix virtqueue_set_affinity() docs Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 155/554] ASoC: Intel: catpt: Fix error path in hw_params() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 156/554] regulator: core: Protect regulator_supply_alias_list with regulator_list_mutex Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 157/554] netfilter: flowtable: check for maximum number of encapsulations in bridge vlan Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 158/554] netfilter: nf_conncount: reduce unnecessary GC Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 159/554] netfilter: nf_conncount: rework API to use sk_buff directly Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 160/554] netfilter: nft_connlimit: update the count if add was skipped Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 161/554] net: stmmac: fix rx limit check in stmmac_rx_zc() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 162/554] mtd: lpddr_cmds: fix signed shifts in lpddr_cmds Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 163/554] remoteproc: qcom_q6v5_wcss: fix parsing of qcom,halt-regs Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 164/554] net/sched: sch_cake: Fix incorrect qlen reduction in cake_drop Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 165/554] perf tools: Fix split kallsyms DSO counting Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 166/554] pinctrl: single: Fix PIN_CONFIG_BIAS_DISABLE handling Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 167/554] pinctrl: single: Fix incorrect type for error return variable Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 168/554] fbdev: ssd1307fb: fix potential page leak in ssd1307fb_probe() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 169/554] NFS: Label the dentry with a verifier in nfs_rmdir() and nfs_unlink() Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 170/554] NFS: dont unhash dentry during unlink/rename Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 171/554] NFS: Avoid changing nlink when file removes and attribute updates race Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 172/554] fs/nls: Fix utf16 to utf8 conversion Greg Kroah-Hartman
2026-01-15 16:43 ` [PATCH 5.15 173/554] NFSv4: Add some support for case insensitive filesystems Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 174/554] NFS: Fix the verifier for case sensitive filesystem in nfs_atomic_open() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 175/554] NFS: Initialise verifiers for visible dentries " Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 176/554] NFSv4/pNFS: Clear NFS_INO_LAYOUTCOMMIT in pnfs_mark_layout_stateid_invalid Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 177/554] Revert "nfs: ignore SB_RDONLY when remounting nfs" Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 178/554] Revert "nfs: clear SB_RDONLY before getting superblock" Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 179/554] Revert "nfs: ignore SB_RDONLY when mounting nfs" Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 180/554] fs_context: drop the unused lsm_flags member Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 181/554] NFS: Automounted filesystems should inherit ro,noexec,nodev,sync flags Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 182/554] fs/nls: Fix inconsistency between utf8_to_utf32() and utf32_to_utf8() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 183/554] platform/x86: asus-wmi: use brightness_set_blocking() for kbd led Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 184/554] ASoC: bcm: bcm63xx-pcm-whistler: Check return value of of_dma_configure() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 185/554] ASoC: ak4458: Disable regulator when error happens Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 186/554] ASoC: ak5558: " Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 187/554] blk-mq: Abort suspend when wakeup events are pending Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 188/554] block: fix comment for op_is_zone_mgmt() to include RESET_ALL Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 189/554] dma/pool: eliminate alloc_pages warning in atomic_pool_expand Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 190/554] ALSA: uapi: Fix typo in asound.h comment Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 191/554] ARM: 9464/1: fix input-only operand modification in load_unaligned_zeropad() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 192/554] dm-raid: fix possible NULL dereference with undefined raid type Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 193/554] dm log-writes: Add missing set_freezable() for freezable kthread Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 194/554] efi/cper: Add a new helper function to print bitmasks Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 195/554] efi/cper: Adjust infopfx size to accept an extra space Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 196/554] efi/cper: align ARM CPER type with UEFI 2.9A/2.10 specs Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 197/554] ocfs2: fix memory leak in ocfs2_merge_rec_left() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 198/554] usb: gadget: tegra-xudc: Always reinitialize data toggle when clear halt Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 199/554] usb: phy: Initialize struct usb_phy list_head Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 200/554] ALSA: dice: fix buffer overflow in detect_stream_formats() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 201/554] ASoC: fsl_xcvr: get channel status data when PHY is not exists Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 202/554] NFS: Fix missing unlock in nfs_unlink() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 203/554] netfilter: nf_conncount: garbage collection is not skipped when jiffies wrap around Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 204/554] coresight: etm4x: Correct polling IDLE bit Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 205/554] spi: tegra210-quad: Fix validate combined sequence Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 206/554] spi: tegra210-quad: Fix X1_X2_X4 encoding and support x4 transfers Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 207/554] i3c: fix uninitialized variable use in i2c setup Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 208/554] bpf, arm64: Do not audit capability check in do_jit() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 209/554] btrfs: fix memory leak of fs_devices in degraded seed device path Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 210/554] sched/deadline: only set free_cpus for online runqueues Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 211/554] x86/ptrace: Always inline trivial accessors Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 212/554] ACPICA: Avoid walking the Namespace if start_node is NULL Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 213/554] ACPI: property: Use ACPI functions in acpi_graph_get_next_endpoint() only Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 214/554] cpufreq: s5pv210: fix refcount leak Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 215/554] livepatch: Match old_sympos 0 and 1 in klp_find_func() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 216/554] fs/ntfs3: Support timestamps prior to epoch Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 217/554] hfsplus: fix volume corruption issue for generic/070 Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 218/554] hfsplus: fix missing hfs_bnode_get() in __hfs_bnode_create Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 219/554] hfsplus: Verify inode mode when loading from disk Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 220/554] hfsplus: fix volume corruption issue for generic/073 Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 221/554] btrfs: scrub: always update btrfs_scrub_progress::last_physical Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 222/554] Bluetooth: btusb: Add new VID/PID 13d3/3533 for RTL8821CE Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 223/554] netrom: Fix memory leak in nr_sendmsg() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 224/554] net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 225/554] ipvlan: Ignore PACKET_LOOPBACK in handle_mode_l2() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 226/554] mlxsw: spectrum_router: Fix neighbour use-after-free Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 227/554] mlxsw: spectrum_mr: Fix use-after-free when updating multicast route stats Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 228/554] net: openvswitch: fix middle attribute validation in push_nsh() action Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 229/554] broadcom: b44: prevent uninitialized value usage Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 230/554] netfilter: nf_conncount: fix leaked ct in error paths Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 231/554] ipvs: fix ipv4 null-ptr-deref in route error path Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 232/554] caif: fix integer underflow in cffrml_receive() Greg Kroah-Hartman
2026-01-15 16:44 ` [PATCH 5.15 233/554] net/sched: ets: Remove drr class from the active list if it changes to strict Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 234/554] nfc: pn533: Fix error code in pn533_acr122_poweron_rdr() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 235/554] ethtool: use phydev variable Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 236/554] net/ethtool/ioctl: remove if n_stats checks from ethtool_get_phy_stats Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 237/554] net/ethtool/ioctl: split ethtool_get_phy_stats into multiple helpers Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 238/554] ethtool: Avoid overflowing userspace buffer on stats query Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 239/554] net/mlx5: fw_tracer, Add support for unrecognized string Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 240/554] net/mlx5: fw_tracer, Validate format string parameters Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 241/554] net/mlx5: fw_tracer, Handle escaped percent properly Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 242/554] net: hns3: using the num_tqps in the vf driver to apply for resources Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 243/554] net: hns3: Align type of some variables with their print type Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 244/554] net: hns3: using the num_tqps to check whether tqp_index is out of range when vf get ring info from mbx Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 245/554] net: hns3: add VLAN id validation before using Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 246/554] HID: input: map HID_GD_Z to ABS_DISTANCE for stylus/pen Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 247/554] Input: ti_am335x_tsc - fix off-by-one error in wire_order validation Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 248/554] Input: i8042 - add TUXEDO InfinityBook Max Gen10 AMD to i8042 quirk table Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 249/554] ACPI: CPPC: Fix missing PCC check for guaranteed_perf Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 250/554] spi: fsl-cpm: Check length parity before switching to 16 bit mode Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 251/554] mmc: sdhci-esdhc-imx: add alternate ARCH_S32 dependency to Kconfig Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 252/554] net/hsr: fix NULL pointer dereference in prp_get_untagged_frame() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 253/554] ALSA: vxpocket: Fix resource leak in vxpocket_probe error path Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 254/554] ALSA: pcmcia: Fix resource leak in snd_pdacf_probe " Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 255/554] ALSA: usb-mixer: us16x08: validate meter packet indices Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 256/554] ipmi: Fix the race between __scan_channels() and deliver_response() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 257/554] ipmi: Fix __scan_channels() failing to rescan channels Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 258/554] firmware: imx: scu-irq: Init workqueue before request mbox channel Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 259/554] ti-sysc: allow OMAP2 and OMAP4 timers to be reserved on AM33xx Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 260/554] clk: mvebu: cp110 add CLK_IGNORE_UNUSED to pcie_x10, pcie_x11 & pcie_x4 Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 261/554] powerpc/addnote: Fix overflow on 32-bit builds Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 262/554] scsi: qla2xxx: Fix lost interrupts with qlini_mode=disabled Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 263/554] scsi: qla2xxx: Fix initiator mode with qlini_mode=exclusive Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 264/554] scsi: qla2xxx: Use reinit_completion on mbx_intr_comp Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 265/554] via_wdt: fix critical boot hang due to unnamed resource allocation Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 266/554] reset: fix BIT macro reference Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 267/554] exfat: fix remount failure in different process environments Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 268/554] usbip: Fix locking bug in RT-enabled kernels Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 269/554] usb: typec: ucsi: Handle incorrect num_connectors capability Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 270/554] usb: xhci: limit run_graceperiod for only usb 3.0 devices Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 271/554] usb: usb-storage: No additional quirks need to be added to the EL-R12 optical drive Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 272/554] serial: sprd: Return -EPROBE_DEFER when uart clock is not ready Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 273/554] nvme-fc: dont hold rport lock when putting ctrl Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 274/554] platform/x86/intel/hid: Add Dell Pro Rugged 10/12 tablet to VGBS DMI quirks Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 275/554] vhost/vsock: improve RCU read sections around vhost_vsock_get() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 276/554] KEYS: trusted: Fix a memory leak in tpm2_load_cmd Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 277/554] mmc: sdhci-msm: Avoid early clock doubling during HS400 transition Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 278/554] lib/crypto: x86/blake2s: Fix 32-bit arg treated as 64-bit Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 279/554] block: rate-limit capacity change info log Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 280/554] floppy: fix for PAGE_SIZE != 4KB Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 281/554] fs/ntfs3: fix mount failure for sparse runs in run_unpack() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 282/554] ktest.pl: Fix uninitialized var in config-bisect.pl Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 283/554] ext4: xattr: fix null pointer deref in ext4_raw_inode() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 284/554] ext4: clear i_state_flags when alloc inode Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 285/554] ext4: fix incorrect group number assertion in mb_check_buddy Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 286/554] ext4: align max orphan file size with e2fsprogs limit Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 287/554] jbd2: use a weaker annotation in journal handling Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 288/554] media: v4l2-mem2mem: Fix outdated documentation Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 289/554] usb: usb-storage: Maintain minimal modifications to the bcdDevice range Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 290/554] media: dvb-usb: dtv5100: fix out-of-bounds in dtv5100_i2c_msg() Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 291/554] media: pvrusb2: Fix incorrect variable used in trace message Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 292/554] phy: broadcom: bcm63xx-usbh: fix section mismatches Greg Kroah-Hartman
2026-01-15 16:45 ` [PATCH 5.15 293/554] USB: lpc32xx_udc: Fix error handling in probe Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 294/554] usb: phy: fsl-usb: Fix use-after-free in delayed work during device removal Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 295/554] usb: phy: isp1301: fix non-OF device reference imbalance Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 296/554] usb: dwc3: of-simple: fix clock resource leak in dwc3_of_simple_probe Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 297/554] usb: renesas_usbhs: Fix a resource leak in usbhs_pipe_malloc() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 298/554] char: applicom: fix NULL pointer dereference in ac_ioctl Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 299/554] intel_th: Fix error handling in intel_th_output_open Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 300/554] cpufreq: nforce2: fix reference count leak in nforce2 Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 301/554] scsi: Revert "scsi: qla2xxx: Perform lockless command completion in abort path" Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 302/554] scsi: aic94xx: fix use-after-free in device removal path Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 303/554] NFSD: use correct reservation type in nfsd4_scsi_fence_client Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 304/554] scsi: target: Reset t_task_cdb pointer in error case Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 305/554] f2fs: invalidate dentry cache on failed whiteout creation Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 306/554] f2fs: fix return value of f2fs_recover_fsync_data() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 307/554] tools/testing/nvdimm: Use per-DIMM device handle Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 308/554] media: vidtv: initialize local pointers upon transfer of memory ownership Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 309/554] ocfs2: fix kernel BUG in ocfs2_find_victim_chain Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 310/554] platform/chrome: cros_ec_ishtp: Fix UAF after unbinding driver Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 311/554] scs: fix a wrong parameter in __scs_magic Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 312/554] parisc: Do not reprogram affinitiy on ASP chip Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 313/554] libceph: make decode_pool() more resilient against corrupted osdmaps Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 314/554] KVM: x86: WARN if hrtimer callback for periodic APIC timer fires with period=0 Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 315/554] KVM: x86: Explicitly set new periodic hrtimer expiration in apic_timer_fn() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 316/554] KVM: x86: Fix VM hard lockup after prolonged inactivity with periodic HV timer Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 317/554] KVM: nSVM: Propagate SVM_EXIT_CR0_SEL_WRITE correctly for LMSW emulation Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 318/554] KVM: nSVM: Set exit_code_hi to -1 when synthesizing SVM_EXIT_ERR (failed VMRUN) Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 319/554] KVM: nSVM: Clear exit_code_hi in VMCB when synthesizing nested VM-Exits Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 320/554] tracing: Do not register unsupported perf events Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 321/554] PM: runtime: Do not clear needs_force_resume with enabled runtime PM Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 322/554] fsnotify: do not generate ACCESS/MODIFY events on child for special files Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 323/554] nfsd: Mark variable __maybe_unused to avoid W=1 build break Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 324/554] svcrdma: return 0 on success from svc_rdma_copy_inline_range Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 325/554] io_uring: fix filename leak in __io_openat_prep() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 326/554] drm/amd/display: Use GFP_ATOMIC in dc_create_plane_state() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 327/554] amba: tegra-ahb: Fix device leak on SMMU enable Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 328/554] soc: qcom: ocmem: fix device leak on lookup Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 329/554] soc: amlogic: canvas: " Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 330/554] rpmsg: glink: fix rpmsg device leak Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 331/554] i2c: amd-mp2: fix reference leak in MP2 PCI device Greg Kroah-Hartman
2026-01-15 16:46 ` Greg Kroah-Hartman [this message]
2026-01-15 16:46 ` [PATCH 5.15 333/554] hwmon: (w83791d) Convert macros to functions to avoid TOCTOU Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 334/554] hwmon: (w83l786ng) " Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 335/554] i40e: fix scheduling in set_rx_mode Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 336/554] i40e: Refactor argument of several client notification functions Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 337/554] i40e: Refactor argument of i40e_detect_recover_hung() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 338/554] i40e: validate ring_len parameter against hardware-specific values Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 339/554] iavf: fix off-by-one issues in iavf_config_rss_reg() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 340/554] crypto: seqiv - Do not use req->iv after crypto_aead_encrypt Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 341/554] Bluetooth: btusb: revert use of devm_kzalloc in btusb Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 342/554] net: mdio: aspeed: move reg accessing part into separate functions Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 343/554] net: mdio: aspeed: add dummy read to avoid read-after-write issue Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 344/554] net: openvswitch: Avoid needlessly taking the RTNL on vport destroy Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 345/554] ip6_gre: make ip6gre_header() robust Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 346/554] platform/x86: msi-laptop: add missing sysfs_remove_group() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 347/554] platform/x86: ibm_rtl: fix EBDA signature search pointer arithmetic Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 348/554] team: fix check for port enabled in team_queue_override_port_prio_changed() Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 349/554] net: usb: rtl8150: fix memory leak on usb_submit_urb() failure Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 350/554] smc91x: fix broken irq-context in PREEMPT_RT Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 351/554] genalloc.h: fix htmldocs warning Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 352/554] firewire: nosy: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-01-15 16:46 ` [PATCH 5.15 353/554] net: dsa: b53: skip multicast entries for fdb_dump() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 354/554] net: usb: asix: validate PHY address before use Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 355/554] net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group struct Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 356/554] octeontx2-pf: fix "UBSAN: shift-out-of-bounds error" Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 357/554] ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 358/554] ipv4: Fix reference count leak when using error routes with nexthop objects Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 359/554] net: rose: fix invalid array index in rose_kill_by_device() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 360/554] RDMA/irdma: avoid invalid read in irdma_net_event Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 361/554] RDMA/efa: Remove possible negative shift Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 362/554] RDMA/core: Fix logic error in ib_get_gids_from_rdma_hdr() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 363/554] RDMA/bnxt_re: Fix incorrect BAR check in bnxt_qplib_map_creq_db() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 364/554] RDMA/bnxt_re: Fix IB_SEND_IP_CSUM handling in post_send Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 365/554] RDMA/bnxt_re: Fix to use correct page size for PDE table Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 366/554] RDMA/rtrs: Fix clt_path::max_pages_per_mr calculation Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 367/554] RDMA/bnxt_re: fix dma_free_coherent() pointer Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 368/554] selftests/ftrace: traceonoff_triggers: strip off names Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 369/554] ASoC: stm32: sai: fix device leak on probe Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 370/554] ASoC: qcom: q6asm-dai: perform correct state check before closing Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 371/554] ASoC: qcom: q6adm: the the copp device only during last instance Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 372/554] ASoC: qcom: qdsp6: q6asm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 373/554] iommu/apple-dart: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 374/554] iommu/exynos: " Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 375/554] iommu/ipmmu-vmsa: " Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 376/554] iommu/mediatek-v1: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 377/554] iommu/mediatek: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 378/554] iommu/omap: fix device leaks on probe_device() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 379/554] iommu/sun50i: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 380/554] iommu/tegra: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 381/554] HID: logitech-dj: Remove duplicate error logging Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 382/554] PCI/PM: Reinstate clearing state_saved in legacy and !PM codepaths Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 383/554] leds: leds-lp50xx: Allow LED 0 to be added to module bank Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 384/554] leds: leds-lp50xx: LP5009 supports 3 modules for a total of 9 LEDs Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 385/554] mfd: altera-sysmgr: Fix device leak on sysmgr regmap lookup Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 386/554] mfd: max77620: Fix potential IRQ chip conflict when probing two devices Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 387/554] media: rc: st_rc: Fix reset control resource leak Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 388/554] parisc: entry.S: fix space adjustment on interruption for 64-bit userspace Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 389/554] parisc: entry: set W bit for !compat tasks in syscall_restore_rfi() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 390/554] media: adv7842: Avoid possible out-of-bounds array accesses in adv7842_cp_log_status() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 391/554] dm-ebs: Mark full buffer dirty even on partial write Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 392/554] fbdev: gbefb: fix to use physical address instead of dma address Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 393/554] fbdev: pxafb: Fix multiple clamped values in pxafb_adjust_timing Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 394/554] fbdev: tcx.c fix mem_map to correct smem_start offset Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 395/554] media: cec: Fix debugfs leak on bus_register() failure Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 396/554] media: msp3400: Avoid possible out-of-bounds array accesses in msp3400c_thread() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 397/554] media: TDA1997x: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 398/554] media: i2c: ADV7604: " Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 399/554] media: i2c: adv7842: " Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 400/554] idr: fix idr_alloc() returning an ID out of range Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 401/554] RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 402/554] RDMA/cm: Fix leaking the multicast GID table reference Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 403/554] e1000: fix OOB in e1000_tbi_should_accept() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 404/554] fjes: Add missing iounmap in fjes_hw_init() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 405/554] nfsd: Drop the client reference in client_states_open() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 406/554] net: usb: sr9700: fix incorrect command used to write single register Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 407/554] net: nfc: fix deadlock between nfc_unregister_device and rfkill_fop_write Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 408/554] net: macb: Relocate mog_init_rings() callback from macb_mac_link_up() to macb_open() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 409/554] drm/msm/a6xx: Fix out of bound IO access in a6xx_get_gmu_registers Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 410/554] drm/ttm: Avoid NULL pointer deref for evicted BOs Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 411/554] drm/nouveau/dispnv50: Dont call drm_atomic_get_crtc_state() in prepare_fb Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 412/554] mm/damon/tests/vaddr-kunit: handle alloc failures in damon_test_split_evenly_fail() Greg Kroah-Hartman
2026-01-15 16:47 ` [PATCH 5.15 413/554] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_do_test_apply_three_regions() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 414/554] RDMA/core: Fix "KASAN: slab-use-after-free Read in ib_register_device" problem Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 415/554] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_test_split_evenly_succ() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 416/554] mm/damon/tests/core-kunit: handle allocation failures in damon_test_regions() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 417/554] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_at() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 418/554] mm/damon/tests/core-kunit: handle alloc failures on dasmon_test_merge_regions_of() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 419/554] mm/damon/tests/core-kunit: handle alloc failures on damon_test_merge_two() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 420/554] mm/damon/tests/core-kunit: handle memory failure from damon_test_target() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 421/554] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_regions_of() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 422/554] mm/damon/tests/core-kunit: handle memory alloc failure from damon_test_aggregate() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 423/554] kbuild: Use CRC32 and a 1MiB dictionary for XZ compressed modules Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 424/554] virtio_console: fix order of fields cols and rows Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 425/554] drm/vmwgfx: Fix a null-ptr access in the cursor snooper Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 426/554] usb: xhci: move link chain bit quirk checks into one helper function Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 427/554] usb: xhci: Apply the link chain quirk on NEC isoc endpoints Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 428/554] usb: gadget: udc: fix use-after-free in usb_gadget_state_work Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 429/554] xhci: dbgtty: use IDR to support several dbc instances Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 430/554] xhci: dbgtty: fix device unregister Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 431/554] jbd2: fix the inconsistency between checksum and data in memory for journal sb Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 432/554] tpm: Cap the number of PCR banks Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 433/554] btrfs: dont rewrite ret from inode_permission Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 434/554] wifi: mt76: Fix DTS power-limits on little endian systems Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 435/554] ALSA: wavefront: Clear substream pointers on close Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 436/554] ALSA: wavefront: Use standard print API Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 437/554] ALSA: wavefront: Fix integer overflow in sample size validation Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 438/554] NFSD: Clear SECLABEL in the suppattr_exclcreat bitmap Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 439/554] KVM: nVMX: Immediately refresh APICv controls as needed on nested VM-Exit Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 440/554] xfs: fix a memory leak in xfs_buf_item_init() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 441/554] f2fs: fix to detect recoverable inode during dryrun of find_fsync_dnodes() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 442/554] f2fs: use global inline_xattr_slab instead of per-sb slab cache Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 443/554] f2fs: fix to propagate error from f2fs_enable_checkpoint() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 444/554] f2fs: fix to avoid updating zero-sized extent in extent cache Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 445/554] usb: dwc3: keep susphy enabled during exit to avoid controller faults Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 446/554] mptcp: pm: ignore unknown endpoint flags Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 447/554] usb: ohci-nxp: Use helper function devm_clk_get_enabled() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 448/554] usb: ohci-nxp: fix device leak on probe failure Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 449/554] fuse: fix readahead reclaim deadlock Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 450/554] ARM: dts: microchip: sama7g5: fix uart fifo size to 32 Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 451/554] svcrdma: bound check rq_pages index in inline path Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 452/554] ARM: dts: microchip: sama5d2: fix spi flexcom fifo size to 32 Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 453/554] crypto: af_alg - zero initialize memory allocated via sock_kmalloc Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 454/554] KVM: SVM: Mark VMCB_NPT as dirty on nested VMRUN Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 455/554] SUNRPC: svcauth_gss: avoid NULL deref on zero length gss_token in gss_read_proxy_verf Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 456/554] media: mediatek: vcodec: Fix a reference leak in mtk_vcodec_fw_vpu_init() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 457/554] media: vpif_capture: fix section mismatch Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 458/554] media: verisilicon: Protect G2 HEVC decoder against invalid DPB index Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 459/554] NFSD: NFSv4 file creation neglects setting ACL Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 460/554] media: samsung: exynos4-is: fix potential ABBA deadlock on init Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 461/554] media: renesas: rcar_drif: fix device node reference leak in rcar_drif_bond_enabled Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 462/554] powerpc/pseries/cmm: call balloon_devinfo_init() also without CONFIG_BALLOON_COMPACTION Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 463/554] PCI: brcmstb: Fix disabling L0s capability Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 464/554] powerpc/64s/slb: Fix SLB multihit issue during SLB preload Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 465/554] iommu/qcom: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 466/554] r8169: fix RTL8117 Wake-on-Lan in DASH mode Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 467/554] ASoC: stm: Use dev_err_probe() helper Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 468/554] ASoC: stm32: sai: Use the devm_clk_get_optional() helper Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 469/554] ASoC: stm32: sai: fix clk prepare imbalance on probe failure Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 470/554] mm/balloon_compaction: make balloon page compaction callbacks static Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 471/554] mm/balloon_compaction: we cannot have isolated pages in the balloon list Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 472/554] mm/balloon_compaction: convert balloon_page_delete() to balloon_page_finalize() Greg Kroah-Hartman
2026-01-15 16:48 ` [PATCH 5.15 473/554] powerpc/pseries/cmm: adjust BALLOON_MIGRATE when migrating pages Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 474/554] pmdomain: Use device_get_match_data() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 475/554] pmdomain: imx: Fix reference count leak in imx_gpc_probe() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 476/554] lockd: fix vfs_test_lock() calls Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 477/554] ASoC: stm: stm32_sai_sub: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-01-16  9:00   ` Uwe Kleine-König
2026-01-16 11:07     ` Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 478/554] ASoC: stm32: sai: fix OF node leak on probe Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 479/554] wifi: mac80211: Discard Beacon frames to non-broadcast address Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 480/554] drm/gma500: Remove unused helper psb_fbdev_fb_setcolreg() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 481/554] net: Remove RTNL dance for SIOCBRADDIF and SIOCBRDELIF Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 482/554] mmc: core: use sysfs_emit() instead of sprintf() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 483/554] drm/i915/selftests: fix subtraction overflow bug Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 484/554] page_pool: Fix use-after-free in page_pool_recycle_in_ring Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 485/554] KVM: x86: Acquire kvm->srcu when handling KVM_SET_VCPU_EVENTS Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 486/554] HID: core: Harden s32ton() against conversion to 0 bits Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 487/554] mm/mprotect: use long for page accountings and retval Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 488/554] KVM: arm64: sys_regs: disable -Wuninitialized-const-pointer warning Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 489/554] ipv6: Fix potential uninit-value access in __ip6_make_skb() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 490/554] ipv4: Fix uninit-value access in __ip_make_skb() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 491/554] selftests: net: test_vxlan_under_vrf: fix HV connectivity test Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 492/554] x86: remove __range_not_ok() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 493/554] pwm: stm32: Always program polarity Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 494/554] ext4: filesystems without casefold feature cannot be mounted with siphash Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 495/554] ext4: factor out ext4_hash_info_init() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 496/554] ext4: fix error message when rejecting the default hash Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 497/554] firmware: arm_scmi: Fix unused notifier-block in unregister Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 498/554] Revert "iommu/amd: Skip enabling command/event buffers for kdump" Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 499/554] net: ethtool: fix the error condition in ethtool_get_phy_stats_ethtool() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 500/554] usb: gadget: lpc32xx_udc: fix clock imbalance in error path Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 501/554] atm: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 502/554] net: 3com: 3c59x: fix possible null dereference in vortex_probe1() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 503/554] mei: me: add nova lake point S DID Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 504/554] lib/crypto: aes: Fix missing MMU protection for AES S-box Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 505/554] drm/pl111: Fix error handling in pl111_amba_probe Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 506/554] wifi: avoid kernel-infoleak from struct iw_point Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 507/554] libceph: prevent potential out-of-bounds reads in handle_auth_done() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 508/554] libceph: replace overzealous BUG_ON in osdmap_apply_incremental() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 509/554] libceph: make free_choose_arg_map() resilient to partial allocation Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 510/554] libceph: return the handler error from mon_handle_auth_done() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 511/554] libceph: make calc_target() set t->paused, not just clear it Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 512/554] ext4: introduce ITAIL helper Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 513/554] ext4: fix out-of-bound read in ext4_xattr_inode_dec_ref_all() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 514/554] net: Add locking to protect skb->dev access in ip_output Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 515/554] tls: Use __sk_dst_get() and dst_dev_rcu() in get_netdev_for_sock() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 516/554] csky: fix csky_cmpxchg_fixup not working Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 517/554] ARM: 9461/1: Disable HIGHPTE on PREEMPT_RT kernels Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 518/554] alpha: dont reference obsolete termio struct for TC* constants Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 519/554] NFSv4: ensure the open stateid seqid doesnt go backwards Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 520/554] NFS: Fix up the automount fs_context to use the correct cred Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 521/554] scsi: ipr: Enable/disable IRQD_NO_BALANCING during reset Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 522/554] scsi: Revert "scsi: libsas: Fix exp-attached device scan after probe failure scanned in again after probe failed" Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 523/554] arm64: dts: add off-on-delay-us for usdhc2 regulator Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 524/554] ARM: dts: imx6q-ba16: fix RTC interrupt level Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 525/554] netfilter: nft_synproxy: avoid possible data-race on update operation Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 526/554] netfilter: nf_tables: fix memory leak in nf_tables_newrule() Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 527/554] netfilter: nf_conncount: update last_gc only when GC has been performed Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 528/554] net: marvell: prestera: fix NULL dereference on devlink_alloc() failure Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 529/554] bridge: fix C-VLAN preservation in 802.1ad vlan_tunnel egress Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 530/554] net: mscc: ocelot: Fix crash when adding interface under a lag Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 531/554] inet: ping: Fix icmp out counting Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 532/554] net: sock: fix hardened usercopy panic in sock_recv_errqueue Greg Kroah-Hartman
2026-01-15 16:49 ` [PATCH 5.15 533/554] netdev: preserve NETIF_F_ALL_FOR_ALL across TSO updates Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 534/554] net/mlx5e: Dont print error message due to invalid module Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 535/554] eth: bnxt: move and rename reset helpers Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 536/554] bnxt_en: Fix potential data corruption with HW GRO/LRO Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 537/554] HID: quirks: work around VID/PID conflict for appledisplay Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 538/554] net/sched: sch_qfq: Fix NULL deref when deactivating inactive aggregate in qfq_reset Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 539/554] net: usb: pegasus: fix memory leak in update_eth_regs_async() Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 540/554] net: enetc: fix build warning when PAGE_SIZE is greater than 128K Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 541/554] arp: do not assume dev_hard_header() does not change skb->head Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 542/554] NFS: trace: show TIMEDOUT instead of 0x6e Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 543/554] nfs_common: factor out nfs_errtbl and nfs_stat_to_errno Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 544/554] NFSD: Remove NFSERR_EAGAIN Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 545/554] nfsd: provide locking for v4_end_grace Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 546/554] counter: interrupt-cnt: Drop IRQF_NO_THREAD flag Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 547/554] pinctrl: qcom: lpass-lpi: Remove duplicate assignment of of_gpio_n_cells Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 548/554] pinctrl: qcom: lpass-lpi: mark the GPIO controller as sleeping Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 549/554] blk-throttle: Set BIO_THROTTLED when bio has been throttled Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 550/554] powercap: fix race condition in register_control_type() Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 551/554] powercap: fix sscanf() error return value handling Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 552/554] can: j1939: make j1939_session_activate() fail if device is no longer registered Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 553/554] ASoC: fsl_sai: Add missing registers to cache default Greg Kroah-Hartman
2026-01-15 16:50 ` [PATCH 5.15 554/554] scsi: sg: Fix occasional bogus elapsed time that exceeds timeout Greg Kroah-Hartman
2026-01-15 19:15 ` [PATCH 5.15 000/554] 5.15.198-rc1 review Brett A C Sheffield
2026-01-15 19:33 ` Slade Watkins
2026-01-15 22:04 ` Florian Fainelli
2026-01-16  9:45 ` Jon Hunter
2026-01-16 11:08   ` Greg Kroah-Hartman
2026-01-16 17:38 ` Hardik Garg
2026-01-16 20:33 ` Shuah Khan

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=20260115164258.248685114@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=hanguidong02@gmail.com \
    --cc=linux@roeck-us.net \
    --cc=patches@lists.linux.dev \
    --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