Commit 4de426cd authored by Chengguang Xu's avatar Chengguang Xu Committed by David Sterba

btrfs: remove unnecessary curly braces in btrfs_get_acl

It's only coding style fix not functinal change.  When if/else has only
one statement then the braces are not needed.
Signed-off-by: default avatarChengguang Xu <cgxu519@gmx.com>
Reviewed-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent dc7789ef
...@@ -40,13 +40,12 @@ struct posix_acl *btrfs_get_acl(struct inode *inode, int type) ...@@ -40,13 +40,12 @@ struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
size = btrfs_getxattr(inode, name, value, size); size = btrfs_getxattr(inode, name, value, size);
} }
if (size > 0) { if (size > 0)
acl = posix_acl_from_xattr(&init_user_ns, value, size); acl = posix_acl_from_xattr(&init_user_ns, value, size);
} else if (size == -ENODATA || size == 0) { else if (size == -ENODATA || size == 0)
acl = NULL; acl = NULL;
} else { else
acl = ERR_PTR(size); acl = ERR_PTR(size);
}
kfree(value); kfree(value);
return acl; return acl;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment