]> git.baikalelectronics.ru Git - kernel.git/commit
NFSv4/pnfs: Fix the layout barrier update
authorTrond Myklebust <trond.myklebust@hammerspace.com>
Fri, 2 Jul 2021 20:37:15 +0000 (16:37 -0400)
committerTrond Myklebust <trond.myklebust@hammerspace.com>
Thu, 8 Jul 2021 18:03:26 +0000 (14:03 -0400)
commit84a846a869590279669510d65229109b4ebeacc5
tree7b0fc80bfa5c7bc36ac0103e12353829899b4b4d
parent0173e36330049811a33a6760306baa802bbeadf5
NFSv4/pnfs: Fix the layout barrier update

If we have multiple outstanding layoutget requests, the current code to
update the layout barrier assumes that the outstanding layout stateids
are updated in order. That's not necessarily the case.

Instead of using the value of lo->plh_outstanding as a guesstimate for
the window of values we need to accept, just wait to update the window
until we're processing the last one. The intention here is just to
ensure that we don't process 2^31 seqid updates without also updating
the barrier.

Fixes: 600438f5912f ("pNFS/NFSv4: Update the layout barrier when we schedule a layoutreturn")
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
fs/nfs/pnfs.c