From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Ryusuke Konishi <konishi.ryusuke@gmail.com>,
Ubisectech Sirius <bugreport@valiantsec.com>,
syzbot+9982fb8d18eba905abe2@syzkaller.appspotmail.com,
Tejun Heo <tj@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>
Subject: [PATCH 5.4 006/321] nilfs2: fix null-ptr-deref in block_touch_buffer tracepoint
Date: Thu, 12 Dec 2024 15:58:44 +0100 [thread overview]
Message-ID: <20241212144229.778768006@linuxfoundation.org> (raw)
In-Reply-To: <20241212144229.291682835@linuxfoundation.org>
5.4-stable review patch. If anyone has any objections, please let me know.
------------------
From: Ryusuke Konishi <konishi.ryusuke@gmail.com>
commit cd45e963e44b0f10d90b9e6c0e8b4f47f3c92471 upstream.
Patch series "nilfs2: fix null-ptr-deref bugs on block tracepoints".
This series fixes null pointer dereference bugs that occur when using
nilfs2 and two block-related tracepoints.
This patch (of 2):
It has been reported that when using "block:block_touch_buffer"
tracepoint, touch_buffer() called from __nilfs_get_folio_block() causes a
NULL pointer dereference, or a general protection fault when KASAN is
enabled.
This happens because since the tracepoint was added in touch_buffer(), it
references the dev_t member bh->b_bdev->bd_dev regardless of whether the
buffer head has a pointer to a block_device structure. In the current
implementation, the block_device structure is set after the function
returns to the caller.
Here, touch_buffer() is used to mark the folio/page that owns the buffer
head as accessed, but the common search helper for folio/page used by the
caller function was optimized to mark the folio/page as accessed when it
was reimplemented a long time ago, eliminating the need to call
touch_buffer() here in the first place.
So this solves the issue by eliminating the touch_buffer() call itself.
Link: https://lkml.kernel.org/r/20241106160811.3316-1-konishi.ryusuke@gmail.com
Link: https://lkml.kernel.org/r/20241106160811.3316-2-konishi.ryusuke@gmail.com
Fixes: 5305cb830834 ("block: add block_{touch|dirty}_buffer tracepoint")
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Reported-by: Ubisectech Sirius <bugreport@valiantsec.com>
Closes: https://lkml.kernel.org/r/86bd3013-887e-4e38-960f-ca45c657f032.bugreport@valiantsec.com
Reported-by: syzbot+9982fb8d18eba905abe2@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=9982fb8d18eba905abe2
Tested-by: syzbot+9982fb8d18eba905abe2@syzkaller.appspotmail.com
Cc: Tejun Heo <tj@kernel.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
fs/nilfs2/page.c | 1 -
1 file changed, 1 deletion(-)
--- a/fs/nilfs2/page.c
+++ b/fs/nilfs2/page.c
@@ -39,7 +39,6 @@ __nilfs_get_page_block(struct page *page
first_block = (unsigned long)index << (PAGE_SHIFT - blkbits);
bh = nilfs_page_get_nth_block(page, block - first_block);
- touch_buffer(bh);
wait_on_buffer(bh);
return bh;
}
next prev parent reply other threads:[~2024-12-12 17:36 UTC|newest]
Thread overview: 334+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-12 14:58 [PATCH 5.4 000/321] 5.4.287-rc1 review Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 001/321] netlink: terminate outstanding dump on socket close Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 002/321] net/mlx5: fs, lock FTE when checking if active Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 003/321] net/mlx5e: kTLS, Fix incorrect page refcounting Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 004/321] ocfs2: uncache inode which has failed entering the group Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 005/321] KVM: VMX: Bury Intel PT virtualization (guest/host mode) behind CONFIG_BROKEN Greg Kroah-Hartman
2024-12-12 14:58 ` Greg Kroah-Hartman [this message]
2024-12-12 14:58 ` [PATCH 5.4 007/321] ocfs2: fix UBSAN warning in ocfs2_verify_volume() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 008/321] nilfs2: fix null-ptr-deref in block_dirty_buffer tracepoint Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 009/321] Revert "mmc: dw_mmc: Fix IDMAC operation with pages bigger than 4K" Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 010/321] media: dvbdev: fix the logic when DVB_DYNAMIC_MINORS is not set Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 011/321] kbuild: Use uname for LINUX_COMPILE_HOST detection Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 012/321] mm: revert "mm: shmem: fix data-race in shmem_getattr()" Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 013/321] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla 10 tablet Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 014/321] mac80211: fix user-power when emulating chanctx Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 015/321] selftests/watchdog-test: Fix system accidentally reset after watchdog-test Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 016/321] ALSA: hda/realtek: Add subwoofer quirk for Infinix ZERO BOOK 13 Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 017/321] x86/amd_nb: Fix compile-testing without CONFIG_AMD_NB Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 018/321] net: usb: qmi_wwan: add Quectel RG650V Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 019/321] soc: qcom: Add check devm_kasprintf() returned value Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 020/321] regulator: rk808: Add apply_bit for BUCK3 on RK809 Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 5.4 021/321] ASoC: stm: Prevent potential division by zero in stm32_sai_mclk_round_rate() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 022/321] ASoC: stm: Prevent potential division by zero in stm32_sai_get_clk_div() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 023/321] proc/softirqs: replace seq_printf with seq_put_decimal_ull_width Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 024/321] ipmr: Fix access to mfc_cache_list without lock held Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 025/321] cifs: Fix buffer overflow when parsing NFS reparse points Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 026/321] NFSD: Force all NFSv4.2 COPY requests to be synchronous Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 027/321] nvme: fix metadata handling in nvme-passthrough Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 028/321] x86/xen/pvh: Annotate indirect branch as safe Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 029/321] mips: asm: fix warning when disabling MIPS_FP_SUPPORT Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 030/321] initramfs: avoid filename buffer overrun Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 031/321] nvme-pci: fix freeing of the HMB descriptor table Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 032/321] m68k: mvme147: Fix SCSI controller IRQ numbers Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 033/321] m68k: mvme16x: Add and use "mvme16x.h" Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 034/321] m68k: mvme147: Reinstate early console Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 035/321] acpi/arm64: Adjust error handling procedure in gtdt_parse_timer_block() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 036/321] s390/syscalls: Avoid creation of arch/arch/ directory Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 037/321] hfsplus: dont query the device logical block size multiple times Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 038/321] firmware: google: Unregister driver_info on failure and exit in gsmi Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 039/321] firmware: google: Unregister driver_info on failure Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 040/321] EDAC/bluefield: Fix potential integer overflow Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 041/321] EDAC/fsl_ddr: Fix bad bit shift operations Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 042/321] crypto: pcrypt - Call crypto layer directly when padata_do_parallel() return -EBUSY Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 043/321] crypto: cavium - Fix the if condition to exit loop after timeout Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 044/321] crypto: bcm - add error check in the ahash_hmac_init function Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 045/321] crypto: cavium - Fix an error handling path in cpt_ucode_load_fw() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 046/321] time: Fix references to _msecs_to_jiffies() handling of values Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 047/321] soc: ti: smartreflex: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 048/321] soc: qcom: geni-se: fix array underflow in geni_se_clk_tbl_get() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 049/321] mmc: mmc_spi: drop buggy snprintf() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 050/321] efi/tpm: Pass correct address to memblock_reserve Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 051/321] tpm: fix signed/unsigned bug when checking event logs Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 052/321] ARM: dts: cubieboard4: Fix DCDC5 regulator constraints Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 053/321] regmap: irq: Set lockdep class for hierarchical IRQ domains Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 054/321] firmware: arm_scpi: Check the DVFS OPP count returned by the firmware Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 055/321] drm/mm: Mark drm_mm_interval_tree*() functions with __maybe_unused Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 056/321] wifi: ath9k: add range check for conn_rsp_epid in htc_connect_service() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 057/321] drm/omap: Fix locking in omap_gem_new_dmabuf() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 058/321] wifi: p54: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 059/321] wifi: mwifiex: " Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 060/321] drm/imx/ipuv3: " Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 061/321] dt-bindings: vendor-prefixes: Add NeoFidelity, Inc Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 062/321] ASoC: fsl_micfil: Drop unnecessary register read Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 063/321] ASoC: fsl_micfil: do not define SHIFT/MASK for single bits Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 064/321] ASoC: fsl_micfil: use GENMASK to define register bit fields Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 065/321] ASoC: fsl_micfil: fix regmap_write_bits usage Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 066/321] bpf: Fix the xdp_adjust_tail sample prog issue Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 067/321] wifi: mwifiex: Fix memcpy() field-spanning write warning in mwifiex_config_scan() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 068/321] drm/fsl-dcu: Use GEM CMA object functions Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 069/321] drm/fsl-dcu: Set GEM CMA functions with DRM_GEM_CMA_DRIVER_OPS Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 070/321] drm/fsl-dcu: Convert to Linux IRQ interfaces Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 071/321] drm: fsl-dcu: enable PIXCLK on LS1021A Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 072/321] drm/panfrost: Remove unused id_mask from struct panfrost_model Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 073/321] drm/msm/adreno: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 074/321] drm/etnaviv: dump: fix sparse warnings Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 075/321] drm/etnaviv: fix power register offset on GC300 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 076/321] drm/etnaviv: hold GPU lock across perfmon sampling Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 077/321] bpf, sockmap: Several fixes to bpf_msg_push_data Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 078/321] bpf, sockmap: Several fixes to bpf_msg_pop_data Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 079/321] bpf, sockmap: Fix sk_msg_reset_curr Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 080/321] selftests: net: really check for bg process completion Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 5.4 081/321] net: rfkill: gpio: Add check for clk_enable() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 082/321] ALSA: us122l: Use snd_card_free_when_closed() at disconnection Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 083/321] ALSA: caiaq: " Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 084/321] ALSA: 6fire: Release resources at card release Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 085/321] netpoll: Use rcu_access_pointer() in netpoll_poll_lock Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 086/321] trace/trace_event_perf: remove duplicate samples on the first tracepoint event Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 087/321] powerpc/vdso: Flag VDSO64 entry points as functions Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 088/321] mfd: tps65010: Use IRQF_NO_AUTOEN flag in request_irq() to fix race Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 089/321] mfd: da9052-spi: Change read-mask to write-mask Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 090/321] mfd: intel_soc_pmic_bxtwc: Use dev_err_probe() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 091/321] mfd: intel_soc_pmic_bxtwc: Use IRQ domain for USB Type-C device Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 092/321] mfd: intel_soc_pmic_bxtwc: Use IRQ domain for TMU device Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 093/321] mfd: intel_soc_pmic_bxtwc: Use IRQ domain for PMIC devices Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 094/321] cpufreq: loongson2: Unregister platform_driver on failure Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 095/321] mtd: rawnand: atmel: Fix possible memory leak Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 096/321] RDMA/bnxt_re: Check cqe flags to know imm_data vs inv_irkey Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 097/321] mfd: rt5033: Fix missing regmap_del_irq_chip() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 098/321] scsi: bfa: Fix use-after-free in bfad_im_module_exit() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 099/321] scsi: fusion: Remove unused variable rc Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 100/321] scsi: qedf: Fix a possible memory leak in qedf_alloc_and_init_sb() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 101/321] scsi: qedi: Fix a possible memory leak in qedi_alloc_and_init_sb() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 102/321] ocfs2: fix uninitialized value in ocfs2_file_read_iter() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 103/321] powerpc/sstep: make emulate_vsx_load and emulate_vsx_store static Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 104/321] fbdev/sh7760fb: Alloc DMA memory from hardware device Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 105/321] fbdev: sh7760fb: Fix a possible memory leak in sh7760fb_alloc_mem() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 106/321] dt-bindings: clock: adi,axi-clkgen: convert old binding to yaml format Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 107/321] dt-bindings: clock: axi-clkgen: include AXI clk Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 108/321] clk: axi-clkgen: use devm_platform_ioremap_resource() short-hand Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 109/321] clk: clk-axi-clkgen: make sure to enable the AXI bus clock Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 110/321] perf cs-etm: Dont flush when packet_queue fills up Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 111/321] perf probe: Correct demangled symbols in C++ program Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 112/321] PCI: cpqphp: Use PCI_POSSIBLE_ERROR() to check config reads Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 113/321] PCI: cpqphp: Fix PCIBIOS_* return value confusion Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 114/321] m68k: mcfgpio: Fix incorrect register offset for CONFIG_M5441x Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 115/321] m68k: coldfire/device.c: only build FEC when HW macros are defined Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 116/321] perf trace: Do not lose last events in a race Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 117/321] perf trace: Avoid garbage when not printing a syscalls arguments Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 118/321] rpmsg: glink: Add TX_DATA_CONT command while sending Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 119/321] rpmsg: glink: Send READ_NOTIFY command in FIFO full case Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 120/321] rpmsg: glink: Fix GLINK command prefix Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 121/321] rpmsg: glink: use only lower 16-bits of param2 for CMD_OPEN name length Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 122/321] NFSD: Prevent NULL dereference in nfsd4_process_cb_update() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 123/321] NFSD: Cap the number of bytes copied by nfs4_reset_recoverydir() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 124/321] NFSD: Fix nfsd4_shutdown_copy() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 125/321] vfio/pci: Properly hide first-in-list PCIe extended capability Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 126/321] power: supply: core: Remove might_sleep() from power_supply_put() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 127/321] net: usb: lan78xx: Fix memory leak on device unplug by freeing PHY device Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 128/321] tg3: Set coherent DMA mask bits to 31 for BCM57766 chipsets Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 129/321] net: usb: lan78xx: Fix refcounting and autosuspend on invalid WoL configuration Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 130/321] marvell: pxa168_eth: fix call balance of pep->clk handling routines Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 131/321] net: stmmac: dwmac-socfpga: Set RX watchdog interrupt as broken Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 132/321] ipmr: convert /proc handlers to rcu_read_lock() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 133/321] ipmr: fix tables suspicious RCU usage Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 134/321] usb: using mutex lock and supporting O_NONBLOCK flag in iowarrior_read() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 135/321] usb: yurex: make waiting on yurex_write interruptible Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 136/321] USB: chaoskey: fail open after removal Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 137/321] USB: chaoskey: Fix possible deadlock chaoskey_list_lock Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 138/321] misc: apds990x: Fix missing pm_runtime_disable() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 139/321] staging: greybus: uart: clean up TIOCGSERIAL Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 140/321] apparmor: fix Do simple duplicate message elimination Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 5.4 141/321] usb: ehci-spear: fix call balance of sehci clk handling routines Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 142/321] cgroup: Make operations on the cgroup root_list RCU safe Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 143/321] cgroup: Move rcu_head up near the top of cgroup_root Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 144/321] soc: qcom: socinfo: fix revision check in qcom_socinfo_probe() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 145/321] ALSA: usb-audio: Fix potential out-of-bound accesses for Extigy and Mbox devices Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 146/321] ext4: supress data-race warnings in ext4_free_inodes_{count,set}() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 147/321] ext4: fix FS_IOC_GETFSMAP handling Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 148/321] jfs: xattr: check invalid xattr size more strictly Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 149/321] ASoC: codecs: Fix atomicity violation in snd_soc_component_get_drvdata() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 150/321] PCI: Fix use-after-free of slot->bus on hot remove Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 151/321] comedi: Flush partial mappings in error case Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 152/321] tty: ldsic: fix tty_ldisc_autoload sysctls proc_handler Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 153/321] Bluetooth: Fix type of len in rfcomm_sock_getsockopt{,_old}() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 154/321] Revert "usb: gadget: composite: fix OS descriptors w_value logic" Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 155/321] serial: sh-sci: Clean sci_ports[0] after at earlycon exit Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 156/321] Revert "serial: sh-sci: Clean sci_ports[0] after at earlycon exit" Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 157/321] netfilter: ipset: add missing range check in bitmap_ip_uadt Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 158/321] spi: Fix acpi deferred irq probe Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 159/321] ubi: wl: Put source PEB into correct list if trying locking LEB failed Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 160/321] um: ubd: Do not use drvdata in release Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 161/321] um: net: " Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 162/321] serial: 8250: omap: Move pm_runtime_get_sync Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 163/321] um: vector: Do not use drvdata in release Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 164/321] sh: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 165/321] arm64: tls: Fix context-switching of tpidrro_el0 when kpti is enabled Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 166/321] block: fix ordering between checking BLK_MQ_S_STOPPED request adding Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 167/321] HID: wacom: Interpret tilt data from Intuos Pro BT as signed values Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 168/321] media: wl128x: Fix atomicity violation in fmc_send_cmd() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 169/321] ALSA: hda/realtek: Update ALC225 depop procedure Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 170/321] ALSA: hda/realtek: Set PCBeep to default value for ALC274 Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 171/321] ALSA: hda/realtek: Fix Internal Speaker and Mic boost of Infinix Y4 Max Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 172/321] ALSA: hda/realtek: Apply quirk for Medion E15433 Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 173/321] usb: dwc3: gadget: Fix checking for number of TRBs left Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 174/321] lib: string_helpers: silence snprintf() output truncation warning Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 175/321] NFSD: Prevent a potential integer overflow Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 176/321] SUNRPC: make sure cache entry active before cache_show Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 177/321] rpmsg: glink: Propagate TX failures in intentless mode as well Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 178/321] um: Fix potential integer overflow during physmem setup Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 179/321] um: Fix the return value of elf_core_copy_task_fpregs Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 180/321] um/sysrq: remove needless variable sp Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 181/321] um: add show_stack_loglvl() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 182/321] um: Clean up stacktrace dump Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 183/321] um: Always dump trace for specified task in show_stack Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 184/321] NFSv4.0: Fix a use-after-free problem in the asynchronous open() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 185/321] rtc: st-lpc: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 186/321] rtc: abx80x: Fix WDT bit position of the status register Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 187/321] rtc: check if __rtc_read_time was successful in rtc_timer_do_work() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 188/321] ubifs: Correct the total block count by deducting journal reservation Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 189/321] ubi: fastmap: Fix duplicate slab cache names while attaching Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 190/321] ubifs: authentication: Fix use-after-free in ubifs_tnc_end_commit Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 191/321] jffs2: fix use of uninitialized variable Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 192/321] block: return unsigned int from bdev_io_min Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 193/321] 9p/xen: fix init sequence Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 194/321] 9p/xen: fix release of IRQ Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 195/321] rtc: ab-eoz9: dont fail temperature reads on undervoltage notification Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 196/321] modpost: remove incorrect code in do_eisa_entry() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 197/321] SUNRPC: correct error code comment in xs_tcp_setup_socket() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 198/321] SUNRPC: Replace internal use of SOCKWQ_ASYNC_NOSPACE Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 199/321] sunrpc: clear XPRT_SOCK_UPD_TIMEOUT when reset transport Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 200/321] sh: intc: Fix use-after-free bug in register_intc_controller() Greg Kroah-Hartman
2024-12-12 15:01 ` [PATCH 5.4 201/321] ASoC: fsl_micfil: fix the naming style for mask definition Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 202/321] quota: flush quota_release_work upon quota writeback Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 203/321] btrfs: ref-verify: fix use-after-free after invalid ref action Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 204/321] media: i2c: tc358743: Fix crash in the probe error path when using polling Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 205/321] media: ts2020: fix null-ptr-deref in ts2020_probe() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 206/321] media: venus: Fix pm_runtime_set_suspended() with runtime pm enabled Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 207/321] media: gspca: ov534-ov772x: Fix off-by-one error in set_frame_rate() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 208/321] media: platform: allegro-dvt: Fix possible memory leak in allocate_buffers_internal() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 209/321] ovl: Filter invalid inodes with missing lookup function Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 210/321] ftrace: Fix regression with module command in stack_trace_filter Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 211/321] clk: qcom: gcc-qcs404: fix initial rate of GPLL3 Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 212/321] ad7780: fix division by zero in ad7780_write_raw() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 213/321] util_macros.h: fix/rework find_closest() macros Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 214/321] i3c: master: Fix miss free init_dyn_addr at i3c_master_put_i3c_addrs() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 215/321] dm thin: Add missing destroy_work_on_stack() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 216/321] nfsd: make sure exp active before svc_export_show Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 217/321] nfsd: fix nfs4_openowner leak when concurrent nfsd4_open occur Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 218/321] drm/etnaviv: flush shader L1 cache after user commandstream Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 219/321] iTCO_wdt: mask NMI_NOW bit for update_no_reboot_bit() call Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 220/321] watchdog: mediatek: Make sure system reset gets asserted in mtk_wdt_restart() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 221/321] can: sun4i_can: sun4i_can_err(): call can_change_state() even if cf is NULL Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 222/321] can: sun4i_can: sun4i_can_err(): fix {rx,tx}_errors statistics Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 223/321] ipvs: fix UB due to uninitialized stack access in ip_vs_protocol_init() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 224/321] netfilter: x_tables: fix LED ID check in led_tg_check() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 225/321] net/sched: tbf: correct backlog statistic for GSO packets Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 226/321] can: j1939: j1939_session_new(): fix skb reference counting Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 227/321] net/ipv6: release expired exception dst cached in socket Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 228/321] dccp: Fix memory leak in dccp_feat_change_recv Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 229/321] tipc: add reference counter to bearer Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 230/321] tipc: enable creating a "preliminary" node Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 231/321] tipc: add new AEAD key structure for user API Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 232/321] tipc: Fix use-after-free of kernel socket in cleanup_bearer() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 233/321] net/qed: allow old cards not supporting "num_images" to work Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 234/321] igb: Fix potential invalid memory access in igb_init_module() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 235/321] netfilter: ipset: Hold module reference while requesting a module Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 236/321] netfilter: nft_set_hash: skip duplicated elements pending gc run Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 237/321] xen/xenbus: reference count registered modules Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 238/321] xenbus/backend: Add memory pressure handler callback Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 239/321] xenbus/backend: Protect xenbus callback with lock Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 240/321] xen/xenbus: fix locking Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 241/321] xen: Fix the issue of resource not being properly released in xenbus_dev_probe() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 242/321] x86/asm: Reorder early variables Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 243/321] x86/asm/crypto: Annotate local functions Greg Kroah-Hartman
2024-12-12 18:00 ` Eric Biggers
2024-12-12 18:05 ` Greg Kroah-Hartman
2024-12-12 18:08 ` Eric Biggers
2024-12-13 12:14 ` Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 244/321] crypto: x86/aegis128 - access 32-bit arguments as 32-bit Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 245/321] gpio: grgpio: use a helper variable to store the address of ofdev->dev Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 246/321] gpio: grgpio: Add NULL check in grgpio_probe Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 247/321] drm/sti: Add __iomem for mixer_dbg_mxns parameter Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 248/321] tcp_bpf: Fix the sk_mem_uncharge logic in tcp_bpf_sendmsg Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 249/321] spi: mpc52xx: Add cancel_work_sync before module remove Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 250/321] ocfs2: free inode when ocfs2_get_init_inode() fails Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 251/321] bpf: Handle BPF_EXIST and BPF_NOEXIST for LPM trie Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 252/321] bpf: Fix exact match conditions in trie_get_next_key() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 253/321] HID: wacom: fix when get product name maybe null pointer Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 254/321] tracing: Fix cmp_entries_dup() to respect sort() comparison rules Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 255/321] ocfs2: update seq_file index in ocfs2_dlm_seq_next Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 256/321] scsi: qla2xxx: Fix NVMe and NPIV connect issue Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 257/321] scsi: qla2xxx: Supported speed displayed incorrectly for VPorts Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 258/321] scsi: qla2xxx: Remove check req_sg_cnt should be equal to rsp_sg_cnt Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 259/321] nilfs2: fix potential out-of-bounds memory access in nilfs_find_entry() Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 260/321] bcache: revert replacing IS_ERR_OR_NULL with IS_ERR again Greg Kroah-Hartman
2024-12-12 15:02 ` [PATCH 5.4 261/321] dma-buf: fix dma_fence_array_signaled v4 Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 262/321] regmap: detach regmap from dev on regmap_exit Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 263/321] mmc: core: Further prevent card detect during shutdown Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 264/321] s390/cpum_sf: Handle CPU hotplug remove during sampling Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 265/321] media: uvcvideo: Add a quirk for the Kaiweets KTI-W02 infrared camera Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 266/321] media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108 Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 267/321] drm: panel-orientation-quirks: Add quirk for AYA NEO 2 model Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 268/321] drm/mcde: Enable module autoloading Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 269/321] drm/radeon/r600_cs: Fix possible int overflow in r600_packet3_check() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 270/321] samples/bpf: Fix a resource leak Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 271/321] net: fec_mpc52xx_phy: Use %pa to format resource_size_t Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 272/321] net: ethernet: fs_enet: " Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 273/321] net/sched: cbs: Fix integer overflow in cbs_set_port_rate() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 274/321] af_packet: avoid erroring out after sock_init_data() in packet_create() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 275/321] Bluetooth: L2CAP: do not leave dangling sk pointer on error in l2cap_sock_create() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 276/321] net: af_can: do not leave a dangling sk pointer in can_create() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 277/321] net: ieee802154: do not leave a dangling sk pointer in ieee802154_create() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 278/321] net: inet: do not leave a dangling sk pointer in inet_create() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 279/321] net: inet6: do not leave a dangling sk pointer in inet6_create() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 280/321] wifi: ath5k: add PCI ID for SX76X Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 281/321] wifi: ath5k: add PCI ID for Arcadyan devices Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 282/321] jfs: array-index-out-of-bounds fix in dtReadFirst Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 283/321] jfs: fix shift-out-of-bounds in dbSplit Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 284/321] jfs: fix array-index-out-of-bounds in jfs_readdir Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 285/321] jfs: add a check to prevent array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 286/321] drm/amdgpu: set the right AMDGPU sg segment limitation Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 287/321] wifi: ipw2x00: libipw_rx_any(): fix bad alignment Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 288/321] wifi: brcmfmac: Fix oops due to NULL pointer dereference in brcmf_sdiod_sglist_rw() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 289/321] Bluetooth: btusb: Add RTL8852BE device 0489:e123 to device tables Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 290/321] ASoC: hdmi-codec: reorder channel allocation list Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 291/321] rocker: fix link status detection in rocker_carrier_init() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 292/321] net/neighbor: clear error in case strict check is not set Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 293/321] netpoll: Use rcu_access_pointer() in __netpoll_setup Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 294/321] tracing: Use atomic64_inc_return() in trace_clock_counter() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 295/321] leds: class: Protect brightness_show() with led_cdev->led_access mutex Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 296/321] scsi: st: Dont modify unknown block number in MTIOCGET Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 297/321] scsi: st: Add MTIOCGET and MTLOAD to ioctls allowed after device reset Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 298/321] pinctrl: qcom-pmic-gpio: add support for PM8937 Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 299/321] nvdimm: rectify the illogical code within nd_dax_probe() Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 300/321] f2fs: fix f2fs_bug_on when uninstalling filesystem call f2fs_evict_inode Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 301/321] PCI: Add reset_subordinate to reset hierarchy below bridge Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 302/321] PCI: Add ACS quirk for Wangxun FF5xxx NICs Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 303/321] i3c: Use i3cdev->desc->info instead of calling i3c_device_get_info() to avoid deadlock Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 304/321] usb: chipidea: udc: handle USB Error Interrupt if IOC not set Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 305/321] powerpc/prom_init: Fixup missing powermac #size-cells Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 306/321] misc: eeprom: eeprom_93cx6: Add quirk for extra read clock cycle Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 307/321] xdp: Simplify devmap cleanup Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 308/321] bpf: fix OOB devmap writes when deleting elements Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 309/321] Revert "unicode: Dont special case ignorable code points" Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 310/321] perf/x86/intel/pt: Fix buffer full but size is 0 case Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 311/321] KVM: arm64: vgic-its: Add a data length check in vgic_its_save_* Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 312/321] KVM: arm64: vgic-its: Clear DTE when MAPD unmaps a device Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 313/321] KVM: arm64: vgic-its: Clear ITE when DISCARD frees an ITE Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 314/321] jffs2: Prevent rtime decompress memory corruption Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 315/321] jffs2: Fix rtime decompressor Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 316/321] ocfs2: Revert "ocfs2: fix the la space leak when unmounting an ocfs2 volume" Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 317/321] modpost: Add .irqentry.text to OTHER_SECTIONS Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 318/321] Revert "drm/amdgpu: add missing size check in amdgpu_debugfs_gprwave_read()" Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 319/321] PCI: rockchip-ep: Fix address translation unit programming Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 320/321] ALSA: usb-audio: Fix out of bounds reads when finding clock sources Greg Kroah-Hartman
2024-12-12 15:03 ` [PATCH 5.4 321/321] bpf, xdp: Update devmap comments to reflect napi/rcu usage Greg Kroah-Hartman
2024-12-12 19:33 ` [PATCH 5.4 000/321] 5.4.287-rc1 review Pavel Machek
2024-12-12 19:53 ` Florian Fainelli
2024-12-12 20:24 ` Naresh Kamboju
2024-12-13 12:19 ` Greg Kroah-Hartman
2024-12-13 10:02 ` Jon Hunter
2024-12-13 13:23 ` Mark Brown
2024-12-13 14:19 ` Greg Kroah-Hartman
2024-12-14 12:47 ` Harshit Mogalapalli
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=20241212144229.778768006@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=akpm@linux-foundation.org \
--cc=bugreport@valiantsec.com \
--cc=konishi.ryusuke@gmail.com \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
--cc=syzbot+9982fb8d18eba905abe2@syzkaller.appspotmail.com \
--cc=tj@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