drivers/net/ethernet/intel/ice/ice_xsk.h
Source file repositories/reference/linux-study-clean/drivers/net/ethernet/intel/ice/ice_xsk.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/ethernet/intel/ice/ice_xsk.h- Extension
.h- Size
- 3053 bytes
- Lines
- 102
- Domain
- Driver Families
- Bucket
- drivers/net
- Inferred role
- Driver Families: implementation source
- Status
- source 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.
- Touches IRQ or DMA behavior; this matters for the representative real-device path.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
ice_txrx.h
Detected Declarations
struct ice_vsifunction ice_xmit_zcfunction ice_xsk_pool_setupfunction ice_clean_rx_irq_zcfunction ice_alloc_rx_bufs_zcfunction ice_xsk_any_rx_ring_enafunction ice_xsk_wakeupfunction ice_xsk_clean_rx_ringfunction ice_qvec_cfg_msix
Annotated Snippet
static inline void ice_xsk_clean_rx_ring(struct ice_rx_ring *rx_ring) { }
static inline void ice_xsk_clean_xdp_ring(struct ice_tx_ring *xdp_ring) { }
static inline int
ice_realloc_rx_xdp_bufs(struct ice_rx_ring *rx_ring,
bool __always_unused pool_present)
{
return 0;
}
static inline void
ice_qvec_cfg_msix(struct ice_vsi *vsi, struct ice_q_vector *q_vector,
u16 qid) { }
static inline void
ice_qvec_toggle_napi(struct ice_vsi *vsi, struct ice_q_vector *q_vector,
bool enable) { }
static inline void
ice_qvec_ena_irq(struct ice_vsi *vsi, struct ice_q_vector *q_vector) { }
static inline void
ice_qvec_dis_irq(struct ice_vsi *vsi, struct ice_rx_ring *rx_ring,
struct ice_q_vector *q_vector) { }
#endif /* CONFIG_XDP_SOCKETS */
#endif /* !_ICE_XSK_H_ */
Annotation
- Immediate include surface: `ice_txrx.h`.
- Detected declarations: `struct ice_vsi`, `function ice_xmit_zc`, `function ice_xsk_pool_setup`, `function ice_clean_rx_irq_zc`, `function ice_alloc_rx_bufs_zc`, `function ice_xsk_any_rx_ring_ena`, `function ice_xsk_wakeup`, `function ice_xsk_clean_rx_ring`, `function ice_qvec_cfg_msix`.
- Atlas domain: Driver Families / drivers/net.
- Implementation status: source implementation candidate.
- IRQ or DMA behavior appears here, which is relevant to the selected PCIe/NVMe device path.
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.