ip6_gre: Fix get_size calculation for gre6 tunnel
authorHaishuang Yan <yanhaishuang@cmss.chinamobile.com>
Wed, 11 May 2016 10:48:31 +0000 (18:48 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 12 May 2016 20:53:58 +0000 (16:53 -0400)
Do not include attribute IFLA_GRE_TOS.

Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ip6_gre.c

index ee62ec469ab3e6ad97d18656afe58cf440148071..3c25fe67d3da1f27afef1139aa034265bfed378e 100644 (file)
@@ -1394,8 +1394,6 @@ static size_t ip6gre_get_size(const struct net_device *dev)
                nla_total_size(sizeof(struct in6_addr)) +
                /* IFLA_GRE_TTL */
                nla_total_size(1) +
-               /* IFLA_GRE_TOS */
-               nla_total_size(1) +
                /* IFLA_GRE_ENCAP_LIMIT */
                nla_total_size(1) +
                /* IFLA_GRE_FLOWINFO */
@@ -1420,7 +1418,6 @@ static int ip6gre_fill_info(struct sk_buff *skb, const struct net_device *dev)
            nla_put_in6_addr(skb, IFLA_GRE_LOCAL, &p->laddr) ||
            nla_put_in6_addr(skb, IFLA_GRE_REMOTE, &p->raddr) ||
            nla_put_u8(skb, IFLA_GRE_TTL, p->hop_limit) ||
-           /*nla_put_u8(skb, IFLA_GRE_TOS, t->priority) ||*/
            nla_put_u8(skb, IFLA_GRE_ENCAP_LIMIT, p->encap_limit) ||
            nla_put_be32(skb, IFLA_GRE_FLOWINFO, p->flowinfo) ||
            nla_put_u32(skb, IFLA_GRE_FLAGS, p->flags))
This page took 0.02729 seconds and 5 git commands to generate.