[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1284655960.23787.34.camel@gandalf.stny.rr.com>
Date: Thu, 16 Sep 2010 12:52:40 -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:07 +0100, Alan Cox wrote:
> ->tiocmget;
> > >
> > > + memset(&icount, 0, sizeof(struct serial_icounter_struct));
> > > +
> >
> > Move the above to after the spinlocks.
>
> Why - its a local variable ?
>
> Easier to write
>
> struct serial_icounter_struct icount = { 0 };
>
> though
True, but if we want to micro-optimize, moving it after the spinlocks
means we do no zero initialization in the tiocmget == 0. Although gcc
may be smart enough to realize that too.
-- 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