* [PATCH] ARM:kernel checking failure after call vmalloc
@ 2013-01-30 4:13 Chen Gang
0 siblings, 0 replies; only message in thread
From: Chen Gang @ 2013-01-30 4:13 UTC (permalink / raw)
To: linux-arm-kernel
need checking failure after call vmalloc.
if fail:
need return fail code (-ENOMEM, long will be signed cast to int)
also need call etb_lock(t) to lock again.
better to let vmalloc code above etb_writel(... ETBR_READADDR).
Signed-off-by: Chen Gang <gang.chen@asianux.com>
---
arch/arm/kernel/etm.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/arch/arm/kernel/etm.c b/arch/arm/kernel/etm.c
index 9b6de8c..fbe51a3 100644
--- a/arch/arm/kernel/etm.c
+++ b/arch/arm/kernel/etm.c
@@ -287,14 +287,20 @@ static ssize_t etb_read(struct file *file, char __user *data,
etb_unlock(t);
total = etb_getdatalen(t);
+ length = min(total * 4, (int)len);
+
+ buf = vmalloc(length);
+ if (!buf) {
+ etb_lock(t);
+ length = -ENOMEM;
+ goto out;
+ }
+
if (total == t->etb_bufsz)
first = etb_readl(t, ETBR_WRITEADDR);
etb_writel(t, first, ETBR_READADDR);
- length = min(total * 4, (int)len);
- buf = vmalloc(length);
-
dev_dbg(t->dev, "ETB buffer length: %d\n", total);
dev_dbg(t->dev, "ETB status reg: %x\n", etb_readl(t, ETBR_STATUS));
for (i = 0; i < length / 4; i++)
--
1.7.10.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-01-30 4:13 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-30 4:13 [PATCH] ARM:kernel checking failure after call vmalloc Chen Gang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox