NFS: Avoid a deadlock situation on write
authorTrond Myklebust <Trond.Myklebust@netapp.com>
Sun, 20 May 2007 14:18:27 +0000 (10:18 -0400)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Thu, 24 May 2007 14:44:20 +0000 (10:44 -0400)
commit7fe7f8487ae742239dd8c66596e2311c30d057d1
treec506bd7dcacc9d5b25b3295bd1f327e534532c54
parent585a2858b970cb6e2e5ca4877eefd18b4dba8ed4
NFS: Avoid a deadlock situation on write

When processes are allowed to attempt to lock a non-contiguous range of nfs
write requests, it is possible for generic_writepages to 'wrap round' the
address space, and call writepage() on a request that is already locked by
the same process.

We avoid the deadlock by checking if the page index is contiguous with the
list of nfs write requests that is already held in our
nfs_pageio_descriptor prior to attempting to lock a new request.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/pagelist.c
fs/nfs/write.c
include/linux/nfs_page.h