mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] mach-mvebu: coherency: Judgment after pointer p increases allocation
@ 2022-11-21 10:01 Li zeming
  2022-11-22  0:19 ` Andrew Lunn
  0 siblings, 1 reply; 2+ messages in thread
From: Li zeming @ 2022-11-21 10:01 UTC (permalink / raw)
  To: andrew, gregory.clement, sebastian.hesselbarth
  Cc: linux, linux-arm-kernel, linux-kernel, Li zeming

Add judgment statements at the position after pointer p allocates memory
to avoid the abnormal impact of low probability allocation failure.

Signed-off-by: Li zeming <zeming@nfschina.com>
---
 arch/arm/mach-mvebu/coherency.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-mvebu/coherency.c b/arch/arm/mach-mvebu/coherency.c
index a6b621ff0b87..2bc69dd059d6 100644
--- a/arch/arm/mach-mvebu/coherency.c
+++ b/arch/arm/mach-mvebu/coherency.c
@@ -191,8 +191,10 @@ static void __init armada_375_380_coherency_init(struct device_node *np)
 		struct property *p;
 
 		p = kzalloc(sizeof(*p), GFP_KERNEL);
-		p->name = kstrdup("arm,io-coherent", GFP_KERNEL);
-		of_add_property(cache_dn, p);
+		if (p) {
+			p->name = kstrdup("arm,io-coherent", GFP_KERNEL);
+			of_add_property(cache_dn, p);
+		}
 	}
 }
 
-- 
2.18.2


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-11-22  0:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-21 10:01 [PATCH] mach-mvebu: coherency: Judgment after pointer p increases allocation Li zeming
2022-11-22  0:19 ` Andrew Lunn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®