From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Yeoreum Yun <yeoreum.yun@arm.com>,
Simon Horman <horms@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.18 044/312] smc91x: fix broken irq-context in PREEMPT_RT
Date: Tue, 6 Jan 2026 18:01:58 +0100 [thread overview]
Message-ID: <20260106170549.451321306@linuxfoundation.org> (raw)
In-Reply-To: <20260106170547.832845344@linuxfoundation.org>
6.18-stable review patch. If anyone has any objections, please let me know.
------------------
From: Yeoreum Yun <yeoreum.yun@arm.com>
[ Upstream commit 6402078bd9d1ed46e79465e1faaa42e3458f8a33 ]
When smc91x.c is built with PREEMPT_RT, the following splat occurs
in FVP_RevC:
[ 13.055000] smc91x LNRO0003:00 eth0: link up, 10Mbps, half-duplex, lpa 0x0000
[ 13.062137] BUG: workqueue leaked atomic, lock or RCU: kworker/2:1[106]
[ 13.062137] preempt=0x00000000 lock=0->0 RCU=0->1 workfn=mld_ifc_work
[ 13.062266] C
** replaying previous printk message **
[ 13.062266] CPU: 2 UID: 0 PID: 106 Comm: kworker/2:1 Not tainted 6.18.0-dirty #179 PREEMPT_{RT,(full)}
[ 13.062353] Hardware name: , BIOS
[ 13.062382] Workqueue: mld mld_ifc_work
[ 13.062469] Call trace:
[ 13.062494] show_stack+0x24/0x40 (C)
[ 13.062602] __dump_stack+0x28/0x48
[ 13.062710] dump_stack_lvl+0x7c/0xb0
[ 13.062818] dump_stack+0x18/0x34
[ 13.062926] process_scheduled_works+0x294/0x450
[ 13.063043] worker_thread+0x260/0x3d8
[ 13.063124] kthread+0x1c4/0x228
[ 13.063235] ret_from_fork+0x10/0x20
This happens because smc_special_trylock() disables IRQs even on PREEMPT_RT,
but smc_special_unlock() does not restore IRQs on PREEMPT_RT.
The reason is that smc_special_unlock() calls spin_unlock_irqrestore(),
and rcu_read_unlock_bh() in __dev_queue_xmit() cannot invoke
rcu_read_unlock() through __local_bh_enable_ip() when current->softirq_disable_cnt becomes zero.
To address this issue, replace smc_special_trylock() with spin_trylock_irqsave().
Fixes: 342a93247e08 ("locking/spinlock: Provide RT variant header: <linux/spinlock_rt.h>")
Signed-off-by: Yeoreum Yun <yeoreum.yun@arm.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20251217085115.1730036-1-yeoreum.yun@arm.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/net/ethernet/smsc/smc91x.c | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/drivers/net/ethernet/smsc/smc91x.c b/drivers/net/ethernet/smsc/smc91x.c
index 9d1a83a5fa7e..d16c178d1034 100644
--- a/drivers/net/ethernet/smsc/smc91x.c
+++ b/drivers/net/ethernet/smsc/smc91x.c
@@ -516,15 +516,7 @@ static inline void smc_rcv(struct net_device *dev)
* any other concurrent access and C would always interrupt B. But life
* isn't that easy in a SMP world...
*/
-#define smc_special_trylock(lock, flags) \
-({ \
- int __ret; \
- local_irq_save(flags); \
- __ret = spin_trylock(lock); \
- if (!__ret) \
- local_irq_restore(flags); \
- __ret; \
-})
+#define smc_special_trylock(lock, flags) spin_trylock_irqsave(lock, flags)
#define smc_special_lock(lock, flags) spin_lock_irqsave(lock, flags)
#define smc_special_unlock(lock, flags) spin_unlock_irqrestore(lock, flags)
#else
--
2.51.0
next prev parent reply other threads:[~2026-01-06 17:48 UTC|newest]
Thread overview: 328+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-06 17:01 [PATCH 6.18 000/312] 6.18.4-rc1 review Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 001/312] sched/proxy: Yield the donor task Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 002/312] drm: nova: depend on CONFIG_64BIT Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 003/312] x86/microcode/AMD: Select which microcode patch to load Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 004/312] sched/core: Add comment explaining force-idle vruntime snapshots Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 005/312] sched/eevdf: Fix min_vruntime vs avg_vruntime Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 006/312] sched_ext: Fix incorrect sched_class settings for per-cpu migration tasks Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 007/312] mm/huge_memory: merge uniform_split_supported() and non_uniform_split_supported() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 008/312] KVM: s390: Fix gmap_helper_zap_one_page() again Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 009/312] drm/edid: add DRM_EDID_IDENT_INIT() to initialize struct drm_edid_ident Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 010/312] drm/displayid: add quirk to ignore DisplayID checksum errors Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 011/312] drm/amdgpu: dont attach the tlb fence for SI Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 012/312] wifi: rtw88: limit indirect IO under powered off for RTL8822CS Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 013/312] wifi: rtlwifi: 8192cu: fix tid out of range in rtl92cu_tx_fill_desc() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 014/312] wifi: cfg80211: sme: store capped length in __cfg80211_connect_result() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 015/312] wifi: mac80211: do not use old MBSSID elements Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 016/312] sched_ext: fix uninitialized ret on alloc_percpu() failure Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 017/312] i40e: fix scheduling in set_rx_mode Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 018/312] i40e: validate ring_len parameter against hardware-specific values Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 019/312] iavf: fix off-by-one issues in iavf_config_rss_reg() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 020/312] idpf: fix LAN memory regions command on some NVMs Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 021/312] idpf: reduce mbx_task schedule delay to 300us Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 022/312] cpuset: fix warning when disabling remote partition Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 023/312] crypto: seqiv - Do not use req->iv after crypto_aead_encrypt Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 024/312] Bluetooth: MGMT: report BIS capability flags in supported settings Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 025/312] Bluetooth: btusb: revert use of devm_kzalloc in btusb Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 026/312] net: mdio: aspeed: add dummy read to avoid read-after-write issue Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 027/312] net: openvswitch: Avoid needlessly taking the RTNL on vport destroy Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 028/312] ip6_gre: make ip6gre_header() robust Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 029/312] powerpc/tools: drop `-o pipefail` in gcc check scripts Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 030/312] platform/mellanox: mlxbf-pmc: Remove trailing whitespaces from event names Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 031/312] platform/x86: msi-laptop: add missing sysfs_remove_group() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 032/312] platform/x86: ibm_rtl: fix EBDA signature search pointer arithmetic Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 033/312] team: fix check for port enabled in team_queue_override_port_prio_changed() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 034/312] net: airoha: Move net_devs registration in a dedicated routine Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 035/312] net: dsa: properly keep track of conduit reference Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 036/312] net: dsa: fix missing put_device() in dsa_tree_find_first_conduit() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 037/312] amd-xgbe: reset retries and mode on RX adapt failures Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 038/312] selftests: drv-net: psp: fix templated test names in psp_ip_ver_test_builder() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 039/312] selftests: drv-net: psp: fix test names in ipver_test_builder() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 040/312] net: usb: rtl8150: fix memory leak on usb_submit_urb() failure Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 041/312] selftests: net: fix "buffer overflow detected" for tap.c Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 042/312] net: wangxun: move PHYLINK dependency Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 043/312] platform/x86/intel/pmt: Fix kobject memory leak on init failure Greg Kroah-Hartman
2026-01-06 17:01 ` Greg Kroah-Hartman [this message]
2026-01-06 17:01 ` [PATCH 6.18 045/312] genalloc.h: fix htmldocs warning Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 046/312] firewire: nosy: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 047/312] bng_en: update module description Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 048/312] net: dsa: b53: skip multicast entries for fdb_dump() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 049/312] kbuild: fix compilation of dtb specified on command-line without make rule Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 050/312] mcb: Add missing modpost build support Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 051/312] net: mdio: rtl9300: use scoped for loops Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 052/312] net: usb: asix: validate PHY address before use Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 053/312] net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group struct Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 054/312] tools/sched_ext: fix scx_show_state.py for scx_root change Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 055/312] vfio/pds: Fix memory leak in pds_vfio_dirty_enable() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 056/312] platform/x86: hp-bioscfg: Fix out-of-bounds array access in ACPI package parsing Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 057/312] platform/x86/intel/pmt/discovery: use valid device pointer in dev_err_probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 058/312] octeontx2-pf: fix "UBSAN: shift-out-of-bounds error" Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 059/312] net: stmmac: fix the crash issue for zero copy XDP_TX action Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 060/312] ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 061/312] ipv4: Fix reference count leak when using error routes with nexthop objects Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 062/312] net: fib: restore ECMP balance from loopback Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 063/312] net: rose: fix invalid array index in rose_kill_by_device() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 064/312] ipv6: fix a BUG in rt6_get_pcpu_route() under PREEMPT_RT Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 065/312] RDMA/ucma: Fix rdma_ucm_query_ib_service_resp struct padding Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 066/312] RDMA/irdma: Fix irdma_alloc_ucontext_resp padding Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 067/312] RDMA/mana_ib: check cqe length for kernel CQs Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 068/312] RDMA/irdma: avoid invalid read in irdma_net_event Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 069/312] RDMA/efa: Remove possible negative shift Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 070/312] RDMA/core: Fix logic error in ib_get_gids_from_rdma_hdr() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 071/312] RDMA/bnxt_re: Fix incorrect BAR check in bnxt_qplib_map_creq_db() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 072/312] RDMA/core: always drop device refcount in ib_del_sub_device_and_put() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 073/312] drm/gem-shmem: Fix the MODULE_LICENSE() string Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 074/312] RDMA/bnxt_re: Fix IB_SEND_IP_CSUM handling in post_send Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 075/312] RDMA/bnxt_re: Fix OOB write in bnxt_re_copy_err_stats() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 076/312] kunit: Enforce task execution in {soft,hard}irq contexts Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 077/312] RDMA/bnxt_re: Fix to use correct page size for PDE table Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 078/312] md: Fix static checker warning in analyze_sbs Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 079/312] md/raid5: fix possible null-pointer dereferences in raid5_store_group_thread_cnt() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 080/312] ublk: implement NUMA-aware memory allocation Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 081/312] ublk: scan partition in async way Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 082/312] drm/xe/guc: READ/WRITE_ONCE g2h_fence->done Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 083/312] ksmbd: Fix memory leak in get_file_all_info() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 084/312] IB/rxe: Fix missing umem_odp->umem_mutex unlock on error path Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 085/312] RDMA/rtrs: Fix clt_path::max_pages_per_mr calculation Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 086/312] RDMA/bnxt_re: fix dma_free_coherent() pointer Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 087/312] blk-mq: skip CPU offline notify on unmapped hctx Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 088/312] selftests/ftrace: traceonoff_triggers: strip off names Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 089/312] block: handle zone management operations completions Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 090/312] ntfs: Do not overwrite uptodate pages Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 091/312] ASoC: codecs: wcd939x: fix regmap leak on probe failure Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 092/312] ASoC: stm32: sai: fix device leak on probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 093/312] ASoC: stm32: sai: fix clk prepare imbalance on probe failure Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 094/312] ASoC: stm32: sai: fix OF node leak on probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 095/312] ASoC: renesas: rz-ssi: Fix channel swap issue in full duplex mode Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 096/312] ASoC: renesas: rz-ssi: Fix rz_ssi_priv::hw_params_cache::sample_width Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 097/312] ASoC: codecs: wcd937x: Fix error handling in wcd937x codec driver Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 098/312] ASoC: codecs: pm4125: Fix potential conflict when probing two devices Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 099/312] ASoC: codecs: pm4125: Remove irq_chip on component unbind Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 100/312] ASoC: codecs: lpass-tx-macro: fix SM6115 support Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 101/312] ASoC: qcom: sdw: fix memory leak for sdw_stream_runtime Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 102/312] ASoC: cs35l41: Always return 0 when a subsystem ID is found Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 103/312] ASoC: codecs: Fix error handling in pm4125 audio codec driver Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 104/312] ASoC: qcom: q6apm-dai: set flags to reflect correct operation of appl_ptr Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 105/312] ASoC: qcom: q6asm-dai: perform correct state check before closing Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 106/312] ASoC: qcom: q6adm: the the copp device only during last instance Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 107/312] ASoC: qcom: qdsp6: q6asm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 108/312] iommu/amd: Fix pci_segment memleak in alloc_pci_segment() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 109/312] iommu/amd: Propagate the error code returned by __modify_irte_ga() in modify_irte_ga() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 110/312] iommu/apple-dart: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 111/312] iommu/exynos: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 112/312] iommu/ipmmu-vmsa: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 113/312] iommu/mediatek-v1: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 114/312] iommu/mediatek-v1: fix device leaks on probe() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 115/312] iommu/mediatek: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 116/312] iommu/omap: fix device leaks on probe_device() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 117/312] iommu/qcom: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 118/312] iommu/sun50i: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 119/312] iommu/tegra: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 120/312] iommu: disable SVA when CONFIG_X86 is set Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 121/312] hwmon: (dell-smm) Fix off-by-one error in dell_smm_is_visible() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 122/312] HID: logitech-dj: Remove duplicate error logging Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 123/312] hisi_acc_vfio_pci: Add .match_token_uuid callback in hisi_acc_vfio_pci_migrn_ops Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 124/312] fgraph: Initialize ftrace_ops->private for function graph ops Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 125/312] fgraph: Check ftrace_pids_enabled on registration for early filtering Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 126/312] PCI/PM: Reinstate clearing state_saved in legacy and !PM codepaths Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 127/312] arm64: dts: ti: k3-j721e-sk: Fix pinmux for pin Y1 used by power regulator Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 128/312] powerpc, mm: Fix mprotect on book3s 32-bit Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 129/312] powerpc/64s/slb: Fix SLB multihit issue during SLB preload Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 130/312] mm, swap: do not perform synchronous discard during allocation Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 131/312] leds: leds-cros_ec: Skip LEDs without color components Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 132/312] leds: leds-lp50xx: Allow LED 0 to be added to module bank Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 133/312] leds: leds-lp50xx: LP5009 supports 3 modules for a total of 9 LEDs Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 134/312] leds: leds-lp50xx: Enable chip before any communication Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 135/312] block: Clear BLK_ZONE_WPLUG_PLUGGED when aborting plugged BIOs Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 136/312] clk: samsung: exynos-clkout: Assign .num before accessing .hws Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 137/312] clk: qcom: mmcc-sdm660: Add missing MDSS reset Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 138/312] clk: qcom: Fix SM_VIDEOCC_6350 dependencies Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 139/312] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615 Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 140/312] mfd: altera-sysmgr: Fix device leak on sysmgr regmap lookup Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 141/312] mfd: max77620: Fix potential IRQ chip conflict when probing two devices Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 142/312] media: rc: st_rc: Fix reset control resource leak Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 143/312] media: verisilicon: Fix CPU stalls on G2 bus error Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 144/312] arm64: dts: ti: k3-am62d2-evm: Fix regulator properties Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 145/312] arm64: dts: ti: k3-am62d2-evm: Fix PMIC padconfig Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 146/312] arm64: dts: st: Add memory-region-names property for stm32mp257f-ev1 Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 147/312] arm64: dts: qcom: sm6350: Fix wrong order of freq-table-hz for UFS Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 148/312] mtd: mtdpart: ignore error -ENOENT from parsers on subpartitions Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 149/312] mtd: spi-nor: winbond: Add support for W25Q01NWxxIQ chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 150/312] mtd: spi-nor: winbond: Add support for W25Q01NWxxIM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 151/312] mtd: spi-nor: winbond: Add support for W25Q02NWxxIM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 152/312] mtd: spi-nor: winbond: Add support for W25H512NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 153/312] mtd: spi-nor: winbond: Add support for W25H01NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 154/312] mtd: spi-nor: winbond: Add support for W25H02NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 155/312] NFSD: Make FILE_SYNC WRITEs comply with spec Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 156/312] nvmet: pci-epf: move DMA initialization to EPC init callback Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 157/312] parisc: entry.S: fix space adjustment on interruption for 64-bit userspace Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 158/312] parisc: entry: set W bit for !compat tasks in syscall_restore_rfi() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 159/312] PCI: brcmstb: Fix disabling L0s capability Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 160/312] PCI: meson: Fix parsing the DBI register region Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 161/312] perf/x86/amd/uncore: Fix the return value of amd_uncore_df_event_init() on error Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 162/312] power: supply: max77705: Fix potential IRQ chip conflict when probing two devices Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 163/312] powerpc/pseries/cmm: adjust BALLOON_MIGRATE when migrating pages Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 164/312] powerpc/pseries/cmm: call balloon_devinfo_init() also without CONFIG_BALLOON_COMPACTION Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 165/312] media: adv7842: Avoid possible out-of-bounds array accesses in adv7842_cp_log_status() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 166/312] firmware: stratix10-svc: Add mutex in stratix10 memory management Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 167/312] dm-ebs: Mark full buffer dirty even on partial write Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 168/312] dm-bufio: align write boundary on physical block size Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 169/312] dm pcache: fix cache info indexing Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 170/312] dm pcache: fix segment " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 171/312] fbdev: gbefb: fix to use physical address instead of dma address Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 172/312] fbdev: pxafb: Fix multiple clamped values in pxafb_adjust_timing Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 173/312] fbdev: tcx.c fix mem_map to correct smem_start offset Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 174/312] media: cec: Fix debugfs leak on bus_register() failure Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 175/312] media: iris: Refine internal buffer reconfiguration logic for resolution change Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 176/312] media: msp3400: Avoid possible out-of-bounds array accesses in msp3400c_thread() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 177/312] media: platform: mtk-mdp3: fix device leaks at probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 178/312] media: renesas: rcar_drif: fix device node reference leak in rcar_drif_bond_enabled Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 179/312] media: samsung: exynos4-is: fix potential ABBA deadlock on init Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 180/312] media: TDA1997x: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 181/312] media: verisilicon: Protect G2 HEVC decoder against invalid DPB index Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 182/312] media: videobuf2: Fix device reference leak in vb2_dc_alloc error path Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 183/312] media: vpif_capture: fix section mismatch Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 184/312] media: vpif_display: " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 185/312] media: amphion: Remove vpu_vb_is_codecconfig Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 186/312] media: amphion: Cancel message work before releasing the VPU core Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 187/312] media: i2c: ADV7604: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 188/312] media: i2c: adv7842: " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 189/312] media: i2c: imx219: Fix 1920x1080 mode to use 1:1 pixel aspect ratio Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 190/312] media: mediatek: vcodec: Use spinlock for context list protection lock Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 191/312] media: mediatek: vcodec: Fix a reference leak in mtk_vcodec_fw_vpu_init() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 192/312] LoongArch: Add new PCI ID for pci_fixup_vgadev() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 193/312] LoongArch: Correct the calculation logic of thread_count Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 194/312] LoongArch: Fix arch_dup_task_struct() for CONFIG_RANDSTRUCT Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 195/312] LoongArch: Fix build errors " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 196/312] LoongArch: Use __pmd()/__pte() for swap entry conversions Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 197/312] LoongArch: Use unsigned long for _end and _text Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 198/312] mm/damon/tests/sysfs-kunit: handle alloc failures on damon_sysfs_test_add_targets() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 199/312] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_do_test_apply_three_regions() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 200/312] mm/damon/tests/vaddr-kunit: handle alloc failures in damon_test_split_evenly_fail() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 201/312] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_test_split_evenly_succ() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 202/312] mm/damon/tests/core-kunit: fix memory leak in damon_test_set_filters_default_reject() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 203/312] mm/damon/tests/core-kunit: handle alloc failres in damon_test_new_filter() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 204/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_at() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 205/312] mm/damon/tests/core-kunit: handle allocation failures in damon_test_regions() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 206/312] mm/damon/tests/core-kunit: handle memory failure from damon_test_target() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 207/312] mm/damon/tests/core-kunit: handle memory alloc failure from damon_test_aggregate() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 208/312] mm/damon/tests/core-kunit: handle alloc failures on dasmon_test_merge_regions_of() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 209/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_merge_two() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 210/312] mm/damon/tests/core-kunit: handle alloc failures in damon_test_set_regions() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 211/312] mm/damon/tests/core-kunit: handle alloc failures in damon_test_update_monitoring_result() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 212/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_set_filters_default_reject() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 213/312] mm/damon/tests/core-kunit: handle alloc failures on damos_test_filter_out() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 214/312] mm/damon/tests/core-kunit: handle alloc failures in damon_test_ops_registration() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 215/312] mm/damon/tests/core-kunit: handle alloc failure on damon_test_set_attrs() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 216/312] mm/damon/tests/core-kunit: handle alloc failure on damos_test_commit_filter() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 217/312] pmdomain: mtk-pm-domains: Fix spinlock recursion fix in probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 218/312] pmdomain: imx: Fix reference count leak in imx_gpc_probe() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 219/312] af_unix: dont post cmsg for SO_INQ unless explicitly asked for Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 220/312] compiler_types.h: add "auto" as a macro for "__auto_type" Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 221/312] mptcp: fallback earlier on simult connection Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 222/312] mm/kasan: fix incorrect unpoisoning in vrealloc for KASAN Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 223/312] kasan: refactor pcpu kasan vmalloc unpoison Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 224/312] kasan: unpoison vms[area] addresses with a common tag Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 225/312] kernel/kexec: change the prototype of kimage_map_segment() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 226/312] kernel/kexec: fix IMA when allocation happens in CMA area Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 227/312] lockd: fix vfs_test_lock() calls Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 228/312] idr: fix idr_alloc() returning an ID out of range Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 229/312] mm/page_alloc: change all pageblocks migrate type on coalescing Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 230/312] mm/page_owner: fix memory leak in page_owner_stack_fops->release() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 231/312] mm: consider non-anon swap cache folios in folio_expected_ref_count() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 232/312] x86/microcode/AMD: Fix Entrysign revision check for Zen5/Strix Halo Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 233/312] tools/mm/page_owner_sort: fix timestamp comparison for stable sorting Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 234/312] selftests/mm: fix thread state check in uffd-unit-tests Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 235/312] samples/ftrace: Adjust LoongArch register restore order in direct calls Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 236/312] rust: maple_tree: rcu_read_lock() in destructor to silence lockdep Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 237/312] RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 238/312] RDMA/cm: Fix leaking the multicast GID table reference Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 239/312] wifi: iwlwifi: Fix firmware version handling Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 240/312] wifi: mac80211: Discard Beacon frames to non-broadcast address Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 241/312] e1000: fix OOB in e1000_tbi_should_accept() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 242/312] erspan: Initialize options_len before referencing options Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 243/312] fjes: Add missing iounmap in fjes_hw_init() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 244/312] gve: defer interrupt enabling until NAPI registration Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 245/312] LoongArch: Refactor register restoration in ftrace_common_return Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 246/312] LoongArch: BPF: Zero-extend bpf_tail_call() index Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 247/312] LoongArch: BPF: Sign extend kfunc call arguments Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 248/312] LoongArch: BPF: Save return address register ra to t0 before trampoline Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 249/312] LoongArch: BPF: Enable trampoline-based tracing for module functions Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 250/312] LoongArch: BPF: Adjust the jump offset of tail calls Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 251/312] nfsd: fix nfsd_file reference leak in nfsd4_add_rdaccess_to_wrdeleg() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 252/312] nfsd: use ATTR_DELEG in nfsd4_finalize_deleg_timestamps() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 253/312] nfsd: Drop the client reference in client_states_open() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 254/312] net: usb: sr9700: fix incorrect command used to write single register Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 255/312] net: phy: mediatek: fix nvmem cell reference leak in mt798x_phy_calibration Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 256/312] net: nfc: fix deadlock between nfc_unregister_device and rfkill_fop_write Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 257/312] net: macb: Relocate mog_init_rings() callback from macb_mac_link_up() to macb_open() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 258/312] platform/x86: samsung-galaxybook: Fix problematic pointer cast Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 259/312] platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 260/312] platform/x86: alienware-wmi-wmax: Add AWCC support for Alienware x16 Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 261/312] platform/x86: alienware-wmi-wmax: Add support for Alienware 16X Aurora Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 262/312] Revert "drm/amd: Skip power ungate during suspend for VPE" Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 263/312] drm/amdgpu/gmc12: add amdgpu_vm_handle_fault() handling Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 264/312] drm/amdgpu: Forward VMID reservation errors Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 265/312] drm/amdgpu: add missing lock to amdgpu_ttm_access_memory_sdma Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 266/312] drm/amdgpu/sdma6: Update SDMA 6.0.3 FW version to include UMQ protected-fence fix Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 267/312] drm/amdgpu/gmc11: add amdgpu_vm_handle_fault() handling Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 268/312] drm/msm/a6xx: Fix out of bound IO access in a6xx_get_gmu_registers Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 269/312] drm/buddy: Optimize free block management with RB tree Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 270/312] drm/buddy: Separate clear and dirty free block trees Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 271/312] drm/gma500: Remove unused helper psb_fbdev_fb_setcolreg() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 272/312] drm/xe/oa: Fix potential UAF in xe_oa_add_config_ioctl() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 273/312] drm/rockchip: Set VOP for the DRM DMA device Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 274/312] drm/mediatek: Fix device node reference leak in mtk_dp_dt_parse() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 275/312] drm/mediatek: Fix probe resource leaks Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 276/312] drm/mediatek: Fix probe memory leak Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 277/312] drm/mediatek: Fix probe device leaks Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 278/312] drm/mediatek: mtk_hdmi: " Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 279/312] drm/mediatek: ovl_adaptor: " Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 280/312] drm/amd: Fix unbind/rebind for VCN 4.0.5 Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 281/312] drm/rockchip: vop2: Use OVL_LAYER_SEL configuration instead of use win_mask calculate used layers Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 282/312] drm/bridge: ti-sn65dsi83: ignore PLL_UNLOCK errors Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 283/312] drm/nouveau/gsp: Allocate fwsec-sb at boot Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 284/312] drm/amdkfd: Export the cwsr_size and ctl_stack_size to userspace Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 285/312] drm/amdkfd: bump minimum vgpr size for gfx1151 Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 286/312] drm/amdkfd: Trap handler support for expert scheduling mode Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 287/312] drm/i915: Fix format string truncation warning Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 288/312] drm/tilcdc: Fix removal actions in case of failed probe Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 289/312] drm/ttm: Avoid NULL pointer deref for evicted BOs Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 290/312] drm/mgag200: Fix big-endian support Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 291/312] drm: Fix object leak in DRM_IOCTL_GEM_CHANGE_HANDLE Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 292/312] drm/xe/bo: Dont include the CCS metadata in the dma-buf sg-table Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 293/312] drm/xe/oa: Disallow 0 OA property values Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 294/312] drm/xe/eustall: Disallow 0 EU stall " Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 295/312] drm/xe: Adjust long-running workload timeslices to reasonable values Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 296/312] drm/xe: Use usleep_range for accurate long-running workload timeslicing Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 297/312] drm/xe: Drop preempt-fences when destroying imported dma-bufs Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 298/312] drm/msm/dpu: Add missing NULL pointer check for pingpong interface Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 299/312] drm/msm: add PERFCTR_CNTL to ifpc_reglist Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 300/312] drm/i915/gem: Zero-initialize the eb.vma array in i915_gem_do_execbuffer Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 301/312] drm/xe/svm: Fix a debug printout Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 302/312] drm/pagemap, drm/xe: Ensure that the devmem allocation is idle before use Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 303/312] drm/nouveau/dispnv50: Dont call drm_atomic_get_crtc_state() in prepare_fb Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 304/312] drm/imagination: Disallow exporting of PM/FW protected objects Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 305/312] erofs: fix unexpected EIO under memory pressure Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 306/312] block: fix NULL pointer dereference in blk_zone_reset_all_bio_endio() Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 307/312] powercap: intel_rapl: Add support for Wildcat Lake platform Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 308/312] powercap: intel_rapl: Add support for Nova Lake processors Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 309/312] LoongArch: BPF: Enhance the bpf_arch_text_poke() function Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 310/312] vfio/pci: Disable qword access to the PCI ROM bar Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 311/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_regions_of() Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 312/312] [PATCH v2] Revert "gpio: swnode: dont use the swnodes name as the key for GPIO lookup" Greg Kroah-Hartman
2026-01-06 19:22 ` [PATCH 6.18 000/312] 6.18.4-rc1 review Brett A C Sheffield
2026-01-06 19:24 ` Ronald Warsow
2026-01-06 22:28 ` Peter Schneider
2026-01-06 22:55 ` Shuah Khan
2026-01-06 23:43 ` Justin Forbes
2026-01-07 0:45 ` Florian Fainelli
2026-01-07 0:51 ` Christian Heusel
2026-01-07 10:20 ` Ron Economos
2026-01-07 11:49 ` Mark Brown
2026-01-07 12:06 ` Jeffrin Thalakkottoor
2026-01-07 12:19 ` Takeshi Ogasawara
2026-01-07 15:25 ` Miguel Ojeda
2026-01-07 20:13 ` Jon Hunter
2026-01-07 20:45 ` Hardik Garg
2026-01-07 23:32 ` Brett Mastbergen
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=20260106170549.451321306@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=horms@kernel.org \
--cc=pabeni@redhat.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=yeoreum.yun@arm.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