From: Eric Dumazet Date: Fri, 8 Feb 2008 07:29:57 +0000 (-0800) Subject: [DECNET] ROUTE: remove unecessary alignment X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fca09fb732b2cc310110b2fcbf3449df043a96d0;p=linux-beck.git [DECNET] ROUTE: remove unecessary alignment Same alignment requirement was removed on IP route cache in the past. This alignment actually has bad effect on 32 bit arches, uniprocessor, since sizeof(dn_rt_hash_bucket) is forced to 8 bytes instead of 4. Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller --- diff --git a/net/decnet/dn_route.c b/net/decnet/dn_route.c index 31be29b8b5a3..9dc0abb50eaf 100644 --- a/net/decnet/dn_route.c +++ b/net/decnet/dn_route.c @@ -94,7 +94,7 @@ struct dn_rt_hash_bucket { struct dn_route *chain; spinlock_t lock; -} __attribute__((__aligned__(8))); +}; extern struct neigh_table dn_neigh_table;