[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4A3FF508.3000304@gmail.com>
Date: Mon, 22 Jun 2009 23:18:00 +0200
From: Roel Kluin <roel.kluin@...il.com>
To: rostedt@...dmis.org
CC: LKML <linux-kernel@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: [PATCH] ftrace: remove redundant test on nsigned
Unsigned `cnt' cannot be less than 0.
Signed-off-by: Roel Kluin <roel.kluin@...il.com>
---
Or should it be `if (!cnt || cnt > MAX)' and what should MAX be then?
diff --git a/kernel/trace/trace_events.c b/kernel/trace/trace_events.c
index aa08be6..b83f030 100644
--- a/kernel/trace/trace_events.c
+++ b/kernel/trace/trace_events.c
@@ -204,7 +204,7 @@ ftrace_event_write(struct file *file, const char __user *ubuf,
char *buf;
char ch;
- if (!cnt || cnt < 0)
+ if (!cnt)
return 0;
ret = tracing_update_buffers();
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists