1. 25 Oct, 2010 4 commits
  2. 21 Oct, 2010 14 commits
    • J. Bruce Fields's avatar
      nfsd4: only require krb5 principal for NFSv4.0 callbacks · 5d18c1c2
      J. Bruce Fields authored
      In the sessions backchannel case, we don't need a krb5 principal name
      for the client; we use the already-created forechannel credentials
      instead.
      
      Some cleanup, while we're there: make it clearer which code here is 4.0-
      or sessions- specific.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      5d18c1c2
    • J. Bruce Fields's avatar
      nfsd4: move minorversion to client · 8323c3b2
      J. Bruce Fields authored
      The minorversion seems more a property of the client than the callback
      channel.
      
      Some time we should probably also enforce consistent minorversion usage
      from the client; for now, this is just a cosmetic change.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      8323c3b2
    • J. Bruce Fields's avatar
      nfsd4: delay session removal till free_client · 792c95dd
      J. Bruce Fields authored
      Have unhash_client_locked() remove client and associated sessions from
      global hashes, but delay further dismantling till free_client().
      
      (After unhash_client_locked(), the only remaining references outside the
      destroying thread are from any connections which have xpt_user callbacks
      registered.)
      
      This will simplify locking on session destruction.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      792c95dd
    • J. Bruce Fields's avatar
      nfsd4: separate callback change and callback probe · 5a3c9d71
      J. Bruce Fields authored
      Only one of the nfsd4_callback_probe callers actually cares about
      changing the callback information.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      5a3c9d71
    • J. Bruce Fields's avatar
      nfsd4: callback program number is per-session · 8b5ce5cd
      J. Bruce Fields authored
      The callback program is allowed to depend on the session which the
      callback is going over.
      
      No change in behavior yet, while we still only do callbacks over a
      single session for the lifetime of the client.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      8b5ce5cd
    • J. Bruce Fields's avatar
      nfsd4: track backchannel connections · d29c374c
      J. Bruce Fields authored
      We need to keep track of which connections are available for use with
      the backchannel, which for the forechannel, and which for both.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@citi.umich.edu>
      d29c374c
    • J. Bruce Fields's avatar
      nfsd4: confirm only on succesful create_session · 86c3e16c
      J. Bruce Fields authored
      Following rfc 5661, section 18.36.4: "If the session is not successfully
      created, then no changes are made to any client records on the server."
      We shouldn't be confirming or incrementing the sequence id in this case.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      86c3e16c
    • J. Bruce Fields's avatar
      nfsd4: make backchannel sequence number per-session · ac7c46f2
      J. Bruce Fields authored
      Currently we don't deal well with a client that has multiple sessions
      associated with it (even simultaneously, or serially over the lifetime
      of the client).
      
      In particular, we don't attempt to keep the backchannel running after
      the original session diseappears.
      
      We will fix that soon.
      
      Once we do that, we need the slot sequence number to be per-session;
      otherwise, for example, we cannot correctly handle a case like this:
      
      	- All session 1 connections are lost.
      	- The client creates session 2.  We use it for the backchannel
      	  (since it's the only working choice).
      	- The client gives us a new connection to use with session 1.
      	- The client destroys session 2.
      
      At this point our only choice is to go back to using session 1.  When we
      do so we must use the sequence number that is next for session 1.  We
      therefore need to maintain multiple sequence number streams.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@citi.umich.edu>
      ac7c46f2
    • J. Bruce Fields's avatar
      nfsd4: use client pointer to backchannel session · 90c8145b
      J. Bruce Fields authored
      Instead of copying the sessionid, use the new cl_cb_session pointer,
      which indicates which session we're using for the backchannel.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@citi.umich.edu>
      90c8145b
    • J. Bruce Fields's avatar
      nfsd4: move callback setup into session init code · edd76786
      J. Bruce Fields authored
      The backchannel should  be associated with a session, it isn't really
      global to the client.
      
      We do, however, want a pointer global to the client which tracks which
      session we're currently using for client-based callbacks.
      
      This is a first step in that direction; for now, just reshuffling of
      code with no significant change in behavior.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@citi.umich.edu>
      edd76786
    • J. Bruce Fields's avatar
      cd5b8144
    • Chuck Lever's avatar
      SUNRPC: Properly initialize sock_xprt.srcaddr in all cases · 92476850
      Chuck Lever authored
      The source address field in the transport's sock_xprt is initialized
      ONLY IF the RPC application passed a pointer to a source address
      during the call to rpc_create().  However, xs_bind() subsequently uses
      the value of this field without regard to whether the source address
      was initialized during transport creation or not.
      
      So far we've been lucky: the uninitialized value of this field is
      zeroes.  xs_bind(), until recently, used only the sin[6]_addr field in
      this sockaddr, and all zeroes is a valid value for this: it means
      ANYADDR.  This is a happy coincidence.
      
      However, xs_bind() now wants to use the sa_family field as well, and
      expects it to be initialized to something other than zero.
      
      Therefore, the source address sockaddr field should be fully
      initialized at transport create time in _every_ case, not just when
      the RPC application wants to use a specific bind address.
      
      Bruce added a workaround for this missing initialization by adjusting
      commit 6bc9638a, but the "right" way to do this is to ensure that the
      source address sockaddr is always correctly initialized from the
      get-go.
      
      This patch doesn't introduce a behavior change.  It's simply a
      clean-up of Bruce's fix, to prevent future problems of this kind.  It
      may look like overkill, but
      
        a) it clearly documents the default initial value of this field,
      
        b) it doesn't assume that the sockaddr_storage memory is first
           initialized to any particular value, and
      
        c) it will fail verbosely if some unknown address family is passed
           in
      
      Originally introduced by commit d3bc9a1d.
      Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      92476850
    • Chuck Lever's avatar
      SUNRPC: Use conventional switch statement when reclassifying sockets · 4232e863
      Chuck Lever authored
      Clean up.
      
      Defensive coding: If "family" is ever something that is neither
      AF_INET nor AF_INET6, xs_reclassify_socket6() is not the appropriate
      default action.  Choose to do nothing in that case.
      
      Introduced by commit 6bc9638a.
      Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      4232e863
    • Tejun Heo's avatar
      sunrpc/xprtrdma: clean up workqueue usage · a25e758c
      Tejun Heo authored
      * Create and use svc_rdma_wq instead of using the system workqueue and
        flush_scheduled_work().  This workqueue is necessary to serve as
        flushing domain for rdma->sc_work which is used to destroy itself
        and thus can't be flushed explicitly.
      
      * Replace cancel_delayed_work() + flush_scheduled_work() with
        cancel_delayed_work_sync().
      
      * Implement synchronous connect in xprt_rdma_connect() using
        flush_delayed_work() on the rdma_connect work instead of using
        flush_scheduled_work().
      
      This is to prepare for the deprecation and removal of
      flush_scheduled_work().
      Signed-off-by: default avatarTejun Heo <tj@kernel.org>
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      a25e758c
  3. 19 Oct, 2010 17 commits
  4. 18 Oct, 2010 2 commits
  5. 12 Oct, 2010 2 commits
  6. 11 Oct, 2010 1 commit
    • NeilBrown's avatar
      sunrpc/cache: centralise handling of size limit on deferred list. · e33534d5
      NeilBrown authored
      We limit the number of 'defer' requests to DFR_MAX.
      
      The imposition of this limit is spread about a bit - sometime we don't
      add new things to the list, sometimes we remove old things.
      
      Also it is currently applied to requests which we are 'waiting' for
      rather than 'deferring'.  This doesn't seem ideal as 'waiting'
      requests are naturally limited by the number of threads.
      
      So gather the DFR_MAX handling code to one place and only apply it to
      requests that are actually being deferred.
      
      This means that not all 'cache_deferred_req' structures go on the
      'cache_defer_list, so we need to be careful when adding and removing
      things.
      Signed-off-by: default avatarNeilBrown <neilb@suse.de>
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      e33534d5