diff options
author | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-05-24 01:29:39 +0200 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-05-24 10:06:45 +0200 |
commit | 14bdb047a54d7a44af8633848ad097bbaf1b2cb6 (patch) | |
tree | a0194e6cc3af814f6d62ddcc4002614f661931ad /fs/zonefs | |
parent | Merge tag 'arm64-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/a... (diff) | |
download | linux-14bdb047a54d7a44af8633848ad097bbaf1b2cb6.tar.xz linux-14bdb047a54d7a44af8633848ad097bbaf1b2cb6.zip |
zonefs: Fix zonefs_init_file_inode() return value
Commit 87c9ce3ffec9 ("zonefs: Add active seq file accounting") wrongly
changed zonefs_init_file_inode() to always return 0 even if the call to
zonefs_zone_mgmt() fails. Fix this by propagating zonefs_zone_mgmt()
return value as the return value for zonefs_init_file_inode().
Fixes: 87c9ce3ffec9 ("zonefs: Add active seq file accounting")
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Diffstat (limited to 'fs/zonefs')
-rw-r--r-- | fs/zonefs/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/zonefs/super.c b/fs/zonefs/super.c index b3b0b71fdf6c..652752df1a2f 100644 --- a/fs/zonefs/super.c +++ b/fs/zonefs/super.c @@ -1373,7 +1373,7 @@ static int zonefs_init_file_inode(struct inode *inode, struct blk_zone *zone, struct super_block *sb = inode->i_sb; struct zonefs_sb_info *sbi = ZONEFS_SB(sb); struct zonefs_inode_info *zi = ZONEFS_I(inode); - int ret; + int ret = 0; inode->i_ino = zone->start >> sbi->s_zone_sectors_shift; inode->i_mode = S_IFREG | sbi->s_perm; @@ -1420,7 +1420,7 @@ static int zonefs_init_file_inode(struct inode *inode, struct blk_zone *zone, unlock: mutex_unlock(&zi->i_truncate_mutex); - return 0; + return ret; } static struct dentry *zonefs_create_inode(struct dentry *parent, |