]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
pNFS: Fix a deadlock when coalescing writes and returning the layout
authorTrond Myklebust <trond.myklebust@primarydata.com>
Mon, 1 May 2017 21:06:56 +0000 (17:06 -0400)
committerTrond Myklebust <trond.myklebust@primarydata.com>
Tue, 2 May 2017 16:35:33 +0000 (12:35 -0400)
commit61f454e30c18a28924e96be12592c0d5e24bcc81
tree515adf7a272e0c0f9c57be0c6d7e2ca14f5ba895
parent5466d21411baf413c838d9a197f6734e94910a65
pNFS: Fix a deadlock when coalescing writes and returning the layout

Consider the following deadlock:

Process P1 Process P2 Process P3
========== ========== ==========
lock_page(page)

lseg = pnfs_update_layout(inode)

lo = NFS_I(inode)->layout
pnfs_error_mark_layout_for_return(lo)

lock_page(page)

lseg = pnfs_update_layout(inode)

In this scenario,
- P1 has declared the layout to be in error, but P2 holds a reference to
  a layout segment on that inode, so the layoutreturn is deferred.
- P2 is waiting for a page lock held by P3.
- P3 is asking for a new layout segment, but is blocked waiting
  for the layoutreturn.

The fix is to ensure that pnfs_error_mark_layout_for_return() does
not set the NFS_LAYOUT_RETURN flag, which blocks P3. Instead, we allow
the latter to call LAYOUTGET so that it can make progress and unblock
P2.

Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
fs/nfs/pnfs.c