Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #include <linux/mm.h>
0003 #include <asm/elf.h>
0004 
0005 const char *arch_vma_name(struct vm_area_struct *vma)
0006 {
0007     if (vma->vm_mm && vma->vm_start == um_vdso_addr)
0008         return "[vdso]";
0009 
0010     return NULL;
0011 }