/src/sys/nfs/ |
nfsdiskless.h | 65 struct nfs_diskless { struct 84 int nfs_boot_init(struct nfs_diskless *, struct lwp *); 85 void nfs_boot_cleanup(struct nfs_diskless *, struct lwp *); 100 int nfs_bootdhcp(struct nfs_diskless *, struct lwp *, int *); 101 int nfs_bootparam(struct nfs_diskless *, struct lwp *, int *); 102 int nfs_bootstatic(struct nfs_diskless *, struct lwp *, int *); 104 extern int (*nfs_bootstatic_callback)(struct nfs_diskless *);
|
/src/sys/fs/nfs/common/ |
nfs_diskless.c | 1 /* $NetBSD: nfs_diskless.c,v 1.2 2016/12/13 22:41:46 pgoyette Exp $ */ 37 /* __FBSDID("FreeBSD: head/sys/nfs/nfs_diskless.c 297086 2016-03-20 21:48:26Z ian "); */ 38 __RCSID("$NetBSD: nfs_diskless.c,v 1.2 2016/12/13 22:41:46 pgoyette Exp $"); 77 struct nfs_diskless nfs_diskless = { { { 0 } } }; variable in typeref:struct:nfs_diskless 102 * nfs_diskless state. Used also by bootp/dhcp support. 173 struct nfs_diskless *nd = &nfs_diskless; 192 printf("nfs_diskless: bad NFS handle len\n"); 203 printf("nfs_diskless: no netmask\n") [all...] |
nfsdiskless.h | 96 struct nfs_diskless { struct 109 extern struct nfs_diskless nfs_diskless;
|
/src/sys/fs/nfs/client/ |
nfs_clvfsops.c | 157 * This structure is now defined in sys/nfs/nfs_diskless.c so that it 163 struct nfs_diskless nfs_diskless = { { { 0 } } }; variable in typeref:struct:nfs_diskless 256 bcopy(&nfs_diskless.myif, &nfsv3_diskless.myif, 258 bcopy(&nfs_diskless.mygateway, &nfsv3_diskless.mygateway, 260 nfs_convert_oargs(&nfsv3_diskless.root_args,&nfs_diskless.root_args); 263 bcopy(nfs_diskless.root_fh, nfsv3_diskless.root_fh, NFSX_MYFH); 266 bcopy(nfs_diskless.root_fh, nfsv3_diskless.root_fh, NFSX_V2FH); 268 bcopy(&nfs_diskless.root_saddr,&nfsv3_diskless.root_saddr, 270 bcopy(nfs_diskless.root_hostnam, nfsv3_diskless.root_hostnam, MNAMELEN) [all...] |