From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Junvy Yang <zhuque@tencent.com>,
Ilya Maximets <i.maximets@ovn.org>,
Aaron Conole <aconole@redhat.com>,
Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 338/737] net: openvswitch: fix middle attribute validation in push_nsh() action
Date: Fri, 9 Jan 2026 12:37:57 +0100 [thread overview]
Message-ID: <20260109112146.704813055@linuxfoundation.org> (raw)
In-Reply-To: <20260109112133.973195406@linuxfoundation.org>
6.6-stable review patch. If anyone has any objections, please let me know.
------------------
From: Ilya Maximets <i.maximets@ovn.org>
[ Upstream commit 5ace7ef87f059d68b5f50837ef3e8a1a4870c36e ]
The push_nsh() action structure looks like this:
OVS_ACTION_ATTR_PUSH_NSH(OVS_KEY_ATTR_NSH(OVS_NSH_KEY_ATTR_BASE,...))
The outermost OVS_ACTION_ATTR_PUSH_NSH attribute is OK'ed by the
nla_for_each_nested() inside __ovs_nla_copy_actions(). The innermost
OVS_NSH_KEY_ATTR_BASE/MD1/MD2 are OK'ed by the nla_for_each_nested()
inside nsh_key_put_from_nlattr(). But nothing checks if the attribute
in the middle is OK. We don't even check that this attribute is the
OVS_KEY_ATTR_NSH. We just do a double unwrap with a pair of nla_data()
calls - first time directly while calling validate_push_nsh() and the
second time as part of the nla_for_each_nested() macro, which isn't
safe, potentially causing invalid memory access if the size of this
attribute is incorrect. The failure may not be noticed during
validation due to larger netlink buffer, but cause trouble later during
action execution where the buffer is allocated exactly to the size:
BUG: KASAN: slab-out-of-bounds in nsh_hdr_from_nlattr+0x1dd/0x6a0 [openvswitch]
Read of size 184 at addr ffff88816459a634 by task a.out/22624
CPU: 8 UID: 0 PID: 22624 6.18.0-rc7+ #115 PREEMPT(voluntary)
Call Trace:
<TASK>
dump_stack_lvl+0x51/0x70
print_address_description.constprop.0+0x2c/0x390
kasan_report+0xdd/0x110
kasan_check_range+0x35/0x1b0
__asan_memcpy+0x20/0x60
nsh_hdr_from_nlattr+0x1dd/0x6a0 [openvswitch]
push_nsh+0x82/0x120 [openvswitch]
do_execute_actions+0x1405/0x2840 [openvswitch]
ovs_execute_actions+0xd5/0x3b0 [openvswitch]
ovs_packet_cmd_execute+0x949/0xdb0 [openvswitch]
genl_family_rcv_msg_doit+0x1d6/0x2b0
genl_family_rcv_msg+0x336/0x580
genl_rcv_msg+0x9f/0x130
netlink_rcv_skb+0x11f/0x370
genl_rcv+0x24/0x40
netlink_unicast+0x73e/0xaa0
netlink_sendmsg+0x744/0xbf0
__sys_sendto+0x3d6/0x450
do_syscall_64+0x79/0x2c0
entry_SYSCALL_64_after_hwframe+0x76/0x7e
</TASK>
Let's add some checks that the attribute is properly sized and it's
the only one attribute inside the action. Technically, there is no
real reason for OVS_KEY_ATTR_NSH to be there, as we know that we're
pushing an NSH header already, it just creates extra nesting, but
that's how uAPI works today. So, keeping as it is.
Fixes: b2d0f5d5dc53 ("openvswitch: enable NSH support")
Reported-by: Junvy Yang <zhuque@tencent.com>
Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Acked-by: Eelco Chaudron echaudro@redhat.com
Reviewed-by: Aaron Conole <aconole@redhat.com>
Link: https://patch.msgid.link/20251204105334.900379-1-i.maximets@ovn.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
net/openvswitch/flow_netlink.c | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c
index 836e8e705d40e..1d9a44d6216af 100644
--- a/net/openvswitch/flow_netlink.c
+++ b/net/openvswitch/flow_netlink.c
@@ -2788,13 +2788,20 @@ static int validate_and_copy_set_tun(const struct nlattr *attr,
return err;
}
-static bool validate_push_nsh(const struct nlattr *attr, bool log)
+static bool validate_push_nsh(const struct nlattr *a, bool log)
{
+ struct nlattr *nsh_key = nla_data(a);
struct sw_flow_match match;
struct sw_flow_key key;
+ /* There must be one and only one NSH header. */
+ if (!nla_ok(nsh_key, nla_len(a)) ||
+ nla_total_size(nla_len(nsh_key)) != nla_len(a) ||
+ nla_type(nsh_key) != OVS_KEY_ATTR_NSH)
+ return false;
+
ovs_match_init(&match, &key, true, NULL);
- return !nsh_key_put_from_nlattr(attr, &match, false, true, log);
+ return !nsh_key_put_from_nlattr(nsh_key, &match, false, true, log);
}
/* Return false if there are any non-masked bits set.
@@ -3351,7 +3358,7 @@ static int __ovs_nla_copy_actions(struct net *net, const struct nlattr *attr,
return -EINVAL;
}
mac_proto = MAC_PROTO_NONE;
- if (!validate_push_nsh(nla_data(a), log))
+ if (!validate_push_nsh(a, log))
return -EINVAL;
break;
--
2.51.0
next prev parent reply other threads:[~2026-01-09 12:04 UTC|newest]
Thread overview: 769+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-09 11:32 [PATCH 6.6 000/737] 6.6.120-rc1 review Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 001/737] xfrm: delete x->tunnel as we delete x Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 002/737] Revert "xfrm: destroy xfrm_state synchronously on net exit path" Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 003/737] xfrm: also call xfrm_state_delete_tunnel at destroy time for states that were never added Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 004/737] xfrm: flush all states in xfrm_state_fini Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 005/737] leds: spi-byte: Use devm_led_classdev_register_ext() Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 006/737] Documentation: process: Also mention Sasha Levin as stable tree maintainer Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 007/737] jbd2: avoid bug_on in jbd2_journal_get_create_access() when file system corrupted Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 008/737] ext4: refresh inline data size before write operations Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 009/737] ksmbd: ipc: fix use-after-free in ipc_msg_send_request Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 010/737] locking/spinlock/debug: Fix data-race in do_raw_write_lock Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 011/737] ext4: add i_data_sem protection in ext4_destroy_inline_data_nolock() Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 012/737] comedi: pcl818: fix null-ptr-deref in pcl818_ai_cancel() Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 013/737] KVM: SVM: Dont skip unrelated instruction if INT3/INTO is replaced Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 014/737] USB: serial: option: add Foxconn T99W760 Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 015/737] USB: serial: option: add Telit Cinterion FE910C04 new compositions Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 016/737] USB: serial: option: move Telit 0x10c7 composition in the right place Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 017/737] USB: serial: ftdi_sio: match on interface number for jtag Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 018/737] serial: add support of CPCI cards Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 019/737] USB: serial: belkin_sa: fix TIOCMBIS and TIOCMBIC Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 020/737] USB: serial: kobil_sct: " Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 021/737] ftrace: bpf: Fix IPMODIFY + DIRECT in modify_ftrace_direct() Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 022/737] spi: xilinx: increase number of retries before declaring stall Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 023/737] spi: imx: keep dma request disabled before dma transfer setup Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 024/737] drm/vmwgfx: Use kref in vmw_bo_dirty Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 025/737] Bluetooth: btrtl: Avoid loading the config file on security chips Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 026/737] smb: fix invalid username check in smb3_fs_context_parse_param() Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 027/737] ALSA: usb-audio: Add native DSD quirks for PureAudio DAC series Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 028/737] bfs: Reconstruct file type when loading from disk Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 029/737] HID: hid-input: Extend Elan ignore battery quirk to USB Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 030/737] nvme: fix admin request_queue lifetime Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 031/737] pinctrl: qcom: msm: Fix deadlock in pinmux configuration Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 032/737] platform/x86: acer-wmi: Ignore backlight event Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 033/737] HID: apple: Add SONiX AK870 PRO to non_apple_keyboards quirk list Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 034/737] platform/x86: huawei-wmi: add keys for HONOR models Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 035/737] platform/x86/amd: pmc: Add Lenovo Legion Go 2 to pmc quirk list Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 036/737] platform/x86/amd/pmc: Add spurious_8042 to Xbox Ally Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 037/737] HID: elecom: Add support for ELECOM M-XT3URBK (018F) Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 038/737] LoongArch: Mask all interrupts during kexec/kdump Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 039/737] samples: work around glibc redefining some of our defines wrong Greg Kroah-Hartman
2026-01-09 11:32 ` [PATCH 6.6 040/737] wifi: rtw88: Add USB ID 2001:3329 for D-Link AC13U rev. A1 Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 041/737] comedi: c6xdigio: Fix invalid PNP driver unregistration Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 042/737] comedi: multiq3: sanitize config options in multiq3_attach() Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 043/737] comedi: check devices attached status in compat ioctls Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 044/737] staging: rtl8723bs: fix out-of-bounds read in rtw_get_ie() parser Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 045/737] staging: rtl8723bs: fix stack buffer overflow in OnAssocReq IE parsing Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 046/737] staging: rtl8723bs: fix out-of-bounds read in OnBeacon ESR " Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 047/737] smack: fix bug: unprivileged task can create labels Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 048/737] gpu: host1x: Fix race in syncpt alloc/free Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 049/737] drm/panel: visionox-rm69299: Dont clear all mode flags Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 050/737] drm/vgem-fence: Fix potential deadlock on release Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 051/737] USB: Fix descriptor count when handling invalid MBIM extended descriptor Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 052/737] clk: renesas: cpg-mssr: Add missing 1ms delay into reset toggle callback Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 053/737] clk: renesas: rzg2l: Simplify the logic in rzg2l_mod_clock_endisable() Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 054/737] clk: renesas: rzg2l: Remove critical area Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 055/737] clk: renesas: rzg2l: Use %x format specifier to print CLK_ON_R() Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 056/737] clk: renesas: Use str_on_off() helper Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 057/737] clk: renesas: Pass sub struct of cpg_mssr_priv to cpg_clk_register Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 058/737] clk: renesas: cpg-mssr: Read back reset registers to assure values latched Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 059/737] HID: logitech-hidpp: Do not assume FAP in hidpp_send_message_sync() Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 060/737] objtool: Fix standalone --hacks=jump_label Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 061/737] objtool: Fix weak symbol detection Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 062/737] sched/fair: Forfeit vruntime on yield Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 063/737] irqchip/irq-bcm7038-l1: Fix section mismatch Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 064/737] irqchip/irq-bcm7120-l2: " Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 065/737] irqchip/irq-brcmstb-l2: " Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 066/737] irqchip/imx-mu-msi: " Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 067/737] irqchip/qcom-irq-combiner: " Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 068/737] crypto: authenc - Correctly pass EINPROGRESS back up to the caller Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 069/737] ntfs3: fix uninit memory after failed mi_read in mi_format_new Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 070/737] ntfs3: Fix uninit buffer allocated by __getname() Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 071/737] rculist: Add hlist_nulls_replace_rcu() and hlist_nulls_replace_init_rcu() Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 072/737] inet: Avoid ehash lookup race in inet_ehash_insert() Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 073/737] iio: imu: st_lsm6dsx: Fix measurement unit for odr struct member Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 074/737] arm64: dts: freescale: imx8mp-venice-gw7905-2x: remove duplicate usdhc1 props Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 075/737] arm64: dts: imx8mm-venice-gw72xx: remove unused sdhc1 pinctrl Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 076/737] arm64: dts: imx8mp-venice-gw702x: remove off-board uart Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 077/737] arm64: dts: imx8mp-venice-gw702x: remove off-board sdhc1 Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 078/737] PCI: rcar-gen2: Drop ARM dependency from PCI_RCAR_GEN2 Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 079/737] uio: uio_fsl_elbc_gpcm:: Add null pointer check to uio_fsl_elbc_gpcm_probe Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 080/737] clk: qcom: camcc-sm6350: Specify Titan GDSC power domain as a parent to other Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 081/737] clk: qcom: camcc-sm6350: Fix PLL config of PLL2 Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 082/737] crypto: asymmetric_keys - prevent overflow in asymmetric_key_generate_id Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 083/737] crypto: hisilicon/qm - restore original qos values Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 084/737] wifi: ath11k: fix peer HE MCS assignment Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 085/737] s390/smp: Fix fallback CPU detection Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 086/737] s390/ap: Dont leak debug feature files if AP instructions are not available Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 087/737] arm64: dts: ti: k3-am62p: Fix memory ranges for GPU Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 088/737] firmware: imx: scu-irq: fix OF node leak in Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 089/737] arm64: dts: qcom: sdm845-oneplus: Correct gpio used for slider Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 090/737] phy: mscc: Fix PTP for VSC8574 and VSC8572 Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 091/737] sctp: Defer SCTP_DBG_OBJCNT_DEC() to sctp_destroy_sock() Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 092/737] RDMA/rxe: Fix null deref on srq->rq.queue after resize failure Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 093/737] ARM: dts: renesas: gose: Remove superfluous port property Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 094/737] ARM: dts: renesas: r9a06g032-rzn1d400-db: Drop invalid #cells properties Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 095/737] Revert "mtd: rawnand: marvell: fix layouts" Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 096/737] mtd: nand: relax ECC parameter validation check Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 097/737] mtd: rawnand: lpc32xx_slc: fix GPIO descriptor leak on probe error and remove Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 098/737] task_work: Fix NMI race condition Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 099/737] x86/dumpstack: Prevent KASAN false positive warnings in __show_regs() Greg Kroah-Hartman
2026-01-09 11:33 ` [PATCH 6.6 100/737] tools/nolibc/stdio: let perror work when NOLIBC_IGNORE_ERRNO is set Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 101/737] soc: qcom: smem: fix hwspinlock resource leak in probe error paths Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 102/737] pinctrl: stm32: fix hwspinlock resource leak in probe function Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 103/737] i3c: master: Inherit DMA masks and parameters from parent device Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 104/737] i3c: fix refcount inconsistency in i3c_master_register Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 105/737] i3c: master: svc: Prevent incomplete IBI transaction Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 106/737] interconnect: qcom: msm8996: add missing link to SLAVE_USB_HS Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 107/737] arm64: dts: qcom: msm8996: add interconnect paths to USB2 controller Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 108/737] interconnect: debugfs: Fix incorrect error handling for NULL path Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 109/737] perf maps: Add maps__load_first() Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 110/737] perf lock contention: Load kernel map before lookup Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 111/737] perf record: skip synthesize event when open evsel failed Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 112/737] power: supply: cw2015: Check devm_delayed_work_autocancel() return code Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 113/737] power: supply: rt9467: Return error on failure in rt9467_set_value_from_ranges() Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 114/737] power: supply: rt9467: Prevent using uninitialized local variable " Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 115/737] power: supply: wm831x: Check wm831x_set_bits() return value Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 116/737] power: supply: apm_power: only unset own apm_get_power_status Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 117/737] scsi: target: Do not write NUL characters into ASCII configfs output Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 118/737] fs/9p: Dont open remote file with APPEND mode when writeback cache is used Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 119/737] spi: tegra210-quad: Fix timeout handling Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 120/737] ARM: dts: am335x-netcom-plus-2xx: add missing GPIO labels Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 121/737] ARM: dts: omap3: beagle-xm: Correct obsolete TWL4030 power compatible Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 122/737] ARM: dts: omap3: n900: " Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 123/737] x86/boot: Fix page table access in 5-level to 4-level paging transition Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 124/737] efi/libstub: " Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 125/737] mfd: da9055: Fix missing regmap_del_irq_chip() in error path Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 126/737] ext4: correct the checking of quota files before moving extents Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 127/737] perf/x86/intel: Correct large PEBS flag check Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 128/737] regulator: core: disable supply if enabling main regulator fails Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 129/737] nbd: defer config put in recv_work Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 130/737] scsi: stex: Fix reboot_notifier leak in probe error path Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 131/737] scsi: smartpqi: Fix device resources accessed after device removal Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 132/737] staging: most: i2c: Drop explicit initialization of struct i2c_device_id::driver_data to 0 Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 133/737] staging: most: remove broken i2c driver Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 134/737] dt-bindings: PCI: amlogic: Fix the register name of the DBI region Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 135/737] RDMA/rtrs: server: Fix error handling in get_or_create_srv Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 136/737] ARM: dts: stm32: stm32mp157c-phycore: Fix STMPE811 touchscreen node properties Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 137/737] ntfs3: init run lock for extend inode Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 138/737] scsi: ufs: core: fix incorrect buffer duplication in ufshcd_read_string_desc() Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 139/737] cpufreq/amd-pstate: Call cppc_set_auto_sel() only for online CPUs Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 140/737] powerpc/32: Fix unpaired stwcx. on interrupt exit Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 141/737] macintosh/mac_hid: fix race condition in mac_hid_toggle_emumouse Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 142/737] wifi: cw1200: Fix potential memory leak in cw1200_bh_rx_helper() Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 143/737] nbd: defer config unlock in nbd_genl_connect Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 144/737] coresight: etm4x: Correct polling IDLE bit Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 145/737] coresight: etm4x: Extract the trace unit controlling Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 146/737] coresight: etm4x: Add context synchronization before enabling trace Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 147/737] clk: renesas: r9a06g032: Fix memory leak in error path Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 148/737] lib/vsprintf: Check pointer before dereferencing in time_and_date() Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 149/737] ocfs2: relax BUG() to ocfs2_error() in __ocfs2_move_extent() Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 150/737] ACPI: property: Fix fwnode refcount leak in acpi_fwnode_graph_parse_endpoint() Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 151/737] scsi: sim710: Fix resource leak by adding missing ioport_unmap() calls Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 152/737] leds: netxbig: Fix GPIO descriptor leak in error paths Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 153/737] bpf: Free special fields when update [lru_,]percpu_hash maps Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 154/737] PCI: keystone: Exit ks_pcie_probe() for invalid mode Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 155/737] arm64: dts: rockchip: Move the EEPROM to correct I2C bus on Radxa ROCK 5A Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 156/737] arm64: dts: rockchip: Add eeprom vcc-supply for " Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 157/737] ps3disk: use memcpy_{from,to}_bvec index Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 158/737] bpf: Handle return value of ftrace_set_filter_ip in register_fentry Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 159/737] selftests/bpf: Fix failure paths in send_signal test Greg Kroah-Hartman
2026-01-09 11:34 ` [PATCH 6.6 160/737] bpf: Check skb->transport_header is set in bpf_skb_check_mtu Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 161/737] watchdog: wdat_wdt: Fix ACPI table leak in probe function Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 162/737] watchdog: starfive: Fix resource leak in probe error path Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 163/737] tracefs: fix a leak in eventfs_create_events_dir() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 164/737] NFSD/blocklayout: Fix minlength check in proc_layoutget Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 165/737] drm/msm/a2xx: stop over-complaining about the legacy firmware Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 166/737] wifi: rtl818x: Fix potential memory leaks in rtl8180_init_rx_ring() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 167/737] bpf: Improve program stats run-time calculation Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 168/737] bpf: Fix invalid prog->stats access when update_effective_progs fails Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 169/737] powerpc/64s/hash: Restrict stress_hpt_struct memblock region to within RMA limit Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 170/737] powerpc/64s/ptdump: Fix kernel_hash_pagetable dump for ISA v3.00 HPTE format Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 171/737] fs/ntfs3: out1 also needs to put mi Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 172/737] fs/ntfs3: Prevent memory leaks in add sub record Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 173/737] drm/mediatek: Fix CCORR mtk_ctm_s31_32_to_s1_n function issue Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 174/737] net/ipv6: Remove expired routes with a separated list of routes Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 175/737] ipv6: clear RA flags when adding a static route Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 176/737] perf arm-spe: Extend branch operations Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 177/737] perf arm_spe: Fix memset subclass in operation Greg Kroah-Hartman
2026-01-27 18:38 ` [PATCH 6.6 176/737] perf arm-spe: Extend branch operations Hamza Mahfooz
2026-01-28 9:02 ` Leo Yan
2026-01-28 16:13 ` Arnaldo Carvalho de Melo
2026-01-28 16:20 ` Arnaldo Carvalho de Melo
2026-01-09 11:35 ` [PATCH 6.6 178/737] pwm: bcm2835: Make sure the channel is enabled after pwm_request() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 179/737] scsi: qla2xxx: Fix improper freeing of purex item Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 180/737] wifi: mac80211: remove RX_DROP_UNUSABLE Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 181/737] wifi: mac80211: fix CMAC functions not handling errors Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 182/737] mfd: mt6397-irq: Fix missing irq_domain_remove() in error path Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 183/737] mfd: mt6358-irq: " Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 184/737] phy: renesas: rcar-gen3-usb2: Fix an error handling path in rcar_gen3_phy_usb2_probe() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 185/737] net: phy: adin1100: Fix software power-down ready condition Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 186/737] cpuset: Treat cpusets in attaching as populated Greg Kroah-Hartman
2026-01-12 2:42 ` [PATCH] " Chen Ridong
2026-01-12 3:02 ` Chen Ridong
2026-01-12 6:42 ` Greg KH
2026-01-12 6:55 ` Chen Ridong
2026-01-12 7:03 ` Greg KH
2026-01-14 1:51 ` [PATCH stable] cpuset: Fix missing adaptation for cpuset_is_populated Chen Ridong
2026-01-14 2:13 ` Chen Ridong
2026-01-15 14:54 ` Greg KH
2026-01-16 0:57 ` Chen Ridong
2026-02-17 12:39 ` Greg KH
2026-01-09 11:35 ` [PATCH 6.6 187/737] wifi: rtl818x: rtl8187: Fix potential buffer underflow in rtl8187_rx_cb() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 188/737] ima: Handle error code returned by ima_filter_rule_match() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 189/737] usb: chaoskey: fix locking for O_NONBLOCK Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 190/737] usb: dwc2: disable platform lowlevel hw resources during shutdown Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 191/737] usb: dwc2: fix hang during shutdown if set as peripheral Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 192/737] usb: dwc2: fix hang during suspend " Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 193/737] usb: raw-gadget: cap raw_io transfer length to KMALLOC_MAX_SIZE Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 194/737] selftests/bpf: skip test_perf_branches_hw() on unsupported platforms Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 195/737] selftests/bpf: Improve reliability of test_perf_branches_no_hw() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 196/737] crypto: starfive - Correctly handle return of sg_nents_for_len Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 197/737] crypto: ccree " Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 198/737] RISC-V: KVM: Fix guest page fault within HLV* instructions Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 199/737] RDMA/bnxt_re: Fix the inline size for GenP7 devices Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 200/737] mt76: mt7615: Fix memory leak in mt7615_mcu_wtbl_sta_add() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 201/737] firmware: stratix10-svc: fix make htmldocs warning for stratix10_svc Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 202/737] staging: fbtft: core: fix potential memory leak in fbtft_probe_common() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 203/737] btrfs: fix leaf leak in an error path in btrfs_del_items() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 204/737] PCI: dwc: Fix wrong PORT_LOGIC_LTSSM_STATE_MASK definition Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 205/737] drm/nouveau: restrict the flush page to a 32-bit address Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 206/737] iomap: factor out a iomap_dio_done helper Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 207/737] iomap: always run error completions in user context Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 208/737] wifi: ieee80211: correct FILS status codes Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 209/737] backlight: led-bl: Add devlink to supplier LEDs Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 210/737] backlight: lp855x: Fix lp855x.h kernel-doc warnings Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 211/737] iommu/arm-smmu-qcom: Enable use of all SMR groups when running bare-metal Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 212/737] RDMA/irdma: Fix data race in irdma_sc_ccq_arm Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 213/737] RDMA/irdma: Fix data race in irdma_free_pble Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 214/737] RDMA/irdma: Add support to re-register a memory region Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 215/737] RDMA/irdma: Do not directly rely on IB_PD_UNSAFE_GLOBAL_RKEY Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 216/737] ASoC: fsl_xcvr: clear the channel status control memory Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 217/737] drm/amd/display: Fix logical vs bitwise bug in get_embedded_panel_info_v2_1() Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 218/737] hwmon: sy7636a: Fix regulator_enable resource leak on error path Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 219/737] ACPI: processor_core: fix map_x2apic_id for amd-pstate on am4 Greg Kroah-Hartman
2026-01-09 11:35 ` [PATCH 6.6 220/737] ublk: make sure io cmd handled in submitter task context Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 221/737] ublk: complete command synchronously on error Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 222/737] ublk: prevent invalid access with DEBUG Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 223/737] ext4: remove unused return value of __mb_check_buddy Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 224/737] ext4: improve integrity checking in __mb_check_buddy by enhancing order-0 validation Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 225/737] virtio_vdpa: fix misleading return in void function Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 226/737] virtio: fix typo in virtio_device_ready() comment Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 227/737] virtio: fix whitespace in virtio_config_ops Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 228/737] virtio: fix virtqueue_set_affinity() docs Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 229/737] vdpa/pds: use %pe for ERR_PTR() in event handler registration Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 230/737] ASoC: Intel: catpt: Fix error path in hw_params() Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 231/737] ARM: dts: samsung: universal_c210: turn off SDIO WLAN chip during system suspend Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 232/737] ARM: dts: samsung: exynos4210-i9100: " Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 233/737] ARM: dts: samsung: exynos4210-trats: " Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 234/737] ARM: dts: samsung: exynos4412-midas: " Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 235/737] regulator: core: Protect regulator_supply_alias_list with regulator_list_mutex Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 236/737] resource: Reuse for_each_resource() macro Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 237/737] resource: replace open coded resource_intersection() Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 238/737] resource: introduce is_type_match() helper and use it Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 239/737] Reinstate "resource: avoid unnecessary lookups in find_next_iomem_res()" Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 240/737] netfilter: flowtable: check for maximum number of encapsulations in bridge vlan Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 241/737] netfilter: nf_conncount: rework API to use sk_buff directly Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 242/737] netfilter: nft_connlimit: update the count if add was skipped Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 243/737] net: stmmac: fix rx limit check in stmmac_rx_zc() Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 244/737] mtd: rawnand: renesas: Handle devm_pm_runtime_enable() errors Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 245/737] selftests: bonding: add missing build configs Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 246/737] selftests: bonding: Add more missing config options Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 247/737] selftests: bonding: add ipvlan over bond testing Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 248/737] selftests: bonding: add delay before each xvlan_over_bond connectivity check Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 249/737] mtd: lpddr_cmds: fix signed shifts in lpddr_cmds Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 250/737] remoteproc: qcom_q6v5_wcss: fix parsing of qcom,halt-regs Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 251/737] md/raid5: fix IO hang when array is broken with IO inflight Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 252/737] clk: keystone: fix compile testing Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 253/737] net/sched: sch_cake: Fix incorrect qlen reduction in cake_drop Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 254/737] perf tools: Fix split kallsyms DSO counting Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 255/737] pinctrl: single: Fix PIN_CONFIG_BIAS_DISABLE handling Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 256/737] pinctrl: single: Fix incorrect type for error return variable Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 257/737] fbdev: ssd1307fb: fix potential page leak in ssd1307fb_probe() Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 258/737] 9p: fix cache/debug options printing in v9fs_show_options Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 259/737] NFS: Avoid changing nlink when file removes and attribute updates race Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 260/737] fs/nls: Fix utf16 to utf8 conversion Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 261/737] NFS: Initialise verifiers for visible dentries in readdir and lookup Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 262/737] NFS: Initialise verifiers for visible dentries in nfs_atomic_open() Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 263/737] NFSv4/pNFS: Clear NFS_INO_LAYOUTCOMMIT in pnfs_mark_layout_stateid_invalid Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 264/737] Revert "nfs: ignore SB_RDONLY when remounting nfs" Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 265/737] Revert "nfs: clear SB_RDONLY before getting superblock" Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 266/737] Revert "nfs: ignore SB_RDONLY when mounting nfs" Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 267/737] NFS: Automounted filesystems should inherit ro,noexec,nodev,sync flags Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 268/737] Expand the type of nfs_fattr->valid Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 269/737] NFS: Fix inheritance of the block sizes when automounting Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 270/737] fs/nls: Fix inconsistency between utf8_to_utf32() and utf32_to_utf8() Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 271/737] platform/x86: asus-wmi: use brightness_set_blocking() for kbd led Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 272/737] ASoC: bcm: bcm63xx-pcm-whistler: Check return value of of_dma_configure() Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 273/737] ASoC: ak4458: Disable regulator when error happens Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 274/737] ASoC: ak5558: " Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 275/737] blk-mq: Abort suspend when wakeup events are pending Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 276/737] block: fix comment for op_is_zone_mgmt() to include RESET_ALL Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 277/737] nvme-auth: use kvfree() for memory allocated with kvcalloc() Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 278/737] ALSA: firewire-motu: fix buffer overflow in hwdep read for DSP events Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 279/737] dma/pool: eliminate alloc_pages warning in atomic_pool_expand Greg Kroah-Hartman
2026-01-09 11:36 ` [PATCH 6.6 280/737] ALSA: uapi: Fix typo in asound.h comment Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 281/737] rtc: gamecube: Check the return value of ioremap() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 282/737] ALSA: firewire-motu: add bounds check in put_user loop for DSP events Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 283/737] ARM: 9464/1: fix input-only operand modification in load_unaligned_zeropad() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 284/737] block: Use RCU in blk_mq_[un]quiesce_tagset() instead of set->tag_list_lock Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 285/737] dm-raid: fix possible NULL dereference with undefined raid type Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 286/737] dm log-writes: Add missing set_freezable() for freezable kthread Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 287/737] efi/cper: Add a new helper function to print bitmasks Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 288/737] efi/cper: Adjust infopfx size to accept an extra space Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 289/737] efi/cper: align ARM CPER type with UEFI 2.9A/2.10 specs Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 290/737] irqchip/mchp-eic: Fix error code in mchp_eic_domain_alloc() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 291/737] ocfs2: fix memory leak in ocfs2_merge_rec_left() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 292/737] [PATCH 6.12] LoongArch: Add machine_kexec_mask_interrupts() implementation Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 293/737] net: lan743x: Allocate rings outside ZONE_DMA Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 294/737] usb: gadget: tegra-xudc: Always reinitialize data toggle when clear halt Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 295/737] usb: phy: Initialize struct usb_phy list_head Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 296/737] ALSA: dice: fix buffer overflow in detect_stream_formats() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 297/737] ipv6: avoid possible NULL deref in modify_prefix_route() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 298/737] ipv6: add exception routes to GC list in rt6_insert_exception Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 299/737] btrfs: do not skip logging new dentries when logging a new name Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 300/737] btrfs: fix a potential path leak in print_data_reloc_error() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 301/737] bpf, arm64: Do not audit capability check in do_jit() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 302/737] btrfs: fix memory leak of fs_devices in degraded seed device path Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 303/737] iomap: adjust read range correctly for non-block-aligned positions Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 304/737] iomap: account for unaligned end offsets when truncating read range Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 305/737] perf/x86/amd: Check event before enable to avoid GPF Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 306/737] sched/deadline: only set free_cpus for online runqueues Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 307/737] sched/fair: Revert max_newidle_lb_cost bump Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 308/737] x86/ptrace: Always inline trivial accessors Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 309/737] ACPICA: Avoid walking the Namespace if start_node is NULL Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 310/737] ACPI: property: Use ACPI functions in acpi_graph_get_next_endpoint() only Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 311/737] cpufreq: dt-platdev: Add JH7110S SOC to the allowlist Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 312/737] cpufreq: s5pv210: fix refcount leak Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 313/737] cpuidle: menu: Use residency threshold in polling state override decisions Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 314/737] livepatch: Match old_sympos 0 and 1 in klp_find_func() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 315/737] fs/ntfs3: Support timestamps prior to epoch Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 316/737] kbuild: Use objtree for module signing key path Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 317/737] ntfs: set dummy blocksize to read boot_block when mounting Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 318/737] hfsplus: fix volume corruption issue for generic/070 Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 319/737] hfsplus: fix missing hfs_bnode_get() in __hfs_bnode_create Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 320/737] hfsplus: Verify inode mode when loading from disk Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 321/737] hfsplus: fix volume corruption issue for generic/073 Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 322/737] wifi: brcmfmac: Add DMI nvram filename quirk for Acer A1 840 tablet Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 323/737] btrfs: scrub: always update btrfs_scrub_progress::last_physical Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 324/737] gfs2: fix remote evict for read-only filesystems Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 325/737] smb/server: fix return value of smb2_ioctl() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 326/737] ksmbd: fix use-after-free in ksmbd_tree_connect_put under concurrency Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 327/737] ksmbd: vfs: fix race on m_flags in vfs_cache Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 328/737] Bluetooth: btusb: Add new VID/PID 2b89/6275 for RTL8761BUV Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 329/737] Bluetooth: btusb: Add new VID/PID 13d3/3533 for RTL8821CE Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 330/737] gfs2: Fix use of bio_chain Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 331/737] net: fec: ERR007885 Workaround for XDP TX path Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 332/737] netrom: Fix memory leak in nr_sendmsg() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 333/737] net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 334/737] ipvlan: Ignore PACKET_LOOPBACK in handle_mode_l2() Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 335/737] mlxsw: spectrum_router: Fix possible neighbour reference count leak Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 336/737] mlxsw: spectrum_router: Fix neighbour use-after-free Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 337/737] mlxsw: spectrum_mr: Fix use-after-free when updating multicast route stats Greg Kroah-Hartman
2026-01-09 11:37 ` Greg Kroah-Hartman [this message]
2026-01-09 11:37 ` [PATCH 6.6 339/737] broadcom: b44: prevent uninitialized value usage Greg Kroah-Hartman
2026-01-09 11:37 ` [PATCH 6.6 340/737] netfilter: nf_conncount: fix leaked ct in error paths Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 341/737] ipvs: fix ipv4 null-ptr-deref in route error path Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 342/737] caif: fix integer underflow in cffrml_receive() Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 343/737] net/sched: ets: Remove drr class from the active list if it changes to strict Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 344/737] nfc: pn533: Fix error code in pn533_acr122_poweron_rdr() Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 345/737] netfilter: nf_tables: pass context structure to nft_parse_register_load Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 346/737] netfilter: nf_tables: allow loads only when register is initialized Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 347/737] netfilter: nf_tables: remove redundant chain validation on register store Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 348/737] iommufd/selftest: Check for overflow in IOMMU_TEST_OP_ADD_RESERVED Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 349/737] ethtool: Avoid overflowing userspace buffer on stats query Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 350/737] net/mlx5: fw reset, clear reset requested on drain_fw_reset Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 351/737] net/mlx5: Drain firmware reset in shutdown callback Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 352/737] net/mlx5: fw_tracer, Validate format string parameters Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 353/737] net/mlx5: fw_tracer, Handle escaped percent properly Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 354/737] net/mlx5: Skip HotPlug check on sync reset using hot reset Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 355/737] net/mlx5: Serialize firmware reset with devlink Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 356/737] net/handshake: duplicate handshake cancellations leak socket Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 357/737] net: enetc: do not transmit redirected XDP frames when the link is down Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 358/737] net: hns3: using the num_tqps in the vf driver to apply for resources Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 359/737] net: hns3: using the num_tqps to check whether tqp_index is out of range when vf get ring info from mbx Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 360/737] net: hns3: add VLAN id validation before using Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 361/737] hwmon: (ibmpex) fix use-after-free in high/low store Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 362/737] hwmon: (tmp401) fix overflow caused by default conversion rate value Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 363/737] MIPS: Fix a reference leak bug in ip22_check_gio() Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 364/737] drm/panel: sony-td4353-jdi: Enable prepare_prev_first Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 365/737] x86/xen: Move Xen upcall handler Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 366/737] x86/xen: Fix sparse warning in enlighten_pv.c Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 367/737] spi: cadence-quadspi: Fix clock disable on probe failure path Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 368/737] block: rnbd-clt: Fix leaked ID in init_dev() Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 369/737] ksmbd: skip lock-range check on equal size to avoid size==0 underflow Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 370/737] ksmbd: Fix refcount leak when invalid session is found on session lookup Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 371/737] ksmbd: fix buffer validation by including null terminator size in EA length Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 372/737] HID: input: map HID_GD_Z to ABS_DISTANCE for stylus/pen Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 373/737] Input: ti_am335x_tsc - fix off-by-one error in wire_order validation Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 374/737] Input: i8042 - add TUXEDO InfinityBook Max Gen10 AMD to i8042 quirk table Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 375/737] can: gs_usb: gs_can_open(): fix error handling Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 376/737] ACPI: PCC: Fix race condition by removing static qualifier Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 377/737] ACPI: CPPC: Fix missing PCC check for guaranteed_perf Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 378/737] spi: fsl-cpm: Check length parity before switching to 16 bit mode Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 379/737] mmc: sdhci-esdhc-imx: add alternate ARCH_S32 dependency to Kconfig Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 380/737] dt-bindings: mmc: sdhci-of-aspeed: Switch ref to sdhci-common.yaml Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 381/737] net/hsr: fix NULL pointer dereference in prp_get_untagged_frame() Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 382/737] ALSA: vxpocket: Fix resource leak in vxpocket_probe error path Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 383/737] ALSA: pcmcia: Fix resource leak in snd_pdacf_probe " Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 384/737] ALSA: usb-mixer: us16x08: validate meter packet indices Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 385/737] ipmi: Fix the race between __scan_channels() and deliver_response() Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 386/737] ipmi: Fix __scan_channels() failing to rescan channels Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 387/737] firmware: imx: scu-irq: Init workqueue before request mbox channel Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 388/737] ti-sysc: allow OMAP2 and OMAP4 timers to be reserved on AM33xx Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 389/737] clk: mvebu: cp110 add CLK_IGNORE_UNUSED to pcie_x10, pcie_x11 & pcie_x4 Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 390/737] powerpc/addnote: Fix overflow on 32-bit builds Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 391/737] scsi: qla2xxx: Fix lost interrupts with qlini_mode=disabled Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 392/737] scsi: qla2xxx: Fix initiator mode with qlini_mode=exclusive Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 393/737] scsi: qla2xxx: Use reinit_completion on mbx_intr_comp Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 394/737] fuse: Always flush the page cache before FOPEN_DIRECT_IO write Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 395/737] fuse: Invalidate the page cache after " Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 396/737] via_wdt: fix critical boot hang due to unnamed resource allocation Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 397/737] reset: fix BIT macro reference Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 398/737] exfat: fix remount failure in different process environments Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 399/737] usbip: Fix locking bug in RT-enabled kernels Greg Kroah-Hartman
2026-01-09 11:38 ` [PATCH 6.6 400/737] usb: typec: ucsi: Handle incorrect num_connectors capability Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 401/737] iio: adc: ti_am335x_adc: Limit step_avg to valid range for gcc complains Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 402/737] usb: xhci: limit run_graceperiod for only usb 3.0 devices Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 403/737] usb: usb-storage: No additional quirks need to be added to the EL-R12 optical drive Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 404/737] serial: sprd: Return -EPROBE_DEFER when uart clock is not ready Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 405/737] libperf cpumap: Fix perf_cpu_map__max for an empty/NULL map Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 406/737] i2c: designware: Disable SMBus interrupts to prevent storms from mis-configured firmware Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 407/737] nvme-fc: dont hold rport lock when putting ctrl Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 408/737] platform/x86/intel/hid: Add Dell Pro Rugged 10/12 tablet to VGBS DMI quirks Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 409/737] block: rnbd-clt: Fix signedness bug in init_dev() Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 410/737] vhost/vsock: improve RCU read sections around vhost_vsock_get() Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 411/737] cifs: Fix memory and information leak in smb3_reconfigure() Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 412/737] KEYS: trusted: Fix a memory leak in tpm2_load_cmd Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 413/737] io_uring: fix filename leak in __io_openat_prep() Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 414/737] mmc: sdhci-msm: Avoid early clock doubling during HS400 transition Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 415/737] lib/crypto: x86/blake2s: Fix 32-bit arg treated as 64-bit Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 416/737] s390/dasd: Fix gendisk parent after copy pair swap Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 417/737] block: rate-limit capacity change info log Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 418/737] floppy: fix for PAGE_SIZE != 4KB Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 419/737] kallsyms: Fix wrong "big" kernel symbol type read from procfs Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 420/737] fs/ntfs3: fix mount failure for sparse runs in run_unpack() Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 421/737] ktest.pl: Fix uninitialized var in config-bisect.pl Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 422/737] ext4: xattr: fix null pointer deref in ext4_raw_inode() Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 423/737] ext4: clear i_state_flags when alloc inode Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 424/737] ext4: fix incorrect group number assertion in mb_check_buddy Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 425/737] ext4: align max orphan file size with e2fsprogs limit Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 426/737] jbd2: use a per-journal lock_class_key for jbd2_trans_commit_key Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 427/737] jbd2: use a weaker annotation in journal handling Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 428/737] media: v4l2-mem2mem: Fix outdated documentation Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 429/737] mptcp: schedule rtx timer only after pushing data Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 430/737] mptcp: avoid deadlock on fallback while reinjecting Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 431/737] usb: usb-storage: Maintain minimal modifications to the bcdDevice range Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 432/737] media: dvb-usb: dtv5100: fix out-of-bounds in dtv5100_i2c_msg() Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 433/737] media: pvrusb2: Fix incorrect variable used in trace message Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 434/737] phy: broadcom: bcm63xx-usbh: fix section mismatches Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 435/737] USB: lpc32xx_udc: Fix error handling in probe Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 436/737] usb: phy: fsl-usb: Fix use-after-free in delayed work during device removal Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 437/737] usb: phy: isp1301: fix non-OF device reference imbalance Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 438/737] usb: dwc3: of-simple: fix clock resource leak in dwc3_of_simple_probe Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 439/737] usb: dwc3: keep susphy enabled during exit to avoid controller faults Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 440/737] usb: renesas_usbhs: Fix a resource leak in usbhs_pipe_malloc() Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 441/737] char: applicom: fix NULL pointer dereference in ac_ioctl Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 442/737] intel_th: Fix error handling in intel_th_output_open Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 443/737] cpuidle: governors: teo: Drop misguided target residency check Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 444/737] cpufreq: nforce2: fix reference count leak in nforce2 Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 445/737] scsi: Revert "scsi: qla2xxx: Perform lockless command completion in abort path" Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 446/737] scsi: aic94xx: fix use-after-free in device removal path Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 447/737] NFSD: use correct reservation type in nfsd4_scsi_fence_client Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 448/737] scsi: target: Reset t_task_cdb pointer in error case Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 449/737] f2fs: ensure node page reads complete before f2fs_put_super() finishes Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 450/737] f2fs: fix to avoid updating zero-sized extent in extent cache Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 451/737] f2fs: invalidate dentry cache on failed whiteout creation Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 452/737] f2fs: fix age extent cache insertion skip on counter overflow Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 453/737] f2fs: fix return value of f2fs_recover_fsync_data() Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 454/737] tools/testing/nvdimm: Use per-DIMM device handle Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 455/737] media: vidtv: initialize local pointers upon transfer of memory ownership Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 456/737] ocfs2: fix kernel BUG in ocfs2_find_victim_chain Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 457/737] KVM: x86: Dont clear async #PF queue when CR0.PG is disabled (e.g. on #SMI) Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 458/737] platform/chrome: cros_ec_ishtp: Fix UAF after unbinding driver Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 459/737] scs: fix a wrong parameter in __scs_magic Greg Kroah-Hartman
2026-01-09 11:39 ` [PATCH 6.6 460/737] parisc: Do not reprogram affinitiy on ASP chip Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 461/737] libceph: make decode_pool() more resilient against corrupted osdmaps Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 462/737] KVM: x86: WARN if hrtimer callback for periodic APIC timer fires with period=0 Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 463/737] KVM: x86: Explicitly set new periodic hrtimer expiration in apic_timer_fn() Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 464/737] KVM: x86: Fix VM hard lockup after prolonged inactivity with periodic HV timer Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 465/737] KVM: nSVM: Avoid incorrect injection of SVM_EXIT_CR0_SEL_WRITE Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 466/737] KVM: SVM: Mark VMCB_NPT as dirty on nested VMRUN Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 467/737] KVM: nSVM: Propagate SVM_EXIT_CR0_SEL_WRITE correctly for LMSW emulation Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 468/737] KVM: SVM: Mark VMCB_PERM_MAP as dirty on nested VMRUN Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 469/737] KVM: nSVM: Set exit_code_hi to -1 when synthesizing SVM_EXIT_ERR (failed VMRUN) Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 470/737] KVM: nSVM: Clear exit_code_hi in VMCB when synthesizing nested VM-Exits Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 471/737] xfs: fix a memory leak in xfs_buf_item_init() Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 472/737] tracing: Do not register unsupported perf events Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 473/737] PM: runtime: Do not clear needs_force_resume with enabled runtime PM Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 474/737] r8169: fix RTL8117 Wake-on-Lan in DASH mode Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 475/737] fsnotify: do not generate ACCESS/MODIFY events on child for special files Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 476/737] net/handshake: restore destructor on submit failure Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 477/737] nfsd: Mark variable __maybe_unused to avoid W=1 build break Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 478/737] svcrdma: return 0 on success from svc_rdma_copy_inline_range Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 479/737] SUNRPC: svcauth_gss: avoid NULL deref on zero length gss_token in gss_read_proxy_verf Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 480/737] powerpc/kexec: Enable SMT before waking offline CPUs Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 481/737] btrfs: dont log conflicting inode if its a dir moved in the current transaction Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 482/737] s390/ipl: Clear SBP flag when bootprog is set Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 483/737] gpio: regmap: Fix memleak in error path in gpio_regmap_register() Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 484/737] io_uring/poll: correctly handle io_poll_add() return value on update Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 485/737] drm/amd/display: Use GFP_ATOMIC in dc_create_plane_state() Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 486/737] selftests: openvswitch: Fix escape chars in regexp Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 487/737] crypto: af_alg - zero initialize memory allocated via sock_kmalloc Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 488/737] crypto: caam - Add check for kcalloc() in test_len() Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 489/737] amba: tegra-ahb: Fix device leak on SMMU enable Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 490/737] tracing: Fix fixed array of synthetic event Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 491/737] soc: qcom: ocmem: fix device leak on lookup Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 492/737] soc: amlogic: canvas: " Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 493/737] rpmsg: glink: fix rpmsg device leak Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 494/737] platform/x86: intel: chtwc_int33fe: dont dereference swnode args Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 495/737] i2c: amd-mp2: fix reference leak in MP2 PCI device Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 496/737] hwmon: (max16065) Use local variable to avoid TOCTOU Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 497/737] hwmon: (w83791d) Convert macros to functions " Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 498/737] hwmon: (w83l786ng) " Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 499/737] ARM: dts: microchip: sama5d2: fix spi flexcom fifo size to 32 Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 500/737] iommu/mediatek: fix use-after-free on probe deferral Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 501/737] wifi: rtw88: limit indirect IO under powered off for RTL8822CS Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 502/737] wifi: cfg80211: sme: store capped length in __cfg80211_connect_result() Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 503/737] wifi: mac80211: do not use old MBSSID elements Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 504/737] i40e: fix scheduling in set_rx_mode Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 505/737] iavf: fix off-by-one issues in iavf_config_rss_reg() Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 506/737] crypto: seqiv - Do not use req->iv after crypto_aead_encrypt Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 507/737] Bluetooth: btusb: revert use of devm_kzalloc in btusb Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 508/737] net: mdio: aspeed: add dummy read to avoid read-after-write issue Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 509/737] net: openvswitch: Avoid needlessly taking the RTNL on vport destroy Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 510/737] ip6_gre: make ip6gre_header() robust Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 511/737] platform/x86: msi-laptop: add missing sysfs_remove_group() Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 512/737] platform/x86: ibm_rtl: fix EBDA signature search pointer arithmetic Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 513/737] team: fix check for port enabled in team_queue_override_port_prio_changed() Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 514/737] amd-xgbe: reset retries and mode on RX adapt failures Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 515/737] net: usb: rtl8150: fix memory leak on usb_submit_urb() failure Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 516/737] selftests: net: fix "buffer overflow detected" for tap.c Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 517/737] smc91x: fix broken irq-context in PREEMPT_RT Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 518/737] genalloc.h: fix htmldocs warning Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 519/737] firewire: nosy: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-01-09 11:40 ` [PATCH 6.6 520/737] net: dsa: b53: skip multicast entries for fdb_dump() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 521/737] net: usb: asix: validate PHY address before use Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 522/737] net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group struct Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 523/737] platform/x86: hp-bioscfg: Fix out-of-bounds array access in ACPI package parsing Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 524/737] octeontx2-pf: fix "UBSAN: shift-out-of-bounds error" Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 525/737] net: stmmac: fix the crash issue for zero copy XDP_TX action Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 526/737] ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 527/737] ipv4: Fix reference count leak when using error routes with nexthop objects Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 528/737] net: rose: fix invalid array index in rose_kill_by_device() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 529/737] RDMA/irdma: avoid invalid read in irdma_net_event Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 530/737] RDMA/efa: Remove possible negative shift Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 531/737] RDMA/core: Fix logic error in ib_get_gids_from_rdma_hdr() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 532/737] RDMA/bnxt_re: Fix incorrect BAR check in bnxt_qplib_map_creq_db() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 533/737] RDMA/bnxt_re: Fix IB_SEND_IP_CSUM handling in post_send Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 534/737] RDMA/bnxt_re: Fix to use correct page size for PDE table Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 535/737] ksmbd: Fix memory leak in get_file_all_info() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 536/737] RDMA/rtrs: Fix clt_path::max_pages_per_mr calculation Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 537/737] RDMA/bnxt_re: fix dma_free_coherent() pointer Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 538/737] blk-mq: dont schedule block kworker on isolated CPUs Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 539/737] blk-mq: skip CPU offline notify on unmapped hctx Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 540/737] selftests/ftrace: traceonoff_triggers: strip off names Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 541/737] ntfs: Do not overwrite uptodate pages Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 542/737] ASoC: stm32: sai: fix device leak on probe Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 543/737] ASoC: stm32: sai: fix clk prepare imbalance on probe failure Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 544/737] ASoC: stm32: sai: fix OF node leak on probe Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 545/737] ASoC: qcom: q6apm-dai: set flags to reflect correct operation of appl_ptr Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 546/737] ASoC: qcom: q6asm-dai: perform correct state check before closing Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 547/737] ASoC: qcom: q6adm: the the copp device only during last instance Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 548/737] ASoC: qcom: qdsp6: q6asm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 549/737] iommu/amd: Fix pci_segment memleak in alloc_pci_segment() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 550/737] iommu/apple-dart: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 551/737] iommu/exynos: " Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 552/737] iommu/ipmmu-vmsa: " Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 553/737] iommu/mediatek-v1: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 554/737] iommu/mediatek-v1: fix device leaks on probe() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 555/737] iommu/mediatek: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 556/737] iommu/omap: fix device leaks on probe_device() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 557/737] iommu/qcom: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 558/737] iommu/sun50i: " Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 559/737] iommu/tegra: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 560/737] iommu: disable SVA when CONFIG_X86 is set Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 561/737] HID: logitech-dj: Remove duplicate error logging Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 562/737] PCI/PM: Reinstate clearing state_saved in legacy and !PM codepaths Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 563/737] arm64: dts: ti: k3-j721e-sk: Fix pinmux for pin Y1 used by power regulator Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 564/737] powerpc, mm: Fix mprotect on book3s 32-bit Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 565/737] powerpc/64s/slb: Fix SLB multihit issue during SLB preload Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 566/737] leds: leds-lp50xx: Allow LED 0 to be added to module bank Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 567/737] leds: leds-lp50xx: LP5009 supports 3 modules for a total of 9 LEDs Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 568/737] leds: leds-lp50xx: Enable chip before any communication Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 569/737] clk: samsung: exynos-clkout: Assign .num before accessing .hws Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 570/737] mfd: altera-sysmgr: Fix device leak on sysmgr regmap lookup Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 571/737] mfd: max77620: Fix potential IRQ chip conflict when probing two devices Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 572/737] media: rc: st_rc: Fix reset control resource leak Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 573/737] parisc: entry.S: fix space adjustment on interruption for 64-bit userspace Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 574/737] parisc: entry: set W bit for !compat tasks in syscall_restore_rfi() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 575/737] powerpc/pseries/cmm: call balloon_devinfo_init() also without CONFIG_BALLOON_COMPACTION Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 576/737] media: adv7842: Avoid possible out-of-bounds array accesses in adv7842_cp_log_status() Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 577/737] firmware: stratix10-svc: Add mutex in stratix10 memory management Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 578/737] dm-ebs: Mark full buffer dirty even on partial write Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 579/737] dm-bufio: align write boundary on physical block size Greg Kroah-Hartman
2026-01-09 11:41 ` [PATCH 6.6 580/737] fbdev: gbefb: fix to use physical address instead of dma address Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 581/737] fbdev: pxafb: Fix multiple clamped values in pxafb_adjust_timing Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 582/737] fbdev: tcx.c fix mem_map to correct smem_start offset Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 583/737] media: cec: Fix debugfs leak on bus_register() failure Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 584/737] media: msp3400: Avoid possible out-of-bounds array accesses in msp3400c_thread() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 585/737] media: renesas: rcar_drif: fix device node reference leak in rcar_drif_bond_enabled Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 586/737] media: samsung: exynos4-is: fix potential ABBA deadlock on init Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 587/737] media: TDA1997x: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 588/737] media: verisilicon: Protect G2 HEVC decoder against invalid DPB index Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 589/737] media: videobuf2: Fix device reference leak in vb2_dc_alloc error path Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 590/737] media: vpif_capture: fix section mismatch Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 591/737] media: vpif_display: " Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 592/737] media: amphion: Cancel message work before releasing the VPU core Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 593/737] media: i2c: ADV7604: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 594/737] media: i2c: adv7842: " Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 595/737] media: mediatek: vcodec: Fix a reference leak in mtk_vcodec_fw_vpu_init() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 596/737] LoongArch: Add new PCI ID for pci_fixup_vgadev() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 597/737] LoongArch: Correct the calculation logic of thread_count Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 598/737] LoongArch: Fix build errors for CONFIG_RANDSTRUCT Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 599/737] LoongArch: Use __pmd()/__pte() for swap entry conversions Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 600/737] LoongArch: Use unsigned long for _end and _text Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 601/737] compiler_types.h: add "auto" as a macro for "__auto_type" Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 602/737] kasan: refactor pcpu kasan vmalloc unpoison Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 603/737] idr: fix idr_alloc() returning an ID out of range Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 604/737] x86/microcode/AMD: Fix Entrysign revision check for Zen5/Strix Halo Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 605/737] tools/mm/page_owner_sort: fix timestamp comparison for stable sorting Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 606/737] samples/ftrace: Adjust LoongArch register restore order in direct calls Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 607/737] RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 608/737] RDMA/cm: Fix leaking the multicast GID table reference Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 609/737] e1000: fix OOB in e1000_tbi_should_accept() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 610/737] fjes: Add missing iounmap in fjes_hw_init() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 611/737] LoongArch: BPF: Zero-extend bpf_tail_call() index Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 612/737] LoongArch: BPF: Sign extend kfunc call arguments Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 613/737] nfsd: Drop the client reference in client_states_open() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 614/737] net: usb: sr9700: fix incorrect command used to write single register Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 615/737] net: nfc: fix deadlock between nfc_unregister_device and rfkill_fop_write Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 616/737] net: macb: Relocate mog_init_rings() callback from macb_mac_link_up() to macb_open() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 617/737] drm/amdgpu: add missing lock to amdgpu_ttm_access_memory_sdma Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 618/737] drm/msm/a6xx: Fix out of bound IO access in a6xx_get_gmu_registers Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 619/737] drm/gma500: Remove unused helper psb_fbdev_fb_setcolreg() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 620/737] drm/mediatek: Fix device node reference leak in mtk_dp_dt_parse() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 621/737] drm/ttm: Avoid NULL pointer deref for evicted BOs Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 622/737] drm/mgag200: Fix big-endian support Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 623/737] drm/msm/dpu: Add missing NULL pointer check for pingpong interface Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 624/737] drm/i915/gem: Zero-initialize the eb.vma array in i915_gem_do_execbuffer Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 625/737] drm/nouveau/dispnv50: Dont call drm_atomic_get_crtc_state() in prepare_fb Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 626/737] usb: gadget: lpc32xx_udc: fix clock imbalance in error path Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 627/737] blk-mq: add helper for checking if one CPU is mapped to specified hctx Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 628/737] tpm: Cap the number of PCR banks Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 629/737] mptcp: Initialise rcv_mss before calling tcp_send_active_reset() in mptcp_do_fastclose() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 630/737] ALSA: wavefront: Use standard print API Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 631/737] ALSA: wavefront: Fix integer overflow in sample size validation Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 632/737] ALSA: wavefront: Use guard() for spin locks Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 633/737] ALSA: wavefront: Clear substream pointers on close Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 634/737] ALSA: hda: cs35l41: Fix NULL pointer dereference in cs35l41_hda_read_acpi() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 635/737] ext4: fix string copying in parse_apply_sb_mount_options() Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 636/737] jbd2: fix the inconsistency between checksum and data in memory for journal sb Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 637/737] gfs2: fix freeze error handling Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 638/737] btrfs: dont rewrite ret from inode_permission Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 639/737] wifi: mt76: Fix DTS power-limits on little endian systems Greg Kroah-Hartman
2026-01-09 11:42 ` [PATCH 6.6 640/737] mm/ksm: fix exec/fork inheritance support for prctl Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 641/737] usb: ohci-nxp: Use helper function devm_clk_get_enabled() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 642/737] usb: ohci-nxp: fix device leak on probe failure Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 643/737] scsi: ufs: core: Add ufshcd_update_evt_hist() for UFS suspend error Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 644/737] mptcp: pm: ignore unknown endpoint flags Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 645/737] f2fs: use f2fs_err_ratelimited() to avoid redundant logs Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 646/737] f2fs: fix to avoid potential deadlock Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 647/737] NFSD: Clear SECLABEL in the suppattr_exclcreat bitmap Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 648/737] gpiolib: acpi: Add quirk for Dell Precision 7780 Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 649/737] ARM: dts: microchip: sama7g5: fix uart fifo size to 32 Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 650/737] svcrdma: bound check rq_pages index in inline path Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 651/737] fuse: fix readahead reclaim deadlock Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 652/737] PCI: brcmstb: Fix disabling L0s capability Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 653/737] mptcp: fallback earlier on simult connection Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 654/737] lockd: fix vfs_test_lock() calls Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 655/737] wifi: mac80211: Discard Beacon frames to non-broadcast address Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 656/737] mm: simplify folio_expected_ref_count() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 657/737] mm: consider non-anon swap cache folios in folio_expected_ref_count() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 658/737] pmdomain: Use device_get_match_data() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 659/737] pmdomain: imx: Fix reference count leak in imx_gpc_probe() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 660/737] net: phy: mediatek: fix nvmem cell reference leak in mt798x_phy_calibration Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 661/737] mptcp: ensure context reset on disconnect() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 662/737] drm/amdgpu: Forward VMID reservation errors Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 663/737] drm/mediatek: Fix probe memory leak Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 664/737] drm/mediatek: Fix probe resource leaks Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 665/737] drm/tilcdc: request and mapp iomem with devres Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 666/737] drm/tilcdc: Fix removal actions in case of failed probe Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 667/737] tty: introduce and use tty_port_tty_vhangup() helper Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 668/737] xhci: dbgtty: fix device unregister: fixup Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 669/737] usb: xhci: move link chain bit quirk checks into one helper function Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 670/737] usb: xhci: Apply the link chain quirk on NEC isoc endpoints Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 671/737] net: Remove RTNL dance for SIOCBRADDIF and SIOCBRDELIF Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 672/737] drm/amd/display: Fix null pointer deref in dcn20_resource.c Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 673/737] LoongArch: Refactor register restoration in ftrace_common_return Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 674/737] powerpc/64s/radix/kfence: map __kfence_pool at page granularity Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 675/737] ext4: fix error message when rejecting the default hash Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 676/737] ext4: introduce ITAIL helper Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 677/737] ext4: fix out-of-bound read in ext4_xattr_inode_dec_ref_all() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 678/737] xfrm: state: fix out-of-bounds read during lookup Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 679/737] page_pool: Fix use-after-free in page_pool_recycle_in_ring Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 680/737] net: dsa: sja1105: fix kasan out-of-bounds warning in sja1105_table_delete_entry() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 681/737] mm: fix arithmetic for bdi min_ratio Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 682/737] mm: fix arithmetic for max_prop_frac when setting max_ratio Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 683/737] genirq/irq_sim: Initialize work context pointers properly Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 684/737] f2fs: remove unused GC_FAILURE_PIN Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 685/737] f2fs: keep POSIX_FADV_NOREUSE ranges Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 686/737] f2fs: drop inode from the donation list when the last file is closed Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 687/737] f2fs: fix to avoid updating compression context during writeback Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 688/737] f2fs: fix to propagate error from f2fs_enable_checkpoint() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 689/737] f2fs: use global inline_xattr_slab instead of per-sb slab cache Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 690/737] f2fs: fix to detect recoverable inode during dryrun of find_fsync_dnodes() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 691/737] media: verisilicon: Store chroma and motion vectors offset Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 692/737] media: verisilicon: g2: Use common helpers to compute chroma and mv offsets Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 693/737] media: verisilicon: Fix CPU stalls on G2 bus error Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 694/737] mm/balloon_compaction: we cannot have isolated pages in the balloon list Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 695/737] mm/balloon_compaction: convert balloon_page_delete() to balloon_page_finalize() Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 696/737] powerpc/pseries/cmm: adjust BALLOON_MIGRATE when migrating pages Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 697/737] KVM: nVMX: Immediately refresh APICv controls as needed on nested VM-Exit Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 698/737] media: amphion: Add a frame flush mode for decoder Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 699/737] media: amphion: Make some vpu_v4l2 functions static Greg Kroah-Hartman
2026-01-09 11:43 ` [PATCH 6.6 700/737] media: amphion: Remove vpu_vb_is_codecconfig Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 701/737] media: mediatek: vcodec: Use spinlock for context list protection lock Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 702/737] KVM: SVM: Introduce svm_recalc_lbr_msr_intercepts() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 703/737] KVM: nSVM: Always recalculate LBR MSR intercepts in svm_update_lbrv() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 704/737] KVM: nSVM: Fix and simplify LBR virtualization handling with nested Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 705/737] KVM: SVM: Fix redundant updates of LBR MSR intercepts Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 706/737] mm/damon/tests/vaddr-kunit: handle alloc failures in damon_test_split_evenly_fail() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 707/737] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_do_test_apply_three_regions() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 708/737] RDMA/core: Fix "KASAN: slab-use-after-free Read in ib_register_device" problem Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 709/737] sched/fair: Small cleanup to sched_balance_newidle() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 710/737] sched/fair: Small cleanup to update_newidle_cost() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 711/737] sched/fair: Proportional newidle balance Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 712/737] net: Remove conditional threaded-NAPI wakeup based on task state Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 713/737] net: Allow to use SMP threads for backlog NAPI Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 714/737] RDMA/rxe: Remove the direct link to net_device Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 715/737] RDMA/rxe: Fix the failure of ibv_query_device() and ibv_query_device_ex() tests Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 716/737] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_test_split_evenly_succ() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 717/737] mm/damon/tests/core-kunit: handle alloc failres in damon_test_new_filter() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 718/737] mm/damon/tests/core-kunit: handle allocation failures in damon_test_regions() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 719/737] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_at() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 720/737] mm/damon/tests/core-kunit: handle alloc failures on dasmon_test_merge_regions_of() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 721/737] mm/damon/tests/core-kunit: handle alloc failures on damon_test_merge_two() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 722/737] mm/damon/tests/core-kunit: handle memory failure from damon_test_target() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 723/737] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_regions_of() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 724/737] mm/damon/tests/core-kunit: handle memory alloc failure from damon_test_aggregate() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 725/737] mm/damon/tests/core-kunit: handle alloc failures on damos_test_filter_out() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 726/737] mm/damon/tests/core-kunit: handle alloc failures in damon_test_set_regions() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 727/737] mm/damon/tests/core-kunit: handle alloc failures in damon_test_ops_registration() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 728/737] mm/damon/tests/core-kunit: handle alloc failure on damon_test_set_attrs() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 729/737] mm/damon/tests/core-kunit: handle alloc failures in damon_test_update_monitoring_result() Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 730/737] virtio_console: fix order of fields cols and rows Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 731/737] ext4: filesystems without casefold feature cannot be mounted with siphash Greg Kroah-Hartman
2026-01-09 13:40 ` Thadeu Lima de Souza Cascardo
2026-01-09 14:13 ` Greg Kroah-Hartman
2026-01-11 10:30 ` Thadeu Lima de Souza Cascardo
2026-01-11 13:57 ` Greg Kroah-Hartman
2026-01-27 18:36 ` [PATCH 6.6 176/737] perf arm-spe: Extend branch operations Hamza Mahfooz
2026-01-27 18:41 ` Hamza Mahfooz
2026-01-09 11:44 ` [PATCH 6.6 732/737] net: stmmac: make sure that ptp_rate is not 0 before configuring EST Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 733/737] pwm: stm32: Always program polarity Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 734/737] blk-mq: setup queue ->tag_set before initializing hctx Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 735/737] tty: fix tty_port_tty_*hangup() kernel-doc Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 736/737] firmware: arm_scmi: Fix unused notifier-block in unregister Greg Kroah-Hartman
2026-01-09 11:44 ` [PATCH 6.6 737/737] Revert "iommu/amd: Skip enabling command/event buffers for kdump" Greg Kroah-Hartman
2026-01-09 19:02 ` [PATCH 6.6 000/737] 6.6.120-rc1 review Brett A C Sheffield
2026-01-09 19:35 ` Florian Fainelli
2026-01-09 20:29 ` Slade Watkins
2026-01-09 23:59 ` Shuah Khan
2026-01-10 5:03 ` Peter Schneider
2026-01-10 6:59 ` Ron Economos
2026-01-10 8:27 ` Francesco Dolcini
2026-01-10 10:44 ` Jeffrin Thalakkottoor
2026-01-10 12:55 ` Jon Hunter
2026-01-10 20:07 ` Mark Brown
2026-01-10 21:15 ` Miguel Ojeda
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=20260109112146.704813055@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=aconole@redhat.com \
--cc=i.maximets@ovn.org \
--cc=kuba@kernel.org \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=zhuque@tencent.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