fs/ntfs/dir.h

Source file repositories/reference/linux-study-clean/fs/ntfs/dir.h

File Facts

System
Linux kernel
Corpus path
fs/ntfs/dir.h
Extension
.h
Size
846 bytes
Lines
33
Domain
Core OS
Bucket
VFS And Filesystem Core
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.

Dependency Surface

Detected Declarations

Annotated Snippet

struct ntfs_name {
	u64 mref;
	u8 type;
	u8 len;
	__le16 name[];
} __packed;

/* The little endian Unicode string $I30 as a global constant. */
extern __le16 I30[5];

u64 ntfs_lookup_inode_by_name(struct ntfs_inode *dir_ni,
		const __le16 *uname, const int uname_len, struct ntfs_name **res);
int ntfs_check_empty_dir(struct ntfs_inode *ni, struct mft_record *ni_mrec);

#endif /* _LINUX_NTFS_FS_DIR_H */

Annotation

Implementation Notes