explain rm's elements in ntfs_inode, ntfs_volume

edge.strict_endians
flatcap 2005-10-26 20:45:58 +00:00
parent 0dc3b0597c
commit c27c1a40cb
2 changed files with 6 additions and 4 deletions

View File

@ -138,7 +138,8 @@ struct _ntfs_inode {
inode of the base mft record. */ inode of the base mft record. */
}; };
void *private_data; /* Temp: for directory handling */ /* Temp: for directory handling */
void *private_data; /* ntfs_dt containing this inode */
int ref_count; int ref_count;
/* Below 2 fields needed to update indexes. They valid if != -1. */ /* Below 2 fields needed to update indexes. They valid if != -1. */

View File

@ -184,9 +184,10 @@ struct _ntfs_volume {
s32 attrdef_len; /* Size of the attribute definition table in s32 attrdef_len; /* Size of the attribute definition table in
bytes. */ bytes. */
void *private_data; /* Temp: for directory handling */ /* Temp: for directory handling */
void *private_bmp1; void *private_data; /* ntfs_dir for . */
void *private_bmp2; void *private_bmp1; /* ntfs_bmp for $MFT/$BITMAP */
void *private_bmp2; /* ntfs_bmp for $Bitmap */
}; };
extern ntfs_volume *ntfs_volume_alloc(void); extern ntfs_volume *ntfs_volume_alloc(void);