Move the inclusion of <sys/bufq.h> from fss.c to fssvar.h to make

an FSS-enabled kernel compile again.
This commit is contained in:
hannken 2004-10-29 15:39:38 +00:00
parent 18f717bb90
commit 3404c7af50
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fss.c,v 1.10 2004/10/28 07:07:39 yamt Exp $ */
/* $NetBSD: fss.c,v 1.11 2004/10/29 15:39:38 hannken Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: fss.c,v 1.10 2004/10/28 07:07:39 yamt Exp $");
__KERNEL_RCSID(0, "$NetBSD: fss.c,v 1.11 2004/10/29 15:39:38 hannken Exp $");
#include "fss.h"
@ -53,7 +53,6 @@ __KERNEL_RCSID(0, "$NetBSD: fss.c,v 1.10 2004/10/28 07:07:39 yamt Exp $");
#include <sys/proc.h>
#include <sys/errno.h>
#include <sys/buf.h>
#include <sys/bufq.h>
#include <sys/malloc.h>
#include <sys/ioctl.h>
#include <sys/disklabel.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: fssvar.h,v 1.6 2004/05/25 14:54:56 hannken Exp $ */
/* $NetBSD: fssvar.h,v 1.7 2004/10/29 15:39:38 hannken Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@ -59,6 +59,8 @@ struct fss_get {
#ifdef _KERNEL
#include <sys/bufq.h>
#define FSS_CLUSTER_MAX (1<<24) /* Upper bound of clusters. The
sc_copied map uses up to
FSS_CLUSTER_MAX/NBBY bytes */