arch/xtensa/include/asm/mmu.h

Source file repositories/reference/linux-study-clean/arch/xtensa/include/asm/mmu.h

File Facts

System
Linux kernel
Corpus path
arch/xtensa/include/asm/mmu.h
Extension
.h
Size
462 bytes
Lines
23
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

#ifndef _XTENSA_MMU_H
#define _XTENSA_MMU_H

#ifndef CONFIG_MMU
#include <asm-generic/mmu.h>
#else

typedef struct {
	unsigned long asid[NR_CPUS];
	unsigned int cpu;
} mm_context_t;

#endif /* CONFIG_MMU */
#endif	/* _XTENSA_MMU_H */

Annotation

Implementation Notes