[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20130116.011120.2166745757980086775.davem@davemloft.net>
Date: Wed, 16 Jan 2013 01:11:20 -0500 (EST)
From: David Miller <davem@...emloft.net>
To: eric.dumazet@...il.com
Cc: greearb@...delatech.com, netdev@...r.kernel.org
Subject: Re: 802.1q HW filter spammage in 3.7.2+ kernels.
From: Eric Dumazet <eric.dumazet@...il.com>
Date: Tue, 15 Jan 2013 22:01:48 -0800
> @@ -828,7 +828,12 @@ static int macvlan_changelink(struct net_device *dev,
>
> static size_t macvlan_get_size(const struct net_device *dev)
> {
> - return nla_total_size(4);
> + return
> + /* IFLA_MACVLAN_MODE, */
> + nla_total_size(4) +
> + /* IFLA_MACVLAN_FLAGS */
> + nla_total_size(2) +
> + 0;
Maybe:
return (nla_total_size(4) + /* IFLA_MACVLAN_MODE, */
nla_total_size(2) + /* IFLA_MACVLAN_FLAGS */
0);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists