public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* tlb_finish_mmu() bogisity
@ 2007-12-23  9:32 Al Viro
  2007-12-23 21:15 ` Linus Torvalds
  0 siblings, 1 reply; 4+ messages in thread
From: Al Viro @ 2007-12-23  9:32 UTC (permalink / raw)
  To: clameter; +Cc: Linus Torvalds, linux-kernel

        tlb->need_flush += &__get_cpu_var(quicklist)[0].nr_pages != 0;
makes no sense whatsoever.  How the hell can you ever get the address of
__get_cpu_var(quicklist)[0].nr_pages to be NULL?  Postfix operators have
higher precedence than prefix ones, so that's
	&(((__get_cpu_var(quicklist))[0]).nr_pages)

What did you intend here?  s/&//, perhaps?

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-12-26 20:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-23  9:32 tlb_finish_mmu() bogisity Al Viro
2007-12-23 21:15 ` Linus Torvalds
2007-12-24 19:25   ` Christoph Lameter
2007-12-26 20:43     ` Christoph Lameter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox