On Mon, Nov 22, 2004 at 08:00:04AM +0100, Thiemo Seufer wrote: > > Why bother, the unaligned exception handler should take care of this. > > It really does so for unaligned accesses from kernel space? Yes. In fact it's crucially important for this very case. TCP for example may result in missalignment. And not everybody is using get_unaligned / put_unaligned as they were intended. Relying on the unaligned handler is preferable where we expect pointers to be properly aligned almost always. The MIPS ABI mandates at least 8 byte stack alignment and funny things happen if that assumption is violated. So there is no motivation at all to care about the performance of missalignment. Aside of me defining this to be verboten by punishment of signal 9 ;-) > has 4 bytes and is loaded with lw. Using a macro which abstracts for > 32/64bit compilation hides this needlessly, and can even lead to the > erraneous impression the code would be useful for 64bit, too. I'm more following the religion of using such abstractions everywhere because code tends to be copied around mindlessly ... Ralf