diff options
author | Akinobu Mita <mita@miraclelinux.com> | 2006-09-14 09:22:38 -0500 |
---|---|---|
committer | Dave Kleikamp <shaggy@austin.ibm.com> | 2006-10-02 09:51:01 -0500 |
commit | 087387f90f577f5a0ab68d33ef326c9bb6d80dda (patch) | |
tree | 99f2ba6f672c9d98fbd628ee54120f63593f1bd0 /fs/jfs/super.c | |
parent | 2a6968a9784551c216f9379a728d4104dbad98a8 (diff) | |
download | linux-3.10-087387f90f577f5a0ab68d33ef326c9bb6d80dda.tar.gz linux-3.10-087387f90f577f5a0ab68d33ef326c9bb6d80dda.tar.bz2 linux-3.10-087387f90f577f5a0ab68d33ef326c9bb6d80dda.zip |
[PATCH] JFS: return correct error when i-node allocation failed
I have seen confusing behavior on JFS when I injected many intentional
slab allocation errors. The cp command failed with no disk space error
with enough disk space.
This patch makes:
- change the return value in case slab allocation failures happen
from -ENOSPC to -ENOMEM
- ialloc() return error code so that the caller can know the reason
of failures
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
(cherry picked from 2b46f77976f798f3fe800809a1d0ed38763c71c8 commit)
Diffstat (limited to 'fs/jfs/super.c')
-rw-r--r-- | fs/jfs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jfs/super.c b/fs/jfs/super.c index 143bcd1d5ea..fc6951587c6 100644 --- a/fs/jfs/super.c +++ b/fs/jfs/super.c @@ -422,7 +422,7 @@ static int jfs_fill_super(struct super_block *sb, void *data, int silent) sbi = kzalloc(sizeof (struct jfs_sb_info), GFP_KERNEL); if (!sbi) - return -ENOSPC; + return -ENOMEM; sb->s_fs_info = sbi; sbi->sb = sb; sbi->uid = sbi->gid = sbi->umask = -1; |