patch-2.4.4 linux/include/linux/ntfs_fs_i.h

Next file: linux/include/linux/ntfs_fs_sb.h
Previous file: linux/include/linux/nfs_fs.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.4.3/linux/include/linux/ntfs_fs_i.h linux/include/linux/ntfs_fs_i.h
@@ -60,24 +60,23 @@
 typedef unsigned int ntfs_cluster_t;
 #endif
 
-/* Definition of NTFS in-memory inode structure */
+/* Definition of the NTFS in-memory inode structure. */
 struct ntfs_inode_info{
 	unsigned long mmu_private;
 	struct ntfs_sb_info *vol;
-	int i_number;                /* should be really 48 bits */
-	unsigned sequence_number;
-	unsigned char* attr;         /* array of the attributes */
-	int attr_count;              /* size of attrs[] */
+	int i_number;                /* Should be really 48 bits. */
+	__u16 sequence_number;	     /* The current sequence number. */
+	unsigned char* attr;         /* Array of the attributes. */
+	int attr_count;              /* Size of attrs[]. */
 	struct ntfs_attribute *attrs;
-	int record_count;            /* size of records[] */
-	/* array of the record numbers of the MFT 
-	   whose attributes have been inserted in the inode */
-	int *records;
-	union{
-		struct{
+	int record_count;            /* Size of records[]. */
+	int *records; /* Array of the record numbers of the $Mft whose 
+		       * attributes have been inserted in the inode. */
+	union {
+		struct {
 			int recordsize;
 			int clusters_per_record;
-		}index;
+		} index;
 	} u;	
 };
 

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)