https://github.com/torvalds/linux
Raw File
Tip revision: 4cece764965020c22cff7665b18a012006359095 authored by Linus Torvalds on 24 March 2024, 21:10:05 UTC
Linux 6.9-rc1
Tip revision: 4cece76
pgtable.h
#ifndef BOOT_COMPRESSED_PAGETABLE_H
#define BOOT_COMPRESSED_PAGETABLE_H

#define TRAMPOLINE_32BIT_SIZE		(2 * PAGE_SIZE)

#define TRAMPOLINE_32BIT_CODE_OFFSET	PAGE_SIZE
#define TRAMPOLINE_32BIT_CODE_SIZE	0xA0

#ifndef __ASSEMBLER__

extern unsigned long *trampoline_32bit;

extern void trampoline_32bit_src(void *trampoline, bool enable_5lvl);

extern const u16 trampoline_ljmp_imm_offset;

#endif /* __ASSEMBLER__ */
#endif /* BOOT_COMPRESSED_PAGETABLE_H */
back to top