[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1581398649-125989-1-git-send-email-yang.shi@linux.alibaba.com>
Date: Tue, 11 Feb 2020 13:24:08 +0800
From: Yang Shi <yang.shi@...ux.alibaba.com>
To: akpm@...ux-foundation.org
Cc: yang.shi@...ux.alibaba.com, linux-mm@...ck.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 1/2] mm: vmpressure: don't need call kfree if kstrndup fails
When kstrndup fails (returns NULL) there is no memory is allocated by
kmalloc, so no need to call kfree().
Signed-off-by: Yang Shi <yang.shi@...ux.alibaba.com>
---
mm/vmpressure.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/mm/vmpressure.c b/mm/vmpressure.c
index 4bac22f..0590f00 100644
--- a/mm/vmpressure.c
+++ b/mm/vmpressure.c
@@ -371,10 +371,8 @@ int vmpressure_register_event(struct mem_cgroup *memcg,
int ret = 0;
spec_orig = spec = kstrndup(args, MAX_VMPRESSURE_ARGS_LEN, GFP_KERNEL);
- if (!spec) {
- ret = -ENOMEM;
- goto out;
- }
+ if (!spec)
+ return -ENOMEM;
/* Find required level */
token = strsep(&spec, ",");
--
1.8.3.1
Powered by blists - more mailing lists