nfsmount.h (e57c2b130f2cd40967cf20698d376cc5ada95871) | nfsmount.h (86ce6a83d16fdedede88990ffe1d85ad83d8e7c8) |
---|---|
1/*- 2 * Copyright (c) 1989, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Rick Macklem at The University of Guelph. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 65 unchanged lines hidden (view full) --- 74struct nfsmount { 75 struct mtx nm_mtx; 76 int nm_flag; /* Flags for soft/hard... */ 77 int nm_state; /* Internal state flags */ 78 struct mount *nm_mountp; /* Vfs structure for this filesystem */ 79 int nm_numgrps; /* Max. size of groupslist */ 80 u_char nm_fh[NFSX_V4FH]; /* File handle of root dir */ 81 int nm_fhsize; /* Size of root file handle */ | 1/*- 2 * Copyright (c) 1989, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Rick Macklem at The University of Guelph. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 65 unchanged lines hidden (view full) --- 74struct nfsmount { 75 struct mtx nm_mtx; 76 int nm_flag; /* Flags for soft/hard... */ 77 int nm_state; /* Internal state flags */ 78 struct mount *nm_mountp; /* Vfs structure for this filesystem */ 79 int nm_numgrps; /* Max. size of groupslist */ 80 u_char nm_fh[NFSX_V4FH]; /* File handle of root dir */ 81 int nm_fhsize; /* Size of root file handle */ |
82 struct rpcclnt nm_rpcclnt; /* rpc state */ | |
83#ifdef NFS_LEGACYRPC 84 struct socket *nm_so; /* Rpc socket */ 85#endif 86 int nm_sotype; /* Type of socket */ 87 int nm_soproto; /* and protocol */ 88 int nm_soflags; /* pr_flags for socket protocol */ 89 struct sockaddr *nm_nam; /* Addr of server */ 90 int nm_timeo; /* Init timer for NFSMNT_DUMBTIMR */ --- 63 unchanged lines hidden --- | 82#ifdef NFS_LEGACYRPC 83 struct socket *nm_so; /* Rpc socket */ 84#endif 85 int nm_sotype; /* Type of socket */ 86 int nm_soproto; /* and protocol */ 87 int nm_soflags; /* pr_flags for socket protocol */ 88 struct sockaddr *nm_nam; /* Addr of server */ 89 int nm_timeo; /* Init timer for NFSMNT_DUMBTIMR */ --- 63 unchanged lines hidden --- |