diff options
author | Anand Jain <Anand.Jain@oracle.com> | 2014-07-30 16:04:09 +0400 |
---|---|---|
committer | Chris Mason <clm@fb.com> | 2014-09-18 00:37:59 +0400 |
commit | 20ee0825ecec889afdf12f7c13b9dc3af0bb9f14 (patch) | |
tree | bad80d3fef77e61371739a629662a763c7bf0f2b /fs/btrfs/sysfs.c | |
parent | 98b3d389eb473f28ef69547c0a9f72041c4c40e6 (diff) | |
download | linux-20ee0825ecec889afdf12f7c13b9dc3af0bb9f14.tar.xz |
btrfs: code optimize: BTRFS_ATTR_RW could set the mode
BTRFS_ATTR_RW could set the mode and be inline with BTRFS_ATTR
Signed-off-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/sysfs.c')
-rw-r--r-- | fs/btrfs/sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/sysfs.c b/fs/btrfs/sysfs.c index a1c10886d9f2..e6a5e7d82f42 100644 --- a/fs/btrfs/sysfs.c +++ b/fs/btrfs/sysfs.c @@ -401,7 +401,7 @@ static ssize_t btrfs_label_store(struct kobject *kobj, return ret; } -BTRFS_ATTR_RW(label, 0644, btrfs_label_show, btrfs_label_store); +BTRFS_ATTR_RW(label, btrfs_label_show, btrfs_label_store); static ssize_t btrfs_nodesize_show(struct kobject *kobj, struct kobj_attribute *a, char *buf) |