]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net neighbour, decnet: Ensure to align device private data on preferred alignment.
authorYOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org>
Sat, 9 Feb 2013 07:00:59 +0000 (07:00 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 11 Feb 2013 05:21:44 +0000 (00:21 -0500)
To allow both of protocol-specific data and device-specific data
attached with neighbour entry, and to eliminate size calculation
cost when allocating entry, sizeof protocol-speicic data must be
multiple of NEIGH_PRIV_ALIGN.  On 64bit archs,
sizeof(struct dn_neigh) is multiple of NEIGH_PRIV_ALIGN, but on
32bit archs, it was not.

Introduce NEIGH_ENTRY_SPACE() macro to ensure that protocol-specific
entry-size meets our requirement.

Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/neighbour.h
net/decnet/dn_neigh.c

index 629ee573c6d0307a4d394dcc16e9812e955a36d4..7e748ad8b50c71900bdcedaf09a8c69e41f567a3 100644 (file)
@@ -181,6 +181,7 @@ struct neigh_table {
 };
 
 #define NEIGH_PRIV_ALIGN       sizeof(long long)
+#define NEIGH_ENTRY_SIZE(size) ALIGN((size), NEIGH_PRIV_ALIGN)
 
 static inline void *neighbour_priv(const struct neighbour *n)
 {
index 3aede1b459fd6bbe4d276606200a1965496de1e1..856636addd7618598be5c341cb6afd1de1ba971a 100644 (file)
@@ -95,7 +95,7 @@ static u32 dn_neigh_hash(const void *pkey,
 
 struct neigh_table dn_neigh_table = {
        .family =                       PF_DECnet,
-       .entry_size =                   sizeof(struct dn_neigh),
+       .entry_size =                   NEIGH_ENTRY_SIZE(sizeof(struct dn_neigh)),
        .key_len =                      sizeof(__le16),
        .hash =                         dn_neigh_hash,
        .constructor =                  dn_neigh_construct,