Symbol: __kaslr_offset
arch/mips/include/asm/page.h
218
extern unsigned long __kaslr_offset;
arch/mips/include/asm/page.h
221
return __kaslr_offset;
arch/mips/kernel/relocate.c
442
update_kaslr_offset(&__kaslr_offset, offset);
arch/mips/kernel/relocate.c
453
if (__kaslr_offset > 0) {
arch/mips/kernel/relocate.c
455
pr_cont("Kernel relocated by 0x%p\n", (void *)__kaslr_offset);
arch/mips/kernel/setup.c
87
unsigned long __kaslr_offset __ro_after_init;
arch/mips/kernel/setup.c
88
EXPORT_SYMBOL(__kaslr_offset);
arch/s390/boot/boot.h
127
#define __kernel_va(x) ((void *)((unsigned long)(x) - __kaslr_offset_phys + __kaslr_offset))
arch/s390/boot/boot.h
128
#define __kernel_pa(x) ((unsigned long)(x) - __kaslr_offset + __kaslr_offset_phys)
arch/s390/boot/pgm_check.c
73
boot_emerg("Kernel random base: %lx\n", __kaslr_offset);
arch/s390/boot/startup.c
394
__kaslr_offset = kernel_start;
arch/s390/boot/startup.c
395
boot_debug("__kaslr_offset: 0x%016lx\n", __kaslr_offset);
arch/s390/boot/startup.c
562
kaslr_large_page_offset = __kaslr_offset & ~_SEGMENT_MASK;
arch/s390/boot/startup.c
625
__kaslr_offset, __kaslr_offset_phys);
arch/s390/boot/startup.c
626
kaslr_adjust_got(__kaslr_offset);
arch/s390/boot/startup.c
627
setup_vmem(__kaslr_offset, __kaslr_offset + kernel_size, asce_limit);
arch/s390/boot/startup.c
644
psw.addr = __kaslr_offset + vmlinux.entry;
arch/s390/include/asm/page.h
208
return __kaslr_offset;
arch/s390/include/asm/page.h
233
if (x < __kaslr_offset)
arch/s390/include/asm/page.h
235
return x - __kaslr_offset + __kaslr_offset_phys;