Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv10357
Modified Files:
mft.h
Log Message:
Few updates.
Index: mft.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/mft.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -U2 -r1.12 -r1.13
--- mft.h 2001/04/03 22:41:30 1.12
+++ mft.h 2001/04/03 23:35:52 1.13
@@ -1,3 +1,5 @@
/*
+ * $Id$
+ *
* mft.h - Exports for MFT record handling. Part of the Linux-NTFS project.
*
@@ -283,5 +285,5 @@
*
* dirty_mft_entries: Linked list of all loaded mft records which are dirty.
- * Used by the disk writter thread. When a mft_entry is
+ * Used by the disk writer thread. When a mft_entry is
* marked dirty, the entry is added to the end of this
* list. When it is flushed to disk, it is marked clean
@@ -323,4 +325,7 @@
*
* m_list: Hook for the mft_entries linked list.
+ *
+ * m_dirty_list: Hook for the dirty_mft_enties linked list. (Only valid if
+ * the dirty flag is set.)
*
* m_vol: Volume this entry and its mft record belong to.
@@ -328,5 +333,10 @@
* Future:
*
- * Add aging for mft_entries.
+ * - Reference all loaded non-resident attributes somehow. Need this for the
+ * search context work and we do need to keep them so we can have two
+ * readers at the same time. So we need to somehow specify which attribute
+ * we are talking about, possibly which mft record it is in (+ position
+ * in attribute list?) and a pointer to the attribute value itself.
+ * - Add aging for mft_entries.
*
* The ntfs_file struct (file = base mft record).
|