Re: [PATCH 2/4] ref_tracker: add ability to register a file in debugfs for a ref_tracker_dir
From: Andrew Lunn
Date: Mon Apr 14 2025 - 18:55:24 EST
> -static int __init ref_tracker_debug_init(void)
[snip]
> +static int __init ref_tracker_debugfs_init(void)
> {
> ref_tracker_debug_dir = debugfs_create_dir("ref_tracker", NULL);
> if (IS_ERR(ref_tracker_debug_dir)) {
> @@ -289,5 +367,5 @@ static int __init ref_tracker_debug_init(void)
> }
> return 0;
> }
> -late_initcall(ref_tracker_debug_init);
> +late_initcall(ref_tracker_debugfs_init);
You just added this in the previous patch. Please give it the correct
name from the start.
Andrew