[PATCH 1/1] Fix Compilation Warning in kernel/trace/trace.c

From: Devendra Naga
Date: Fri Dec 16 2011 - 02:15:46 EST


there was a compilation warning saying
kernel/trace/trace.c:3644:8: warning: âpage2â may be used uninitialized in this function

The page2 pointer is used only when nr_pages = 2.

Assigned a null value to the page2 to get rid of warning.

Signed-off-by: Devendra Naga <devendra.aaru@xxxxxxxxx>
---
kernel/trace/trace.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index f2bd275..80dfd92 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -3641,7 +3641,7 @@ tracing_mark_write(struct file *filp, const char __user *ubuf,
int nr_pages = 1;
ssize_t written;
void *page1;
- void *page2;
+ void *page2 = NULL;
int offset;
int size;
int len;
--
1.7.4.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/