Fix compile error in: sys/lkm/vfs/miscfs/procfs
This commit is contained in:
parent
cda54b761e
commit
a8d683c525
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: vmparam.h,v 1.22 1999/04/05 14:35:13 gwr Exp $ */
|
||||
/* $NetBSD: vmparam.h,v 1.23 1999/04/10 02:15:46 gwr Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -39,6 +39,10 @@
|
|||
#ifdef _SUN3X_
|
||||
#include <machine/vmparam3x.h>
|
||||
#endif /* SUN3X */
|
||||
#ifdef _LKM
|
||||
#define USRSTACK KERNBASE
|
||||
extern char KERNBASE[];
|
||||
#endif /* _LKM */
|
||||
|
||||
/* This is needed by some LKMs. */
|
||||
#define VM_PHYSSEG_MAX 4
|
||||
|
|
Loading…
Reference in New Issue