summaryrefslogtreecommitdiffstats
path: root/sys/contrib
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2011-10-23 10:05:25 +0000
committerglebius <glebius@FreeBSD.org>2011-10-23 10:05:25 +0000
commit0b986dc6d5b52d67e6884d4885698c693f480a23 (patch)
tree8acdabdb3e917c1bfc46a68b03649dc166d64d89 /sys/contrib
parent1edde0f4fd5b6b7e8537725706dfb98ecc14e856 (diff)
downloadFreeBSD-src-0b986dc6d5b52d67e6884d4885698c693f480a23.zip
FreeBSD-src-0b986dc6d5b52d67e6884d4885698c693f480a23.tar.gz
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.
Diffstat (limited to 'sys/contrib')
-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 cfce9dc..5b47eee 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))
OpenPOWER on IntegriCloud