mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 23:21:31 +00:00
btrfs: create example debugfs file only in debugging build
Reviewed-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
07f6a48043
commit
b0de6c4c81
@ -836,8 +836,17 @@ static int btrfs_init_debugfs(void)
|
||||
if (!btrfs_debugfs_root_dentry)
|
||||
return -ENOMEM;
|
||||
|
||||
/*
|
||||
* Example code, how to export data through debugfs.
|
||||
*
|
||||
* file: /sys/kernel/debug/btrfs/test
|
||||
* contents of: btrfs_debugfs_test
|
||||
*/
|
||||
#ifdef CONFIG_BTRFS_DEBUG
|
||||
debugfs_create_u64("test", S_IRUGO | S_IWUSR, btrfs_debugfs_root_dentry,
|
||||
&btrfs_debugfs_test);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user