Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'ref_tracker-fix'

Merge a fix from Jeff from a stable commit ID:

* ref_tracker: do xarray and workqueue job initializations earlier

Signed-off-by: Jakub Kicinski <kuba@kernel.org>

+8 -2
+8 -2
lib/ref_tracker.c
··· 516 516 } while (reaped); 517 517 } 518 518 519 - static int __init ref_tracker_debugfs_init(void) 519 + static int __init ref_tracker_debugfs_postcore_init(void) 520 520 { 521 521 INIT_WORK(&debugfs_reap_worker, debugfs_reap_work); 522 522 xa_init_flags(&debugfs_dentries, XA_FLAGS_LOCK_IRQ); 523 523 xa_init_flags(&debugfs_symlinks, XA_FLAGS_LOCK_IRQ); 524 + return 0; 525 + } 526 + postcore_initcall(ref_tracker_debugfs_postcore_init); 527 + 528 + static int __init ref_tracker_debugfs_late_init(void) 529 + { 524 530 ref_tracker_debug_dir = debugfs_create_dir("ref_tracker", NULL); 525 531 return 0; 526 532 } 527 - late_initcall(ref_tracker_debugfs_init); 533 + late_initcall(ref_tracker_debugfs_late_init); 528 534 #endif /* CONFIG_DEBUG_FS */