fs/ubifs/dir.c

Source file repositories/reference/linux-study-clean/fs/ubifs/dir.c

File Facts

System
Linux kernel
Corpus path
fs/ubifs/dir.c
Extension
.c
Size
46622 bytes
Lines
1773
Domain
Core OS
Bucket
VFS And Filesystem Core
Inferred role
Core OS: operation-table or driver-model contract
Status
pattern implementation candidate

Why This File Exists

Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.

Dependency Surface

Detected Declarations

Annotated Snippet

const struct file_operations ubifs_dir_operations = {
	.open		= ubifs_dir_open,
	.llseek         = ubifs_dir_llseek,
	.release        = ubifs_dir_release,
	.read           = generic_read_dir,
	.iterate_shared = ubifs_readdir,
	.fsync          = ubifs_fsync,
	.unlocked_ioctl = ubifs_ioctl,
#ifdef CONFIG_COMPAT
	.compat_ioctl   = ubifs_compat_ioctl,
#endif
};

Annotation

Implementation Notes