Changes by: aia21
Update of /cvs/linux-ntfs/ntfsprogs
In directory delta357:/tmp/cvs-serv32694
Modified Files:
CREDITS ChangeLog
Log Message:
- Implement ntfs_pread() and ntfs_pwrite() in terms of device
operations pread() and pwrite() respectively and fall back to using
seek() + read()/write() if no pread()/pwrite() device operation is
supplied or the OS does not support the pread()/pwrite() system call.
Adapt unix_io pread()/pwrite() device operations to use pread()/
pwrite() system call and adapt win32_io device operations to not
supply pread()/pwrite(). (Csaba Henk, Anton)
Index: CREDITS
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/CREDITS,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -p -r1.28 -r1.29
--- CREDITS 27 Oct 2006 13:06:11 -0000 1.28
+++ CREDITS 9 Dec 2006 14:01:12 -0000 1.29
@@ -17,6 +17,7 @@ Matthew J. Fanto <mattjf at uncompiled.c
Yuval Fledel <yuvalfl at gmail.com>
Marcin GibuÅa <m.gibula at conecto.pl>
Christophe Grenier <grenier at cgsecurity.org>
+Csaba Henk <csaba.henk at creo.hu>
Ian Jackson <ian at davenant.greenend.org.uk>
Carmelo Kintana <kintana at berkeley.edu>
Jan Kratochvil <project-captive at jankratochvil.net>
Index: ChangeLog
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ChangeLog,v
retrieving revision 1.429
retrieving revision 1.430
diff -u -p -r1.429 -r1.430
--- ChangeLog 9 Dec 2006 11:27:37 -0000 1.429
+++ ChangeLog 9 Dec 2006 14:01:12 -0000 1.430
@@ -99,6 +99,13 @@ xx/xx/2006 - x.xx.x - .
- ntfsmount: fix rename if destination already exists. (Yura)
- ntfsfix: do not set VOLUME_MOUNTED_ON_NT4 flag as it causes Vista to
not boot any more.
+ - Implement ntfs_pread() and ntfs_pwrite() in terms of device
+ operations pread() and pwrite() respectively and fall back to using
+ seek() + read()/write() if no pread()/pwrite() device operation is
+ supplied or the OS does not support the pread()/pwrite() system call.
+ Adapt unix_io pread()/pwrite() device operations to use pread()/
+ pwrite() system call and adapt win32_io device operations to not
+ supply pread()/pwrite(). (Csaba Henk, Anton)
21/06/2006 - 1.13.1 - Various fixes.
|