Nuke EPIC_MGETCLUSTER entirely. Since 1.60 we don't use it anymore and
instead use our optimized m_getcl(). Submitted by: Hiten Pandya <hiten@unixdaemons.com> MFC After: 1 week
This commit is contained in:
parent
f5201caa37
commit
6c37da8876
@ -131,16 +131,3 @@ struct epic_type {
|
||||
epic_read_phy_reg((sc), (phy), (reg))
|
||||
#define PHY_WRITE_2(sc, phy, reg, val) \
|
||||
epic_write_phy_reg((sc), (phy), (reg), (val))
|
||||
|
||||
/* Macro to get either mbuf cluster or nothing */
|
||||
#define EPIC_MGETCLUSTER(m) \
|
||||
{ MGETHDR((m),M_DONTWAIT,MT_DATA); \
|
||||
if (m) { \
|
||||
MCLGET((m),M_DONTWAIT); \
|
||||
if( 0 == ((m)->m_flags & M_EXT) ) { \
|
||||
m_freem(m); \
|
||||
(m) = NULL; \
|
||||
} \
|
||||
} \
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user