mem_64.c 222 B

1234567891011
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/mm.h>
  3. #include <asm/elf.h>
  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. return NULL;
  9. }