summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrik <rik@FreeBSD.org>2005-07-09 16:14:05 +0000
committerrik <rik@FreeBSD.org>2005-07-09 16:14:05 +0000
commita62ddd3522853d6c4c5cc44450d5f53420110dad (patch)
tree7236153fa972c4171adfc38df99840d1537c3096
parent6f7b42e65989f75a72cb5b1fcd95006723198f98 (diff)
downloadFreeBSD-src-a62ddd3522853d6c4c5cc44450d5f53420110dad.zip
FreeBSD-src-a62ddd3522853d6c4c5cc44450d5f53420110dad.tar.gz
Use m_length (m, NULL) instead of m->m_pkthdr.len.
Problems reported by: strijar at urai dot ru Approved by: re (scottl)
-rw-r--r--sys/dev/cp/if_cp.c2
-rw-r--r--sys/dev/ctau/if_ct.c2
-rw-r--r--sys/dev/cx/if_cx.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/cp/if_cp.c b/sys/dev/cp/if_cp.c
index bd18f25..a5692fd 100644
--- a/sys/dev/cp/if_cp.c
+++ b/sys/dev/cp/if_cp.c
@@ -824,7 +824,7 @@ static void cp_send (drv_t *d)
if (d->ifp->if_bpf)
BPF_MTAP (d->ifp, m);
#endif
- len = m->m_pkthdr.len;
+ len = m_length (m, NULL);
if (len >= BUFSZ)
printf ("%s: too long packet: %d bytes: ",
d->name, len);
diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c
index f026a9f..f231820 100644
--- a/sys/dev/ctau/if_ct.c
+++ b/sys/dev/ctau/if_ct.c
@@ -1033,7 +1033,7 @@ static void ct_send (drv_t *d)
if (d->ifp->if_bpf)
BPF_MTAP (d->ifp, m);
#endif
- len = m->m_pkthdr.len;
+ len = m_length (m, NULL);
if (! m->m_next)
ct_send_packet (d->chan, (u_char*)mtod (m, caddr_t),
len, 0);
diff --git a/sys/dev/cx/if_cx.c b/sys/dev/cx/if_cx.c
index 4f757f6..7b0425e 100644
--- a/sys/dev/cx/if_cx.c
+++ b/sys/dev/cx/if_cx.c
@@ -1188,7 +1188,7 @@ static void cx_send (drv_t *d)
if (d->ifp->if_bpf)
BPF_MTAP (d->ifp, m);
#endif
- len = m->m_pkthdr.len;
+ len = m_length (m, NULL);
if (! m->m_next)
cx_send_packet (d->chan, (u_char*)mtod (m, caddr_t),
len, 0);
OpenPOWER on IntegriCloud