summaryrefslogtreecommitdiff
path: root/fs/f2fs/acl.c
diff options
context:
space:
mode:
authorZhang Qilong <zhangqilong3@huawei.com>2020-11-20 16:33:34 +0300
committerJaegeuk Kim <jaegeuk@kernel.org>2020-12-03 09:00:21 +0300
commitbeb78181f13430ed7a1e621d9faa50e076d7906f (patch)
tree89198814b8674e33d622d5bfd8c6ddf319db407d /fs/f2fs/acl.c
parent9f7e334aec1671b89df12b98002705cb254de5d9 (diff)
downloadlinux-beb78181f13430ed7a1e621d9faa50e076d7906f.tar.xz
f2fs: Remove the redundancy initialization
There are two assignments are meaningless, and remove them. Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/acl.c')
-rw-r--r--fs/f2fs/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/acl.c b/fs/f2fs/acl.c
index 306413589827..1e5e9b1136ee 100644
--- a/fs/f2fs/acl.c
+++ b/fs/f2fs/acl.c
@@ -384,7 +384,7 @@ int f2fs_init_acl(struct inode *inode, struct inode *dir, struct page *ipage,
struct page *dpage)
{
struct posix_acl *default_acl = NULL, *acl = NULL;
- int error = 0;
+ int error;
error = f2fs_acl_create(dir, &inode->i_mode, &default_acl, &acl, dpage);
if (error)