Release 4.14 arch/x86/um/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;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Richard Weinberger | 30 | 100.00% | 1 | 100.00% |
Total | 30 | 100.00% | 1 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Richard Weinberger | 35 | 94.59% | 2 | 50.00% |
Al Viro | 1 | 2.70% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 2.70% | 1 | 25.00% |
Total | 37 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.