Sign in
gem5
/
arm
/
linux
/
3fefc31843cfe2b5f072efe11ed9ccaf6a7a5092
/
.
/
arch
/
x86
/
um
/
mem_64.c
blob: c027e93d1002d2f32a5a0575dbf364763a81cec8 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#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
;
}