Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv12627/include
Modified Files:
layout.h
Log Message:
Updates & fixes.
Index: layout.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/layout.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -U2 -r1.2 -r1.3
--- layout.h 2001/06/01 02:07:24 1.2
+++ layout.h 2001/06/01 19:04:08 1.3
@@ -664,8 +664,8 @@
last access times updates can be
disabled altogether for speed. */
-/* 30*/ FILE_ATTR_FLAGS file_attributes; /* Flags describing the file. */
-/* 34*/ union {
+/* 32*/ FILE_ATTR_FLAGS file_attributes; /* Flags describing the file. */
+/* 36*/ union {
/* NTFS 1.2 (and previous, presumably) */
-/* 34 */ __u8 reserved12[14]; /* Reserved/alignment to 8-byte
+/* 36 */ __u8 reserved12[12]; /* Reserved/alignment to 8-byte
boundary. */
/* sizeof() = 48 bytes */
@@ -691,21 +691,21 @@
* attributes.
*/
- /* 34*/ __u32 maximum_versions; /* Maximum allowed versions for
+ /* 36*/ __u32 maximum_versions; /* Maximum allowed versions for
file. Zero if version numbering is disabled. */
- /* 38*/ __u32 version_number; /* This file's version (if any).
+ /* 40*/ __u32 version_number; /* This file's version (if any).
Set to zero if maximum_versions is zero. */
- /* 42*/ __u32 class_id; /* Class id from bidirectional
+ /* 44*/ __u32 class_id; /* Class id from bidirectional
class id index (?). */
- /* 46*/ __u32 owner_id; /* Owner_id of the user owning
+ /* 48*/ __u32 owner_id; /* Owner_id of the user owning
the file. Translate via $Q index in FILE_$Extend
/$Quota to the quota control entry for the user
owning the file. Zero if quotas are disabled. */
- /* 50*/ __u32 security_id; /* Security_id for the file.
+ /* 52*/ __u32 security_id; /* Security_id for the file.
Translate via $SII index and $SDS data stream
in FILE_$Secure to the security descriptor. */
- /* 54*/ __u64 quota_charged; /* Byte size of the charge to
+ /* 56*/ __u64 quota_charged; /* Byte size of the charge to
the quota for all streams of the file. Note: Is
zero if quotas are disabled. */
- /* 62*/ __u64 usn; /* Last update sequence number
+ /* 64*/ __u64 usn; /* Last update sequence number
of the file. This is a direct index into the
change (aka usn) journal file. It is zero if
@@ -721,5 +721,4 @@
journal is a very fast process, so the user
won't even notice it. */
- /* 70*/ __u16 reserved30; /* Align to 8-byte boundary. */
};
};
|