summaryrefslogtreecommitdiffstats
path: root/sys/kern/uipc_mbuf.c
diff options
context:
space:
mode:
authorgreen <green@FreeBSD.org>1999-12-18 20:04:19 +0000
committergreen <green@FreeBSD.org>1999-12-18 20:04:19 +0000
commit794cbab436ec2bf5ae9de4cfcff455af91096c3f (patch)
tree32d4d34005beae4e94da1dda1a696f9d9ba8dac6 /sys/kern/uipc_mbuf.c
parent35353514218820a5eaf5a0d03320d9a7fd313922 (diff)
downloadFreeBSD-src-794cbab436ec2bf5ae9de4cfcff455af91096c3f.zip
FreeBSD-src-794cbab436ec2bf5ae9de4cfcff455af91096c3f.tar.gz
Woops, I'm so sorry I forgot this! From the last mbuf.h change:
m_mballoc_wakeup() (inline) -> MMBWAKEUP() (macro) m_clalloc_wakeup() (inline) -> MCLWAKEUP() (macro) Noticed by: peter
Diffstat (limited to 'sys/kern/uipc_mbuf.c')
-rw-r--r--sys/kern/uipc_mbuf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c
index d648f5c..ca43324 100644
--- a/sys/kern/uipc_mbuf.c
+++ b/sys/kern/uipc_mbuf.c
@@ -217,7 +217,7 @@ m_mballoc_wait(int caller, int type)
mbstat.m_wait++;
/* Wake up another if we have more free. */
if (mmbfree != NULL)
- m_mballoc_wakeup();
+ MMBWAKEUP();
}
splx(s);
return (p);
@@ -346,7 +346,7 @@ m_clalloc_wait(void)
mbstat.m_wait++;
/* Wake up another if we have more free. */
if (mclfree != NULL)
- m_clalloc_wakeup();
+ MCLWAKEUP();
}
splx(s);
OpenPOWER on IntegriCloud