summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian S.J. Peron <csjp@FreeBSD.org>2009-03-20 18:00:19 +0000
committerChristian S.J. Peron <csjp@FreeBSD.org>2009-03-20 18:00:19 +0000
commit9e24888850eeb1eed5a1033d934e5f592d58c2cc (patch)
tree35359511602c4f62f7e6a573e8619c47567c3485
parentea35732c7b84afcc73faea2deca38c08559e7219 (diff)
Notes
-rw-r--r--sys/net/bpf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c
index 3484b53ac004..65284a988e8a 100644
--- a/sys/net/bpf.c
+++ b/sys/net/bpf.c
@@ -129,7 +129,7 @@ SYSCTL_INT(_net_bpf, OID_AUTO, maxbufsize, CTLFLAG_RW,
static int bpf_maxinsns = BPF_MAXINSNS;
SYSCTL_INT(_net_bpf, OID_AUTO, maxinsns, CTLFLAG_RW,
&bpf_maxinsns, 0, "Maximum bpf program instructions");
-SYSCTL_NODE(_net_bpf, OID_AUTO, stats, CTLFLAG_RW,
+SYSCTL_NODE(_net_bpf, OID_AUTO, stats, CTLFLAG_MPSAFE | CTLFLAG_RW,
bpf_stats_sysctl, "bpf statistics portal");
static d_open_t bpfopen;