1. 14 2月, 2020 2 次提交
  2. 13 2月, 2020 1 次提交
  3. 04 2月, 2020 5 次提交
  4. 04 11月, 2019 14 次提交
  5. 01 11月, 2019 2 次提交
  6. 05 8月, 2019 2 次提交
  7. 21 5月, 2019 1 次提交
  8. 10 5月, 2019 1 次提交
  9. 22 2月, 2019 1 次提交
  10. 21 2月, 2019 1 次提交
  11. 20 12月, 2018 1 次提交
    • N
      NFS/NFSD/SUNRPC: replace generic creds with 'struct cred'. · a52458b4
      NeilBrown 提交于
      SUNRPC has two sorts of credentials, both of which appear as
      "struct rpc_cred".
      There are "generic credentials" which are supplied by clients
      such as NFS and passed in 'struct rpc_message' to indicate
      which user should be used to authorize the request, and there
      are low-level credentials such as AUTH_NULL, AUTH_UNIX, AUTH_GSS
      which describe the credential to be sent over the wires.
      
      This patch replaces all the generic credentials by 'struct cred'
      pointers - the credential structure used throughout Linux.
      
      For machine credentials, there is a special 'struct cred *' pointer
      which is statically allocated and recognized where needed as
      having a special meaning.  A look-up of a low-level cred will
      map this to a machine credential.
      Signed-off-by: NNeilBrown <neilb@suse.com>
      Acked-by: NJ. Bruce Fields <bfields@redhat.com>
      Signed-off-by: NAnna Schumaker <Anna.Schumaker@Netapp.com>
      a52458b4
  12. 14 11月, 2018 1 次提交
  13. 05 10月, 2018 1 次提交
  14. 01 10月, 2018 1 次提交
  15. 15 6月, 2018 1 次提交
  16. 09 6月, 2018 1 次提交
  17. 05 6月, 2018 1 次提交
  18. 01 6月, 2018 3 次提交
    • N
      NFS: Avoid quadratic search when freeing delegations. · e04bbf6b
      NeilBrown 提交于
      There are three places that walk all delegation for an nfs_client and
      restart whenever they find something interesting - potentially
      resulting in a quadratic search:  If there are 10,000 uninteresting
      delegations followed by 10,000 interesting one, then the code
      skips over 100,000,000 delegations, which can take a noticeable amount
      of time.
      
      Of these nfs_delegation_reap_unclaimed() and
      nfs_reap_expired_delegations() are only called during unusual events:
      a server reboots or reports expired delegations, probably due to a
      network partition.  Optimizing these is not particularly important.
      
      The third, nfs_client_return_marked_delegations(), is called
      periodically via nfs_expire_unreferenced_delegations().  It could
      cause periodic problems on a busy server.
      
      New delegations are added to the end of the list, so if there are
      10,000 open files with delegations, and 10,000 more recently opened files
      that received delegations but are now closed, then
      nfs_client_return_marked_delegations() can take seconds to skip over
      the 10,000 open files 10,000 times.  That is a waste of time.
      
      The avoid this waste a place-holder (an inode) is kept when locks are
      dropped, so that the place can usually be found again after taking
      rcu_readlock().  This place holder ensure that we find the right
      starting point in the list of nfs_servers, and makes is probable that
      we find the right starting point in the list of delegations.
      We might need to occasionally restart at the head of that list.
      
      It might be possible that the place_holder inode could lose its
      delegation separately, and then get a new one using the same (freed
      and then reallocated) 'struct nfs_delegation'.  Were this to happen,
      the new delegation would be at the end of the list and we would miss
      returning some other delegations.  This would have the effect of
      unnecessarily delaying the return of some unused delegations until the
      next time this function is called - typically 90 seconds later.  As
      this is not a correctness issue and is vanishingly unlikely to happen,
      it does not seem worth addressing.
      Signed-off-by: NNeilBrown <neilb@suse.com>
      Signed-off-by: NTrond Myklebust <trond.myklebust@hammerspace.com>
      e04bbf6b
    • N
      NFS: use cond_resched() when restarting walk of delegation list. · 3ca951b6
      NeilBrown 提交于
      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: NNeilBrown <neilb@suse.com>
      Signed-off-by: NTrond Myklebust <trond.myklebust@hammerspace.com>
      3ca951b6
    • N
      NFS: slight optimization for walking list for delegations · f3893491
      NeilBrown 提交于
      There are 3 places where we walk the list of delegations
      for an nfs_client.
      In each case there are two nested loops, one for nfs_servers
      and one for nfs_delegations.
      
      When we find an interesting delegation we try to get an active
      reference to the server.  If that fails, it is pointless to
      continue to look at the other delegation for the server as
      we will never be able to get an active reference.
      So instead of continuing in the inner loop, break out
      and continue in the outer loop.
      Signed-off-by: NNeilBrown <neilb@suse.com>
      Signed-off-by: NTrond Myklebust <trond.myklebust@hammerspace.com>
      f3893491