]> git.baikalelectronics.ru Git - kernel.git/commit
NFS: use cond_resched() when restarting walk of delegation list.
authorNeilBrown <neilb@suse.com>
Mon, 30 Apr 2018 04:31:30 +0000 (14:31 +1000)
committerTrond Myklebust <trond.myklebust@hammerspace.com>
Thu, 31 May 2018 18:59:19 +0000 (14:59 -0400)
commit32560d1d3ee8b4d134b405e53b7d81e09dd2eb2e
treeeec48e933fe7c8b956687aa689b7641d6a71b8e2
parent6046799534caae0e9c43d969b5d74987a0d5b31c
NFS: use cond_resched() when restarting walk of delegation list.

In three places we walk the list of delegations for an nfs_client
until an interesting one is found, then we act of that delegation
and restart the walk.

New delegations are added to the end of a list and the interesting
delegations are usually old, so in many case we won't repeat
a long walk over and over again, but it is possible - particularly if
the first server in the list has a large number of uninteresting
delegations.

In each cache the work done on interesting delegations will often
complete without sleeping, so this could loop many times without
giving up the CPU.

So add a cond_resched() at an appropriate point to avoid hogging the
CPU for too long.

Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
fs/nfs/delegation.c