Go to the documentation of this file.
24 #ifndef _LINUX_NTFS_VOLUME_H
25 #define _LINUX_NTFS_VOLUME_H
102 struct inode *mftmirr_ino;
105 struct inode *logfile_ino;
125 struct inode *quota_ino;
126 struct inode *quota_q_ino;
128 struct inode *usnjrnl_ino;
129 struct inode *usnjrnl_max_ino;
130 struct inode *usnjrnl_j_ino;
155 #define DEFINE_NVOL_BIT_OPS(flag) \
156 static inline int NVol##flag(ntfs_volume *vol) \
158 return test_bit(NV_##flag, &(vol)->flags); \
160 static inline void NVolSet##flag(ntfs_volume *vol) \
162 set_bit(NV_##flag, &(vol)->flags); \
164 static inline void NVolClear##flag(ntfs_volume *vol) \
166 clear_bit(NV_##flag, &(vol)->flags); \