aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/jfs
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2018-06-30 14:32:04 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2018-08-03 16:03:33 -0400
commitc7b15a8657da7f8d11269c7cc3d8beef10d26b43 (patch)
tree0c488599125b4b5d9ae0a64055d282b7ad62299e /fs/jfs
parentadfs: don't put inodes into icache (diff)
downloadwireguard-linux-c7b15a8657da7f8d11269c7cc3d8beef10d26b43.tar.xz
wireguard-linux-c7b15a8657da7f8d11269c7cc3d8beef10d26b43.zip
jfs: don't bother with make_bad_inode() in ialloc()
We hit that when inumber allocation has failed. In that case the in-core inode is not hashed and since its ->i_nlink is 1 the only place where jfs checks is_bad_inode() won't be reached. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/jfs')
-rw-r--r--fs/jfs/jfs_inode.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/jfs/jfs_inode.c b/fs/jfs/jfs_inode.c
index 96732c24b054..4572b7cf183d 100644
--- a/fs/jfs/jfs_inode.c
+++ b/fs/jfs/jfs_inode.c
@@ -69,8 +69,6 @@ struct inode *ialloc(struct inode *parent, umode_t mode)
rc = diAlloc(parent, S_ISDIR(mode), inode);
if (rc) {
jfs_warn("ialloc: diAlloc returned %d!", rc);
- if (rc == -EIO)
- make_bad_inode(inode);
goto fail_put;
}