summaryrefslogtreecommitdiffstats
path: root/net/ipv6/route.c
diff options
context:
space:
mode:
authorNoriaki TAKAMIYA2007-01-24 07:09:41 +0100
committerDavid S. Miller2007-01-24 07:09:41 +0100
commit6a2b9ce0a383059492c93682bc094cce0f705fff (patch)
tree4e5dabfc311bc364d8c774e81ec6d5ee6af897fe /net/ipv6/route.c
parent[TCP]: rare bad TCP checksum with 2.6.19 (diff)
downloadkernel-qcow2-linux-6a2b9ce0a383059492c93682bc094cce0f705fff.tar.gz
kernel-qcow2-linux-6a2b9ce0a383059492c93682bc094cce0f705fff.tar.xz
kernel-qcow2-linux-6a2b9ce0a383059492c93682bc094cce0f705fff.zip
[IPV6]: Fixed the size of the netlink message notified by inet6_rt_notify().
I think the return value of rt6_nlmsg_size() should includes the amount of RTA_METRICS. Signed-off-by: Noriaki TAKAMIYA <takamiya@po.ntts.co.jp> Acked-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r--net/ipv6/route.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 8c3d56871b50..5f0043c30b70 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -2017,6 +2017,7 @@ static inline size_t rt6_nlmsg_size(void)
+ nla_total_size(4) /* RTA_IIF */
+ nla_total_size(4) /* RTA_OIF */
+ nla_total_size(4) /* RTA_PRIORITY */
+ + RTAX_MAX * nla_total_size(4) /* RTA_METRICS */
+ nla_total_size(sizeof(struct rta_cacheinfo));
}