aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBosko Milekic <bmilekic@FreeBSD.org>2000-11-11 23:08:22 +0000
committerBosko Milekic <bmilekic@FreeBSD.org>2000-11-11 23:08:22 +0000
commitb7db1f98188cf0f6f7b04e9b75ae60edb8490042 (patch)
tree2046d88077932cbe71de77169408bec0987d69a3 /sys/dev
parent15072affc8fb9b2cb6839c49989368f987194ec7 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/sk/if_sk.c2
-rw-r--r--sys/dev/ti/if_ti.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sk/if_sk.c b/sys/dev/sk/if_sk.c
index b2ee64ab4af4..befe974b72f1 100644
--- a/sys/dev/sk/if_sk.c
+++ b/sys/dev/sk/if_sk.c
@@ -699,7 +699,7 @@ static int sk_newbuf(sc_if, c, m)
/* Attach the buffer to the mbuf */
MEXTADD(m_new, buf, SK_JLEN, sk_jfree,
- (struct sk_if_softc *)sc_if);
+ (struct sk_if_softc *)sc_if, 0, EXT_NET_DRV);
m_new->m_data = (void *)buf;
m_new->m_pkthdr.len = m_new->m_len = SK_JLEN;
} else {
diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c
index 6cf863209e74..1a88f0d687f9 100644
--- a/sys/dev/ti/if_ti.c
+++ b/sys/dev/ti/if_ti.c
@@ -815,7 +815,7 @@ static int ti_newbuf_jumbo(sc, i, m)
m_new->m_data = (void *) buf;
m_new->m_len = m_new->m_pkthdr.len = TI_JUMBO_FRAMELEN;
MEXTADD(m_new, buf, TI_JUMBO_FRAMELEN, ti_jfree,
- (struct ti_softc *)sc);
+ (struct ti_softc *)sc, 0, EXT_NET_DRV);
} else {
m_new = m;
m_new->m_data = m_new->m_ext.ext_buf;