Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 May 2009 15:23:58 +0000 (UTC)
From:      Rick Macklem <rmacklem@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/sys/fs/nfs nfs.h nfs_commonacl.c nfs_commonkrpc.c nfs_commonport.c nfs_commonsubs.c nfs_var.h nfscl.h nfsclstate.h nfsdport.h nfskpiport.h nfsm_subs.h nfsport.h nfsproto.h nfsrvcache.h nfsrvstate.h nfsv4_errstr.h rpcv2.h xdr_subs.h ...
Message-ID:  <200905041524.n44FOGM7070844@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
rmacklem    2009-05-04 15:23:58 UTC

  FreeBSD src repository

  Added files:
    sys/fs/nfs           nfs.h nfs_commonacl.c nfs_commonkrpc.c 
                         nfs_commonport.c nfs_commonsubs.c 
                         nfs_var.h nfscl.h nfsclstate.h nfsdport.h 
                         nfskpiport.h nfsm_subs.h nfsport.h 
                         nfsproto.h nfsrvcache.h nfsrvstate.h 
                         nfsv4_errstr.h rpcv2.h xdr_subs.h 
    sys/fs/nfsclient     nfs.h nfs_clbio.c nfs_clcomsubs.c 
                         nfs_clkrpc.c nfs_cllock.c nfs_clnfsiod.c 
                         nfs_clnode.c nfs_clport.c nfs_clrpcops.c 
                         nfs_clstate.c nfs_clsubs.c nfs_clvfsops.c 
                         nfs_clvnops.c nfs_lock.h nfsargs.h 
                         nfsdiskless.h nfsmount.h nfsnode.h 
                         nlminfo.h 
    sys/fs/nfsserver     nfs_nfsdcache.c nfs_nfsdkrpc.c 
                         nfs_nfsdport.c nfs_nfsdserv.c 
                         nfs_nfsdsocket.c nfs_nfsdstate.c 
                         nfs_nfsdsubs.c 
  Log:
  SVN rev 191783 on 2009-05-04 15:23:58Z by rmacklem
  
          Add the experimental nfs subtree to the kernel, that includes
          support for NFSv4 as well as NFSv2 and 3.
          It lives in 3 subdirs under sys/fs:
          nfs - functions that are common to the client and server
          nfsclient - a mutation of sys/nfsclient that call generic functions
          to do RPCs and handle state. As such, it retains the
          buffer cache handling characteristics and vnode semantics that
          are found in sys/nfsclient, for the most part.
          nfsserver - the server. It includes a DRC designed specifically for
          NFSv4, that is used instead of the generic DRC in sys/rpc.
          The build glue will be checked in later, so at this point, it
          consists of 3 new subdirs that should not affect kernel building.
  
  Approved by:    kib (mentor)
  
  Revision  Changes    Path
  1.1       +704 -0    src/sys/fs/nfs/nfs.h (new)
  1.1       +750 -0    src/sys/fs/nfs/nfs_commonacl.c (new)
  1.1       +901 -0    src/sys/fs/nfs/nfs_commonkrpc.c (new)
  1.1       +486 -0    src/sys/fs/nfs/nfs_commonport.c (new)
  1.1       +3404 -0   src/sys/fs/nfs/nfs_commonsubs.c (new)
  1.1       +604 -0    src/sys/fs/nfs/nfs_var.h (new)
  1.1       +71 -0     src/sys/fs/nfs/nfscl.h (new)
  1.1       +175 -0    src/sys/fs/nfs/nfsclstate.h (new)
  1.1       +105 -0    src/sys/fs/nfs/nfsdport.h (new)
  1.1       +73 -0     src/sys/fs/nfs/nfskpiport.h (new)
  1.1       +129 -0    src/sys/fs/nfs/nfsm_subs.h (new)
  1.1       +751 -0    src/sys/fs/nfs/nfsport.h (new)
  1.1       +1129 -0   src/sys/fs/nfs/nfsproto.h (new)
  1.1       +107 -0    src/sys/fs/nfs/nfsrvcache.h (new)
  1.1       +235 -0    src/sys/fs/nfs/nfsrvstate.h (new)
  1.1       +101 -0    src/sys/fs/nfs/nfsv4_errstr.h (new)
  1.1       +207 -0    src/sys/fs/nfs/rpcv2.h (new)
  1.1       +99 -0     src/sys/fs/nfs/xdr_subs.h (new)
  1.1       +95 -0     src/sys/fs/nfsclient/nfs.h (new)
  1.1       +1934 -0   src/sys/fs/nfsclient/nfs_clbio.c (new)
  1.1       +521 -0    src/sys/fs/nfsclient/nfs_clcomsubs.c (new)
  1.1       +297 -0    src/sys/fs/nfsclient/nfs_clkrpc.c (new)
  1.1       +396 -0    src/sys/fs/nfsclient/nfs_cllock.c (new)
  1.1       +308 -0    src/sys/fs/nfsclient/nfs_clnfsiod.c (new)
  1.1       +283 -0    src/sys/fs/nfsclient/nfs_clnode.c (new)
  1.1       +1271 -0   src/sys/fs/nfsclient/nfs_clport.c (new)
  1.1       +4173 -0   src/sys/fs/nfsclient/nfs_clrpcops.c (new)
  1.1       +4133 -0   src/sys/fs/nfsclient/nfs_clstate.c (new)
  1.1       +402 -0    src/sys/fs/nfsclient/nfs_clsubs.c (new)
  1.1       +1257 -0   src/sys/fs/nfsclient/nfs_clvfsops.c (new)
  1.1       +3131 -0   src/sys/fs/nfsclient/nfs_clvnops.c (new)
  1.1       +89 -0     src/sys/fs/nfsclient/nfs_lock.h (new)
  1.1       +104 -0    src/sys/fs/nfsclient/nfsargs.h (new)
  1.1       +108 -0    src/sys/fs/nfsclient/nfsdiskless.h (new)
  1.1       +106 -0    src/sys/fs/nfsclient/nfsmount.h (new)
  1.1       +201 -0    src/sys/fs/nfsclient/nfsnode.h (new)
  1.1       +41 -0     src/sys/fs/nfsclient/nlminfo.h (new)
  1.1       +867 -0    src/sys/fs/nfsserver/nfs_nfsdcache.c (new)
  1.1       +455 -0    src/sys/fs/nfsserver/nfs_nfsdkrpc.c (new)
  1.1       +3060 -0   src/sys/fs/nfsserver/nfs_nfsdport.c (new)
  1.1       +3367 -0   src/sys/fs/nfsserver/nfs_nfsdserv.c (new)
  1.1       +979 -0    src/sys/fs/nfsserver/nfs_nfsdsocket.c (new)
  1.1       +4891 -0   src/sys/fs/nfsserver/nfs_nfsdstate.c (new)
  1.1       +2021 -0   src/sys/fs/nfsserver/nfs_nfsdsubs.c (new)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905041524.n44FOGM7070844>