summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/sysfs.c
diff options
context:
space:
mode:
authorEric Sandeen2016-08-31 23:49:29 +0200
committerDavid Sterba2016-09-26 17:59:49 +0200
commit07f6a480436595394a06a69d0ebc18fef6736197 (patch)
treef313ecd11c0756473231089700df3f5a01c55c54 /fs/btrfs/sysfs.c
parentBtrfs: fix memory leak of block group cache (diff)
downloadkernel-qcow2-linux-07f6a480436595394a06a69d0ebc18fef6736197.tar.gz
kernel-qcow2-linux-07f6a480436595394a06a69d0ebc18fef6736197.tar.xz
kernel-qcow2-linux-07f6a480436595394a06a69d0ebc18fef6736197.zip
btrfs: fix perms on demonstration debugfs interface
btrfs provides a helpful demonstration of how to export a global variable via debugfs; however, it is unique among other debugfs files in that it is world-writable, which causes some concern to people who are not familiar with its purpose. Fix it so that it is only user-writable. Signed-off-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/sysfs.c')
-rw-r--r--fs/btrfs/sysfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/sysfs.c b/fs/btrfs/sysfs.c
index c6569905d3d1..804bd1c42e47 100644
--- a/fs/btrfs/sysfs.c
+++ b/fs/btrfs/sysfs.c
@@ -836,7 +836,7 @@ static int btrfs_init_debugfs(void)
if (!btrfs_debugfs_root_dentry)
return -ENOMEM;
- debugfs_create_u64("test", S_IRUGO | S_IWUGO, btrfs_debugfs_root_dentry,
+ debugfs_create_u64("test", S_IRUGO | S_IWUSR, btrfs_debugfs_root_dentry,
&btrfs_debugfs_test);
#endif
return 0;