summaryrefslogtreecommitdiffstats
path: root/sys/netipx/spx_usrreq.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netipx/spx_usrreq.c')
-rw-r--r--sys/netipx/spx_usrreq.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netipx/spx_usrreq.c b/sys/netipx/spx_usrreq.c
index b826ee8..86882cb 100644
--- a/sys/netipx/spx_usrreq.c
+++ b/sys/netipx/spx_usrreq.c
@@ -1397,12 +1397,12 @@ spx_attach(struct socket *so, int proto, struct thread *td)
return (error);
}
- MALLOC(cb, struct spxpcb *, sizeof *cb, M_PCB, M_NOWAIT | M_ZERO);
+ cb = malloc(sizeof *cb, M_PCB, M_NOWAIT | M_ZERO);
if (cb == NULL)
return (ENOBUFS);
mm = m_getclr(M_DONTWAIT, MT_DATA);
if (mm == NULL) {
- FREE(cb, M_PCB);
+ free(cb, M_PCB);
return (ENOBUFS);
}
@@ -1411,7 +1411,7 @@ spx_attach(struct socket *so, int proto, struct thread *td)
if (error) {
IPX_LIST_UNLOCK();
m_free(mm);
- FREE(cb, M_PCB);
+ free(cb, M_PCB);
return (error);
}
ipxp = sotoipxpcb(so);
@@ -1463,7 +1463,7 @@ spx_pcbdetach(struct ipxpcb *ipxp)
m_freem(m);
}
m_free(dtom(cb->s_ipx));
- FREE(cb, M_PCB);
+ free(cb, M_PCB);
ipxp->ipxp_pcb = NULL;
}
OpenPOWER on IntegriCloud