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
This commit is contained in:
parent
0ab582e4c1
commit
e76a6ba9eb
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user