Commit 4c3477dc authored by Arvid Brodin's avatar Arvid Brodin Committed by David S. Miller

net/hsr: Added SET_NETDEV_DEVTYPE and features |= NETIF_F_NETNS_LOCAL to dev_setup.

Signed-off-by: default avatarArvid Brodin <arvid.brodin@alten.se>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1cc1eb52
...@@ -501,6 +501,9 @@ static const struct net_device_ops hsr_device_ops = { ...@@ -501,6 +501,9 @@ static const struct net_device_ops hsr_device_ops = {
.ndo_fix_features = hsr_fix_features, .ndo_fix_features = hsr_fix_features,
}; };
static struct device_type hsr_type = {
.name = "hsr",
};
void hsr_dev_setup(struct net_device *dev) void hsr_dev_setup(struct net_device *dev)
{ {
...@@ -509,6 +512,7 @@ void hsr_dev_setup(struct net_device *dev) ...@@ -509,6 +512,7 @@ void hsr_dev_setup(struct net_device *dev)
ether_setup(dev); ether_setup(dev);
dev->header_ops = &hsr_header_ops; dev->header_ops = &hsr_header_ops;
dev->netdev_ops = &hsr_device_ops; dev->netdev_ops = &hsr_device_ops;
SET_NETDEV_DEVTYPE(dev, &hsr_type);
dev->tx_queue_len = 0; dev->tx_queue_len = 0;
dev->destructor = hsr_dev_destroy; dev->destructor = hsr_dev_destroy;
...@@ -525,6 +529,10 @@ void hsr_dev_setup(struct net_device *dev) ...@@ -525,6 +529,10 @@ void hsr_dev_setup(struct net_device *dev)
* hsr_header_create() etc. * hsr_header_create() etc.
*/ */
dev->features |= NETIF_F_VLAN_CHALLENGED; dev->features |= NETIF_F_VLAN_CHALLENGED;
/* Not sure about this. Taken from bridge code. netdev_features.h says
* it means "Does not change network namespaces".
*/
dev->features |= NETIF_F_NETNS_LOCAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment