include/linux/mtd/gen_probe.h
Source file repositories/reference/linux-study-clean/include/linux/mtd/gen_probe.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/mtd/gen_probe.h- Extension
.h- Size
- 615 bytes
- Lines
- 24
- 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/mtd/flashchip.hlinux/mtd/map.hlinux/mtd/cfi.hlinux/bitops.h
Detected Declarations
struct chip_probe
Annotated Snippet
struct chip_probe {
char *name;
int (*probe_chip)(struct map_info *map, __u32 base,
unsigned long *chip_map, struct cfi_private *cfi);
};
struct mtd_info *mtd_do_chip_probe(struct map_info *map, struct chip_probe *cp);
#endif /* __LINUX_MTD_GEN_PROBE_H__ */
Annotation
- Immediate include surface: `linux/mtd/flashchip.h`, `linux/mtd/map.h`, `linux/mtd/cfi.h`, `linux/bitops.h`.
- Detected declarations: `struct chip_probe`.
- 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.