Changes by: cha0smaster
Update of /cvsroot/linux-ntfs/ntfsprogs/include/ntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5109/include/ntfs
Modified Files:
inode.h
Log Message:
comment ni->{allocated,data}_size
Index: inode.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/inode.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -p -r1.23 -r1.24
--- inode.h 17 Nov 2005 18:00:58 -0000 1.23
+++ inode.h 23 Feb 2006 22:54:55 -0000 1.24
@@ -134,8 +134,13 @@ struct _ntfs_inode {
int ref_count;
/* Below fields are valid only for base inode. */
- s64 data_size;
- s64 allocated_size;
+ s64 data_size; /* Data size stored in the filename index. */
+ s64 allocated_size; /* Allocated size stored in the filename
+ index. (NOTE: Equal to allocated size of
+ the unnamed data attribute for normal or
+ encrypted files and to compressed size
+ of the unnamed data attribute for sparse or
+ compressed files.) */
time_t creation_time;
time_t last_data_change_time;
|