Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6a2b9ce0a383059492c93682bc094cce0f705fff
Commit:     6a2b9ce0a383059492c93682bc094cce0f705fff
Parent:     52d570aabe921663a987b2e4bae2bdc411cee480
Author:     Noriaki TAKAMIYA <[EMAIL PROTECTED]>
AuthorDate: Tue Jan 23 22:09:41 2007 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Tue Jan 23 22:09:41 2007 -0800

    [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 <[EMAIL PROTECTED]>
    Acked-by: Thomas Graf <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/ipv6/route.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 8c3d568..5f0043c 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));
 }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to