arch/powerpc/include/asm/io_event_irq.h
Source file repositories/reference/linux-study-clean/arch/powerpc/include/asm/io_event_irq.h
File Facts
- System
- Linux kernel
- Corpus path
arch/powerpc/include/asm/io_event_irq.h- Extension
.h- Size
- 1746 bytes
- Lines
- 51
- Domain
- Architecture Layer
- Bucket
- arch/powerpc
- Inferred role
- Architecture Layer: implementation source
- Status
- source implementation candidate
Why This File Exists
CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/types.hlinux/notifier.h
Detected Declarations
struct pseries_io_event
Annotated Snippet
struct pseries_io_event {
uint8_t event_type; /* 0x00 IO-Event Type */
uint8_t rpc_data_len; /* 0x01 RPC data length */
uint8_t scope; /* 0x02 Error/Event Scope */
uint8_t event_subtype; /* 0x03 I/O-Event Sub-Type */
uint32_t drc_index; /* 0x04 DRC Index */
uint8_t rpc_data[PSERIES_IOEI_RPC_MAX_LEN];
/* 0x08 RPC Data (0-216 bytes, */
/* padded to 4 bytes alignment) */
};
extern struct atomic_notifier_head pseries_ioei_notifier_list;
#endif /* _ASM_POWERPC_IO_EVENT_IRQ_H */
Annotation
- Immediate include surface: `linux/types.h`, `linux/notifier.h`.
- Detected declarations: `struct pseries_io_event`.
- Atlas domain: Architecture Layer / arch/powerpc.
- Implementation status: source 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.