include/linux/intel_dg_nvm_aux.h
Source file repositories/reference/linux-study-clean/include/linux/intel_dg_nvm_aux.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/intel_dg_nvm_aux.h- Extension
.h- Size
- 736 bytes
- Lines
- 33
- Domain
- Core OS
- Bucket
- Core Kernel Interface
- Inferred role
- Core OS: implementation source
- Status
- source implementation candidate
Why This File Exists
Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/auxiliary_bus.hlinux/container_of.hlinux/ioport.hlinux/types.h
Detected Declarations
struct intel_dg_nvm_regionstruct intel_dg_nvm_dev
Annotated Snippet
struct intel_dg_nvm_region {
const char *name;
};
struct intel_dg_nvm_dev {
struct auxiliary_device aux_dev;
bool writable_override;
bool non_posted_erase;
struct resource bar;
struct resource bar2;
const struct intel_dg_nvm_region *regions;
};
#define auxiliary_dev_to_intel_dg_nvm_dev(auxiliary_dev) \
container_of(auxiliary_dev, struct intel_dg_nvm_dev, aux_dev)
#endif /* __INTEL_DG_NVM_AUX_H__ */
Annotation
- Immediate include surface: `linux/auxiliary_bus.h`, `linux/container_of.h`, `linux/ioport.h`, `linux/types.h`.
- Detected declarations: `struct intel_dg_nvm_region`, `struct intel_dg_nvm_dev`.
- Atlas domain: Core OS / Core Kernel Interface.
- 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.