[PATCH 1/1] hpfs: remove unnecessary oom message

From: Zhen Lei
Date: Thu Jun 17 2021 - 04:52:18 EST


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@xxxxxxxxxx>
---
fs/hpfs/dnode.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/fs/hpfs/dnode.c b/fs/hpfs/dnode.c
index 4ada525c5c43..40edbd6c2b7e 100644
--- a/fs/hpfs/dnode.c
+++ b/fs/hpfs/dnode.c
@@ -34,10 +34,8 @@ int hpfs_add_pos(struct inode *inode, loff_t *pos)
return 0;
if (!(i&0x0f)) {
ppos = kmalloc_array(i + 0x11, sizeof(loff_t *), GFP_NOFS);
- if (!ppos) {
- pr_err("out of memory for position list\n");
+ if (!ppos)
return -ENOMEM;
- }
if (hpfs_inode->i_rddir_off) {
memcpy(ppos, hpfs_inode->i_rddir_off, i * sizeof(loff_t));
kfree(hpfs_inode->i_rddir_off);
--
2.25.1