Kyle Swenson | 8d8f654 | 2021-03-15 11:02:55 -0600 | [diff] [blame^] | 1 | #include <linux/mm.h> |
2 | #include <asm/elf.h> | ||||
3 | |||||
4 | const char *arch_vma_name(struct vm_area_struct *vma) | ||||
5 | { | ||||
6 | if (vma->vm_mm && vma->vm_start == um_vdso_addr) | ||||
7 | return "[vdso]"; | ||||
8 | |||||
9 | return NULL; | ||||
10 | } |