On Sat, Dec 15, 2001 at 11:52:58PM +0100, Vivien Chappelier wrote: > The first one (O2-asid) concerns the TLB initialization the IP32. The > asid_cache is not initialized, which leads to MMU context = 0 being > considered valid! Thus when switching task, in switch_mm, a new context is > not created. Correct finding. It's just that you shouldn't have to apply this patch to the IP32 code and that shows that mips64 needs quite a cleanup there. Applied anyway. > Finaly, with my configuration (SGI O2 R5000 @ 180Mhz) I've to change > PAGE_OFFSET in page.h to the one used for IP22 rather than the one used > for IP32.. here is a third patch (O2-page) to change this, but I'm not > sure about other configurations (R10000?) > -#if defined(CONFIG_SGI_IP27) || defined(CONFIG_SGI_IP32) > +#if defined(CONFIG_SGI_IP27) > #define PAGE_OFFSET 0xa800000000000000UL > #endif 0xa8 is caching mode 5 which is not defined for the R5000, thus undefined behaviour. You can be almost certain that the CPU use that as an excuse in order to do really funny things. As the O2 is a non-cachecoherent machine this should also be correct for the R10000 / R12000. Ralf