arch/arm/mm/proc-syms.c
Source file repositories/reference/linux-study-clean/arch/arm/mm/proc-syms.c
File Facts
- System
- Linux kernel
- Corpus path
arch/arm/mm/proc-syms.c- Extension
.c- Size
- 1084 bytes
- Lines
- 51
- Domain
- Architecture Layer
- Bucket
- arch/arm
- Inferred role
- Architecture Layer: exported/initcall integration point
- Status
- integration 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.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
Dependency Surface
linux/module.hlinux/mm.hasm/cacheflush.hasm/proc-fns.hasm/tlbflush.hasm/page.h
Detected Declarations
export cpu_dcache_clean_areaexport cpu_set_pte_extexport processorexport __cpuc_flush_kern_allexport __cpuc_flush_user_allexport __cpuc_flush_user_rangeexport __cpuc_coherent_kern_rangeexport __cpuc_flush_dcache_areaexport cpu_cacheexport __cpu_clear_user_highpageexport __cpu_copy_user_highpageexport cpu_userexport cpu_tlb
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* linux/arch/arm/mm/proc-syms.c
*
* Copyright (C) 2000-2002 Russell King
*/
#include <linux/module.h>
#include <linux/mm.h>
#include <asm/cacheflush.h>
#include <asm/proc-fns.h>
#include <asm/tlbflush.h>
#include <asm/page.h>
#ifndef MULTI_CPU
EXPORT_SYMBOL(cpu_dcache_clean_area);
#ifdef CONFIG_MMU
EXPORT_SYMBOL(cpu_set_pte_ext);
#endif
#else
EXPORT_SYMBOL(processor);
#endif
#ifndef MULTI_CACHE
EXPORT_SYMBOL(__cpuc_flush_kern_all);
EXPORT_SYMBOL(__cpuc_flush_user_all);
EXPORT_SYMBOL(__cpuc_flush_user_range);
EXPORT_SYMBOL(__cpuc_coherent_kern_range);
EXPORT_SYMBOL(__cpuc_flush_dcache_area);
#else
EXPORT_SYMBOL(cpu_cache);
#endif
#ifdef CONFIG_MMU
#ifndef MULTI_USER
EXPORT_SYMBOL(__cpu_clear_user_highpage);
EXPORT_SYMBOL(__cpu_copy_user_highpage);
#else
EXPORT_SYMBOL(cpu_user);
#endif
#endif
/*
* No module should need to touch the TLB (and currently
* no modules do. We export this for "loadkernel" support
* (booting a new kernel from within a running kernel.)
*/
#ifdef MULTI_TLB
EXPORT_SYMBOL(cpu_tlb);
#endif
Annotation
- Immediate include surface: `linux/module.h`, `linux/mm.h`, `asm/cacheflush.h`, `asm/proc-fns.h`, `asm/tlbflush.h`, `asm/page.h`.
- Detected declarations: `export cpu_dcache_clean_area`, `export cpu_set_pte_ext`, `export processor`, `export __cpuc_flush_kern_all`, `export __cpuc_flush_user_all`, `export __cpuc_flush_user_range`, `export __cpuc_coherent_kern_range`, `export __cpuc_flush_dcache_area`, `export cpu_cache`, `export __cpu_clear_user_highpage`.
- Atlas domain: Architecture Layer / arch/arm.
- Implementation status: integration 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.