Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv535
Modified Files:
ntfsd.h volume.h
Log Message:
ntfsd should be finished now
Index: ntfsd.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/ntfsd.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -U2 -r1.4 -r1.5
--- ntfsd.h 2001/04/07 14:46:14 1.4
+++ ntfsd.h 2001/04/07 17:30:10 1.5
@@ -27,7 +27,9 @@
#include <linux/bitops.h>
#include <linux/spinlock.h>
+#include <linux/list.h>
#include <asm/atomic.h>
#include "volume.h"
+#include "support.h"
/*
@@ -35,7 +37,7 @@
* walk the dirty list for each mounted volume.
*/
-extern ntfs_volume *mounted_volumes;
-extern int nr_mounted_volumes;
-extern spinlock_t mounted_volumes_lock;
+extern struct listhead ntfs_mounted_volumes;
+extern int nr_ntfs_mounted_volumes;
+extern spinlock_t ntfs_mounted_volumes_lock;
/*
@@ -90,5 +92,5 @@
* others - Other error codes returned by one of the system calls.
*/
-int ntfsd_start(void);
+BOOL ntfsd_start(void);
/**
@@ -125,5 +127,5 @@
* others - Other error codes returned by one of the system calls.
*/
-int ntfsd_stop(void);
+BOOL ntfsd_stop(void);
#endif /* defined NTFSD_H */
Index: volume.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/volume.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -U2 -r1.6 -r1.7
--- volume.h 2001/04/03 22:41:30 1.6
+++ volume.h 2001/04/07 17:30:10 1.7
@@ -127,4 +127,6 @@
nr_mft_entries and their dirty
equivalents. */
+ struct list_head v_list; /* Anchor for list of all mounted
+ volumes. */
} ntfs_volume;
|