[BACK]Return to nfs.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / nfs

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/nfs/nfs.h between version 1.6 and 1.7

version 1.6, 1994/08/17 14:43:47 version 1.7, 1994/08/18 22:47:43
Line 193  struct nfsreq {
Line 193  struct nfsreq {
 /*  /*
  * Queue head for nfsreq's   * Queue head for nfsreq's
  */   */
 TAILQ_HEAD(nfsreqs, nfsreq) nfs_reqq;  TAILQ_HEAD(, nfsreq) nfs_reqq;
   
 /* Flag values for r_flags */  /* Flag values for r_flags */
 #define R_TIMING        0x01            /* timing request (in mntp) */  #define R_TIMING        0x01            /* timing request (in mntp) */
Line 241  struct nfsuid {
Line 241  struct nfsuid {
   
 struct nfssvc_sock {  struct nfssvc_sock {
         TAILQ_ENTRY(nfssvc_sock) ns_chain;      /* List of all nfssvc_sock's */          TAILQ_ENTRY(nfssvc_sock) ns_chain;      /* List of all nfssvc_sock's */
         TAILQ_HEAD(nfsuidlru, nfsuid) ns_uidlruhead;          TAILQ_HEAD(, nfsuid) ns_uidlruhead;
         LIST_HEAD(nfsuidhash, nfsuid) *ns_uidhashtbl;          LIST_HEAD(, nfsuid) *ns_uidhashtbl;
         u_long          ns_uidhash;          u_long          ns_uidhash;
   
         int             ns_flag;          int             ns_flag;
Line 268  struct nfssvc_sock {
Line 268  struct nfssvc_sock {
 #define SLP_GETSTREAM   0x10  #define SLP_GETSTREAM   0x10
 #define SLP_ALLFLAGS    0xff  #define SLP_ALLFLAGS    0xff
   
 TAILQ_HEAD(nfssvc_socks, nfssvc_sock) nfssvc_sockhead;  TAILQ_HEAD(, nfssvc_sock) nfssvc_sockhead;
 int nfssvc_sockhead_flag;  int nfssvc_sockhead_flag;
 #define SLP_INIT        0x01  #define SLP_INIT        0x01
 #define SLP_WANTINIT    0x02  #define SLP_WANTINIT    0x02
Line 301  struct nfsd {
Line 301  struct nfsd {
 #define NFSD_NEEDAUTH   0x04  #define NFSD_NEEDAUTH   0x04
 #define NFSD_AUTHFAIL   0x08  #define NFSD_AUTHFAIL   0x08
   
 TAILQ_HEAD(nfsds, nfsd) nfsd_head;  TAILQ_HEAD(, nfsd) nfsd_head;
 int nfsd_head_flag;  int nfsd_head_flag;
 #define NFSD_CHECKSLP   0x01  #define NFSD_CHECKSLP   0x01
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

CVSweb <webmaster@jp.NetBSD.org>