1. 06 12月, 2006 6 次提交
  2. 03 12月, 2006 1 次提交
  3. 21 10月, 2006 2 次提交
  4. 01 10月, 2006 1 次提交
  5. 27 9月, 2006 1 次提交
  6. 24 9月, 2006 1 次提交
  7. 23 9月, 2006 5 次提交
  8. 13 9月, 2006 1 次提交
  9. 09 9月, 2006 1 次提交
  10. 04 8月, 2006 1 次提交
  11. 01 7月, 2006 1 次提交
  12. 29 6月, 2006 1 次提交
  13. 25 6月, 2006 1 次提交
    • A
      git-nfs-build-fixes · d75d5414
      Andrew Morton 提交于
      Fix various problems with nfs4 disabled.  And various other things.
      
      In file included from fs/nfs/inode.c:50:
      fs/nfs/internal.h:24: error: static declaration of 'nfs_do_refmount' follows non-static declaration
      include/linux/nfs_fs.h:320: error: previous declaration of 'nfs_do_refmount' was here
      fs/nfs/internal.h:65: warning: 'struct nfs4_fs_locations' declared inside parameter list
      fs/nfs/internal.h:65: warning: its scope is only this definition or declaration, which is probably not what you want
      fs/nfs/internal.h: In function 'nfs4_path':
      fs/nfs/internal.h:97: error: 'struct nfs_server' has no member named 'mnt_path'
      fs/nfs/inode.c: In function 'init_once':
      fs/nfs/inode.c:1116: error: 'struct nfs_inode' has no member named 'open_states'
      fs/nfs/inode.c:1116: error: 'struct nfs_inode' has no member named 'delegation'
      fs/nfs/inode.c:1116: error: 'struct nfs_inode' has no member named 'delegation_state'
      fs/nfs/inode.c:1116: error: 'struct nfs_inode' has no member named 'rwsem'
      distcc[26452] ERROR: compile fs/nfs/inode.c on g5/64 failed
      make[1]: *** [fs/nfs/inode.o] Error 1
      make: *** [fs/nfs/inode.o] Error 2
      make: *** Waiting for unfinished jobs....
      In file included from fs/nfs/nfs3xdr.c:26:
      fs/nfs/internal.h:24: error: static declaration of 'nfs_do_refmount' follows non-static declaration
      include/linux/nfs_fs.h:320: error: previous declaration of 'nfs_do_refmount' was here
      fs/nfs/internal.h:65: warning: 'struct nfs4_fs_locations' declared inside parameter list
      fs/nfs/internal.h:65: warning: its scope is only this definition or declaration, which is probably not what you want
      fs/nfs/internal.h: In function 'nfs4_path':
      fs/nfs/internal.h:97: error: 'struct nfs_server' has no member named 'mnt_path'
      distcc[26486] ERROR: compile fs/nfs/nfs3xdr.c on g5/64 failed
      make[1]: *** [fs/nfs/nfs3xdr.o] Error 1
      make: *** [fs/nfs/nfs3xdr.o] Error 2
      In file included from fs/nfs/nfs3proc.c:24:
      fs/nfs/internal.h:24: error: static declaration of 'nfs_do_refmount' follows non-static declaration
      include/linux/nfs_fs.h:320: error: previous declaration of 'nfs_do_refmount' was here
      fs/nfs/internal.h:65: warning: 'struct nfs4_fs_locations' declared inside parameter list
      fs/nfs/internal.h:65: warning: its scope is only this definition or declaration, which is probably not what you want
      fs/nfs/internal.h: In function 'nfs4_path':
      fs/nfs/internal.h:97: error: 'struct nfs_server' has no member named 'mnt_path'
      distcc[26469] ERROR: compile fs/nfs/nfs3proc.c on bix/32 failed
      make[1]: *** [fs/nfs/nfs3proc.o] Error 1
      make: *** [fs/nfs/nfs3proc.o] Error 2
      **FAILED**
      
      Cc: Alexey Dobriyan <adobriyan@gmail.com>
      Cc: Andreas Gruenbacher <agruen@suse.de>
      Cc: Andy Adamson <andros@citi.umich.edu>
      Cc: Chuck Lever <cel@netapp.com>
      Cc: David Howells <dhowells@redhat.com>
      Cc: J. Bruce Fields <bfields@fieldses.org>
      Cc: Manoj Naik <manoj@almaden.ibm.com>
      Cc: Marc Eshel <eshel@almaden.ibm.com>
      Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      d75d5414
  14. 09 6月, 2006 8 次提交
  15. 25 4月, 2006 1 次提交
  16. 29 3月, 2006 1 次提交
  17. 21 3月, 2006 7 次提交
    • T
      NFS: Fix a race in nfs_sync_inode() · c42de9dd
      Trond Myklebust 提交于
      Kudos to Neil Brown for spotting the problem:
      
      "in nfs_sync_inode, there is effectively the sequence:
      
         nfs_wait_on_requests
         nfs_flush_inode
         nfs_commit_inode
      
       This seems a bit racy to me as if the only requests are on the
       ->commit list, and nfs_commit_inode is called separately after
       nfs_wait_on_requests completes, and before nfs_commit_inode start
       (say: by nfs_write_inode) then none of these function will return
       >0, yet there will be some pending request that aren't waited for."
      
      The solution is to search for requests to wait upon, search for dirty
      requests, and search for uncommitted requests while holding the
      nfsi->req_lock
      
      The patch also cleans up nfs_sync_inode(), getting rid of the redundant
      FLUSH_WAIT flag. It turns out that we were always setting it.
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      c42de9dd
    • T
    • T
      nfs: Use UNSTABLE + COMMIT for NFS O_DIRECT writes · fad61490
      Trond Myklebust 提交于
      Currently NFS O_DIRECT writes use FILE_SYNC so that a COMMIT is not
      necessary.  This simplifies the internal logic, but this could be a
      difficult workload for some servers.
      
      Instead, let's send UNSTABLE writes, and after they all complete, send a
      COMMIT for the dirty range.  After the COMMIT returns successfully, then do
      the wake_up or fire off aio_complete().
      
      Test plan:
      Async direct I/O tests against Solaris (or any server that requires
      committed unstable writes).  Reboot server during test.
      
      Based on an earlier patch by Chuck Lever <cel@netapp.com>
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      fad61490
    • T
      NFS: Make nfs_commit_alloc() extern · e17b1fc4
      Trond Myklebust 提交于
      We need to use nfs_commit_alloc() in fs/nfs/direct.c.
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      e17b1fc4
    • C
      NFS: make direct write path generate write requests concurrently · 462d5b32
      Chuck Lever 提交于
      Duplicate infrastructure from direct read path that will allow write
      path to generate multiple write requests concurrently.  This will
      enable us to add support for aio in this path.
      
      Temporarily we will lose the ability to do UNSTABLE writes followed by
      a COMMIT in the direct write path.  However, all applications I am
      aware of that use NFS O_DIRECT currently write in relatively small
      chunks, so this should not be inconvenient in any way.
      
      Test plan:
      Millions of fsx-odirect ops. OraSim.
      Signed-off-by: NChuck Lever <cel@netapp.com>
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      462d5b32
    • T
      NFS: Cleanup of NFS read code · ec06c096
      Trond Myklebust 提交于
      Same callback hierarchy inversion as for the NFS write calls. This patch is
      not strictly speaking needed by the O_DIRECT code, but avoids confusing
      differences between the asynchronous read and write code.
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      ec06c096
    • T
      NFS: Cleanup of NFS write code in preparation for asynchronous o_direct · 788e7a89
      Trond Myklebust 提交于
      This patch inverts the callback hierarchy for NFS write calls.
      
      Instead of having the NFSv2/v3/v4-specific code set up the RPC callback
      ops, we allow the original caller to do so. This allows for more
      flexibility w.r.t. how to set up and tear down the nfs_write_data
      structure while still allowing the NFSv3/v4 code to perform error
      handling.
      
      The greater flexibility is needed by the asynchronous O_DIRECT code, which
      wants to be able to hold on to the original nfs_write_data structures after
      the WRITE RPC call has completed in order to be able to replay them if the
      COMMIT call determines that the server has rebooted.
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      788e7a89