xref: /linux/include/linux/mmu_context.h (revision 4413e16d9d21673bb5048a2e542f1aaa00015c2e)
1 #ifndef _LINUX_MMU_CONTEXT_H
2 #define _LINUX_MMU_CONTEXT_H
3 
4 struct mm_struct;
5 
6 void use_mm(struct mm_struct *mm);
7 void unuse_mm(struct mm_struct *mm);
8 
9 #endif
10