swh:1:snp:77163734605b0ec556b01d897b7bb4a7e30d46b6
Raw File
Tip revision: 7928b2cbe55b2a410a0f5c1f154610059c57b1b2 authored by Linus Torvalds on 11 February 2018, 23:04:29 UTC
Linux 4.16-rc1
Tip revision: 7928b2c
mem_64.c
// 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;
}
back to top