1 #ifndef __SPARC_MMU_CONTEXT_H 2 #define __SPARC_MMU_CONTEXT_H 3 4 /* For now I still leave the context handling in the 5 * switch_to() macro, I'll do it right soon enough. 6 */ 7 #define get_mmu_context(x) do { } while (0) 8 9 /* Initialize the context related info for a new mm_struct 10 * instance. 11 */ 12 #define init_new_context(mm) ((mm)->context = NO_CONTEXT) 13 14 #endif /* !(__SPARC_MMU_CONTEXT_H) */