In case of removal of m_copy() the macro should remain named M_COPY()
in ip_compat.h after r305824. Leaving as vanilla as possible aids in future maintenance and upgrades. Suggested by: glebius, cy
This commit is contained in:
parent
7cca93e61a
commit
61a3c512cc
@ -3226,7 +3226,7 @@ ipf_check(ctx, ip, hlen, ifp, out
|
||||
fdp = fin->fin_dif;
|
||||
if ((fdp != NULL) && (fdp->fd_ptr != NULL) &&
|
||||
(fdp->fd_ptr != (void *)-1)) {
|
||||
mc = M_COPYM(fin->fin_m);
|
||||
mc = M_COPY(fin->fin_m);
|
||||
if (mc != NULL)
|
||||
ipf_fastroute(mc, &mc, fin, fdp);
|
||||
}
|
||||
|
@ -212,7 +212,7 @@ struct ether_addr {
|
||||
# define MSGDSIZE(m) mbufchainlen(m)
|
||||
# define M_LEN(m) (m)->m_len
|
||||
# define M_ADJ(m,x) m_adj(m, x)
|
||||
# define M_COPYM(x) m_copym((x), 0, M_COPYALL, M_NOWAIT)
|
||||
# define M_COPY(x) m_copym((x), 0, M_COPYALL, M_NOWAIT)
|
||||
# define M_DUP(m) m_dup(m, M_NOWAIT)
|
||||
# define IPF_PANIC(x,y) if (x) { printf y; panic("ipf_panic"); }
|
||||
typedef struct mbuf mb_t;
|
||||
@ -367,7 +367,7 @@ typedef struct mb_s {
|
||||
# define MSGDSIZE(m) msgdsize(m)
|
||||
# define M_LEN(m) (m)->mb_len
|
||||
# define M_ADJ(m,x) (m)->mb_len += x
|
||||
# define M_COPYM(m) dupmbt(m)
|
||||
# define M_COPY(m) dupmbt(m)
|
||||
# define M_DUP(m) dupmbt(m)
|
||||
# define GETKTIME(x) gettimeofday((struct timeval *)(x), NULL)
|
||||
# define MTOD(m, t) ((t)(m)->mb_data)
|
||||
|
Loading…
Reference in New Issue
Block a user