diff options
author | Vlad Yasevich <vyasevic@redhat.com> | 2013-12-11 19:27:11 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-12 19:38:39 +0100 |
commit | 2f6a1b6607fd6b0eb9501843a40e0c7555f37b4a (patch) | |
tree | 80d2a3c5c9396bdd07c751eaa2ccfd42cd9c87c2 /drivers/net/macvtap.c | |
parent | macvtap: Add support of packet capture on macvtap device. (diff) | |
download | linux-2f6a1b6607fd6b0eb9501843a40e0c7555f37b4a.tar.xz linux-2f6a1b6607fd6b0eb9501843a40e0c7555f37b4a.zip |
macvlan: Remove custom recieve and forward handlers
Since now macvlan and macvtap use the same receive and
forward handlers, we can remove them completely and use
netif_rx and dev_forward_skb() directly.
Signed-off-by: Vlad Yasevich <vyasevic@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/macvtap.c')
-rw-r--r-- | drivers/net/macvtap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/macvtap.c b/drivers/net/macvtap.c index 85ecfccf9c60..64409af0da31 100644 --- a/drivers/net/macvtap.c +++ b/drivers/net/macvtap.c @@ -400,8 +400,7 @@ static int macvtap_newlink(struct net *src_net, /* Don't put anything that may fail after macvlan_common_newlink * because we can't undo what it does. */ - return macvlan_common_newlink(src_net, dev, tb, data, - netif_rx, dev_forward_skb); + return macvlan_common_newlink(src_net, dev, tb, data); } static void macvtap_dellink(struct net_device *dev, |