diff mbox series

[v2,7/8] ref_tracker: widen the ref_tracker_dir.name field

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

Checks

Context Check Description
netdev/tree_selection success Guessing tree name failed - patch did not apply

Commit Message

Jeff Layton April 15, 2025, 6:49 p.m. UTC
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(-)
diff mbox series

Patch

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
 };