arch/xtensa/mm/highmem.c

Source file repositories/reference/linux-study-clean/arch/xtensa/mm/highmem.c

File Facts

System
Linux kernel
Corpus path
arch/xtensa/mm/highmem.c
Extension
.c
Size
1480 bytes
Lines
60
Domain
Architecture Layer
Bucket
arch/xtensa
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

static inline void kmap_waitqueues_init(void) { }
#endif

void __init kmap_init(void)
{
	/* Check if this memory layout is broken because PKMAP overlaps
	 * page table.
	 */
	BUILD_BUG_ON(PKMAP_BASE < TLBTEMP_BASE_1 + TLBTEMP_SIZE);
	kmap_waitqueues_init();
}

Annotation

Implementation Notes