aboutsummaryrefslogtreecommitdiff
path: root/sys/rpc/rpcm_subs.h
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2012-12-05 08:04:20 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2012-12-05 08:04:20 +0000
commiteb1b1807afd1266445720b768b1bdbcdf7655a0a (patch)
treebf083a0829f8044362fc83354c8e8b60d1f7932a /sys/rpc/rpcm_subs.h
parent6dbda21756f4e6634972b1a9405c49fe0605de6d (diff)
downloadsrc-eb1b1807afd1266445720b768b1bdbcdf7655a0a.tar.gz
src-eb1b1807afd1266445720b768b1bdbcdf7655a0a.zip
Mechanically substitute flags from historic mbuf allocator with
malloc(9) flags within sys. Exceptions: - sys/contrib not touched - sys/mbuf.h edited manually
Notes
Notes: svn path=/head/; revision=243882
Diffstat (limited to 'sys/rpc/rpcm_subs.h')
-rw-r--r--sys/rpc/rpcm_subs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/rpc/rpcm_subs.h b/sys/rpc/rpcm_subs.h
index ac789f3c593a..f0d60a3d6ebc 100644
--- a/sys/rpc/rpcm_subs.h
+++ b/sys/rpc/rpcm_subs.h
@@ -80,7 +80,7 @@
#define rpcm_build(a,c,s) \
{ if ((s) > M_TRAILINGSPACE(mb)) { \
- MGET(mb2, M_WAIT, MT_DATA); \
+ MGET(mb2, M_WAITOK, MT_DATA); \
if ((s) > MLEN) \
panic("build > MLEN"); \
mb->m_next = mb2; \