1. 04 Dec, 2012 2 commits
  2. 03 Dec, 2012 10 commits
  3. 28 Nov, 2012 13 commits
  4. 27 Nov, 2012 1 commit
  5. 26 Nov, 2012 7 commits
    • J. Bruce Fields's avatar
      nfsd4: downgrade some fs/nfsd/nfs4state.c BUG's · 063b0fb9
      J. Bruce Fields authored
      Linus has pointed out that indiscriminate use of BUG's can make it
      harder to diagnose bugs because they can bring a machine down, often
      before we manage to get any useful debugging information to the logs.
      (Consider, for example, a BUG() that fires in a workqueue, or while
      holding a spinlock).
      
      Most of these BUG's won't do much more than kill an nfsd thread, but it
      would still probably be safer to get out the warning without dying.
      
      There's still more of this to do in nfsd/.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      063b0fb9
    • J. Bruce Fields's avatar
      nfsd4: delay filling in write iovec array till after xdr decoding · ffe1137b
      J. Bruce Fields authored
      Our server rejects compounds containing more than one write operation.
      It's unclear whether this is really permitted by the spec; with 4.0,
      it's possibly OK, with 4.1 (which has clearer limits on compound
      parameters), it's probably not OK.  No client that we're aware of has
      ever done this, but in theory it could be useful.
      
      The source of the limitation: we need an array of iovecs to pass to the
      write operation.  In the worst case that array of iovecs could have
      hundreds of elements (the maximum rwsize divided by the page size), so
      it's too big to put on the stack, or in each compound op.  So we instead
      keep a single such array in the compound argument.
      
      We fill in that array at the time we decode the xdr operation.
      
      But we decode every op in the compound before executing any of them.  So
      once we've used that array we can't decode another write.
      
      If we instead delay filling in that array till the time we actually
      perform the write, we can reuse it.
      
      Another option might be to switch to decoding compound ops one at a
      time.  I considered doing that, but it has a number of other side
      effects, and I'd rather fix just this one problem for now.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      ffe1137b
    • J. Bruce Fields's avatar
      nfsd4: move more write parameters into xdr argument · 70cc7f75
      J. Bruce Fields authored
      In preparation for moving some of this elsewhere.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      70cc7f75
    • J. Bruce Fields's avatar
      nfsd4: reorganize write decoding · 5a80a54d
      J. Bruce Fields authored
      In preparation for moving some of it elsewhere.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      5a80a54d
    • J. Bruce Fields's avatar
      nfsd4: simplify reading of opnum · 8a61b18c
      J. Bruce Fields authored
      The comment here is totally bogus:
      	- OP_WRITE + 1 is RELEASE_LOCKOWNER.  Maybe there was some older
      	  version of the spec in which that served as a sort of
      	  OP_ILLEGAL?  No idea, but it's clearly wrong now.
      	- In any case, I can't see that the spec says anything about
      	  what to do if the client sends us less ops than promised.
      	  It's clearly nutty client behavior, and we should do
      	  whatever's easiest: returning an xdr error (even though it
      	  won't be consistent with the error on the last op returned)
      	  seems fine to me.
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      8a61b18c
    • J. Bruce Fields's avatar
      447bfcc9
    • J. Bruce Fields's avatar
      nfsd: fix v4 reply caching · 57d276d7
      J. Bruce Fields authored
      Very embarassing: 1091006c "nfsd: turn
      on reply cache for NFSv4" missed a line, effectively leaving the reply
      cache off in the v4 case.  I thought I'd tested that, but I guess not.
      
      This time, wrote a pynfs test to confirm it works.
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      57d276d7
  6. 15 Nov, 2012 7 commits