drivers/acpi/acpi_extlog.c
Source file repositories/reference/linux-study-clean/drivers/acpi/acpi_extlog.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/acpi/acpi_extlog.c- Extension
.c- Size
- 10708 bytes
- Lines
- 407
- Domain
- Driver Families
- Bucket
- drivers/acpi
- Inferred role
- Driver Families: exported/initcall integration point
- Status
- integration implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- 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/module.hlinux/acpi.hlinux/cper.hlinux/ratelimit.hlinux/edac.hlinux/ras.hcxl/event.hacpi/ghes.hasm/cpu.hasm/mce.hasm/msr.hapei/apei-internal.hras/ras_event.h
Detected Declarations
struct extlog_l1_headfunction __print_extlog_rcdfunction print_extlog_rcdfunction extlog_print_pciefunction extlog_cxl_cper_handle_prot_errfunction extlog_printfunction extlog_get_l1addrfunction extlog_initfunction extlog_exitmodule init extlog_init
Annotated Snippet
module_init(extlog_init);
module_exit(extlog_exit);
MODULE_AUTHOR("Chen, Gong <gong.chen@intel.com>");
MODULE_DESCRIPTION("Extended MCA Error Log Driver");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/module.h`, `linux/acpi.h`, `linux/cper.h`, `linux/ratelimit.h`, `linux/edac.h`, `linux/ras.h`, `cxl/event.h`, `acpi/ghes.h`.
- Detected declarations: `struct extlog_l1_head`, `function __print_extlog_rcd`, `function print_extlog_rcd`, `function extlog_print_pcie`, `function extlog_cxl_cper_handle_prot_err`, `function extlog_print`, `function extlog_get_l1addr`, `function extlog_init`, `function extlog_exit`, `module init extlog_init`.
- Atlas domain: Driver Families / drivers/acpi.
- Implementation status: integration implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
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.