mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 19:46:42 +07:00
10 lines
158 B
C
10 lines
158 B
C
|
#ifndef _LINUX_MMU_CONTEXT_H
|
||
|
#define _LINUX_MMU_CONTEXT_H
|
||
|
|
||
|
struct mm_struct;
|
||
|
|
||
|
void use_mm(struct mm_struct *mm);
|
||
|
void unuse_mm(struct mm_struct *mm);
|
||
|
|
||
|
#endif
|