public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	"Alexander Usyskin" <alexander.usyskin@intel.com>,
	"Brian Nguyen" <brian3.nguyen@intel.com>,
	"Rodrigo Vivi" <rodrigo.vivi@intel.com>,
	"Riana Tauro" <riana.tauro@intel.com>,
	"Shuicheng Lin" <shuicheng.lin@intel.com>,
	"Ashutosh Dixit" <ashutosh.dixit@intel.com>,
	"Thomas Hellström" <thomas.hellstrom@linux.intel.com>,
	"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 6.18 055/122] drm/xe/nvm: Manage nvm aux cleanup with devres
Date: Wed,  4 Feb 2026 15:40:37 +0100	[thread overview]
Message-ID: <20260204143853.834163474@linuxfoundation.org> (raw)
In-Reply-To: <20260204143851.857060534@linuxfoundation.org>

6.18-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Shuicheng Lin <shuicheng.lin@intel.com>

[ Upstream commit 2da8fbb8f1c17129a08c1e0e42c71eabdca76062 ]

Move nvm teardown to a devm-managed action registered from xe_nvm_init().
This ensures the auxiliary NVM device is deleted on probe failure and
device detach without requiring explicit calls from remove paths.

As part of this, drop xe_nvm_fini() from xe_device_remove() and from the
survivability sysfs teardown, and remove the public xe_nvm_fini() API from
the header.

This is to fix below warn message when there is probe failure after
xe_nvm_init(), then xe_device_probe() is called again:
"
[  207.318152] sysfs: cannot create duplicate filename '/devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:01.0/0000:03:00.0/xe.nvm.768'
[  207.318157] CPU: 5 UID: 0 PID: 10261 Comm: modprobe Tainted: G    B   W           6.19.0-rc2-lgci-xe-kernel+ #223 PREEMPT(voluntary)
[  207.318160] Tainted: [B]=BAD_PAGE, [W]=WARN
[  207.318161] Hardware name: ASUS System Product Name/PRIME Z790-P WIFI, BIOS 0812 02/24/2023
[  207.318163] Call Trace:
[  207.318163]  <TASK>
[  207.318165]  dump_stack_lvl+0xa0/0xc0
[  207.318170]  dump_stack+0x10/0x20
[  207.318171]  sysfs_warn_dup+0xd5/0x110
[  207.318175]  sysfs_create_dir_ns+0x1f6/0x280
[  207.318177]  ? __pfx_sysfs_create_dir_ns+0x10/0x10
[  207.318179]  ? lock_acquire+0x1a4/0x2e0
[  207.318182]  ? __kasan_check_read+0x11/0x20
[  207.318185]  ? do_raw_spin_unlock+0x5c/0x240
[  207.318187]  kobject_add_internal+0x28d/0x8e0
[  207.318189]  kobject_add+0x11f/0x1f0
[  207.318191]  ? __pfx_kobject_add+0x10/0x10
[  207.318193]  ? lockdep_init_map_type+0x4b/0x230
[  207.318195]  ? get_device_parent.isra.0+0x43/0x4c0
[  207.318197]  ? kobject_get+0x55/0xf0
[  207.318199]  device_add+0x2d7/0x1500
[  207.318201]  ? __pfx_device_add+0x10/0x10
[  207.318203]  ? lockdep_init_map_type+0x4b/0x230
[  207.318205]  __auxiliary_device_add+0x99/0x140
[  207.318208]  xe_nvm_init+0x7a2/0xef0 [xe]
[  207.318333]  ? xe_devcoredump_init+0x80/0x110 [xe]
[  207.318452]  ? __devm_add_action+0x82/0xc0
[  207.318454]  ? fs_reclaim_release+0xc0/0x110
[  207.318457]  xe_device_probe+0x17dd/0x2c40 [xe]
[  207.318574]  ? __pfx___drm_dev_dbg+0x10/0x10
[  207.318576]  ? add_dr+0x180/0x220
[  207.318579]  ? __pfx___drmm_mutex_release+0x10/0x10
[  207.318582]  ? __pfx_xe_device_probe+0x10/0x10 [xe]
[  207.318697]  ? xe_pm_init_early+0x33a/0x410 [xe]
[  207.318850]  xe_pci_probe+0x936/0x1250 [xe]
[  207.318999]  ? lock_acquire+0x1a4/0x2e0
[  207.319003]  ? __pfx_xe_pci_probe+0x10/0x10 [xe]
[  207.319151]  local_pci_probe+0xe6/0x1a0
[  207.319154]  pci_device_probe+0x523/0x840
[  207.319157]  ? __pfx_pci_device_probe+0x10/0x10
[  207.319159]  ? sysfs_do_create_link_sd.isra.0+0x8c/0x110
[  207.319162]  ? sysfs_create_link+0x48/0xc0
...
"

Fixes: c28bfb107dac ("drm/xe/nvm: add on-die non-volatile memory device")
Reviewed-by: Alexander Usyskin <alexander.usyskin@intel.com>
Reviewed-by: Brian Nguyen <brian3.nguyen@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Riana Tauro <riana.tauro@intel.com>
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Link: https://patch.msgid.link/20260120183239.2966782-6-shuicheng.lin@intel.com
(cherry picked from commit 11035eab1b7d88daa7904440046e64d3810b1ca1)
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/xe/xe_device.c |  2 --
 drivers/gpu/drm/xe/xe_nvm.c    | 43 +++++++++++++++++-----------------
 drivers/gpu/drm/xe/xe_nvm.h    |  2 --
 3 files changed, 22 insertions(+), 25 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 5f757790d6f53..fe5aadb27b779 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -974,8 +974,6 @@ void xe_device_remove(struct xe_device *xe)
 {
 	xe_display_unregister(xe);
 
-	xe_nvm_fini(xe);
-
 	drm_dev_unplug(&xe->drm);
 
 	xe_bo_pci_dev_remove_all(xe);
diff --git a/drivers/gpu/drm/xe/xe_nvm.c b/drivers/gpu/drm/xe/xe_nvm.c
index 33f4ac82fc80a..1fff24dbc7cd4 100644
--- a/drivers/gpu/drm/xe/xe_nvm.c
+++ b/drivers/gpu/drm/xe/xe_nvm.c
@@ -83,6 +83,27 @@ static bool xe_nvm_writable_override(struct xe_device *xe)
 	return writable_override;
 }
 
+static void xe_nvm_fini(void *arg)
+{
+	struct xe_device *xe = arg;
+	struct intel_dg_nvm_dev *nvm = xe->nvm;
+
+	if (!xe->info.has_gsc_nvm)
+		return;
+
+	/* No access to internal NVM from VFs */
+	if (IS_SRIOV_VF(xe))
+		return;
+
+	/* Nvm pointer should not be NULL here */
+	if (WARN_ON(!nvm))
+		return;
+
+	auxiliary_device_delete(&nvm->aux_dev);
+	auxiliary_device_uninit(&nvm->aux_dev);
+	xe->nvm = NULL;
+}
+
 int xe_nvm_init(struct xe_device *xe)
 {
 	struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
@@ -141,30 +162,10 @@ int xe_nvm_init(struct xe_device *xe)
 		auxiliary_device_uninit(aux_dev);
 		goto err;
 	}
-	return 0;
+	return devm_add_action_or_reset(xe->drm.dev, xe_nvm_fini, xe);
 
 err:
 	kfree(nvm);
 	xe->nvm = NULL;
 	return ret;
 }
-
-void xe_nvm_fini(struct xe_device *xe)
-{
-	struct intel_dg_nvm_dev *nvm = xe->nvm;
-
-	if (!xe->info.has_gsc_nvm)
-		return;
-
-	/* No access to internal NVM from VFs */
-	if (IS_SRIOV_VF(xe))
-		return;
-
-	/* Nvm pointer should not be NULL here */
-	if (WARN_ON(!nvm))
-		return;
-
-	auxiliary_device_delete(&nvm->aux_dev);
-	auxiliary_device_uninit(&nvm->aux_dev);
-	xe->nvm = NULL;
-}
diff --git a/drivers/gpu/drm/xe/xe_nvm.h b/drivers/gpu/drm/xe/xe_nvm.h
index 7f3d5f57bed08..fd3467ad35a4d 100644
--- a/drivers/gpu/drm/xe/xe_nvm.h
+++ b/drivers/gpu/drm/xe/xe_nvm.h
@@ -10,6 +10,4 @@ struct xe_device;
 
 int xe_nvm_init(struct xe_device *xe);
 
-void xe_nvm_fini(struct xe_device *xe);
-
 #endif
-- 
2.51.0




  parent reply	other threads:[~2026-02-04 15:31 UTC|newest]

Thread overview: 144+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-04 14:39 [PATCH 6.18 000/122] 6.18.9-rc1 review Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 001/122] readdir: require opt-in for d_type flags Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 002/122] btrfs: zlib: fix the folio leak on S390 hardware acceleration Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 003/122] can: at91_can: Fix memory leak in at91_can_probe() Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 004/122] Bluetooth: hci_uart: fix null-ptr-deref in hci_uart_write_work Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 005/122] Bluetooth: MGMT: Fix memory leak in set_ssp_complete Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 006/122] net/mlx5: Fix memory leak in esw_acl_ingress_lgcy_setup() Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 007/122] can: gs_usb: gs_usb_receive_bulk_callback(): fix error message Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 008/122] net: bcmasp: fix early exit leak with fixed phy Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 009/122] octeon_ep: Fix memory leak in octep_device_setup() Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 010/122] bonding: annotate data-races around slave->last_rx Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 011/122] sfc: fix deadlock in RSS config read Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 012/122] net: mvpp2: cls: Fix memory leak in mvpp2_ethtool_cls_rule_ins() Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 013/122] ipv6: use the right ifindex when replying to icmpv6 from localhost Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 014/122] net: wwan: t7xx: fix potential skb->frags overflow in RX path Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 015/122] net/mlx5: Fix return type mismatch in mlx5_esw_vport_vhca_id() Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 016/122] rocker: fix memory leak in rocker_world_port_post_fini() Greg Kroah-Hartman
2026-02-04 14:39 ` [PATCH 6.18 017/122] mptcp: fix race in mptcp_pm_nl_flush_addrs_doit() Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 018/122] net: spacemit: Check for netif_carrier_ok() in emac_stats_update() Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 019/122] nfc: llcp: Fix memleak in nfc_llcp_send_ui_frame() Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 020/122] bonding: fix use-after-free due to enslave fail after slave array update Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 021/122] ixgbe: fix memory leaks in the ixgbe_recovery_probe() path Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 022/122] ixgbe: dont initialize aci lock in ixgbe_recovery_probe() Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 023/122] ice: Fix NULL pointer dereference in ice_vsi_set_napi_queues Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 024/122] ice: stop counting UDP csum mismatch as rx_errors Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 025/122] net/mlx5e: TC, delete flows only for existing peers Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 026/122] net/mlx5e: Account for netdev stats in ndo_get_stats64 Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 027/122] nfc: nci: Fix race between rfkill and nci_unregister_device() Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 028/122] net: bridge: fix static key check Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 029/122] net/mlx5e: dont assume psp tx skbs are ipv6 csum handling Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 030/122] net: phy: micrel: fix clk warning when removing the driver Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 031/122] net/mlx5: fs, Fix inverted cap check in tx flow table root disconnect Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 032/122] net/mlx5: Initialize events outside devlink lock Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 033/122] net/mlx5: Fix vhca_id access call trace use before alloc Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 034/122] net/mlx5e: Skip ESN replay window setup for IPsec crypto offload Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 035/122] wifi: mac80211: parse all TTLM entries Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 036/122] wifi: mac80211: apply advertised TTLM from association response Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 037/122] wifi: mac80211: correctly decode TTLM with default link map Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 038/122] scsi: firewire: sbp-target: Fix overflow in sbp_make_tpg() Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 039/122] ASoC: soc-acpi-intel-ptl-match: fix name_prefix of rt1320-2 Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 040/122] drm/xe: Skip address copy for sync-only execs Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 041/122] ASoC: Intel: sof_es8336: fix headphone GPIO logic inversion Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 042/122] gpiolib: acpi: use BIT_ULL() for u64 mask in address space handler Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 043/122] gpio: virtuser: fix UAF in configfs release path Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 044/122] drm/amd/pm: fix race in power state check before mutex lock Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 045/122] gpio: brcmstb: correct hwirq to bank map Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 046/122] kbuild: rpm-pkg: Generate debuginfo package manually Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 047/122] kbuild: Fix permissions of modules.builtin.modinfo Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 048/122] of/reserved_mem: Simplify the logic of fdt_scan_reserved_mem_reg_nodes() Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 049/122] of: reserved_mem: Allow reserved_mem framework detect "cma=" kernel param Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 050/122] bcache: fix improper use of bi_end_io Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 051/122] bcache: use bio cloning for detached device requests Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 052/122] bcache: fix I/O accounting leak in detached_dev_do_request Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 053/122] dma/pool: distinguish between missing and exhausted atomic pools Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 054/122] drm/xe/configfs: Fix is_bound() pci_dev lifetime Greg Kroah-Hartman
2026-02-04 14:40 ` Greg Kroah-Hartman [this message]
2026-02-04 14:40 ` [PATCH 6.18 056/122] drm/xe/nvm: Fix double-free on aux add failure Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 057/122] sched/deadline: Document dl_server Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 058/122] sched/deadline: Fix stuck dl_server Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 059/122] writeback: fix 100% CPU usage when dirtytime_expire_interval is 0 Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 060/122] pinctrl: lpass-lpi: implement .get_direction() for the GPIO driver Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 061/122] pinctrl: meson: mark the GPIO controller as sleeping Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 062/122] pinctrl: qcom: sm8350-lpass-lpi: Merge with SC7280 to fix I2S2 and SWR TX pins Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 063/122] perf: sched: Fix perf crash with new is_user_task() helper Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 064/122] firewire: core: fix race condition against transaction list Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 065/122] riscv: compat: fix COMPAT_UTS_MACHINE definition Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 066/122] rust: rbtree: fix documentation typo in CursorMut peek_next method Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 067/122] rust: kbuild: give `--config-path` to `rustfmt` in `.rsi` target Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 068/122] ASoC: fsl: imx-card: Do not force slot width to sample width Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 069/122] scsi: be2iscsi: Fix a memory leak in beiscsi_boot_get_sinfo() Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 070/122] ASoC: amd: yc: Add DMI quirk for Acer TravelMate P216-41-TCO Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 071/122] gpio: pca953x: mask interrupts in irq shutdown Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 072/122] kbuild: rust: clean libpin_init_internal in mrproper Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 073/122] scsi: qla2xxx: edif: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 074/122] efivarfs: fix error propagation in efivar_entry_get() Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 075/122] nvmet: fix race in nvmet_bio_done() leading to NULL pointer dereference Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 076/122] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine Greg Kroah-Hartman
2026-02-04 14:40 ` [PATCH 6.18 077/122] gpio: rockchip: Stop calling pinctrl for set_direction Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 078/122] mm/kasan: fix KASAN poisoning in vrealloc() Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 079/122] mptcp: only reset subflow errors when propagated Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 080/122] selftests: mptcp: check no dup close events after error Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 081/122] selftests: mptcp: check subflow errors in close events Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 082/122] selftests: mptcp: join: fix local endp not being tracked Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 083/122] flex_proportions: make fprop_new_period() hardirq safe Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 084/122] btrfs: do not strictly require dirty metadata threshold for metadata writepages Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 085/122] mm/kfence: randomize the freelist on initialization Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 086/122] mm/memory-failure: fix missing ->mf_stats count in hugetlb poison Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 087/122] mm, swap: restore swap_space attr aviod kernel panic Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 088/122] mm/memory-failure: teach kill_accessing_process to accept hugetlb tail page pfn Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 089/122] mm/shmem, swap: fix race of truncate and swap entry split Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 090/122] net: fix segmentation of forwarding fraglist GRO Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 091/122] rust: bits: always inline functions using build_assert with arguments Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 092/122] rust: sync: atomic: Provide stub for `rusttest` 32-bit hosts Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 093/122] rust: sync: refcount: always inline functions using build_assert with arguments Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 094/122] scripts: generate_rust_analyzer: Add pin_init -> compiler_builtins dep Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 095/122] scripts: generate_rust_analyzer: Add pin_init_internal deps Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 096/122] scripts: generate_rust_analyzer: remove sysroot assertion Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 097/122] scripts: generate_rust_analyzer: compile sysroot with correct edition Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 098/122] scripts: generate_rust_analyzer: fix resolution of #[pin_data] macros Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 099/122] scripts: generate_rust_analyzer: Add compiler_builtins -> core dep Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 100/122] drm: Do not allow userspace to trigger kernel warnings in drm_gem_change_handle_ioctl() Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 101/122] drm/xe/xelp: Fix Wa_18022495364 Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 102/122] drm/tyr: depend on `COMMON_CLK` to fix build error Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 103/122] drm/msm/a6xx: fix bogus hwcg register updates Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 104/122] drm/imx/tve: fix probe device leak Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 105/122] drm/amd/pm: fix smu v13 soft clock frequency setting issue Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 106/122] drm/amd/pm: fix smu v14 " Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 107/122] drm/amdgpu/soc21: fix xclk for APUs Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 108/122] drm/amdgpu/gfx10: fix wptr reset in KGQ init Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 109/122] drm/amdgpu/gfx11: " Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 110/122] drm/amdgpu/gfx11: adjust KGQ reset sequence Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 111/122] drm/amdgpu/gfx12: fix wptr reset in KGQ init Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 112/122] drm/amdgpu/gfx12: adjust KGQ reset sequence Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 113/122] drm/amdgpu: fix NULL pointer dereference in amdgpu_gmc_filter_faults_remove Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 114/122] drm/amdgpu: Fix cond_exec handling in amdgpu_ib_schedule() Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 115/122] iommu/tegra241-cmdqv: Reset VCMDQ in tegra241_vcmdq_hw_init_user() Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 116/122] gpiolib: acpi: Fix potential out-of-boundary left shift Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 117/122] libbpf: Fix -Wdiscarded-qualifiers under C23 Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 118/122] Revert "drm/nouveau/disp: Set drm_mode_config_funcs.atomic_(check|commit)" Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 119/122] net/sched: act_ife: convert comma to semicolon Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 120/122] sched_ext: Dont kick CPUs running higher classes Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 121/122] sched_ext: Fix SCX_KICK_WAIT to work reliably Greg Kroah-Hartman
2026-02-04 14:41 ` [PATCH 6.18 122/122] mptcp: avoid dup SUB_CLOSED events after disconnect Greg Kroah-Hartman
2026-02-04 19:08 ` [PATCH 6.18 000/122] 6.18.9-rc1 review Achill Gilgenast
2026-02-04 19:52 ` Brett A C Sheffield
2026-02-04 20:20 ` Florian Fainelli
2026-02-04 20:27 ` Jon Hunter
2026-02-04 21:39 ` Justin Forbes
2026-02-04 23:08 ` Takeshi Ogasawara
2026-02-05  0:14 ` Peter Schneider
2026-02-05  6:03 ` Luna Jernberg
2026-02-05  7:34 ` Ron Economos
2026-02-05 11:47 ` Mark Brown
2026-02-05 14:33 ` Brett Mastbergen
2026-02-06  1:23 ` Hardik Garg
2026-02-06  4:27 ` Barry K. Nathan
2026-02-06  5:52 ` Shung-Hsi Yu
2026-02-06  8:03 ` Dileep malepu
2026-02-06  9:34 ` Miguel Ojeda
2026-02-06 11:59 ` Jeffrin Thalakkottoor
2026-02-06 12:31   ` Greg Kroah-Hartman
2026-02-06 13:17     ` Jeffrin Thalakkottoor
2026-02-06 13:20       ` Greg Kroah-Hartman
2026-02-06 13:52         ` Jeffrin Thalakkottoor

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=20260204143853.834163474@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.usyskin@intel.com \
    --cc=ashutosh.dixit@intel.com \
    --cc=brian3.nguyen@intel.com \
    --cc=patches@lists.linux.dev \
    --cc=riana.tauro@intel.com \
    --cc=rodrigo.vivi@intel.com \
    --cc=sashal@kernel.org \
    --cc=shuicheng.lin@intel.com \
    --cc=stable@vger.kernel.org \
    --cc=thomas.hellstrom@linux.intel.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