drivers/firewire/core-transaction.c
Source file repositories/reference/linux-study-clean/drivers/firewire/core-transaction.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/firewire/core-transaction.c- Extension
.c- Size
- 45624 bytes
- Lines
- 1509
- Domain
- Driver Families
- Bucket
- drivers/firewire
- 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/bug.hlinux/completion.hlinux/device.hlinux/errno.hlinux/firewire.hlinux/firewire-constants.hlinux/fs.hlinux/init.hlinux/jiffies.hlinux/kernel.hlinux/list.hlinux/module.hlinux/rculist.hlinux/slab.hlinux/spinlock.hlinux/string.hlinux/timer.hlinux/types.hlinux/workqueue.hasm/byteorder.hcore.hpacket-header-definitions.hphy-packet-definitions.htrace/events/firewire.h
Detected Declarations
struct transaction_callback_datastruct fw_requestfunction Copyrightfunction remove_transaction_entryfunction fw_cancel_pending_transactionsfunction list_for_each_entry_safefunction list_for_each_entry_safefunction close_transactionfunction pendingfunction split_transaction_timeout_callbackfunction scoped_guardfunction start_split_transaction_timeoutfunction transmit_complete_callbackfunction scoped_guardfunction fw_fill_requestfunction allocate_tlabelfunction __fw_send_requestfunction transaction_callbackfunction fw_run_transactionfunction transmit_phy_packet_callbackfunction fw_send_phy_configfunction list_for_each_entry_rcufunction is_enclosing_handlerfunction list_for_each_entry_rcufunction complete_address_handlerfunction get_address_handlerfunction put_address_handlerfunction fw_core_add_address_handlerfunction fw_core_remove_address_handlerfunction fw_request_getfunction release_requestfunction fw_request_putfunction free_response_callbackfunction fw_get_response_lengthfunction fw_fill_responsefunction compute_split_timeout_timestampfunction fw_send_responsefunction HEADER_DESTINATION_IS_BROADCASTfunction fw_get_request_speedfunction fw_request_get_timestampfunction handle_exclusive_region_requestfunction scoped_guardfunction handle_fcp_region_requestfunction list_for_each_entry_rcufunction fw_core_handle_requestfunction fw_core_handle_responsefunction handle_topology_mapfunction update_split_timeout
Annotated Snippet
module_init(fw_core_init);
module_exit(fw_core_cleanup);
Annotation
- Immediate include surface: `linux/bug.h`, `linux/completion.h`, `linux/device.h`, `linux/errno.h`, `linux/firewire.h`, `linux/firewire-constants.h`, `linux/fs.h`, `linux/init.h`.
- Detected declarations: `struct transaction_callback_data`, `struct fw_request`, `function Copyright`, `function remove_transaction_entry`, `function fw_cancel_pending_transactions`, `function list_for_each_entry_safe`, `function list_for_each_entry_safe`, `function close_transaction`, `function pending`, `function split_transaction_timeout_callback`.
- Atlas domain: Driver Families / drivers/firewire.
- 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.