1. 12 7月, 2013 3 次提交
  2. 11 7月, 2013 11 次提交
  3. 10 7月, 2013 22 次提交
  4. 09 7月, 2013 3 次提交
    • E
      net: rename low latency sockets functions to busy poll · cbf55001
      Eliezer Tamir 提交于
      Rename functions in include/net/ll_poll.h to busy wait.
      Clarify documentation about expected power use increase.
      Rename POLL_LL to POLL_BUSY_LOOP.
      Add need_resched() testing to poll/select busy loops.
      
      Note, that in select and poll can_busy_poll is dynamic and is
      updated continuously to reflect the existence of supported
      sockets with valid queue information.
      Signed-off-by: NEliezer Tamir <eliezer.tamir@linux.intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      cbf55001
    • J
      nfsd4: support minorversion 1 by default · d1091481
      J. Bruce Fields 提交于
      We now have minimal minorversion 1 support; turn it on by default.
      
      This can still be turned off with "echo -4.1 >/proc/fs/nfsd/versions".
      Signed-off-by: NJ. Bruce Fields <bfields@redhat.com>
      d1091481
    • J
      nfsd4: allow destroy_session over destroyed session · f0f51f5c
      J. Bruce Fields 提交于
      RFC 5661 allows a client to destroy a session using a compound
      associated with the destroyed session, as long as the DESTROY_SESSION op
      is the last op of the compound.
      
      We attempt to allow this, but testing against a Solaris client (which
      does destroy sessions in this way) showed that we were failing the
      DESTROY_SESSION with NFS4ERR_DELAY, because we assumed the reference
      count on the session (held by us) represented another rpc in progress
      over this session.
      
      Fix this by noting that in this case the expected reference count is 1,
      not 0.
      
      Also, note as long as the session holds a reference to the compound
      we're destroying, we can't free it here--instead, delay the free till
      the final put in nfs4svc_encode_compoundres.
      Signed-off-by: NJ. Bruce Fields <bfields@redhat.com>
      f0f51f5c
  5. 08 7月, 2013 1 次提交