2012-10-08 10:27:32 +08:00
|
|
|
#include <linux/mm.h>
|
2015-05-12 06:07:07 +08:00
|
|
|
#include <asm/elf.h>
|
2011-07-26 08:12:54 +08:00
|
|
|
|
|
|
|
const char *arch_vma_name(struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
if (vma->vm_mm && vma->vm_start == um_vdso_addr)
|
|
|
|
return "[vdso]";
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|