[PATCH 1/5] netpoll: fix unaligned accesses

From: Matt Mackall
Date: Thu Aug 26 2004 - 21:34:26 EST


Avoid some alignment traps.

Signed-off-by: Matt Mackall <mpm@xxxxxxxxxxx>

Index: linux/net/core/netpoll.c
===================================================================
--- linux.orig/net/core/netpoll.c 2004-08-24 21:36:22.000000000 -0500
+++ linux/net/core/netpoll.c 2004-08-26 10:47:48.693423643 -0500
@@ -20,6 +20,7 @@
#include <linux/sched.h>
#include <net/tcp.h>
#include <net/udp.h>
+#include <asm/unaligned.h>

/*
* We maintain a small pool of fully-sized skbs, to make sure the
@@ -206,17 +207,17 @@

iph = (struct iphdr *)skb_push(skb, sizeof(*iph));

- iph->version = 4;
- iph->ihl = 5;
+ /* iph->version = 4; iph->ihl = 5; */
+ put_unaligned(0x54, (unsigned char *)iph);
iph->tos = 0;
- iph->tot_len = htons(ip_len);
+ put_unaligned(htonl(ip_len), &(iph->tot_len));
iph->id = 0;
iph->frag_off = 0;
iph->ttl = 64;
iph->protocol = IPPROTO_UDP;
iph->check = 0;
- iph->saddr = htonl(np->local_ip);
- iph->daddr = htonl(np->remote_ip);
+ put_unaligned(htonl(np->local_ip), &(iph->saddr));
+ put_unaligned(htonl(np->remote_ip), &(iph->daddr));
iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);

eth = (struct ethhdr *) skb_push(skb, ETH_HLEN);

--
Mathematics is the supreme nostalgia of our time.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/