drivers/infiniband/hw/hfi1/fault.h
Source file repositories/reference/linux-study-clean/drivers/infiniband/hw/hfi1/fault.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/infiniband/hw/hfi1/fault.h- Extension
.h- Size
- 1518 bytes
- Lines
- 70
- Domain
- Driver Families
- Bucket
- drivers/infiniband
- 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.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/fault-inject.hlinux/dcache.hlinux/bitops.hlinux/kernel.hrdma/rdma_vt.hhfi.h
Detected Declarations
struct hfi1_ibdevstruct faultfunction hfi1_fault_init_debugfsfunction hfi1_dbg_should_fault_rxfunction hfi1_dbg_should_fault_txfunction hfi1_dbg_fault_suppress_errfunction hfi1_fault_exit_debugfs
Annotated Snippet
struct fault {
struct fault_attr attr;
struct dentry *dir;
u64 n_rxfaults[(1U << BITS_PER_BYTE)];
u64 n_txfaults[(1U << BITS_PER_BYTE)];
u64 fault_skip;
u64 skip;
u64 fault_skip_usec;
unsigned long skip_usec;
unsigned long opcodes[(1U << BITS_PER_BYTE) / BITS_PER_LONG];
bool enable;
bool suppress_err;
bool opcode;
u8 direction;
};
int hfi1_fault_init_debugfs(struct hfi1_ibdev *ibd);
bool hfi1_dbg_should_fault_tx(struct rvt_qp *qp, u32 opcode);
bool hfi1_dbg_should_fault_rx(struct hfi1_packet *packet);
bool hfi1_dbg_fault_suppress_err(struct hfi1_ibdev *ibd);
void hfi1_fault_exit_debugfs(struct hfi1_ibdev *ibd);
#else
static inline int hfi1_fault_init_debugfs(struct hfi1_ibdev *ibd)
{
return 0;
}
static inline bool hfi1_dbg_should_fault_rx(struct hfi1_packet *packet)
{
return false;
}
static inline bool hfi1_dbg_should_fault_tx(struct rvt_qp *qp,
u32 opcode)
{
return false;
}
static inline bool hfi1_dbg_fault_suppress_err(struct hfi1_ibdev *ibd)
{
return false;
}
static inline void hfi1_fault_exit_debugfs(struct hfi1_ibdev *ibd)
{
}
#endif
#endif /* _HFI1_FAULT_H */
Annotation
- Immediate include surface: `linux/fault-inject.h`, `linux/dcache.h`, `linux/bitops.h`, `linux/kernel.h`, `rdma/rdma_vt.h`, `hfi.h`.
- Detected declarations: `struct hfi1_ibdev`, `struct fault`, `function hfi1_fault_init_debugfs`, `function hfi1_dbg_should_fault_rx`, `function hfi1_dbg_should_fault_tx`, `function hfi1_dbg_fault_suppress_err`, `function hfi1_fault_exit_debugfs`.
- Atlas domain: Driver Families / drivers/infiniband.
- Implementation status: source 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.