arch/sparc/kernel/sparc_ksyms.c
Source file repositories/reference/linux-study-clean/arch/sparc/kernel/sparc_ksyms.c
File Facts
- System
- Linux kernel
- Corpus path
arch/sparc/kernel/sparc_ksyms.c- Extension
.c- Size
- 331 bytes
- Lines
- 13
- Domain
- Architecture Layer
- Bucket
- arch/sparc
- 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/init.hlinux/export.h
Detected Declarations
export saved_command_line
Annotated Snippet
#include <linux/init.h>
#include <linux/export.h>
/* This is needed only for drivers/sbus/char/openprom.c */
EXPORT_SYMBOL(saved_command_line);
Annotation
- Immediate include surface: `linux/init.h`, `linux/export.h`.
- Detected declarations: `export saved_command_line`.
- Atlas domain: Architecture Layer / arch/sparc.
- 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.