From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Andrey Ryabinin <ryabinin.a.a@gmail.com>,
Xiubo Li <xiubli@redhat.com>,
Damien Le Moal <damien.lemoal@opensource.wdc.com>,
Dave Chinner <david@fromorbit.com>,
Christoph Hellwig <hch@infradead.org>,
Alexander Potapenko <glider@google.com>,
Andrew Morton <akpm@linux-foundation.org>
Subject: [PATCH 6.8 190/228] stackdepot: respect __GFP_NOLOCKDEP allocation flag
Date: Tue, 30 Apr 2024 12:39:28 +0200 [thread overview]
Message-ID: <20240430103109.283502339@linuxfoundation.org> (raw)
In-Reply-To: <20240430103103.806426847@linuxfoundation.org>
6.8-stable review patch. If anyone has any objections, please let me know.
------------------
From: Andrey Ryabinin <ryabinin.a.a@gmail.com>
commit 6fe60465e1d53ea321ee909be26d97529e8f746c upstream.
If stack_depot_save_flags() allocates memory it always drops
__GFP_NOLOCKDEP flag. So when KASAN tries to track __GFP_NOLOCKDEP
allocation we may end up with lockdep splat like bellow:
======================================================
WARNING: possible circular locking dependency detected
6.9.0-rc3+ #49 Not tainted
------------------------------------------------------
kswapd0/149 is trying to acquire lock:
ffff88811346a920
(&xfs_nondir_ilock_class){++++}-{4:4}, at: xfs_reclaim_inode+0x3ac/0x590
[xfs]
but task is already holding lock:
ffffffff8bb33100 (fs_reclaim){+.+.}-{0:0}, at:
balance_pgdat+0x5d9/0xad0
which lock already depends on the new lock.
the existing dependency chain (in reverse order) is:
-> #1 (fs_reclaim){+.+.}-{0:0}:
__lock_acquire+0x7da/0x1030
lock_acquire+0x15d/0x400
fs_reclaim_acquire+0xb5/0x100
prepare_alloc_pages.constprop.0+0xc5/0x230
__alloc_pages+0x12a/0x3f0
alloc_pages_mpol+0x175/0x340
stack_depot_save_flags+0x4c5/0x510
kasan_save_stack+0x30/0x40
kasan_save_track+0x10/0x30
__kasan_slab_alloc+0x83/0x90
kmem_cache_alloc+0x15e/0x4a0
__alloc_object+0x35/0x370
__create_object+0x22/0x90
__kmalloc_node_track_caller+0x477/0x5b0
krealloc+0x5f/0x110
xfs_iext_insert_raw+0x4b2/0x6e0 [xfs]
xfs_iext_insert+0x2e/0x130 [xfs]
xfs_iread_bmbt_block+0x1a9/0x4d0 [xfs]
xfs_btree_visit_block+0xfb/0x290 [xfs]
xfs_btree_visit_blocks+0x215/0x2c0 [xfs]
xfs_iread_extents+0x1a2/0x2e0 [xfs]
xfs_buffered_write_iomap_begin+0x376/0x10a0 [xfs]
iomap_iter+0x1d1/0x2d0
iomap_file_buffered_write+0x120/0x1a0
xfs_file_buffered_write+0x128/0x4b0 [xfs]
vfs_write+0x675/0x890
ksys_write+0xc3/0x160
do_syscall_64+0x94/0x170
entry_SYSCALL_64_after_hwframe+0x71/0x79
Always preserve __GFP_NOLOCKDEP to fix this.
Link: https://lkml.kernel.org/r/20240418141133.22950-1-ryabinin.a.a@gmail.com
Fixes: cd11016e5f52 ("mm, kasan: stackdepot implementation. Enable stackdepot for SLAB")
Signed-off-by: Andrey Ryabinin <ryabinin.a.a@gmail.com>
Reported-by: Xiubo Li <xiubli@redhat.com>
Closes: https://lore.kernel.org/all/a0caa289-ca02-48eb-9bf2-d86fd47b71f4@redhat.com/
Reported-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Closes: https://lore.kernel.org/all/f9ff999a-e170-b66b-7caf-293f2b147ac2@opensource.wdc.com/
Suggested-by: Dave Chinner <david@fromorbit.com>
Tested-by: Xiubo Li <xiubli@redhat.com>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Alexander Potapenko <glider@google.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
lib/stackdepot.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/lib/stackdepot.c
+++ b/lib/stackdepot.c
@@ -627,10 +627,10 @@ depot_stack_handle_t stack_depot_save_fl
/*
* Zero out zone modifiers, as we don't have specific zone
* requirements. Keep the flags related to allocation in atomic
- * contexts and I/O.
+ * contexts, I/O, nolockdep.
*/
alloc_flags &= ~GFP_ZONEMASK;
- alloc_flags &= (GFP_ATOMIC | GFP_KERNEL);
+ alloc_flags &= (GFP_ATOMIC | GFP_KERNEL | __GFP_NOLOCKDEP);
alloc_flags |= __GFP_NOWARN;
page = alloc_pages(alloc_flags, DEPOT_POOL_ORDER);
if (page)
next prev parent reply other threads:[~2024-04-30 10:55 UTC|newest]
Thread overview: 240+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-30 10:36 [PATCH 6.8 000/228] 6.8.9-rc1 review Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 001/228] cifs: Fix reacquisition of volume cookie on still-live connection Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 002/228] smb: client: fix rename(2) regression against samba Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 003/228] cifs: reinstate original behavior again for forceuid/forcegid Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 004/228] HID: intel-ish-hid: ipc: Fix dev_err usage with uninitialized dev->devc Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 005/228] HID: logitech-dj: allow mice to use all types of reports Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 006/228] arm64: dts: rockchip: set PHY address of MT7531 switch to 0x1f Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 007/228] arm64: dts: rockchip: enable internal pull-up on Q7_USB_ID for RK3399 Puma Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 008/228] arm64: dts: rockchip: fix alphabetical ordering RK3399 puma Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 009/228] arm64: dts: rockchip: enable internal pull-up on PCIE_WAKE# for RK3399 Puma Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 010/228] arm64: dts: rockchip: Fix the i2c address of es8316 on Cool Pi CM5 Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 011/228] arm64: dts: rockchip: Remove unsupported node from the Pinebook Pro dts Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 012/228] arm64: dts: mediatek: mt8183: Add power-domains properity to mfgcfg Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 013/228] arm64: dts: mediatek: mt8192: Add missing gce-client-reg to mutex Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 014/228] arm64: dts: mediatek: mt8195: Add missing gce-client-reg to vpp/vdosys Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 015/228] arm64: dts: mediatek: mt8195: Add missing gce-client-reg to mutex Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 016/228] arm64: dts: mediatek: mt8195: Add missing gce-client-reg to mutex1 Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 017/228] arm64: dts: mediatek: cherry: Describe CPU supplies Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 018/228] arm64: dts: mediatek: mt8192-asurada: Update min voltage constraint for MT6315 Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 019/228] arm64: dts: mediatek: mt8195-cherry: " Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 020/228] arm64: dts: mediatek: mt8183-kukui: Use default min voltage for MT6358 Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 021/228] arm64: dts: mediatek: mt7622: fix clock controllers Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 022/228] arm64: dts: mediatek: mt7622: fix IR nodename Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 023/228] arm64: dts: mediatek: mt7622: fix ethernet controller "compatible" Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 024/228] arm64: dts: mediatek: mt7622: drop "reset-names" from thermal block Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 025/228] arm64: dts: mediatek: mt7986: reorder properties Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 026/228] arm64: dts: mediatek: mt7986: drop invalid properties from ethsys Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 027/228] arm64: dts: mediatek: mt7986: drop "#reset-cells" from Ethernet controller Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 028/228] arm64: dts: mediatek: mt7986: reorder nodes Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 029/228] arm64: dts: mediatek: mt7986: drop invalid thermal block clock Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 030/228] arm64: dts: mediatek: mt7986: prefix BPI-R3 cooling maps with "map-" Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 031/228] arm64: dts: mediatek: mt2712: fix validation errors Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 032/228] arm64: dts: rockchip: mark system power controller and fix typo on orangepi-5-plus Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 033/228] arm64: dts: rockchip: regulator for sd needs to be always on for BPI-R2Pro Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 034/228] block: fix module reference leakage from bdev_open_by_dev error path Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 035/228] arm64: dts: qcom: Fix type of "wdog" IRQs for remoteprocs Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 036/228] arm64: dts: qcom: x1e80100: Fix the compatible for cluster idle states Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 037/228] arm64: dts: qcom: sc8180x: Fix ss_phy_irq for secondary USB controller Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 038/228] gpio: tangier: Use correct type for the IRQ chip data Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 039/228] ARC: [plat-hsdk]: Remove misplaced interrupt-cells property Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 040/228] wifi: mac80211: clean up assignments to pointer cache Greg Kroah-Hartman
2024-04-30 10:36 ` [PATCH 6.8 041/228] wifi: mac80211: split mesh fast tx cache into local/proxied/forwarded Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 042/228] wifi: iwlwifi: mvm: remove old PASN station when adding a new one Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 043/228] wifi: iwlwifi: mvm: return uid from iwl_mvm_build_scan_cmd Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 044/228] drm/gma500: Remove lid code Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 045/228] wifi: mac80211_hwsim: init peer measurement result Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 046/228] wifi: mac80211: remove link before AP Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 047/228] wifi: mac80211: fix unaligned le16 access Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 048/228] net: libwx: fix alloc msix vectors failed Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 049/228] vxlan: drop packets from invalid src-address Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 050/228] net: bcmasp: fix memory leak when bringing down interface Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 051/228] mlxsw: core: Unregister EMAD trap using FORWARD action Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 052/228] mlxsw: core_env: Fix driver initialization with old firmware Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 053/228] mlxsw: pci: " Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 054/228] ARM: dts: microchip: at91-sama7g5ek: Replace regulator-suspend-voltage with the valid property Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 055/228] icmp: prevent possible NULL dereferences from icmp_build_probe() Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 056/228] bridge/br_netlink.c: no need to return void function Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 057/228] bnxt_en: refactor reset close code Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 058/228] bnxt_en: Fix the PCI-AER routines Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 059/228] bnxt_en: Fix error recovery for 5760X (P7) chips Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 060/228] cxl/core: Fix potential payload size confusion in cxl_mem_get_poison() Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 061/228] net: dsa: mv88e6xx: fix supported_interfaces setup in mv88e6250_phylink_get_caps() Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 062/228] NFC: trf7970a: disable all regulators on removal Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 063/228] netfs: Fix writethrough-mode error handling Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 064/228] ax25: Fix netdev refcount issue Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 065/228] soc: mediatek: mtk-svs: Append "-thermal" to thermal zone names Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 066/228] tools: ynl: dont ignore errors in NLMSG_DONE messages Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 067/228] net: make SK_MEMORY_PCPU_RESERV tunable Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 068/228] net: fix sk_memory_allocated_{add|sub} vs softirqs Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 069/228] ipv4: check for NULL idev in ip_route_use_hint() Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 070/228] net: usb: ax88179_178a: stop lying about skb->truesize Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 071/228] tcp: Fix Use-After-Free in tcp_ao_connect_init Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 072/228] net: gtp: Fix Use-After-Free in gtp_dellink Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 073/228] net: phy: mediatek-ge-soc: follow netdev LED trigger semantics Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 074/228] gpio: tegra186: Fix tegra186_gpio_is_accessible() check Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 075/228] drm/xe: Remove sysfs only once on action add failure Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 076/228] drm/xe: call free_gsc_pkt " Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 077/228] Bluetooth: hci_event: Use HCI error defines instead of magic values Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 078/228] Bluetooth: hci_conn: Only do ACL connections sequentially Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 079/228] Bluetooth: Remove pending ACL connection attempts Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 080/228] Bluetooth: hci_conn: Always use sk_timeo as conn_timeout Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 081/228] Bluetooth: hci_conn: Fix UAF Write in __hci_acl_create_connection_sync Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 082/228] Bluetooth: hci_sync: Add helper functions to manipulate cmd_sync queue Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 083/228] Bluetooth: hci_sync: Attempt to dequeue connection attempt Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 084/228] Bluetooth: ISO: Reassemble PA data for bcast sink Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 085/228] Bluetooth: hci_sync: Use advertised PHYs on hci_le_ext_create_conn_sync Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 086/228] Bluetooth: btusb: Fix triggering coredump implementation for QCA Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 087/228] Bluetooth: hci_event: Fix sending HCI_OP_READ_ENC_KEY_SIZE Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 088/228] Bluetooth: MGMT: Fix failing to MGMT_OP_ADD_UUID/MGMT_OP_REMOVE_UUID Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 089/228] Bluetooth: btusb: mediatek: Fix double free of skb in coredump Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 090/228] Bluetooth: hci_sync: Using hci_cmd_sync_submit when removing Adv Monitor Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 091/228] Bluetooth: qca: set power_ctrl_enabled on NULL returned by gpiod_get_optional() Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 092/228] ipvs: Fix checksumming on GSO of SCTP packets Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 093/228] net: openvswitch: Fix Use-After-Free in ovs_ct_exit Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 094/228] mlxsw: Use refcount_t for reference counting Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 095/228] mlxsw: spectrum_acl_tcam: Fix race in region ID allocation Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 096/228] mlxsw: spectrum_acl_tcam: Fix race during rehash delayed work Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 097/228] mlxsw: spectrum_acl_tcam: Fix possible use-after-free during activity update Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 098/228] mlxsw: spectrum_acl_tcam: Fix possible use-after-free during rehash Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 099/228] mlxsw: spectrum_acl_tcam: Rate limit error message Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 100/228] mlxsw: spectrum_acl_tcam: Fix memory leak during rehash Greg Kroah-Hartman
2024-04-30 10:37 ` [PATCH 6.8 101/228] mlxsw: spectrum_acl_tcam: Fix warning " Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 102/228] mlxsw: spectrum_acl_tcam: Fix incorrect list API usage Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 103/228] mlxsw: spectrum_acl_tcam: Fix memory leak when canceling rehash work Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 104/228] eth: bnxt: fix counting packets discarded due to OOM and netpoll Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 105/228] ARM: dts: imx6ull-tarragon: fix USB over-current polarity Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 106/228] netfilter: nf_tables: honor table dormant flag from netdev release event path Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 107/228] net: phy: dp83869: Fix MII mode failure Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 108/228] net: ti: icssg-prueth: Fix signedness bug in prueth_init_rx_chns() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 109/228] i40e: Do not use WQ_MEM_RECLAIM flag for workqueue Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 110/228] i40e: Report MFS in decimal base instead of hex Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 111/228] iavf: Fix TC config comparison with existing adapter TC config Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 112/228] ice: fix LAG and VF lock dependency in ice_reset_vf() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 113/228] net: ethernet: ti: am65-cpts: Fix PTPv1 message type on TX packets Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 114/228] octeontx2-af: fix the double free in rvu_npc_freemem() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 115/228] dpll: check that pin is registered in __dpll_pin_unregister() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 116/228] dpll: fix dpll_pin_on_pin_register() for multiple parent pins Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 117/228] tls: fix lockless read of strp->msg_ready in ->poll Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 118/228] af_unix: Suppress false-positive lockdep splat for spin_lock() in __unix_gc() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 119/228] netfs: Fix the pre-flush when appending to a file in writethrough mode Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 120/228] drm/amd/display: Check DP Alt mode DPCS state via DMUB Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 121/228] Revert "drm/amd/display: fix USB-C flag update after enc10 feature init" Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 122/228] xhci: move event processing for one interrupter to a separate function Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 123/228] usb: xhci: correct return value in case of STS_HCE Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 124/228] KVM: x86/pmu: Zero out PMU metadata on AMD if PMU is disabled Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 125/228] KVM: x86/pmu: Set enable bits for GP counters in PERF_GLOBAL_CTRL at "RESET" Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 126/228] drm: add drm_gem_object_is_shared_for_memory_stats() helper Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 127/228] drm/amdgpu: add shared fdinfo stats Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 128/228] drm/amdgpu: fix visible VRAM handling during faults Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 129/228] selftests/seccomp: user_notification_addfd check nextfd is available Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 130/228] selftests/seccomp: Change the syscall used in KILL_THREAD test Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 131/228] selftests/seccomp: Handle EINVAL on unshare(CLONE_NEWPID) Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 132/228] x86/CPU/AMD: Add models 0x10-0x1f to the Zen5 range Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 133/228] x86/cpu: Fix check for RDPKRU in __show_regs() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 134/228] rust: phy: implement `Send` for `Registration` Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 135/228] rust: kernel: require `Send` for `Module` implementations Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 136/228] rust: dont select CONSTRUCTORS Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 137/228] rust: init: remove impl Zeroable for Infallible Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 138/228] rust: make mutually exclusive with CFI_CLANG Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 139/228] kbuild: rust: remove unneeded `@rustc_cfg` to avoid ICE Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 140/228] kbuild: rust: force `alloc` extern to allow "empty" Rust files Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 141/228] rust: remove `params` from `module` macro example Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 142/228] Bluetooth: Fix type of len in {l2cap,sco}_sock_getsockopt_old() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 143/228] Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x0bda:0x4853 Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 144/228] Bluetooth: qca: fix NULL-deref on non-serdev suspend Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 145/228] Bluetooth: qca: fix NULL-deref on non-serdev setup Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 146/228] mtd: rawnand: qcom: Fix broken OP_RESET_DEVICE command in qcom_misc_cmd_type_exec() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 147/228] mm/hugetlb: fix missing hugetlb_lock for resv uncharge Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 148/228] mmc: sdhci-msm: pervent access to suspended controller Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 149/228] mmc: sdhci-of-dwcmshc: th1520: Increase tuning loop count to 128 Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 150/228] mm: create FOLIO_FLAG_FALSE and FOLIO_TYPE_OPS macros Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 151/228] mm: support page_mapcount() on page_has_type() pages Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 152/228] mm/hugetlb: fix DEBUG_LOCKS_WARN_ON(1) when dissolve_free_hugetlb_folio() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 153/228] smb: client: Fix struct_group() usage in __packed structs Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 154/228] smb3: missing lock when picking channel Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 155/228] smb3: fix lock ordering potential deadlock in cifs_sync_mid_result Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 156/228] HID: i2c-hid: remove I2C_HID_READ_PENDING flag to prevent lock-up Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 157/228] HID: i2c-hid: Revert to await reset ACK before reading report descriptor Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 158/228] btrfs: fallback if compressed IO fails for ENOSPC Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 159/228] btrfs: fix wrong block_start calculation for btrfs_drop_extent_map_range() Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 160/228] btrfs: scrub: run relocation repair when/only needed Greg Kroah-Hartman
2024-04-30 10:38 ` [PATCH 6.8 161/228] btrfs: fix information leak in btrfs_ioctl_logical_to_ino() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 162/228] x86/tdx: Preserve shared bit on mprotect() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 163/228] cpu: Re-enable CPU mitigations by default for !X86 architectures Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 164/228] eeprom: at24: fix memory corruption race condition Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 165/228] LoongArch: Fix callchain parse error with kernel tracepoint events Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 166/228] LoongArch: Fix access error when read fault on a write-only VMA Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 167/228] arm64: dts: qcom: sc8280xp: add missing PCIe minimum OPP Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 168/228] arm64: dts: qcom: sm8450: Fix the msi-map entries Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 169/228] arm64: dts: rockchip: enable internal pull-up for Q7_THRM# on RK3399 Puma Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 170/228] dmaengine: Revert "dmaengine: pl330: issue_pending waits until WFP state" Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 171/228] dmaengine: xilinx: xdma: Fix wrong offsets in the buffers addresses in dma descriptor Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 172/228] dmaengine: xilinx: xdma: Fix synchronization issue Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 173/228] drm/amdgpu/sdma5.2: use legacy HDP flush for SDMA2/3 Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 174/228] drm/amdgpu: Assign correct bits for SDMA HDP flush Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 175/228] drm/atomic-helper: fix parameter order in drm_format_conv_state_copy() call Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 176/228] drm/amdgpu/pm: Remove gpu_od if its an empty directory Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 177/228] drm/amdgpu/umsch: dont execute umsch test when GPU is in reset/suspend Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 178/228] drm/amdgpu: Fix leak when GPU memory allocation fails Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 179/228] drm/amdkfd: Fix rescheduling of restore worker Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 180/228] drm/amdkfd: Fix eviction fence handling Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 181/228] irqchip/gic-v3-its: Prevent double free on error Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 182/228] ACPI: CPPC: Use access_width over bit_width for system memory accesses Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 183/228] ACPI: CPPC: Fix bit_offset shift in MASK_VAL() macro Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 184/228] ACPI: CPPC: Fix access width used for PCC registers Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 185/228] net/mlx5e: Advertise mlx5 ethernet driver updates sk_buff md_dst for MACsec Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 186/228] ethernet: Add helper for assigning packet type when dest address does not match device address Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 187/228] net: b44: set pause params only when interface is up Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 188/228] macsec: Enable devices to advertise whether they update sk_buff md_dst during offloads Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 189/228] macsec: Detect if Rx skb is macsec-related for offloading devices that update md_dst Greg Kroah-Hartman
2024-04-30 10:39 ` Greg Kroah-Hartman [this message]
2024-04-30 10:39 ` [PATCH 6.8 191/228] fbdev: fix incorrect address computation in deferred IO Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 192/228] udp: preserve the connected status if only UDP cmsg Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 193/228] mtd: limit OTP NVMEM cell parse to non-NAND devices Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 194/228] mtd: diskonchip: work around ubsan link failure Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 195/228] firmware: qcom: uefisecapp: Fix memory related IO errors and crashes Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 196/228] phy: qcom: qmp-combo: Fix register base for QSERDES_DP_PHY_MODE Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 197/228] phy: qcom: qmp-combo: Fix VCO div offset on v3 Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 198/228] mm: turn folio_test_hugetlb into a PageType Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 199/228] mm: zswap: fix shrinker NULL crash with cgroup_disable=memory Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 200/228] dmaengine: owl: fix register access functions Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 201/228] dmaengine: tegra186: Fix residual calculation Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 202/228] idma64: Dont try to serve interrupts when device is powered off Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 203/228] soundwire: amd: fix for wake interrupt handling for clockstop mode Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 204/228] phy: marvell: a3700-comphy: Fix out of bounds read Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 205/228] phy: marvell: a3700-comphy: Fix hardcoded array size Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 206/228] phy: freescale: imx8m-pcie: fix pcie link-up instability Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 207/228] phy: rockchip-snps-pcie3: fix bifurcation on rk3588 Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 208/228] phy: rockchip-snps-pcie3: fix clearing PHP_GRF_PCIESEL_CON bits Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 209/228] phy: rockchip: naneng-combphy: Fix mux on rk3588 Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 210/228] phy: qcom: m31: match requested regulator name with dt schema Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 211/228] dmaengine: idxd: Convert spinlock to mutex to lock evl workqueue Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 212/228] dma: xilinx_dpdma: Fix locking Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 213/228] dmaengine: idxd: Fix oops during rmmod on single-CPU platforms Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 214/228] riscv: Fix TASK_SIZE on 64-bit NOMMU Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 215/228] riscv: Fix loading 64-bit NOMMU kernels past the start of RAM Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 216/228] phy: ti: tusb1210: Resolve charger-det crash if charger psy is unregistered Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 217/228] dt-bindings: eeprom: at24: Fix ST M24C64-D compatible schema Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 218/228] sched/eevdf: Always update V if se->on_rq when reweighting Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 219/228] sched/eevdf: Fix miscalculation in reweight_entity() when se is not curr Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 220/228] sched/eevdf: Prevent vlag from going out of bounds in reweight_eevdf() Greg Kroah-Hartman
2024-04-30 10:39 ` [PATCH 6.8 221/228] riscv: hwprobe: fix invalid sign extension for RISCV_HWPROBE_EXT_ZVFHMIN Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.8 222/228] RISC-V: selftests: cbo: Ensure asm operands match constraints, take 2 Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.8 223/228] i2c: smbus: fix NULL function pointer dereference Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.8 224/228] phy: qcom: qmp-combo: fix VCO div offset on v5_5nm and v6 Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.8 225/228] bounds: Use the right number of bits for power-of-two CONFIG_NR_CPUS Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.8 226/228] Bluetooth: hci_sync: Fix UAF in hci_acl_create_conn_sync Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.8 227/228] Bluetooth: hci_sync: Fix UAF on create_le_conn_complete Greg Kroah-Hartman
2024-04-30 10:40 ` [PATCH 6.8 228/228] Bluetooth: hci_sync: Fix UAF on hci_abort_conn_sync Greg Kroah-Hartman
2024-04-30 16:49 ` [PATCH 6.8 000/228] 6.8.9-rc1 review SeongJae Park
2024-04-30 19:29 ` Florian Fainelli
2024-04-30 20:40 ` Justin Forbes
2024-05-01 2:12 ` Bagas Sanjaya
2024-05-01 5:25 ` Naresh Kamboju
2024-05-01 8:37 ` Ron Economos
2024-05-01 11:36 ` Miguel Ojeda
2024-05-01 13:39 ` Jon Hunter
2024-05-01 13:41 ` Mark Brown
2024-05-02 2:11 ` Shuah Khan
2024-05-02 6:47 ` Pascal Ernster
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=20240430103109.283502339@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=akpm@linux-foundation.org \
--cc=damien.lemoal@opensource.wdc.com \
--cc=david@fromorbit.com \
--cc=glider@google.com \
--cc=hch@infradead.org \
--cc=patches@lists.linux.dev \
--cc=ryabinin.a.a@gmail.com \
--cc=stable@vger.kernel.org \
--cc=xiubli@redhat.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;
as well as URLs for NNTP newsgroup(s).