diff options
| author | Chao Yu <yuchao0@huawei.com> | 2017-06-12 09:44:27 +0800 |
|---|---|---|
| committer | Moyster <oysterized@gmail.com> | 2017-07-21 12:37:53 +0200 |
| commit | 4e539fb37c768bc611695e6fd56a8bb7a99c2d67 (patch) | |
| tree | a2c48263e92adae54a334c97268dab216742ebb3 /fs | |
| parent | 1d04c3060e9dc538d2850c62bba28e2011224f91 (diff) | |
f2fs: fix wrong error number of fill_super
This patch fixes incorrect error number in error path of fill_super.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/f2fs/super.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 954126cfe..6d935fbf7 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -1936,6 +1936,7 @@ try_onemore: if (f2fs_sb_mounted_blkzoned(sb)) { f2fs_msg(sb, KERN_ERR, "Zoned block device support is not enabled\n"); + err = -EOPNOTSUPP; goto free_sb_buf; } #endif @@ -2009,8 +2010,10 @@ try_onemore: if (F2FS_IO_SIZE(sbi) > 1) { sbi->write_io_dummy = mempool_create_page_pool(2 * (F2FS_IO_SIZE(sbi) - 1), 0); - if (!sbi->write_io_dummy) + if (!sbi->write_io_dummy) { + err = -ENOMEM; goto free_options; + } } /* get an inode for meta space */ |
