mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 08:40:53 +07: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;
|
|
}
|