On Thu, 9 Aug 2007, Chuck Ebbert wrote: > > You can use this forget() macro to make the compiler reread a variable: > > #define forget(var) asm volatile ("" : "=m"(var))
No. That will also make the compiler "forget" any previous writes to it, so it changes behaviour. You'd have to use "+m". Linus - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html