Fixed a missing include. <sys/kernel.h> is needed by the new
MALLOC_DEFINE() and MALLOC_DEFINE() is needed by the recently reenabled "reallocblks" code, but <sys/kernel.h> was only included if CLUSTERDEBUG was defined. This was too harmless. gcc only warns about garbage like `SYSINIT(blech);' at file scope ...
This commit is contained in:
parent
4cfe0f4600
commit
14fddaf97a
@ -33,13 +33,14 @@
|
|||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* @(#)vfs_cluster.c 8.7 (Berkeley) 2/13/94
|
* @(#)vfs_cluster.c 8.7 (Berkeley) 2/13/94
|
||||||
* $Id: vfs_cluster.c,v 1.71 1998/10/25 17:44:52 phk Exp $
|
* $Id: vfs_cluster.c,v 1.72 1998/11/13 01:01:40 dg Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "opt_debug_cluster.h"
|
#include "opt_debug_cluster.h"
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
|
#include <sys/kernel.h>
|
||||||
#include <sys/proc.h>
|
#include <sys/proc.h>
|
||||||
#include <sys/buf.h>
|
#include <sys/buf.h>
|
||||||
#include <sys/vnode.h>
|
#include <sys/vnode.h>
|
||||||
@ -53,7 +54,6 @@
|
|||||||
|
|
||||||
#if defined(CLUSTERDEBUG)
|
#if defined(CLUSTERDEBUG)
|
||||||
#include <sys/sysctl.h>
|
#include <sys/sysctl.h>
|
||||||
#include <sys/kernel.h>
|
|
||||||
static int rcluster= 0;
|
static int rcluster= 0;
|
||||||
SYSCTL_INT(_debug, OID_AUTO, rcluster, CTLFLAG_RW, &rcluster, 0, "");
|
SYSCTL_INT(_debug, OID_AUTO, rcluster, CTLFLAG_RW, &rcluster, 0, "");
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user