From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
syzbot+c025d34b8eaa54c571b8@syzkaller.appspotmail.com,
Abhishek Kumar <abhishek_sts8@yahoo.com>,
Hans Verkuil <hverkuil+cisco@kernel.org>
Subject: [PATCH 5.10 077/589] media: em28xx: fix use-after-free in em28xx_v4l2_open()
Date: Sat, 30 May 2026 17:59:18 +0200 [thread overview]
Message-ID: <20260530160226.630021564@linuxfoundation.org> (raw)
In-Reply-To: <20260530160224.570625122@linuxfoundation.org>
5.10-stable review patch. If anyone has any objections, please let me know.
------------------
From: Abhishek Kumar <abhishek_sts8@yahoo.com>
commit a66485a934c7187ae8e36517d40615fa2e961cff upstream.
em28xx_v4l2_open() reads dev->v4l2 without holding dev->lock,
creating a race with em28xx_v4l2_init()'s error path and
em28xx_v4l2_fini(), both of which free the em28xx_v4l2 struct
and set dev->v4l2 to NULL under dev->lock.
This race leads to two issues:
- use-after-free in v4l2_fh_init() when accessing vdev->ctrl_handler,
since the video_device is embedded in the freed em28xx_v4l2 struct.
- NULL pointer dereference in em28xx_resolution_set() when accessing
v4l2->norm, since dev->v4l2 has been set to NULL.
Fix this by moving the mutex_lock() before the dev->v4l2 read and
adding a NULL check for dev->v4l2 under the lock.
Reported-by: syzbot+c025d34b8eaa54c571b8@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=c025d34b8eaa54c571b8
Fixes: 8139a4d583ab ("[media] em28xx: move v4l2 user counting fields from struct em28xx to struct v4l2")
Cc: stable@vger.kernel.org
Signed-off-by: Abhishek Kumar <abhishek_sts8@yahoo.com>
Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/media/usb/em28xx/em28xx-video.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
--- a/drivers/media/usb/em28xx/em28xx-video.c
+++ b/drivers/media/usb/em28xx/em28xx-video.c
@@ -2136,7 +2136,7 @@ static int em28xx_v4l2_open(struct file
{
struct video_device *vdev = video_devdata(filp);
struct em28xx *dev = video_drvdata(filp);
- struct em28xx_v4l2 *v4l2 = dev->v4l2;
+ struct em28xx_v4l2 *v4l2;
enum v4l2_buf_type fh_type = 0;
int ret;
@@ -2153,13 +2153,19 @@ static int em28xx_v4l2_open(struct file
return -EINVAL;
}
+ if (mutex_lock_interruptible(&dev->lock))
+ return -ERESTARTSYS;
+
+ v4l2 = dev->v4l2;
+ if (!v4l2) {
+ mutex_unlock(&dev->lock);
+ return -ENODEV;
+ }
+
em28xx_videodbg("open dev=%s type=%s users=%d\n",
video_device_node_name(vdev), v4l2_type_names[fh_type],
v4l2->users);
- if (mutex_lock_interruptible(&dev->lock))
- return -ERESTARTSYS;
-
ret = v4l2_fh_open(filp);
if (ret) {
dev_err(&dev->intf->dev,
next prev parent reply other threads:[~2026-05-30 18:23 UTC|newest]
Thread overview: 637+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-30 15:58 [PATCH 5.10 000/589] 5.10.258-rc1 review Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 001/589] ALSA: asihpi: avoid write overflow check warning Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 002/589] ASoC: SOF: topology: reject invalid vendor array size in token parser Greg Kroah-Hartman
2026-05-30 18:51 ` Ben Hutchings
2026-05-31 22:32 ` Cássio Gabriel Monteiro Pires
2026-06-01 2:11 ` Sasha Levin
2026-06-01 2:11 ` Sasha Levin
2026-05-30 15:58 ` [PATCH 5.10 003/589] can: mcp251x: add error handling for power enable in open and resume Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 004/589] btrfs: tracepoints: get correct superblock from dentry in event btrfs_sync_file() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 005/589] ALSA: hda/realtek: Add mute LED quirk for HP Pavilion 15-eg0xxx Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 006/589] netfilter: nft_set_pipapo_avx2: dont return non-matching entry on expiry Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 007/589] wifi: wl1251: validate packet IDs before indexing tx_frames Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 008/589] ASoC: soc-core: call missing INIT_LIST_HEAD() for card_aux_list Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 009/589] HID: quirks: add HID_QUIRK_ALWAYS_POLL for 8BitDo Pro 3 Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 010/589] HID: roccat: fix use-after-free in roccat_report_event Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 011/589] ata: ahci: force 32-bit DMA for JMicron JMB582/JMB585 Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 012/589] wifi: brcmfmac: validate bsscfg indices in IF events Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 013/589] ASoC: stm32_sai: fix incorrect BCLK polarity for DSP_A/B, LEFT_J Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 014/589] arm64: dts: imx8mq: Set the correct gpu_ahb clock frequency Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 015/589] PCI: hv: Set default NUMA node to 0 for devices without affinity info Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 016/589] drm/vc4: Fix memory leak of BO array in hang state Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 017/589] drm/vc4: Fix a memory leak in hang state error path Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 018/589] drm/vc4: Protect madv read in vc4_gem_object_mmap() with madv_lock Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 019/589] net: sched: act_csum: validate nested VLAN headers Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 020/589] net: lapbether: Close the LAPB device before its underlying Ethernet device closes Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 021/589] net: lapbether: remove trailing whitespaces Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 022/589] net: lapbether: replace comparison to NULL with "lapbeth_get_x25_dev" Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 023/589] net: lapbether: handle NETDEV_PRE_TYPE_CHANGE Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 024/589] tracing/probe: reject non-closed empty immediate strings Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 025/589] e1000: check return value of e1000_read_eeprom Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 026/589] xsk: tighten UMEM headroom validation to account for tailroom and min frame Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 027/589] xfrm: Wait for RCU readers during policy netns exit Greg Kroah-Hartman
2026-05-30 19:45 ` Ben Hutchings
2026-06-01 2:11 ` Sasha Levin
2026-06-02 18:21 ` Sasha Levin
2026-05-30 15:58 ` [PATCH 5.10 028/589] xfrm_user: fix info leak in build_mapping() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 029/589] netfilter: nfnetlink_log: initialize nfgenmsg in NLMSG_DONE terminator Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 030/589] netfilter: xt_multiport: validate range encoding in checkentry Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 031/589] netfilter: ip6t_eui64: reject invalid MAC header for all packets Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 032/589] af_unix: read UNIX_DIAG_VFS data under unix_state_lock Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 033/589] l2tp: Drop large packets with UDP encap Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 034/589] netfilter: conntrack: add missing netlink policy validations Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 035/589] drm/i915/gt: fix refcount underflow in intel_engine_park_heartbeat Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 036/589] MIPS: mm: kmalloc tlb_vpn array to avoid stack overflow Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 037/589] mips: mm: Allocate tlb_vpn array atomically Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 038/589] MIPS: Always record SEGBITS in cpu_data.vmbits Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 039/589] MIPS: mm: Suppress TLB uniquification on EHINV hardware Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 040/589] MIPS: mm: Rewrite TLB uniquification for the hidden bit feature Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 041/589] netfilter: nft_set_pipapo: do not rely on ZERO_SIZE_PTR Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 042/589] batman-adv: hold claim backbone gateways by reference Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 043/589] nfc: llcp: add missing return after LLCP_CLOSED checks Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 044/589] can: raw: fix ro->uniq use-after-free in raw_rcv() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 045/589] i2c: s3c24xx: check the size of the SMBUS message before using it Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 046/589] staging: rtl8723bs: initialize le_tmp64 in rtw_BIP_verify() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 047/589] HID: alps: fix NULL pointer dereference in alps_raw_event() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 048/589] HID: core: clamp report_size in s32ton() to avoid undefined shift Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 049/589] net: usb: cdc-phonet: fix skb frags[] overflow in rx_complete() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 050/589] NFC: digital: Bounds check NFC-A cascade depth in SDD response handler Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 051/589] ALSA: fireworks: bound device-supplied status before string array lookup Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 052/589] fbdev: tdfxfb: avoid divide-by-zero on FBIOPUT_VSCREENINFO Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 053/589] usb: gadget: f_ncm: validate minimum block_len in ncm_unwrap_ntb() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 054/589] usb: gadget: f_phonet: fix skb frags[] overflow in pn_rx_complete() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 055/589] usb: gadget: renesas_usb3: validate endpoint index in standard request handlers Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 056/589] usbip: validate number_of_packets in usbip_pack_ret_submit() Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 057/589] usb: storage: Expand range of matched versions for VL817 quirks entry Greg Kroah-Hartman
2026-05-30 15:58 ` [PATCH 5.10 058/589] fbdev: udlfb: avoid divide-by-zero on FBIOPUT_VSCREENINFO Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 059/589] staging: sm750fb: fix division by zero in ps_to_hz() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 060/589] USB: serial: option: add Telit Cinterion FN990A MBIM composition Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 061/589] ALSA: ctxfi: Limit PTP to a single page Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 062/589] media: vidtv: fix NULL pointer dereference in vidtv_channel_pmt_match_sections Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 063/589] ocfs2: fix use-after-free in ocfs2_fault() when VM_FAULT_RETRY Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 064/589] ocfs2: handle invalid dinode in ocfs2_group_extend Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 065/589] KVM: SEV: Drop WARN on large size for KVM_MEMORY_ENCRYPT_REG_REGION Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 066/589] ACPI: property: Constify stubs for CONFIG_ACPI=n case Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 067/589] rxrpc: Fix call removal to use RCU safe deletion Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 068/589] rxrpc: proc: size address buffers for %pISpc output Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 069/589] Revert "wifi: cfg80211: stop NAN and P2P in cfg80211_leave" Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 070/589] media: uvcvideo: Allow extra entities Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 071/589] media: uvcvideo: Mark invalid entities with id UVC_INVALID_ENTITY_ID Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 072/589] media: uvcvideo: Use heuristic to find stream entity Greg Kroah-Hartman
2026-05-31 1:29 ` Barry K. Nathan
2026-05-31 10:53 ` Ben Hutchings
2026-06-01 2:11 ` Sasha Levin
2026-06-01 6:41 ` Ricardo Ribalda
2026-06-01 15:12 ` Greg Kroah-Hartman
2026-06-03 11:21 ` Ricardo Ribalda
2026-05-30 15:59 ` [PATCH 5.10 073/589] checkpatch: add support for Assisted-by tag Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 074/589] KVM: x86: Use scratch field in MMIO fragment to hold small write values Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 075/589] mm/kasan: fix double free for kasan pXds Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 076/589] media: vidtv: fix nfeeds state corruption on start_streaming failure Greg Kroah-Hartman
2026-05-30 15:59 ` Greg Kroah-Hartman [this message]
2026-05-30 15:59 ` [PATCH 5.10 078/589] ALSA: 6fire: fix use-after-free on disconnect Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 079/589] bcache: fix cached_dev.sb_bio use-after-free and crash Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 080/589] media: as102: fix to not free memory after the device is registered in as102_usb_probe() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 081/589] nilfs2: fix NULL i_assoc_inode dereference in nilfs_mdt_save_to_shadow_map Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 082/589] media: vidtv: fix pass-by-value structs causing MSAN warnings Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 083/589] media: hackrf: fix to not free memory after the device is registered in hackrf_probe() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 084/589] net: tap: NULL pointer derefence in dev_parse_header_protocol when skb->dev is null Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 085/589] scsi: qla2xxx: Fix warning message due to adisc being flushed Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 086/589] scsi: qla2xxx: Fix crash when I/O abort times out Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 087/589] net/sched: act_ct: fix ref leak when switching zones Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 088/589] bpf, sockmap: Fix an infinite loop error when len is 0 in tcp_bpf_recvmsg_parser() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 089/589] ipv6: add NULL checks for idev in SRv6 paths Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 090/589] drm/amd/display: Add null checker before passing variables Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 091/589] wifi: mac80211: always free skb on ieee80211_tx_prepare_skb() failure Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 092/589] drm/amd/display: Fix memory leak Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 093/589] thermal/int340x_thermal: handle data_vault when the value is ZERO_SIZE_PTR Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 094/589] blk-cgroup: Reinit blkg_iostat_set after clearing in blkcg_reset_stats() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 095/589] ALSA: usb-audio: fix null pointer dereference on pointer cs_desc Greg Kroah-Hartman
2026-05-31 12:33 ` Ben Hutchings
2026-05-31 15:35 ` Vasiliy Kovalev
2026-06-01 2:11 ` Sasha Levin
2026-05-30 15:59 ` [PATCH 5.10 096/589] scsi: ufs: core: Improve SCSI abort handling Greg Kroah-Hartman
2026-05-31 14:31 ` Ben Hutchings
2026-06-01 11:39 ` Sasha Levin
2026-05-30 15:59 ` [PATCH 5.10 097/589] IB/mad: Dont call to function that might sleep while in atomic context Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 098/589] powerpc64/bpf: do not increment tailcall count when prog is NULL Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 099/589] mailbox: Prevent out-of-bounds access in of_mbox_index_xlate() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 100/589] rxrpc: fix reference count leak in rxrpc_server_keyring() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 101/589] rxrpc: Fix key quota calculation for multitoken keys Greg Kroah-Hartman
2026-05-31 13:20 ` Ben Hutchings
2026-06-01 2:11 ` Sasha Levin
2026-05-30 15:59 ` [PATCH 5.10 102/589] xfrm: clear trailing padding in build_polexpire() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 103/589] ocfs2: add inline inode consistency check to ocfs2_validate_inode_block() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 104/589] ocfs2: validate inline data i_size during inode read Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 105/589] ocfs2: fix out-of-bounds write in ocfs2_write_end_inline Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 106/589] rxrpc: reject undecryptable rxkad response tickets Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 107/589] blk-mq: use quiesced elevator switch when reinitializing queues Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 108/589] drivers: base: Free devm resources when unregistering a device Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 109/589] x86/uprobes: Fix XOL allocation failure for 32-bit tasks Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 110/589] fs/ocfs2: fix comments mentioning i_mutex Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 111/589] ocfs2: fix possible deadlock between unlink and dio_end_io_write Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 112/589] mm: blk-cgroup: fix use-after-free in cgwb_release_workfn() Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 113/589] arm64: dts: imx8mq-librem5-r3: workaround i2c1 issue with 1GHz cpu voltage Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 114/589] arm64: dts: imx8mq-librem5: Dont mark buck3 as always on Greg Kroah-Hartman
2026-05-31 14:19 ` Ben Hutchings
2026-06-01 2:11 ` Sasha Levin
2026-05-30 15:59 ` [PATCH 5.10 115/589] arm64: dts: imx8mq-librem5: set regulators boot-on Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 116/589] arm64: dts: imx8mq-librem5: Set the DVS voltages lower Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 117/589] arm64: dts: imx8mq-librem5: Bump BUCK1 suspend voltage to 0.81V Greg Kroah-Hartman
2026-05-30 15:59 ` [PATCH 5.10 118/589] Revert "arm64: dts: imx8mq-librem5: Set the DVS voltages lower" Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 119/589] arm64: dts: imx8mq-librem5: Bump BUCK1 suspend voltage up to 0.85V Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 120/589] gfs2: Validate i_depth for exhash directories Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 121/589] drm/amd/display: Do not add -mhard-float to calcs, dsc, and dcn30 FP files for clang Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 122/589] scripts/dtc: Remove unused dts_version in dtc-lexer.l Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 123/589] i3c: fix uninitialized variable use in i2c setup Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 124/589] Revert "scsi: ufs: core: Improve SCSI abort handling" Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 125/589] rxrpc: Fix recvmsg() unconditional requeue Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 126/589] cifs: Fix connections leak when tlink setup failed Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 127/589] rxrpc: only handle RESPONSE during service challenge Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 128/589] rxrpc: Fix anonymous key handling Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 129/589] fuse: reject oversized dirents in page cache Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 130/589] fuse: quiet down complaints in fuse_conn_limit_write Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 131/589] ALSA: usb-audio: apply quirk for MOONDROP JU Jiu Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 132/589] ALSA: caiaq: take a reference on the USB device in create_card() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 133/589] crypto: ccp: Dont attempt to copy CSR to userspace if PSP command failed Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 134/589] crypto: ccp: Dont attempt to copy PDH cert " Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 135/589] crypto: ccp: Dont attempt to copy ID " Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 136/589] rxrpc: Fix missing validation of ticket length in non-XDR key preparsing Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 137/589] ALSA: usb-audio: stop parsing UAC2 rates at MAX_NR_RATES Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 138/589] ALSA: usb-audio: Avoid false E-MU sample-rate notifications Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 139/589] ALSA: usb-audio: Fix Audio Advantage Micro II SPDIF switch Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 140/589] usb: xhci: Make usb_host_endpoint.hcpriv survive endpoint_disable() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 141/589] misc: ibmasm: fix OOB MMIO read in ibmasm_handle_mouse_interrupt() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 142/589] ibmasm: fix OOB reads in command_file_write due to missing size checks Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 143/589] ibmasm: fix heap over-read in ibmasm_send_i2o_message() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 144/589] firmware: google: framebuffer: Do not mark framebuffer as busy Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 145/589] Revert "riscv: Sparse-Memory/vmemmap out-of-bounds fix" Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 146/589] ocfs2: split transactions in dio completion to avoid credit exhaustion Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 147/589] padata: Fix pd UAF once and for all Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 148/589] padata: Remove comment for reorder_work Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 149/589] driver core: Dont let a device probe until its ready Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 150/589] um: drivers: call kernel_strrchr() explicitly in cow_user.c Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 151/589] crypto: pcrypt - Fix handling of MAY_BACKLOG requests Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 152/589] ALSA: control: Validate buf_len before strnlen() in snd_ctl_elem_init_enum_names() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 153/589] net: caif: clear client service pointer on teardown Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 154/589] net: strparser: fix skb_head leak in strp_abort_strp() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 155/589] Revert "ALSA: usb: Increase volume range that triggers a warning" Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 156/589] lib/ts_kmp: fix integer overflow in pattern length calculation Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 157/589] media: i2c: imx219: Check return value of devm_gpiod_get_optional() in imx219_probe() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 158/589] net: qrtr: ns: Fix use-after-free in driver remove() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 159/589] ext2: reject inodes with zero i_nlink and valid mode in ext2_iget() Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 160/589] ALSA: aoa: i2sbus: fix OF node lifetime handling Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 161/589] ALSA: ctxfi: Add fallback to default RSR for S/PDIF Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 162/589] ALSA: seq_oss: return full count for successful SEQ_FULLSIZE writes Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 163/589] parisc: _llseek syscall is only available for 32-bit userspace Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 164/589] selftests/mqueue: Fix incorrectly named file Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 165/589] ALSA: caiaq: Fix control_put() result and cache rollback Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 166/589] ALSA: caiaq: Handle probe errors properly Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 167/589] ALSA: 6fire: Fix input volume change detection Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 168/589] iio: adc: ad7768-1: fix one-shot mode data acquisition Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 169/589] net: rds: fix MR cleanup on copy error Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 170/589] net/smc: avoid early lgr access in smc_clc_wait_msg Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 171/589] RDMA/rxe: Validate pad and ICRC before payload_size() in rxe_rcv Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 172/589] tpm: avoid -Wunused-but-set-variable Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 173/589] mmc: block: use single block write in retry Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 174/589] tpm: tpm_tis: add error logging for data transfer Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 175/589] userfaultfd: allow registration of ranges below mmap_min_addr Greg Kroah-Hartman
2026-05-30 16:00 ` [PATCH 5.10 176/589] KVM: nSVM: Mark all of vmcb02 dirty when restoring nested state Greg Kroah-Hartman
2026-05-31 19:59 ` Ben Hutchings
2026-06-01 2:11 ` Sasha Levin
2026-05-30 16:00 ` [PATCH 5.10 177/589] KVM: nSVM: Sync NextRIP to cached vmcb12 after VMRUN of L2 Greg Kroah-Hartman
2026-05-31 20:14 ` Ben Hutchings
2026-06-01 2:11 ` Sasha Levin
2026-05-30 16:00 ` [PATCH 5.10 178/589] KVM: nSVM: Sync interrupt shadow " Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 179/589] KVM: nSVM: Ensure AVIC is inhibited when restoring a vCPU to guest mode Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 180/589] KVM: nSVM: Clear GIF on nested #VMEXIT(INVALID) Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 181/589] io_uring/poll: fix EPOLL_URING_WAKE sometimes not being honored Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 182/589] io_uring/poll: fix backport of io_poll_add() changes Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 183/589] mtd: docg3: fix use-after-free in docg3_release() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 184/589] ext4: fix missing brelse() in ext4_xattr_inode_dec_ref_all() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 185/589] md/raid5: fix soft lockup in retry_aligned_read() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 186/589] md/raid5: validate payload size before accessing journal metadata Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 187/589] inotify: fix watch count leak when fsnotify_add_inode_mark_locked() fails Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 188/589] taskstats: set version in TGID exit notifications Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 189/589] crypto: atmel-aes - Fix 3-page memory leak in atmel_aes_buff_cleanup Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 190/589] crypto: atmel-ecc - Release client on allocation failure Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 191/589] crypto: hisilicon - Fix dma_unmap_single() direction Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 192/589] crypto: ccree - fix a memory leak in cc_mac_digest() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 193/589] crypto: atmel-tdes - fix DMA sync direction Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 194/589] dm mirror: fix integer overflow in create_dirty_log() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 195/589] IB/core: Fix zero dmac race in neighbor resolution Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 196/589] crypto: authencesn - reject short ahash digests during instance creation Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 197/589] driver core: Add kernel-doc for DEV_FLAG_COUNT enum value Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 198/589] ALSA: caiaq: Fix potentially leftover ep1_in_urb at error path Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 199/589] ALSA: caiaq: Dont abort when no input device is available Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 200/589] ipv6: rpl: reserve mac_len headroom when recompressed SRH grows Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 201/589] drm/amdgpu: fix zero-size GDS range init on RDNA4 Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 202/589] ALSA: caiaq: fix usb_dev refcount leak on probe failure Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 203/589] netfilter: reject zero shift in nft_bitwise Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 204/589] scsi: target: configfs: Bound snprintf() return in tg_pt_gp_members_show() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 205/589] ipmi: Add limits to event and receive message requests Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 206/589] ipmi: Check event message buffer response for bad data Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 207/589] ipmi:si: Return state to normal if message allocation fails Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 208/589] fbdev: udlfb: add vm_ops to dlfb_ops_mmap to prevent use-after-free Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 209/589] ACPI: video: force native backlight on HP OMEN 16 (8A44) Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 210/589] spi: rockchip: fix controller deregistration Greg Kroah-Hartman
2026-06-01 11:16 ` Ben Hutchings
2026-06-01 15:11 ` Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 211/589] net/sched: sch_red: Replace direct dequeue call with peek and qdisc_dequeue_peeked Greg Kroah-Hartman
2026-06-01 11:34 ` Ben Hutchings
2026-06-01 15:13 ` Greg Kroah-Hartman
2026-06-02 18:21 ` Sasha Levin
2026-05-30 16:01 ` [PATCH 5.10 212/589] ipmi:ssif: Fix a shutdown race Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 213/589] ipmi:ssif: Clean up kthread on errors Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 214/589] ipmi:ssif: Remove unnecessary indention Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 215/589] ipmi:ssif: NULL thread on error Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 216/589] wifi: b43legacy: enforce bounds check on firmware key index in RX path Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 217/589] wifi: rsi: fix kthread lifetime race between self-exit and external-stop Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 218/589] wifi: ath5k: do not access array OOB Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 219/589] wifi: b43: enforce bounds check on firmware key index in b43_rx() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 220/589] usb: usblp: fix heap leak in IEEE 1284 device ID via short response Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 221/589] usb: usblp: fix uninitialized heap leak via LPGETSTATUS ioctl Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 222/589] ALSA: usb-audio: Avoid potential endless loop in convert_chmap_v3() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 223/589] ALSA: usb-audio: Fix UAC3 cluster descriptor size check Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 224/589] USB: omap_udc: DMA: Dont enable burst 4 mode Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 225/589] USB: serial: option: add Telit Cinterion LE910Cx compositions Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 226/589] usb: ulpi: fix memory leak on ulpi_register() error paths Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 227/589] ALSA: firewire-tascam: Do not drop unread control events Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 228/589] xfrm: provide message size for XFRM_MSG_MAPPING Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 229/589] ipv6: xfrm6: release dst on error in xfrm6_rcv_encap() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 230/589] Bluetooth: L2CAP: Fix null-ptr-deref in l2cap_sock_new_connection_cb() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 231/589] Bluetooth: L2CAP: Fix null-ptr-deref in l2cap_sock_state_change_cb() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 232/589] spi: zynqmp-gqspi: fix controller deregistration Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 233/589] fanotify: fix false positive on permission events Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 234/589] net: rtnetlink: zero ifla_vf_broadcast to avoid stack infoleak in rtnl_fill_vfinfo Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 235/589] sound: ua101: fix division by zero at probe Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 236/589] ip6_gre: Use cached t->net in ip6erspan_changelink() Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 237/589] net/rds: handle zerocopy send cleanup before the message is queued Greg Kroah-Hartman
2026-05-30 16:01 ` [PATCH 5.10 238/589] parisc: Fix IRQ leak in LASI driver Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 239/589] hv_sock: fix ARM64 support Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 240/589] ibmveth: Disable GSO for packets with small MSS Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 241/589] udf: reject descriptors with oversized CRC length Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 242/589] thermal/drivers/sprd: Fix temperature clamping in sprd_thm_temp_to_rawdata Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 243/589] thermal/drivers/sprd: Fix raw temperature clamping in sprd_thm_rawdata_to_temp Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 244/589] spi: topcliff-pch: fix use-after-free on unbind Greg Kroah-Hartman
2026-06-01 16:40 ` Ben Hutchings
2026-05-30 16:02 ` [PATCH 5.10 245/589] cpuidle: powerpc: avoid double clear when breaking snooze Greg Kroah-Hartman
2026-06-01 16:46 ` Ben Hutchings
2026-05-30 16:02 ` [PATCH 5.10 246/589] ASoC: fsl_easrc: fix comment typo Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 247/589] dm: dont report warning when doing deferred remove Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 248/589] dm: fix a buffer overflow in ioctl processing Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 249/589] dm-verity-fec: correctly reject too-small FEC devices Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 250/589] dm-verity-fec: correctly reject too-small hash devices Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 251/589] isofs: validate Rock Ridge CE continuation extent against volume size Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 252/589] isofs: validate block number from NFS file handle in isofs_export_iget Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 253/589] md/raid10: fix divide-by-zero in setup_geo() with zero far_copies Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 254/589] nvmet: avoid recursive nvmet-wq flush in nvmet_ctrl_free Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 255/589] s390/debug: Reject zero-length input in debug_input_flush_fn() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 256/589] PCI/AER: Clear only error bits in PCIe Device Status Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 257/589] PCI/AER: Stop ruling out unbound devices as error source Greg Kroah-Hartman
2026-06-01 17:21 ` Ben Hutchings
2026-05-30 16:02 ` [PATCH 5.10 258/589] power: supply: max17042: avoid overflow when determining health Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 259/589] RDMA/mlx4: Fix resource leak on error in mlx4_ib_create_srq() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 260/589] RDMA/ocrdma: Dont NULL deref uctx on errors in ocrdma_copy_pd_uresp() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 261/589] RDMA/rxe: Reject unknown opcodes before ICRC processing Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 262/589] RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 263/589] media: uvcvideo: Enable VB2_DMABUF for metadata stream Greg Kroah-Hartman
2026-06-01 17:37 ` Ben Hutchings
2026-06-02 7:26 ` Ricardo Ribalda
2026-05-30 16:02 ` [PATCH 5.10 264/589] staging: media: atomisp: Disallow all private IOCTLs Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 265/589] regulator: max77650: fix OF node reference imbalance Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 266/589] media: rc: xbox_remote: heed DMA restrictions Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 267/589] media: rc: streamzap: Error handling in probe Greg Kroah-Hartman
2026-06-01 17:54 ` Ben Hutchings
2026-05-30 16:02 ` [PATCH 5.10 268/589] regulator: act8945a: fix OF node reference imbalance Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 269/589] media: dib8000: avoid division by 0 in dib8000_set_dds() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 270/589] spi: mtk-nor: fix controller deregistration Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 271/589] spi: imx: fix runtime pm leak on probe deferral Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 272/589] spi: orion: fix clock imbalance on registration failure Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 273/589] spi: mpc52xx: fix use-after-free on unbind Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 274/589] drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs() Greg Kroah-Hartman
2026-06-01 19:46 ` Ben Hutchings
2026-06-02 18:21 ` Sasha Levin
2026-05-30 16:02 ` [PATCH 5.10 275/589] drm/radeon: add missing revision check for CI Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 276/589] drm/amdgpu/gfx9: drop unnecessary 64-bit fence flag check in KIQ Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 277/589] drm/amdgpu/sdma4: replace BUG_ON with WARN_ON in fence emission Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 278/589] drm/amdgpu/pm: add missing revision check for CI Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 279/589] drm/amdgpu/pm: align Hawaii mclk workaround with radeon Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 280/589] sctp: revalidate list cursor after sctp_sendmsg_to_asoc() in SCTP_SENDALL Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 281/589] batman-adv: fix integer overflow on buff_pos Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 282/589] batman-adv: reject new tp_meter sessions during teardown Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 283/589] batman-adv: stop caching unowned originator pointers in BAT IV Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 284/589] batman-adv: bla: prevent use-after-free when deleting claims Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 285/589] batman-adv: bla: only purge non-released claims Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 286/589] batman-adv: bla: put backbone reference on failed claim hash insert Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 287/589] Bluetooth: L2CAP: Fix null-ptr-deref in l2cap_sock_get_sndtimeo_cb() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 288/589] vsock: fix buffer size clamping order Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 289/589] vsock/virtio: fix accept queue count leak on transport mismatch Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 290/589] bcache: fix uninitialized closure object Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 291/589] fs/omfs: reject s_sys_blocksize smaller than OMFS_DIR_START Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 292/589] drbd: Balance RCU calls in drbd_adm_dump_devices() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 293/589] nilfs2: reject zero bd_oblocknr in nilfs_ioctl_mark_blocks_dirty() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 294/589] pstore/ram: fix resource leak when ioremap() fails Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 295/589] devres: fix missing node debug info in devm_krealloc() Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 296/589] thermal/drivers/spear: Fix error condition for reading st,thermal-flags Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 297/589] irqchip/irq-pic32-evic: Address warning related to wrong printf() formatter Greg Kroah-Hartman
2026-05-30 16:02 ` [PATCH 5.10 298/589] locking: Fix rwlock support in <linux/spinlock_up.h> Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 299/589] firmware: dmi: Correct an indexing error in dmi.h Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 300/589] wifi: mwifiex: Fix memory leak in mwifiex_11n_aggregate_pkt() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 301/589] wifi: rtlwifi: pci: fix possible use-after-free caused by unfinished irq_prepare_bcn_tasklet Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 302/589] powerpc/crash: fix backup region offset update to elfcorehdr Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 303/589] bpf: fix end-of-list detection in cgroup_storage_get_next_key() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 304/589] brcmfmac: support chipsets with different core enumeration space Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 305/589] wifi: brcmfmac: Fix error pointer dereference Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 306/589] net: bcmgenet: fix off-by-one in bcmgenet_put_txcb Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 307/589] netfilter: nft_fwd_netdev: check ttl/hl before forwarding Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 308/589] 6pack: propagage new tty types Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 309/589] net: hamradio: 6pack: fix uninit-value in sixpack_receive_buf Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 310/589] net/sched: act_ct: Only release RCU read lock after ct_ft Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 311/589] net/rds: Optimize rds_ib_laddr_check Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 312/589] net/rds: Restrict use of RDS/IB to the initial network namespace Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 313/589] ppp: require CAP_NET_ADMIN in target netns for unattached ioctls Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 314/589] bpf: reject short IPv4/IPv6 inputs in bpf_prog_test_run_skb Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 315/589] Bluetooth: L2CAP: Fix printing wrong information if SDU length exceeds MTU Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 316/589] Bluetooth: hci_ldisc: Clear HCI_UART_PROTO_INIT on error Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 317/589] Bluetooth: fix locking in hci_conn_request_evt() with HCI_PROTO_DEFER Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 318/589] Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 319/589] drm/komeda: fix integer overflow in AFBC framebuffer size check Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 320/589] ASoC: sti: Return errors from regmap_field_alloc() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 321/589] ASoC: sti: use managed regmap_field allocations Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 322/589] dm cache: fix null-deref with concurrent writes in passthrough mode Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 323/589] dm cache: fix write path cache coherency " Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 324/589] dm cache policy smq: fix missing locks in invalidating cache blocks Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 325/589] dm cache: fix concurrent write failure in passthrough mode Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 326/589] dm cache: support shrinking the origin device Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 327/589] dm cache: fix dirty mapping checking in passthrough mode switching Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 328/589] dm cache metadata: fix memory leak on metadata abort retry Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 329/589] dm log: fix out-of-bounds write due to region_count overflow Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 330/589] spi: fsl-qspi: Use reinit_completion() for repeated operations Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 331/589] drm/sun4i: Fix resource leaks Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 332/589] fbdev: matroxfb: Mark variable with __maybe_unused to avoid W=1 build break Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 333/589] drm/msm/dsi: rename MSM8998 DSI version from V2_2_0 to V2_0_0 Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 334/589] drm/panel: simple: Correct G190EAN01 prepare timing Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 335/589] ALSA: compress: Drop unused functions Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 336/589] ALSA: core: Validate compress device numbers without dynamic minors Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 337/589] drm/amd/pm/ci: Use highest MCLK on CI when MCLK DPM is disabled Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 338/589] drm/amd/pm/ci: Disable MCLK DPM on problematic CI ASICs Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 339/589] drm/amd/pm/ci: Fix powertune defaults for Hawaii 0x67B0 Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 340/589] drm/amd/pm/ci: Clear EnabledForActivity field for memory levels Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 341/589] drm/amd/pm/ci: Fill DW8 fields from SMC Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 342/589] ALSA: hda/realtek: Whitespace fix Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 343/589] ALSA: hda/realtek: fix code style (ERROR: else should follow close brace }) Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 344/589] drm/msm/a6xx: Fix HLSQ register dumping Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 345/589] drm/msm/a6xx: Use barriers while updating HFI Q headers Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 346/589] pmdomain: ti: omap_prm: Fix a reference leak on device node Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 347/589] ASoC: fsl_easrc: Check the variable range in fsl_easrc_iec958_put_bits() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 348/589] ASoC: fsl_easrc: Fix value type in fsl_easrc_iec958_get_bits() Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 349/589] ASoC: fsl_easrc: Change the type for iec958 channel status controls Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 350/589] PCI: Enable AtomicOps only if Root Port supports them Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 351/589] Documentation: fix a hugetlbfs reservation statement Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 352/589] selftest: memcg: skip memcg_sock test if address family not supported Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 353/589] PCI: tegra194: Use devm_gpiod_get_optional() to parse "nvidia,refclk-select" Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 354/589] PCI: tegra194: Disable direct speed change for Endpoint mode Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 355/589] ktest: Avoid undef warning when WARNINGS_FILE is unset Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 356/589] ktest: Honor empty per-test option overrides Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 357/589] ktest: Run POST_KTEST hooks on failure and cancellation Greg Kroah-Hartman
2026-05-30 16:03 ` [PATCH 5.10 358/589] quota: Fix race of dquot_scan_active() with quota deactivation Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 359/589] efi/capsule-loader: fix incorrect sizeof in phys array reallocation Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 360/589] ARM: dts: mediatek: mt7623: fix efuse fallback compatible Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 361/589] memory: tegra124-emc: Fix dll_change check Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 362/589] memory: tegra30-emc: " Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 363/589] soc: qcom: ocmem: return -EPROBE_DEFER is ocmem is not available Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 364/589] arm64: dts: qcom: sdm845-xiaomi-beryllium: Add DSI and panel bits Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 365/589] arm64: dts: qcom: sdm845-xiaomi-beryllium: Mark l1a regulator as powered during boot Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 366/589] ocfs2/dlm: validate qr_numregions in dlm_match_regions() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 367/589] ocfs2/dlm: fix off-by-one in dlm_match_regions() region comparison Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 368/589] soc: qcom: aoss: compare against normalized cooling state Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 369/589] ocfs2: fix listxattr handling when the buffer is full Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 370/589] ocfs2: validate bg_bits during freefrag scan Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 371/589] ocfs2: validate group add input before caching Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 372/589] dmaengine: mxs-dma: Fix missing return value from of_dma_controller_register() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 373/589] tracing: Rebuild full_name on each hist_field_name() call Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 374/589] ima: check return value of crypto_shash_final() in boot aggregate Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 375/589] HID: asus: make asus_resume adhere to linux kernel coding standards Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 376/589] HID: asus: do not abort probe when not necessary Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 377/589] mtd: physmap_of_gemini: Fix disabled pinctrl state check Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 378/589] mtd: rawnand: sunxi: fix sunxi_nfc_hw_ecc_read_extra_oob Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 379/589] HID: usbhid: fix deadlock in hid_post_reset() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 380/589] bpf: Fix precedence bug in convert_bpf_ld_abs alignment check Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 381/589] pinctrl: pinctrl-pic32: Fix resource leak Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 382/589] perf branch: Avoid incrementing NULL Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 383/589] pinctrl: abx500: Fix type of argument variable Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 384/589] perf expr: Return -EINVAL for syntax error in expr__find_ids() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 385/589] perf util: Kill die() prototype, dead for a long time Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 386/589] driver core: device.h: remove extern from function prototypes Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 387/589] driver core: Move dev_err_probe() to where it belogs Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 388/589] dev_printk: add new dev_err_probe() helpers Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 389/589] backlight: sky81452-backlight: Check return value of devm_gpiod_get_optional() in sky81452_bl_parse_dt() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 390/589] platform/surface: surfacepro3_button: Drop wakeup source on remove Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 391/589] tty: hvc: remove HVC_IUCV_MAGIC Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 392/589] tty: hvc_iucv: fix off-by-one in number of supported devices Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 393/589] mfd: mc13xxx-core: Fix memory leak in mc13xxx_add_subdevice_pdata() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 394/589] nfs/blocklayout: Fix compilation error (`make W=1`) in bl_write_pagelist() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 395/589] platform/x86: dell_rbu: avoid uninit value usage in packet_size_write() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 396/589] RDMA/core: Prefer NLA_NUL_STRING Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 397/589] scsi: sg: Resolve soft lockup issue when opening /dev/sgX Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 398/589] scsi: target: core: Fix integer overflow in UNMAP bounds check Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 399/589] clk: qcom: dispcc-sm8250: Use shared ops on the mdss vsync clk Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 400/589] clk: qcom: dispcc-sm8250: Enable parents for pixel clocks Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 401/589] clk: imx: imx6q: Fix device node reference leak in pll6_bypassed() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 402/589] clk: imx: imx6q: Fix device node reference leak in of_assigned_ldb_sels() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 403/589] clk: imx8mq: Correct the CSI PHY sels Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 404/589] clk: qoriq: avoid format string warning Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 405/589] clk: xgene: Fix mapping leak in xgene_pllclk_init() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 406/589] dt-bindings: clock: qcom,dispcc-sc7180: Define MDSS resets Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 407/589] clk: qcom: dispcc-sc7180: Add missing " Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 408/589] lib/hexdump: print_hex_dump_bytes() calls print_hex_dump_debug() Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 409/589] crypto: sa2ul - Fix AEAD fallback algorithm names Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 410/589] crypto: ccp - copy IV using skcipher ivsize Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 411/589] PCMCIA: Fix garbled log messages for KERN_CONT Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 412/589] net/sched: sch_cake: fix NAT destination port not being updated in cake_update_flowkeys Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 413/589] nexthop: Emit a notification when a nexthop group is modified Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 414/589] nexthop: fix IPv6 route referencing IPv4 nexthop Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 415/589] taprio: Handle short intervals and large packets Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 416/589] net: taprio offload: enforce qdisc to netdev queue mapping Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 417/589] net/sched: taprio: stop going through private ops for dequeue and peek Greg Kroah-Hartman
2026-05-30 16:04 ` [PATCH 5.10 418/589] net/sched: taprio: replace safety precautions with comments Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 419/589] net/sched: taprio: continue with other TXQs if one dequeue() failed Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 420/589] net/sched: taprio: refactor one skb dequeue from TXQ to separate function Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 421/589] net/sched: taprio: rename close_time to end_time Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 422/589] net/sched: taprio: fix use-after-free in advance_sched() on schedule switch Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 423/589] tcp: annotate data-races around (tp->write_seq - tp->snd_nxt) Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 424/589] i40e: dont advertise IFF_SUPP_NOFCS Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 425/589] e1000e: Unroll PTP in probe error handling Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 426/589] ipv6: fix possible UAF in icmpv6_rcv() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 427/589] sctp: fix OOB write to userspace in sctp_getsockopt_peer_auth_chunks Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 428/589] dissector: do not set invalid PPP protocol Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 429/589] flow_dissector: Add number of vlan tags dissector Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 430/589] flow_dissector: Add PPPoE dissectors Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 431/589] pppoe: drop PFC frames Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 432/589] openvswitch: cap upcall PID array size and pre-size vport replies Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 433/589] netfilter: nft_osf: restrict it to ipv4 Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 434/589] netfilter: nfnetlink_osf: fix divide-by-zero in OSF_WSS_MODULO Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 435/589] netfilter: conntrack: remove sprintf usage Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 436/589] netfilter: xtables: restrict several matches to inet family Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 437/589] ipvs: fix MTU check for GSO packets in tunnel mode Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 438/589] netfilter: nfnetlink_osf: fix out-of-bounds read on option matching Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 439/589] netfilter: nfnetlink_osf: fix potential NULL dereference in ttl check Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 440/589] slip: reject VJ receive packets on instances with no rstate array Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 441/589] slip: bound decode() reads against the compressed packet length Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 442/589] arm64: dts: meson-gxl-p230: fix ethernet PHY interrupt number Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 443/589] net/rds: zero per-item info buffer before handing it to visitors Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 444/589] net_sched: sch_hhf: annotate data-races in hhf_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 445/589] net/sched: sch_pie: annotate data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 446/589] net/sched: sch_fq_codel: remove data-races from fq_codel_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 447/589] net: sched: gred/red: remove unused variables in struct red_stats Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 448/589] net/sched: sch_red: annotate data-races in red_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 449/589] net/sched: sch_sfb: annotate data-races in sfb_dump_stats() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 450/589] nfp: fix swapped arguments in nfp_encode_basic_qdr() calls Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 451/589] tipc: fix double-free in tipc_buf_append() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 452/589] vhost_net: fix sleeping with preempt-disabled in vhost_net_busy_poll() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 453/589] fs/adfs: validate nzones in adfs_validate_bblk() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 454/589] rtc: introduce features bitfield Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 455/589] rtc: abx80x: Disable alarm feature if no interrupt attached Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 456/589] fbdev: offb: fix PCI device reference leak on probe failure Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 457/589] mailbox: mailbox-test: free channels on probe error Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 458/589] cgroup/rdma: fix integer overflow in rdmacg_try_charge() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 459/589] mailbox: add sanity check for channel array Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 460/589] mailbox: mailbox-test: dont free the reused channel Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 461/589] mailbox: mailbox-test: initialize struct earlier Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 462/589] mailbox: mailbox-test: make data_ready a per-instance variable Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 463/589] btrfs: merge PAGE_CLEAR_DIRTY and PAGE_SET_WRITEBACK to PAGE_START_WRITEBACK Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 464/589] btrfs: fix double-decrement of bytes_may_use in submit_one_async_extent() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 465/589] tracing: branch: Fix inverted check on stat tracer registration Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 466/589] netfilter: arp_tables: fix IEEE1394 ARP payload parsing Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 467/589] drm/amdgpu/gfx6: Support harvested SI chips with disabled TCCs (v2) Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 468/589] netfilter: xt_policy: fix strict mode inbound policy matching Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 469/589] netfilter: nf_conntrack_sip: dont use simple_strtoul Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 470/589] scsi: sr: Add memory allocation failure handling for get_capabilities() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 471/589] cdrom, scsi: sr: propagate read-only status to block layer via set_disk_ro() Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 472/589] netdevsim: zero initialize struct iphdr in dummy sk_buff Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 473/589] net: sched: sch_netem: Refactor code in 4-state loss generator Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 474/589] net/sched: netem: fix probability gaps in 4-state loss model Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 475/589] net/sched: netem: fix queue limit check to include reordered packets Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 476/589] net/sched: netem: validate slot configuration Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 477/589] net: sched: choke: remove unused variables in struct choke_sched_data Greg Kroah-Hartman
2026-05-30 16:05 ` [PATCH 5.10 478/589] net/sched: sch_choke: annotate data-races in choke_dump_stats() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 479/589] net/sched: sch_fq_pie: annotate data-races in fq_pie_dump_stats() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 480/589] vrf: Fix a potential NPD when removing a port from a VRF Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 481/589] net: usb: rtl8150: fix use-after-free in rtl8150_start_xmit() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 482/589] net: usb: rtl8150: free skb on usb_submit_urb() failure in xmit Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 483/589] NFC: trf7970a: Ignore antenna noise when checking for RF field Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 484/589] net: phy: dp83869: fix setting CLK_O_SEL field Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 485/589] ASoC: codecs: ab8500: Fix casting of private data Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 486/589] netfilter: skip recording stale or retransmitted INIT Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 487/589] sctp: discard stale INIT after handshake completion Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 488/589] ipv4: rename and move ip_route_output_tunnel() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 489/589] ipv4: remove "proto" argument from udp_tunnel_dst_lookup() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 490/589] ipv4: add new arguments to udp_tunnel_dst_lookup() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 491/589] ipv6: rename and move ip6_dst_lookup_tunnel() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 492/589] bareudp: fix NULL pointer dereference in bareudp_fill_metadata_dst() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 493/589] net/sched: sch_cake: annotate data-races in cake_dump_stats() (V) Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 494/589] drm/amd/display: Allow DCE link encoder without AUX registers Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 495/589] drm/amd/display: Read EDID from VBIOS embedded panel info Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 496/589] btrfs: tracepoints: fix sleep while in atomic context in btrfs_sync_file() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 497/589] net/sched: taprio: Fix init procedure Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 498/589] flow_dissector: do not dissect PPPoE PFC frames Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 499/589] flow_dissector: Do not count vlan tags inside tunnel payload Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 500/589] net/sched: sch_pie: annotate more data-races in pie_dump_stats() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 501/589] rtc: allow rtc_read_alarm without read_alarm callback Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 502/589] alarmtimer: Check RTC features instead of ops Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 503/589] crypto: af_alg - Cap AEAD AD length to 0x80000000 Greg Kroah-Hartman
2026-06-07 19:25 ` Ben Hutchings
2026-05-30 16:06 ` [PATCH 5.10 504/589] audit: fix incorrect inheritable capability in CAPSET records Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 505/589] netfilter: nft_ct: fix missing expect put in obj eval Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 506/589] net: atlantic: preserve PCI wake-from-D3 on shutdown when WOL enabled Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 507/589] audit: enforce AUDIT_LOCKED for AUDIT_TRIM and AUDIT_MAKE_EQUIV Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 508/589] drm/i915/dp: Fix VSC dynamic range signaling for RGB formats Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 509/589] ALSA: usb-audio: Bound MIDI endpoint descriptor scans Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 510/589] ceph: fix a buffer leak in __ceph_setxattr() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 511/589] powerpc/warp: Fix error handling in pika_dtm_thread Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 512/589] libceph: Fix potential out-of-bounds access in osdmap_decode() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 513/589] libceph: Fix potential null-ptr-deref in decode_choose_args() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 514/589] libceph: Fix potential out-of-bounds access in crush_decode() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 515/589] libceph: handle rbtree insertion error in decode_choose_args() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 516/589] iommu/vt-d: Disable DMAR for Intel Q35 IGFX Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 517/589] drm/panfrost: Fix wait_bo ioctl leaking positive return from dma_resv_wait_timeout() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 518/589] drm/gma500/oaktrail_hdmi: fix i2c adapter leak on setup Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 519/589] io-wq: check that the predecessor is hashed in io_wq_remove_pending() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 520/589] net/rds: reset op_nents when zerocopy page pin fails Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 521/589] s390/debug: Reject zero-length input before trimming a newline Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 522/589] selftests: lib.mk: Also install "config" and "settings" Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 523/589] Revert "x86/vdso: Fix output operand size of RDPID" Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 524/589] net: dsa: sja1105: fix kasan out-of-bounds warning in sja1105_table_delete_entry() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 525/589] Revert "s390/cio: Fix device lifecycle handling in css_alloc_subchannel()" Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 526/589] smb: client: reject userspace cifs.spnego descriptions Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 527/589] sysfs: dont remove existing directory on update failure Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 528/589] hwmon: (pmbus/adm1266) widen blackbox-info buffer to I2C_SMBUS_BLOCK_MAX Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 529/589] ALSA: ua101: Reject too-short USB descriptors Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 530/589] ALSA: asihpi: Fix potential OOB array access at reading cache Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 531/589] Bluetooth: bnep: Fix UAF read of dev->name Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 532/589] Bluetooth: hci_uart: fix UAFs and race conditions in close and init paths Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 533/589] phonet/pep: disable BH around forwarded sk_receive_skb() Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 534/589] net: bcmgenet: keep RBUF EEE/PM disabled Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 535/589] netfilter: ip6t_hbh: reject oversized option lists Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 536/589] netfilter: ipset: stop hash:* range iteration at end Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 537/589] ring-buffer: Fix reporting of missed events in iterator Greg Kroah-Hartman
2026-05-30 16:06 ` [PATCH 5.10 538/589] vsock/vmci: fix UAF when peer resets connection during handshake Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 539/589] wifi: ath11k: clear shared SRNG pointer state on restart Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 540/589] ipv4: raw: reject IP_HDRINCL packets with ihl < 5 Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 541/589] ixgbevf: fix use-after-free in VEPA multicast source pruning Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 542/589] wifi: cfg80211: advance loop vars in cfg80211_merge_profile() Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 543/589] tracing: Do not call map->ops->elt_free() if elt_alloc() fails Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 544/589] scsi: isci: Fix use-after-free in device removal path Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 545/589] spi: sprd: fix error pointer deref after DMA setup failure Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 546/589] spi: ti-qspi: fix use-after-free " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 547/589] RDMA/siw: Reject MPA FPDU length underflow before signed receive math Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 548/589] drm/bridge: megachips: remove bridge when irq request fails Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 549/589] drm/amd/display: Fix integer overflow in bios_get_image() Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 550/589] batman-adv: mcast: fix use-after-free in orig_node RCU release Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 551/589] batman-adv: clear current gateway during teardown Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 552/589] batman-adv: dat: handle forward allocation error Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 553/589] batman-adv: fix fragment reassembly length accounting Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 554/589] batman-adv: fix tp_meter counter underflow during shutdown Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 555/589] batman-adv: frag: disallow unicast fragment in fragment Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 556/589] batman-adv: bla: fix report_work leak on backbone_gw purge Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 557/589] batman-adv: tp_meter: avoid use of uninit sender vars Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 558/589] batman-adv: tt: fix negative last_changeset_len Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 559/589] batman-adv: tt: fix negative tt_buff_len Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 560/589] hwmon: (pmbus/adm1266) seed timestamp from the real-time clock Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 561/589] hwmon: (pmbus/adm1266) reject implausible blackbox record_count Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 562/589] hwmon: (pmbus/adm1266) include PEC byte in pmbus_block_xfer read buffer Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 563/589] hwmon: (pmbus/adm1266) bounce blackbox records through a protocol-sized buffer Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 564/589] hwmon: (pmbus/adm1266) cap PDIO scan in get_multiple at ADM1266_PDIO_NR Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 565/589] hwmon: (pmbus/adm1266) dont clobber GPIO bits before PDIO read in get_multiple Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 566/589] hwmon: (pmbus/adm1266) register the gpio_chip after pmbus_do_probe() Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 567/589] hwmon: (pmbus/adm1266) register the nvmem device " Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 568/589] hwmon: (pmbus/adm1266) reject short block-read responses in the GPIO accessors Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 569/589] kunit: config: Enable KUNIT_DEBUGFS by default Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 570/589] kunit: config: KUNIT_DEBUGFS should depend on DEBUG_FS Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 571/589] ARM: integrator: Fix early initialization Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 572/589] ice: fix locking in ice_dcb_rebuild() Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 573/589] phy: marvell: mvebu-a3700-utmi: fix incorrect USB2_PHY_CTRL register access Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 574/589] irqchip/ath79-cpu: Remove unused function Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 575/589] net: ethernet: cortina: Make RX SKB per-port Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 576/589] net: ethernet: cortina: Drop half-assembled SKB Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 577/589] net: ethernet: cortina: Carry over frag counter Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 578/589] net: ethernet: cs89x0: remove stale CONFIG_MACH_MX31ADS reference Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 579/589] HID: quirks: really enable the intended work around for appledisplay Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 580/589] ethtool: fix ethnl_bitmap32_not_zero() bit interval semantics Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 581/589] net: tls: fix off-by-one in sg_chain entry count for wrapped sk_msg ring Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 582/589] net: tls: prevent chain-after-chain in plain text SG Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 583/589] platform/x86: intel-hid: Check ACPI_HANDLE() against NULL Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 584/589] tracing: Avoid NULL return from hist_field_name() on truncation Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 585/589] net: ag71xx: check error for platform_get_irq Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 586/589] string: add mem_is_zero() helper to check if memory area is all zeros Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 587/589] gpiolib: cdev: use !mem_is_zero() instead of memchr_inv(s, 0, n) Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 588/589] gpio: cdev: check if uAPI v2 config attributes are correctly zeroed Greg Kroah-Hartman
2026-05-30 16:07 ` [PATCH 5.10 589/589] net: usb: lan78xx: Fix double free issue with interrupt buffer allocation Greg Kroah-Hartman
2026-05-30 17:15 ` [PATCH 5.10 000/589] 5.10.258-rc1 review Brett A C Sheffield
2026-05-31 12:05 ` Woody Suwalski
2026-06-01 3:36 ` Dominique Martinet
2026-06-01 6:54 ` Barry K. Nathan
2026-06-01 8:47 ` Pavel Machek
2026-06-01 13:47 ` Claudiu Beznea
2026-06-01 16:34 ` Florian Fainelli
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=20260530160226.630021564@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=abhishek_sts8@yahoo.com \
--cc=hverkuil+cisco@kernel.org \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
--cc=syzbot+c025d34b8eaa54c571b8@syzkaller.appspotmail.com \
/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