ARM: dma-api: fix max_pfn off-by-one error in __dma_supported()
[linux/fpc-iii.git] / arch / x86 / um / mem_32.c
blob19c5dbd46770bf9db115b447014c672fc4aee244
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2011 Richard Weinberger <richrd@nod.at>
4 */
6 #include <linux/mm.h>
7 #include <asm/elf.h>
9 static struct vm_area_struct gate_vma;
11 static int __init gate_vma_init(void)
13 if (!FIXADDR_USER_START)
14 return 0;
16 vma_init(&gate_vma, NULL);
17 gate_vma.vm_start = FIXADDR_USER_START;
18 gate_vma.vm_end = FIXADDR_USER_END;
19 gate_vma.vm_flags = VM_READ | VM_MAYREAD | VM_EXEC | VM_MAYEXEC;
20 gate_vma.vm_page_prot = __P101;
22 return 0;
24 __initcall(gate_vma_init);
26 struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
28 return FIXADDR_USER_START ? &gate_vma : NULL;
31 int in_gate_area_no_mm(unsigned long addr)
33 if (!FIXADDR_USER_START)
34 return 0;
36 if ((addr >= FIXADDR_USER_START) && (addr < FIXADDR_USER_END))
37 return 1;
39 return 0;
42 int in_gate_area(struct mm_struct *mm, unsigned long addr)
44 struct vm_area_struct *vma = get_gate_vma(mm);
46 if (!vma)
47 return 0;
49 return (addr >= vma->vm_start) && (addr < vma->vm_end);