macvlan.c (7622d4905a038961da6b1c6c3fe4be6c3dad7ef9) | macvlan.c (0d0162e7a33d3710b9604e7c68c0f31f5c457428) |
---|---|
1/* 2 * Copyright (c) 2007 Patrick McHardy <kaber@trash.net> 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License as 6 * published by the Free Software Foundation; either version 2 of 7 * the License, or (at your option) any later version. 8 * --- 792 unchanged lines hidden (view full) --- 801 features |= NETIF_F_ALL_FOR_ALL; 802 features &= (vlan->set_features | ~MACVLAN_FEATURES); 803 mask = features; 804 805 features = netdev_increment_features(vlan->lowerdev->features, 806 features, 807 mask); 808 features |= ALWAYS_ON_FEATURES; | 1/* 2 * Copyright (c) 2007 Patrick McHardy <kaber@trash.net> 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License as 6 * published by the Free Software Foundation; either version 2 of 7 * the License, or (at your option) any later version. 8 * --- 792 unchanged lines hidden (view full) --- 801 features |= NETIF_F_ALL_FOR_ALL; 802 features &= (vlan->set_features | ~MACVLAN_FEATURES); 803 mask = features; 804 805 features = netdev_increment_features(vlan->lowerdev->features, 806 features, 807 mask); 808 features |= ALWAYS_ON_FEATURES; |
809 features &= ~NETIF_F_NETNS_LOCAL; |
|
809 810 return features; 811} 812 813#ifdef CONFIG_NET_POLL_CONTROLLER 814static void macvlan_dev_poll_controller(struct net_device *dev) 815{ 816 return; --- 446 unchanged lines hidden --- | 810 811 return features; 812} 813 814#ifdef CONFIG_NET_POLL_CONTROLLER 815static void macvlan_dev_poll_controller(struct net_device *dev) 816{ 817 return; --- 446 unchanged lines hidden --- |