Symbol: __end_of_fixed_addresses
arch/arm/include/asm/fixmap.h
39
static const enum fixed_addresses __end_of_fixed_addresses =
arch/arm/mm/mmu.c
396
BUILD_BUG_ON(__fix_to_virt(__end_of_fixed_addresses) < FIXADDR_START);
arch/arm/mm/mmu.c
397
BUG_ON(idx >= __end_of_fixed_addresses);
arch/arm64/include/asm/fixmap.h
104
#define FIXADDR_TOT_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/arm64/mm/fixmap.c
125
BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
arch/csky/include/asm/fixmap.h
24
#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/csky/mm/init.c
127
vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
arch/hexagon/include/asm/mem-layout.h
76
#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/loongarch/include/asm/fixmap.h
19
#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/loongarch/mm/init.c
183
BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
arch/microblaze/include/asm/fixmap.h
58
#define __FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/microblaze/mm/init.c
75
for (idx = 0; idx < __end_of_fixed_addresses; idx++)
arch/microblaze/mm/pgtable.c
260
if (idx >= __end_of_fixed_addresses)
arch/mips/include/asm/fixmap.h
67
#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/mips/mm/pgtable-32.c
62
vaddr = __fix_to_virt(__end_of_fixed_addresses - 1);
arch/mips/mm/pgtable-64.c
117
vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
arch/openrisc/include/asm/fixmap.h
35
#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/openrisc/mm/init.c
229
if (idx >= __end_of_fixed_addresses) {
arch/powerpc/include/asm/fixmap.h
100
else if (WARN_ON(idx >= __end_of_fixed_addresses))
arch/powerpc/include/asm/fixmap.h
81
#define __FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/powerpc/include/asm/fixmap.h
99
BUILD_BUG_ON(idx >= __end_of_fixed_addresses);
arch/riscv/mm/init.c
392
BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
arch/sh/include/asm/fixmap.h
79
#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/sh/mm/init.c
115
if (idx >= __end_of_fixed_addresses) {
arch/sh/mm/init.c
127
if (idx >= __end_of_fixed_addresses) {
arch/sh/mm/init.c
320
vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
arch/sparc/mm/srmmu.c
959
__fix_to_virt(__end_of_fixed_addresses - 1), FIXADDR_TOP);
arch/x86/include/asm/fixmap.h
152
#define FIXADDR_TOT_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/x86/kernel/head64.c
236
BUILD_BUG_ON(__fix_to_virt(__end_of_fixed_addresses) <= MODULES_END);
arch/x86/mm/init_32.c
487
vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
arch/x86/mm/ioremap.c
893
if (idx >= __end_of_fixed_addresses) {
arch/x86/mm/pgtable.c
577
if (idx >= __end_of_fixed_addresses) {
arch/xtensa/include/asm/fixmap.h
30
#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
arch/xtensa/mm/mmu.c
58
init_pmd(FIXADDR_START, __end_of_fixed_addresses);
drivers/acpi/apei/ghes.c
100
#define FIX_APEI_GHES_SDEI_CRITICAL __end_of_fixed_addresses
drivers/acpi/apei/ghes.c
99
#define FIX_APEI_GHES_SDEI_NORMAL __end_of_fixed_addresses
include/asm-generic/fixmap.h
32
BUILD_BUG_ON(idx >= __end_of_fixed_addresses);