diff options
author | Kristof Provost <kp@FreeBSD.org> | 2018-05-30 12:40:37 +0000 |
---|---|---|
committer | Kristof Provost <kp@FreeBSD.org> | 2018-05-30 12:40:37 +0000 |
commit | d25c25dc521d46487b13ee3962f16841f982768f (patch) | |
tree | 4acfa0d5bf07d08892571d967a9802607c97f2a4 /sys/net | |
parent | 65b806b289705db6e875beee8f0dc829ce46190b (diff) | |
download | src-d25c25dc521d46487b13ee3962f16841f982768f.tar.gz src-d25c25dc521d46487b13ee3962f16841f982768f.zip |
pf: Add missing include statement
rmlocks require <sys/lock.h> as well as <sys/rmlock.h>.
Unbreak mips build.
Notes
Notes:
svn path=/head/; revision=334379
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/pfvar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index f4c503d844c0..824b8ec3f488 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -41,6 +41,7 @@ #include <sys/cpuset.h> #include <sys/malloc.h> #include <sys/refcount.h> +#include <sys/lock.h> #include <sys/rmlock.h> #include <sys/tree.h> #include <vm/uma.h> |