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 branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs

Pull cramfs fix from Al Viro:
"Regression fix, fallen through the cracks"

* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
cramfs: fix usage on non-MTD device

+2 -2
+2 -2
fs/cramfs/inode.c
··· 958 958 959 959 if (IS_ENABLED(CONFIG_CRAMFS_MTD)) { 960 960 ret = get_tree_mtd(fc, cramfs_mtd_fill_super); 961 - if (ret < 0) 962 - return ret; 961 + if (!ret) 962 + return 0; 963 963 } 964 964 if (IS_ENABLED(CONFIG_CRAMFS_BLOCKDEV)) 965 965 ret = get_tree_bdev(fc, cramfs_blkdev_fill_super);