fs/omfs/inode.c
Source file repositories/reference/linux-study-clean/fs/omfs/inode.c
File Facts
- System
- Linux kernel
- Corpus path
fs/omfs/inode.c- Extension
.c- Size
- 15627 bytes
- Lines
- 665
- Domain
- Core OS
- Bucket
- VFS And Filesystem Core
- Inferred role
- Core OS: exported/initcall integration point
- Status
- integration 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.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/module.hlinux/sched.hlinux/slab.hlinux/fs.hlinux/vfs.hlinux/cred.hlinux/buffer_head.hlinux/vmalloc.hlinux/writeback.hlinux/seq_file.hlinux/crc-itu-t.hlinux/fs_struct.hlinux/fs_context.hlinux/fs_parser.homfs.h
Detected Declarations
struct omfs_mount_optionsfunction omfs_update_checksumsfunction __omfs_write_inodefunction omfs_write_inodefunction omfs_sync_inodefunction omfs_evict_inodefunction omfs_put_superfunction omfs_statfsfunction omfs_show_optionsfunction omfs_get_imapfunction omfs_parse_paramfunction omfs_set_optionsfunction omfs_fill_superfunction omfs_get_treefunction omfs_init_fs_contextfunction omfs_free_fcfunction init_omfs_fsfunction exit_omfs_fsmodule init init_omfs_fs
Annotated Snippet
module_init(init_omfs_fs);
module_exit(exit_omfs_fs);
Annotation
- Immediate include surface: `linux/module.h`, `linux/sched.h`, `linux/slab.h`, `linux/fs.h`, `linux/vfs.h`, `linux/cred.h`, `linux/buffer_head.h`, `linux/vmalloc.h`.
- Detected declarations: `struct omfs_mount_options`, `function omfs_update_checksums`, `function __omfs_write_inode`, `function omfs_write_inode`, `function omfs_sync_inode`, `function omfs_evict_inode`, `function omfs_put_super`, `function omfs_statfs`, `function omfs_show_options`, `function omfs_get_imap`.
- Atlas domain: Core OS / VFS And Filesystem Core.
- Implementation status: integration 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.