mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 18:24:14 +08:00
2779567346
Include only headers we really need. Signed-off-by: Richard Weinberger <richard@nod.at>
11 lines
186 B
C
11 lines
186 B
C
#include <linux/mm.h>
|
|
#include <asm/elf.h>
|
|
|
|
const char *arch_vma_name(struct vm_area_struct *vma)
|
|
{
|
|
if (vma->vm_mm && vma->vm_start == um_vdso_addr)
|
|
return "[vdso]";
|
|
|
|
return NULL;
|
|
}
|