Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv22587/include
Modified Files:
attrib.h layout.h
Log Message:
Make ntfs_attr_pread work with resident attributes and start on ntfs_attr_pwrite (incomplete!).
Index: attrib.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/attrib.h,v
retrieving revision 1.37
retrieving revision 1.38
diff -U2 -r1.37 -r1.38
--- attrib.h 1 Jun 2002 00:41:45 -0000 1.37
+++ attrib.h 5 Jun 2002 00:29:18 -0000 1.38
@@ -180,7 +180,7 @@
extern __s64 ntfs_attr_pread(ntfs_attr *na, const __s64 pos, __s64 count,
- void *dst);
-extern __s64 ntfs_attr_pwrite(ntfs_attr *na, const __s64 pos,
- const __s64 count, void *src);
+ void *b);
+extern __s64 ntfs_attr_pwrite(ntfs_attr *na, const __s64 pos, __s64 count,
+ void *b);
extern __s64 ntfs_attr_mst_pread(ntfs_attr *na, const __s64 pos,
Index: layout.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/layout.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -U2 -r1.19 -r1.20
--- layout.h 20 Apr 2002 23:09:42 -0000 1.19
+++ layout.h 5 Jun 2002 00:29:18 -0000 1.20
@@ -946,6 +946,5 @@
of the cluster size. */
/* 30*/ __s64 data_size; /* Byte size of actual data in data
- attribute. NOTE: Only present when
- lowest_vcn is 0. */
+ attribute. */
/* 38*/ FILE_ATTR_FLAGS file_attributes; /* Flags describing the file. */
/* 3c*/ union {
|