arch/arm/kernel/atags_proc.c
Source file repositories/reference/linux-study-clean/arch/arm/kernel/atags_proc.c
File Facts
- System
- Linux kernel
- Corpus path
arch/arm/kernel/atags_proc.c- Extension
.c- Size
- 1626 bytes
- Lines
- 77
- Domain
- Architecture Layer
- Bucket
- arch/arm
- 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.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/slab.hlinux/proc_fs.hasm/setup.hasm/types.hasm/page.h
Detected Declarations
struct bufferfunction atags_readfunction save_atagsfunction init_atags_procfs
Annotated Snippet
struct buffer {
size_t size;
char data[] __counted_by(size);
};
static ssize_t atags_read(struct file *file, char __user *buf,
size_t count, loff_t *ppos)
{
struct buffer *b = pde_data(file_inode(file));
return simple_read_from_buffer(buf, count, ppos, b->data, b->size);
}
static const struct proc_ops atags_proc_ops = {
.proc_read = atags_read,
.proc_lseek = default_llseek,
};
#define BOOT_PARAMS_SIZE 1536
static char __initdata atags_copy[BOOT_PARAMS_SIZE];
void __init save_atags(const struct tag *tags)
{
memcpy(atags_copy, tags, sizeof(atags_copy));
}
static int __init init_atags_procfs(void)
{
/*
* This cannot go into save_atags() because kmalloc and proc don't work
* yet when it is called.
*/
struct proc_dir_entry *tags_entry;
struct tag *tag = (struct tag *)atags_copy;
struct buffer *b;
size_t size;
if (tag->hdr.tag != ATAG_CORE) {
pr_info("No ATAGs?\n");
return -EINVAL;
}
for (; tag->hdr.size; tag = tag_next(tag))
;
/* include the terminating ATAG_NONE */
size = (char *)tag - atags_copy + sizeof(struct tag_header);
WARN_ON(tag->hdr.tag != ATAG_NONE);
b = kmalloc_flex(*b, data, size);
if (!b)
goto nomem;
b->size = size;
memcpy(b->data, atags_copy, size);
tags_entry = proc_create_data("atags", 0400, NULL, &atags_proc_ops, b);
if (!tags_entry)
goto nomem;
return 0;
nomem:
kfree(b);
pr_err("Exporting ATAGs: not enough memory\n");
return -ENOMEM;
}
arch_initcall(init_atags_procfs);
Annotation
- Immediate include surface: `linux/slab.h`, `linux/proc_fs.h`, `asm/setup.h`, `asm/types.h`, `asm/page.h`.
- Detected declarations: `struct buffer`, `function atags_read`, `function save_atags`, `function init_atags_procfs`.
- Atlas domain: Architecture Layer / arch/arm.
- 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.