drivers/scsi/device_handler/scsi_dh_emc.c
Source file repositories/reference/linux-study-clean/drivers/scsi/device_handler/scsi_dh_emc.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/scsi/device_handler/scsi_dh_emc.c- Extension
.c- Size
- 13711 bytes
- Lines
- 549
- Domain
- Driver Families
- Bucket
- drivers/scsi
- 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.
- 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/module.hscsi/scsi.hscsi/scsi_eh.hscsi/scsi_dh.hscsi/scsi_device.h
Detected Declarations
struct clariion_dh_datafunction trespass_endiofunction parse_sp_info_replyfunction parse_sp_modelfunction send_trespass_cmdfunction clariion_check_sensefunction clariion_prep_fnfunction clariion_std_inquiryfunction clariion_send_inquiryfunction clariion_activatefunction clariion_set_paramsfunction clariion_bus_attachfunction clariion_bus_detachfunction clariion_initfunction clariion_exitmodule init clariion_init
Annotated Snippet
module_init(clariion_init);
module_exit(clariion_exit);
MODULE_DESCRIPTION("EMC CX/AX/FC-family driver");
MODULE_AUTHOR("Mike Christie <michaelc@cs.wisc.edu>, Chandra Seetharaman <sekharan@us.ibm.com>");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/slab.h`, `linux/module.h`, `scsi/scsi.h`, `scsi/scsi_eh.h`, `scsi/scsi_dh.h`, `scsi/scsi_device.h`.
- Detected declarations: `struct clariion_dh_data`, `function trespass_endio`, `function parse_sp_info_reply`, `function parse_sp_model`, `function send_trespass_cmd`, `function clariion_check_sense`, `function clariion_prep_fn`, `function clariion_std_inquiry`, `function clariion_send_inquiry`, `function clariion_activate`.
- Atlas domain: Driver Families / drivers/scsi.
- 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.