arch/x86/include/asm/page_32.h
Source file repositories/reference/linux-study-clean/arch/x86/include/asm/page_32.h
File Facts
- System
- Linux kernel
- Corpus path
arch/x86/include/asm/page_32.h- Extension
.h- Size
- 829 bytes
- Lines
- 38
- Domain
- Architecture Layer
- Bucket
- arch/x86
- 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.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
Dependency Surface
asm/page_32_types.hlinux/string.h
Detected Declarations
function clear_pagefunction copy_page
Annotated Snippet
#ifndef _ASM_X86_PAGE_32_H
#define _ASM_X86_PAGE_32_H
#include <asm/page_32_types.h>
#ifndef __ASSEMBLER__
#define __phys_addr_nodebug(x) ((x) - PAGE_OFFSET)
#ifdef CONFIG_DEBUG_VIRTUAL
extern unsigned long __phys_addr(unsigned long);
#else
#define __phys_addr(x) __phys_addr_nodebug(x)
#endif
#define __phys_addr_symbol(x) __phys_addr(x)
#define __phys_reloc_hide(x) RELOC_HIDE((x), 0)
#include <linux/string.h>
/**
* clear_page() - clear a page using a kernel virtual address.
* @page: address of kernel page
*
* Does absolutely no exception handling.
*/
static inline void clear_page(void *page)
{
memset(page, 0, PAGE_SIZE);
}
static inline void copy_page(void *to, void *from)
{
memcpy(to, from, PAGE_SIZE);
}
#endif /* !__ASSEMBLER__ */
#endif /* _ASM_X86_PAGE_32_H */
Annotation
- Immediate include surface: `asm/page_32_types.h`, `linux/string.h`.
- Detected declarations: `function clear_page`, `function copy_page`.
- Atlas domain: Architecture Layer / arch/x86.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.