X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=include%2Fasm-um%2Fmmu_context.h;h=5f3b863aef9aeeafb40c8ee168addf2d6309ecd1;hb=246f19d194ec99ee8992106e129a133142dc6a10;hp=035fd1c363ea52bd11519fb9d6d44209bb92da5f;hpb=ba180fd437156f7fd8cfb2fdd021d949eeef08d6;p=linux-2.6-omap-h63xx.git diff --git a/include/asm-um/mmu_context.h b/include/asm-um/mmu_context.h index 035fd1c363e..5f3b863aef9 100644 --- a/include/asm-um/mmu_context.h +++ b/include/asm-um/mmu_context.h @@ -29,7 +29,7 @@ static inline void activate_mm(struct mm_struct *old, struct mm_struct *new) * possible. */ if (old != new && (current->flags & PF_BORROWED_MM)) - __switch_mm(&new->context.skas.id); + __switch_mm(&new->context.id); } static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, @@ -41,7 +41,7 @@ static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, cpu_clear(cpu, prev->cpu_vm_mask); cpu_set(cpu, next->cpu_vm_mask); if(next != &init_mm) - __switch_mm(&next->context.skas.id); + __switch_mm(&next->context.id); } }