Message ID | 20250415-reftrack-dbgfs-v2-7-b18c4abd122f@kernel.org (mailing list archive) |
---|---|
State | Under Review |
Headers | show |
Series | ref_tracker: add ability to register a debugfs file for a ref_tracker_dir | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Guessing tree name failed - patch did not apply |
diff --git a/include/linux/ref_tracker.h b/include/linux/ref_tracker.h index 77a55a32c067216fa02ba349498f53bd289aee0c..be3e43127843f710c22aadb47612e07ce9eeeacd 100644 --- a/include/linux/ref_tracker.h +++ b/include/linux/ref_tracker.h @@ -21,7 +21,7 @@ struct ref_tracker_dir { #ifdef CONFIG_DEBUG_FS struct dentry *dentry; #endif - char name[32]; + char name[64]; #endif };
Currently it's 32 bytes, but with the need to move to unique names for debugfs files, that's inadequate. Move to a 64 byte name field. Signed-off-by: Jeff Layton <jlayton@kernel.org> --- include/linux/ref_tracker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)