1. 27 5月, 2012 1 次提交
  2. 26 5月, 2012 1 次提交
  3. 25 5月, 2012 2 次提交
  4. 06 3月, 2012 1 次提交
  5. 18 2月, 2012 1 次提交
  6. 19 10月, 2011 1 次提交
  7. 28 8月, 2011 1 次提交
  8. 01 8月, 2011 1 次提交
  9. 13 7月, 2011 3 次提交
  10. 30 5月, 2011 1 次提交
  11. 30 4月, 2011 1 次提交
  12. 31 3月, 2011 1 次提交
  13. 25 3月, 2011 1 次提交
  14. 24 3月, 2011 1 次提交
  15. 12 1月, 2011 2 次提交
  16. 18 12月, 2010 1 次提交
  17. 25 10月, 2010 3 次提交
  18. 02 10月, 2010 1 次提交
  19. 31 7月, 2010 1 次提交
  20. 06 12月, 2009 2 次提交
  21. 09 9月, 2009 1 次提交
  22. 11 7月, 2009 1 次提交
  23. 18 6月, 2009 3 次提交
  24. 04 4月, 2009 3 次提交
  25. 08 1月, 2009 1 次提交
  26. 24 6月, 2008 1 次提交
  27. 11 7月, 2007 1 次提交
    • J
      NFS4: on a O_EXCL OPEN make sure SETATTR sets the fields holding the verifier · aa53ed54
      Jeff Layton 提交于
      The Linux NFS4 client simply skips over the bitmask in an O_EXCL open
      call and so it doesn't bother to reset any fields that may be holding
      the verifier. This patch has us save the first two words of the bitmask
      (which is all the current client has #defines for). The client then
      later checks this bitmask and turns on the appropriate flags in the
      sattr->ia_verify field for the following SETATTR call.
      
      This patch only currently checks to see if the server used the atime
      and mtime slots for the verifier (which is what the Linux server uses
      for this). I'm not sure of what other fields the server could
      reasonably use, but adding checks for others should be trivial.
      Signed-off-by: NJeff Layton <jlayton@redhat.com>
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      aa53ed54
  28. 15 5月, 2007 1 次提交
    • T
      NFS4: Fix incorrect use of sizeof() in fs/nfs/nfs4xdr.c · 8ae20abd
      Trond Myklebust 提交于
      The XDR code should not depend on the physical allocation size of
      structures like nfs4_stateid and nfs4_verifier since those may have to
      change at some future date. We therefore replace all uses of
      sizeof() with constants like NFS4_VERIFIER_SIZE and NFS4_STATEID_SIZE.
      
      This also has the side-effect of fixing some warnings of the type
      	format ‘%u’ expects type ‘unsigned int’, but argument X has type
      		‘long unsigned int’
      on 64-bit systems
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      8ae20abd
  29. 17 2月, 2007 1 次提交