aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs/ffs/ffs_balloc.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-12-05 19:55:52 +0000
committerBruce Evans <bde@FreeBSD.org>1997-12-05 19:55:52 +0000
commit1cd52ec333dcaa93fed3408a4d473f1192c8aba8 (patch)
tree9e0c46dbd6bbd424d0861f4f80ae930d232ed15c /sys/ufs/ffs/ffs_balloc.c
parent188da0efe128f18b2ea2073c6ee23f9154e4684f (diff)
downloadsrc-1cd52ec333dcaa93fed3408a4d473f1192c8aba8.tar.gz
src-1cd52ec333dcaa93fed3408a4d473f1192c8aba8.zip
Don't include <sys/lock.h> in headers when only `struct simplelock' is
required. Fixed everything that depended on the pollution.
Notes
Notes: svn path=/head/; revision=31561
Diffstat (limited to 'sys/ufs/ffs/ffs_balloc.c')
-rw-r--r--sys/ufs/ffs/ffs_balloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ufs/ffs/ffs_balloc.c b/sys/ufs/ffs/ffs_balloc.c
index 3ad0bda67d49..d66d48f8014c 100644
--- a/sys/ufs/ffs/ffs_balloc.c
+++ b/sys/ufs/ffs/ffs_balloc.c
@@ -31,12 +31,13 @@
* SUCH DAMAGE.
*
* @(#)ffs_balloc.c 8.8 (Berkeley) 6/16/95
- * $Id: ffs_balloc.c,v 1.14 1997/04/10 13:17:09 bde Exp $
+ * $Id: ffs_balloc.c,v 1.15 1997/08/02 14:33:18 bde Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
+#include <sys/lock.h>
#include <sys/vnode.h>
#include <ufs/ufs/quota.h>