diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-01-19 20:16:28 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-01-19 20:16:28 +0000 |
commit | 48708bb00d545b5016a400172fb57b2539de1292 (patch) | |
tree | 23b07c8a88629700b9834afa2abe34c478263f2e /sys/kern/vfs_vops.c | |
parent | 002124f10b6efe41acf62100a28f8d9fad5cafa1 (diff) |
Oops, missed the new #include when manually applying the diff from
Helg (xx404 (at) msn.com)
Diffstat (limited to 'sys/kern/vfs_vops.c')
-rw-r--r-- | sys/kern/vfs_vops.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/vfs_vops.c b/sys/kern/vfs_vops.c index fa23acebc03..53dde56a07e 100644 --- a/sys/kern/vfs_vops.c +++ b/sys/kern/vfs_vops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_vops.c,v 1.10 2015/01/19 20:13:03 guenther Exp $ */ +/* $OpenBSD: vfs_vops.c,v 1.11 2015/01/19 20:16:27 guenther Exp $ */ /* * Copyright (c) 2010 Thordur I. Bjornsson <thib@openbsd.org> * @@ -48,6 +48,8 @@ #include <sys/unistd.h> #ifdef VFSLCKDEBUG +#include <sys/systm.h> /* for panic() */ + #define ASSERT_VP_ISLOCKED(vp) do { \ if (((vp)->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) { \ VOP_PRINT(vp); \ |