Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1639636 > unrolled thread

[PATCH] metag-TCM: Delete an error message for a failed memory allocation in tcm_add_region()

Started bySF Markus Elfring <elfring@users.sourceforge.net>
First post2017-05-11 16:50 +0200
Last post2017-05-11 16:50 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] metag-TCM: Delete an error message for a failed memory  allocation in tcm_add_region() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-05-11 16:50 +0200

#1639636 — [PATCH] metag-TCM: Delete an error message for a failed memory allocation in tcm_add_region()

FromSF Markus Elfring <elfring@users.sourceforge.net>
Date2017-05-11 16:50 +0200
Subject[PATCH] metag-TCM: Delete an error message for a failed memory allocation in tcm_add_region()
Message-ID<tFXzI-7Av-21@gated-at.bofh.it>
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 11 May 2017 16:16:32 +0200

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 arch/metag/kernel/tcm.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/arch/metag/kernel/tcm.c b/arch/metag/kernel/tcm.c
index 5d102b31ce84..6c9985591cf1 100644
--- a/arch/metag/kernel/tcm.c
+++ b/arch/metag/kernel/tcm.c
@@ -115,10 +115,8 @@ int __init tcm_add_region(struct tcm_region *reg)
 	struct tcm_pool *pool;
 
 	pool = kmalloc(sizeof(*pool), GFP_KERNEL);
-	if (!pool) {
-		pr_err("Failed to alloc memory for TCM pool!\n");
+	if (!pool)
 		return -ENOMEM;
-	}
 
 	pool->tag = reg->tag;
 	pool->start = reg->res.start;
-- 
2.12.3

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web