diff options
author | Zhen Lei | 2021-06-17 17:02:38 +0800 |
---|---|---|
committer | Dave Kleikamp | 2021-06-23 09:17:49 -0500 |
commit | e15a56b7469529b4225e5c504ba6d51851e3bba4 (patch) | |
tree | 122b004c8b6cd6cd92589f02e33a999db096ca12 /fs/jfs | |
parent | 9d574f985fe33efd6911f4d752de6f485a1ea732 (diff) |
jfs: remove unnecessary oom message
Fixes scripts/checkpatch.pl warning:
WARNING: Possible unnecessary 'out of memory' message
Remove it can help us save a bit of memory.
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
Diffstat (limited to 'fs/jfs')
-rw-r--r-- | fs/jfs/jfs_imap.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/jfs/jfs_imap.c b/fs/jfs/jfs_imap.c index 937ca07b58b1..47913c3d7e1c 100644 --- a/fs/jfs/jfs_imap.c +++ b/fs/jfs/jfs_imap.c @@ -103,10 +103,8 @@ int diMount(struct inode *ipimap) */ /* allocate the in-memory inode map control structure. */ imap = kmalloc(sizeof(struct inomap), GFP_KERNEL); - if (imap == NULL) { - jfs_err("diMount: kmalloc returned NULL!"); + if (imap == NULL) return -ENOMEM; - } /* read the on-disk inode map control structure. */ |