diff options
Diffstat (limited to 'arch/x86/um/mem_64.c')
-rw-r--r-- | arch/x86/um/mem_64.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86/um/mem_64.c b/arch/x86/um/mem_64.c new file mode 100644 index 000000000..c027e93d1 --- /dev/null +++ b/arch/x86/um/mem_64.c @@ -0,0 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0 +#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; +} |