drivers/acpi/acpi_ipmi.c
Source file repositories/reference/linux-study-clean/drivers/acpi/acpi_ipmi.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/acpi/acpi_ipmi.c- Extension
.c- Size
- 17348 bytes
- Lines
- 666
- 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/ipmi.hlinux/spinlock.h
Detected Declarations
struct acpi_ipmi_devicestruct ipmi_driver_datastruct acpi_ipmi_msgstruct acpi_ipmi_bufferfunction ipmi_dev_allocfunction ipmi_dev_releasefunction ipmi_dev_release_kreffunction __ipmi_dev_killfunction acpi_ipmi_dev_putfunction ipmi_msg_releasefunction ipmi_msg_release_kreffunction acpi_ipmi_msg_putfunction acpi_format_ipmi_requestfunction acpi_format_ipmi_responsefunction ipmi_flush_tx_msgfunction ipmi_cancel_tx_msgfunction ipmi_msg_handlerfunction ipmi_register_bmcfunction ipmi_bmc_gonefunction acpi_ipmi_space_handlerfunction acpi_wait_for_acpi_ipmifunction acpi_ipmi_initfunction acpi_ipmi_exitmodule init acpi_ipmi_initexport acpi_wait_for_acpi_ipmi
Annotated Snippet
module_init(acpi_ipmi_init);
module_exit(acpi_ipmi_exit);
Annotation
- Immediate include surface: `linux/module.h`, `linux/acpi.h`, `linux/ipmi.h`, `linux/spinlock.h`.
- Detected declarations: `struct acpi_ipmi_device`, `struct ipmi_driver_data`, `struct acpi_ipmi_msg`, `struct acpi_ipmi_buffer`, `function ipmi_dev_alloc`, `function ipmi_dev_release`, `function ipmi_dev_release_kref`, `function __ipmi_dev_kill`, `function acpi_ipmi_dev_put`, `function ipmi_msg_release`.
- 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.