[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1284658585.23787.43.camel@gandalf.stny.rr.com>
Date: Thu, 16 Sep 2010 13:36:25 -0400
From: Steven Rostedt <rostedt@...dmis.org>
To: Alan Cox <alan@...rguk.ukuu.org.uk>
Cc: Dan Rosenberg <drosenberg@...curity.com>, j.dumon@...ion.com,
linux-kernel@...r.kernel.org, netdev@...r.kernel.org,
security@...nel.org, davem@...emloft.net, stable@...nel.org
Subject: Re: [PATCH v2] drivers/net/usb/hso.c: prevent reading
uninitialized memory
On Thu, 2010-09-16 at 18:47 +0100, Alan Cox wrote:
> If you want to micro-optimise it you can enumerate the cases that
> tiocmget can be NULL in that driver..
Heh, I think that's going a bit too far. Of course mico-optimizations
usually make the system go faster, but not enough to show out of the
noise, and micro-optimizations most of the time just make the code
harder to understand and more error prone.
A lot of the patches in this patch set could just do the:
struct foo bar = { 0 };
This would let gcc optimize what needs to be done, and avoids a function
call to memset.
-- Steve
--
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