OpenAFS Master Repository branch, master, updated. openafs-devel-1_5_76-3984-g7068836
Gerrit Code Review
gerrit@openafs.org
Sat, 26 Oct 2013 15:14:53 -0700 (PDT)
The following commit has been merged in the master branch:
commit 7068836e6bab73e9edcb2c84727b92b25e1a6109
Author: Rod Widdowson <rdw@your-file-system.com>
Date: Sun Oct 20 14:29:35 2013 -0400
Windows: EOF for Synchronous Deferred Writes on XP/2003
The Windows IO Manager is not supposed to issue multiple
outstanding cached writes to a file system for a synchronous
file object. To do so would risk out of order application
of writes that extend the end of file and in turn risk data
corruption. It turns out that on Server 2003 SP2 and more
than likely XP and 2000 as well, if a file system returns
STATUS_PENDING because a write was deferred due to the
Windows Cache Manager failing CcCanIWrite(), the IO Manager
will happily continue issue subsequent write requests.
On OSes older than Vista disable the use of deferred writes
and sit in a spin loop waiting for the Windows cache manager
to make room. This is much less efficient and increases the
write latency but it is safe.
Change-Id: Ic47d62749bdb4d0475661967fcbfd25834f21a72
Reviewed-on: http://gerrit.openafs.org/10351
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Jeffrey Altman <jaltman@your-file-system.com>
src/WINNT/afsrdr/kernel/lib/AFSWrite.cpp | 102 ++++++++++++++++++++----------
1 files changed, 68 insertions(+), 34 deletions(-)
--
OpenAFS Master Repository