aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/pf/net/pfvar.h
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2011-10-23 10:05:25 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2011-10-23 10:05:25 +0000
commitf54a3a046ef3ee440be855d755596c4af99f5845 (patch)
tree8acdabdb3e917c1bfc46a68b03649dc166d64d89 /sys/contrib/pf/net/pfvar.h
parentdbedf61ce358437e65b514b37beec09f73497fd0 (diff)
downloadsrc-f54a3a046ef3ee440be855d755596c4af99f5845.tar.gz
src-f54a3a046ef3ee440be855d755596c4af99f5845.zip
Correct flag for uma_zalloc() is M_WAITOK. M_WAIT is an old and
deprecated flag from historical mbuf(9) allocator. This is style only change.
Notes
Notes: svn path=/head/; revision=226655
Diffstat (limited to 'sys/contrib/pf/net/pfvar.h')
-rw-r--r--sys/contrib/pf/net/pfvar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/contrib/pf/net/pfvar.h b/sys/contrib/pf/net/pfvar.h
index cfce9dcc0bf1..5b47eee0929d 100644
--- a/sys/contrib/pf/net/pfvar.h
+++ b/sys/contrib/pf/net/pfvar.h
@@ -222,7 +222,7 @@ struct pfi_dynaddr {
#define PF_NAME "pf"
#define PR_NOWAIT M_NOWAIT
-#define PR_WAITOK M_WAIT
+#define PR_WAITOK M_WAITOK
#define PR_ZERO M_ZERO
#define pool_get(p, f) uma_zalloc(*(p), (f))
#define pool_put(p, o) uma_zfree(*(p), (o))