summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2005-07-25 00:41:25 +0000
committerBrad Smith <brad@cvs.openbsd.org>2005-07-25 00:41:25 +0000
commita9b88245b11cd919df83a129256888a94b3a75e8 (patch)
tree13bddb98ddb5267f3779cf5dbf045022282d8dea /sys
parent31d73364673c4fef1c56d31df804e86f080c4e8a (diff)
- mbuf external storage is of (caddr_t), not (caddr_t *).
- simplify code a bit and use MEXTADD macro.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_ti.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/sys/dev/pci/if_ti.c b/sys/dev/pci/if_ti.c
index e4bf5a30dfd..687cfaf1211 100644
--- a/sys/dev/pci/if_ti.c
+++ b/sys/dev/pci/if_ti.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ti.c,v 1.68 2005/07/18 06:29:54 camield Exp $ */
+/* $OpenBSD: if_ti.c,v 1.69 2005/07/25 00:41:24 brad Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -858,7 +858,7 @@ int ti_newbuf_jumbo(sc, i, m)
struct ti_rx_desc *r;
if (m == NULL) {
- caddr_t *buf = NULL;
+ caddr_t buf = NULL;
/* Allocate the mbuf. */
MGETHDR(m_new, M_DONTWAIT, MT_DATA);
@@ -873,13 +873,8 @@ int ti_newbuf_jumbo(sc, i, m)
}
/* Attach the buffer to the mbuf. */
- m_new->m_data = m_new->m_ext.ext_buf = (void *)buf;
- m_new->m_flags |= M_EXT;
- m_new->m_len = m_new->m_pkthdr.len =
- m_new->m_ext.ext_size = ETHER_MAX_LEN_JUMBO;
- m_new->m_ext.ext_free = ti_jfree;
- m_new->m_ext.ext_arg = sc;
- MCLINITREFERENCE(m_new);
+ m_new->m_len = m_new->m_pkthdr.len = ETHER_MAX_LEN_JUMBO;
+ MEXTADD(m_new, buf, ETHER_MAX_LEN_JUMBO, 0, ti_jfree, sc);
} else {
m_new = m;
m_new->m_data = m_new->m_ext.ext_buf;