mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-07-06 00:13:38 -04:00
10 lines
186 B
C
10 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;
|
|
}
|