Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[linux-2.6-block.git] / arch / x86 / um / mem_64.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
37185b33 2#include <linux/mm.h>
27795673 3#include <asm/elf.h>
fc9a0018
RW
4
5const char *arch_vma_name(struct vm_area_struct *vma)
6{
7 if (vma->vm_mm && vma->vm_start == um_vdso_addr)
8 return "[vdso]";
9
10 return NULL;
11}