summaryrefslogtreecommitdiffstats
path: root/sys/net/if_loop.c
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>2001-10-05 19:04:23 +0000
committerdfr <dfr@FreeBSD.org>2001-10-05 19:04:23 +0000
commit0eec0bfe7bba52169a100e2894ea67eac99fe031 (patch)
tree70e2d4102500d99a5cb8a3b9d09bc380c1f8359e /sys/net/if_loop.c
parent3908c08eda80b3791a2bd06e8517522098471b5e (diff)
downloadFreeBSD-src-0eec0bfe7bba52169a100e2894ea67eac99fe031.zip
FreeBSD-src-0eec0bfe7bba52169a100e2894ea67eac99fe031.tar.gz
Add ia64 to the list of machines which don't do unaligned reads.
Diffstat (limited to 'sys/net/if_loop.c')
-rw-r--r--sys/net/if_loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c
index 3d8a1c2..c17a7be 100644
--- a/sys/net/if_loop.c
+++ b/sys/net/if_loop.c
@@ -322,7 +322,7 @@ if_simloop(ifp, m, af, hlen)
/* Strip away media header */
if (hlen > 0) {
m_adj(m, hlen);
-#ifdef __alpha__
+#if defined(__alpha__) || defined(__ia64__)
/* The alpha doesn't like unaligned data.
* We move data down in the first mbuf */
if (mtod(m, vm_offset_t) & 3) {
OpenPOWER on IntegriCloud