PERFORCE change 179263 for review
Ilya Bakulin
kibab at FreeBSD.org
Sun Jun 6 19:15:46 UTC 2010
http://p4web.freebsd.org/@@179263?ac=10
Change 179263 by kibab at kibab_kibab-nb on 2010/06/06 19:15:39
Feature set for NFS and NFSv4 client and server.
Affected files ...
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/fs/nfsclient/nfs_clvfsops.c#2 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/fs/nfsserver/nfs_nfsdport.c#2 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/nfsclient/nfs_vfsops.c#2 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/nfsserver/nfs_serv.c#2 edit
Differences ...
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/fs/nfsclient/nfs_clvfsops.c#2 (text+ko) ====
@@ -73,6 +73,8 @@
#include <fs/nfsclient/nfs.h>
#include <fs/nfsclient/nfsdiskless.h>
+FEATURE(nfscl, "NFSv4 client");
+
extern int nfscl_ticks;
extern struct timeval nfsboottime;
extern struct nfsstats newnfsstats;
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/fs/nfsserver/nfs_nfsdport.c#2 (text+ko) ====
@@ -45,6 +45,8 @@
#include <nlm/nlm_prot.h>
#include <nlm/nlm.h>
+FEATURE(nfsd, "NFSv4 server");
+
extern u_int32_t newnfs_true, newnfs_false, newnfs_xdrneg1;
extern int nfsv4root_set;
extern int nfsrv_useacl;
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/nfsclient/nfs_vfsops.c#2 (text+ko) ====
@@ -78,6 +78,8 @@
#include <nfsclient/nfsm_subs.h>
#include <nfsclient/nfsdiskless.h>
+FEATURE(nfsclient, "NFS client");
+
MALLOC_DEFINE(M_NFSREQ, "nfsclient_req", "NFS request header");
MALLOC_DEFINE(M_NFSBIGFH, "nfsclient_bigfh", "NFS version 3 file handle");
MALLOC_DEFINE(M_NFSDIROFF, "nfsclient_diroff", "NFS directory offset data");
==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/nfsserver/nfs_serv.c#2 (text+ko) ====
@@ -97,6 +97,8 @@
#include <nfs/xdr_subs.h>
#include <nfsserver/nfsm_subs.h>
+FEATURE(nfsserver, "NFS server");
+
#ifdef NFSRV_DEBUG
#define nfsdbprintf(info) printf info
#else
More information about the p4-projects
mailing list