Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'zonefs-5.19-rc1-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs

Pull zonefs fix from Damien Le Moal:
"A single patch to fix zonefs_init_file_inode() return value"

* tag 'zonefs-5.19-rc1-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs:
zonefs: Fix zonefs_init_file_inode() return value

+2 -2
+2 -2
fs/zonefs/super.c
··· 1373 1373 struct super_block *sb = inode->i_sb; 1374 1374 struct zonefs_sb_info *sbi = ZONEFS_SB(sb); 1375 1375 struct zonefs_inode_info *zi = ZONEFS_I(inode); 1376 - int ret; 1376 + int ret = 0; 1377 1377 1378 1378 inode->i_ino = zone->start >> sbi->s_zone_sectors_shift; 1379 1379 inode->i_mode = S_IFREG | sbi->s_perm; ··· 1420 1420 unlock: 1421 1421 mutex_unlock(&zi->i_truncate_mutex); 1422 1422 1423 - return 0; 1423 + return ret; 1424 1424 } 1425 1425 1426 1426 static struct dentry *zonefs_create_inode(struct dentry *parent,