Subject: Re: kern/20218: kernel configured with options NFSSERVER doesn't compile (+fix)
To: None <gnats-bugs@gnats.netbsd.org>
From: Frederick Bruckman <fredb@immanent.net>
List: source-changes
Date: 02/05/2003 11:17:21
In article <200302051655.h15Gt5n18944@ilfxv013.immanent.net>,
	fredb@immanent.net (Frederick Bruckman) writes:

> Index: nfs_subs.c
> ===================================================================
> RCS file: /cvsroot/src/sys/nfs/nfs_subs.c,v
> retrieving revision 1.107
> diff -u -r1.107 nfs_subs.c
> --- nfs_subs.c	2002/12/01 23:02:11	1.107
> +++ nfs_subs.c	2003/02/05 16:45:21
> @@ -122,6 +122,8 @@
>  #include <netiso/iso.h>
>  #endif
>  
> +MALLOC_DEFINE(M_NFSDIROFF, "NFS diroff", "NFS directory cookies");
> +
>  /*
>   * Data items converted to xdr at startup, since they are constant
>   * This is kinda hokey, but may save a little time doing byte swaps

Oh, that breaks the NFS client case. I guess all the defines need to
be collected somewhere?

Frederick