linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ref_tracker: do xarray and workqueue job initializations earlier
@ 2025-06-26 12:52 Jeff Layton
  2025-06-27 21:43 ` Jakub Kicinski
  0 siblings, 1 reply; 2+ messages in thread
From: Jeff Layton @ 2025-06-26 12:52 UTC (permalink / raw)
  To: Jakub Kicinski, Eric Dumazet, Andrew Morton
  Cc: linux-kernel, kernel test robot, Jeff Layton

The kernel test robot reported an oops that occurred when attempting to
deregister a dentry from the xarray during subsys_initcall().

The ref_tracker xarrays and workqueue job are being initialized in
late_initcall() which is too late. Move those to postcore_initcall()
instead.

Fixes: 65b584f53611 ("ref_tracker: automatically register a file in debugfs for a ref_tracker_dir")
Reported-by: kernel test robot <oliver.sang@intel.com>
Closes: https://lore.kernel.org/oe-lkp/202506251406.c28f2adb-lkp@intel.com
Signed-off-by: Jeff Layton <jlayton@kernel.org>
---
 lib/ref_tracker.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/lib/ref_tracker.c b/lib/ref_tracker.c
index dcf923a1edf5b7d7342bf61ccec5b54a2eceab5b..a9e6ffcff04b1da162a5a6add6bff075c2c9405e 100644
--- a/lib/ref_tracker.c
+++ b/lib/ref_tracker.c
@@ -516,13 +516,19 @@ static void debugfs_reap_work(struct work_struct *work)
 	} while (reaped);
 }
 
-static int __init ref_tracker_debugfs_init(void)
+static int __init ref_tracker_debugfs_postcore_init(void)
 {
 	INIT_WORK(&debugfs_reap_worker, debugfs_reap_work);
 	xa_init_flags(&debugfs_dentries, XA_FLAGS_LOCK_IRQ);
 	xa_init_flags(&debugfs_symlinks, XA_FLAGS_LOCK_IRQ);
+	return 0;
+}
+postcore_initcall(ref_tracker_debugfs_postcore_init);
+
+static int __init ref_tracker_debugfs_late_init(void)
+{
 	ref_tracker_debug_dir = debugfs_create_dir("ref_tracker", NULL);
 	return 0;
 }
-late_initcall(ref_tracker_debugfs_init);
+late_initcall(ref_tracker_debugfs_late_init);
 #endif /* CONFIG_DEBUG_FS */

---
base-commit: a9b24b3583ae1da7dbda031f141264f2da260219
change-id: 20250626-reftrack-dbgfs-ed396c24853e

Best regards,
-- 
Jeff Layton <jlayton@kernel.org>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ref_tracker: do xarray and workqueue job initializations earlier
  2025-06-26 12:52 [PATCH] ref_tracker: do xarray and workqueue job initializations earlier Jeff Layton
@ 2025-06-27 21:43 ` Jakub Kicinski
  0 siblings, 0 replies; 2+ messages in thread
From: Jakub Kicinski @ 2025-06-27 21:43 UTC (permalink / raw)
  To: Jeff Layton; +Cc: Eric Dumazet, Andrew Morton, linux-kernel, kernel test robot

On Thu, 26 Jun 2025 08:52:14 -0400 Jeff Layton wrote:
> The kernel test robot reported an oops that occurred when attempting to
> deregister a dentry from the xarray during subsys_initcall().
> 
> The ref_tracker xarrays and workqueue job are being initialized in
> late_initcall() which is too late. Move those to postcore_initcall()
> instead.

Applied to net-next (on top of an -rc tag again, if anyone else
needs it). Thanks!

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-06-27 21:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-26 12:52 [PATCH] ref_tracker: do xarray and workqueue job initializations earlier Jeff Layton
2025-06-27 21:43 ` Jakub Kicinski

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).