ip_tunnels: remove custom alignment and packing
authorJiri Benc <jbenc@redhat.com>
Thu, 20 Aug 2015 11:56:20 +0000 (13:56 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 20 Aug 2015 22:42:35 +0000 (15:42 -0700)
The custom alignment of struct ip_tunnel_key is unnecessary. In struct
sw_flow_key, it starts at offset 256, in struct ip_tunnel_info it's the
first field.

The structure is also packed even without the __packed keyword.

Signed-off-by: Jiri Benc <jbenc@redhat.com>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/ip_tunnels.h

index 984dbfa15e13f199682825fa10e0f295be9102ad..81cf11c931e4457e933906ce9fdac9d27aab7358 100644 (file)
@@ -36,7 +36,7 @@ struct ip_tunnel_key {
        __u8                    ipv4_ttl;
        __be16                  tp_src;
        __be16                  tp_dst;
-} __packed __aligned(4); /* Minimize padding. */
+};
 
 /* Indicates whether the tunnel info structure represents receive
  * or transmit tunnel parameters.