diff options
Diffstat (limited to 'net/bridge/br_device.c')
-rw-r--r-- | net/bridge/br_device.c | 100 |
1 files changed, 48 insertions, 52 deletions
diff --git a/net/bridge/br_device.c b/net/bridge/br_device.c index 21e5901186ea..a6b2f86378c7 100644 --- a/net/bridge/br_device.c +++ b/net/bridge/br_device.c | |||
@@ -74,13 +74,23 @@ out: | |||
74 | return NETDEV_TX_OK; | 74 | return NETDEV_TX_OK; |
75 | } | 75 | } |
76 | 76 | ||
77 | static int br_dev_init(struct net_device *dev) | ||
78 | { | ||
79 | struct net_bridge *br = netdev_priv(dev); | ||
80 | |||
81 | br->stats = alloc_percpu(struct br_cpu_netstats); | ||
82 | if (!br->stats) | ||
83 | return -ENOMEM; | ||
84 | |||
85 | return 0; | ||
86 | } | ||
87 | |||
77 | static int br_dev_open(struct net_device *dev) | 88 | static int br_dev_open(struct net_device *dev) |
78 | { | 89 | { |
79 | struct net_bridge *br = netdev_priv(dev); | 90 | struct net_bridge *br = netdev_priv(dev); |
80 | 91 | ||
81 | netif_carrier_off(dev); | 92 | netif_carrier_off(dev); |
82 | 93 | netdev_update_features(dev); | |
83 | br_features_recompute(br); | ||
84 | netif_start_queue(dev); | 94 | netif_start_queue(dev); |
85 | br_stp_enable_bridge(br); | 95 | br_stp_enable_bridge(br); |
86 | br_multicast_open(br); | 96 | br_multicast_open(br); |
@@ -177,48 +187,11 @@ static void br_getinfo(struct net_device *dev, struct ethtool_drvinfo *info) | |||
177 | strcpy(info->bus_info, "N/A"); | 187 | strcpy(info->bus_info, "N/A"); |
178 | } | 188 | } |
179 | 189 | ||
180 | static int br_set_sg(struct net_device *dev, u32 data) | 190 | static u32 br_fix_features(struct net_device *dev, u32 features) |
181 | { | ||
182 | struct net_bridge *br = netdev_priv(dev); | ||
183 | |||
184 | if (data) | ||
185 | br->feature_mask |= NETIF_F_SG; | ||
186 | else | ||
187 | br->feature_mask &= ~NETIF_F_SG; | ||
188 | |||
189 | br_features_recompute(br); | ||
190 | return 0; | ||
191 | } | ||
192 | |||
193 | static int br_set_tso(struct net_device *dev, u32 data) | ||
194 | { | ||
195 | struct net_bridge *br = netdev_priv(dev); | ||
196 | |||
197 | if (data) | ||
198 | br->feature_mask |= NETIF_F_TSO; | ||
199 | else | ||
200 | br->feature_mask &= ~NETIF_F_TSO; | ||
201 | |||
202 | br_features_recompute(br); | ||
203 | return 0; | ||
204 | } | ||
205 | |||
206 | static int br_set_tx_csum(struct net_device *dev, u32 data) | ||
207 | { | 191 | { |
208 | struct net_bridge *br = netdev_priv(dev); | 192 | struct net_bridge *br = netdev_priv(dev); |
209 | 193 | ||
210 | if (data) | 194 | return br_features_recompute(br, features); |
211 | br->feature_mask |= NETIF_F_NO_CSUM; | ||
212 | else | ||
213 | br->feature_mask &= ~NETIF_F_ALL_CSUM; | ||
214 | |||
215 | br_features_recompute(br); | ||
216 | return 0; | ||
217 | } | ||
218 | |||
219 | static int br_set_flags(struct net_device *netdev, u32 data) | ||
220 | { | ||
221 | return ethtool_op_set_flags(netdev, data, ETH_FLAG_TXVLAN); | ||
222 | } | 195 | } |
223 | 196 | ||
224 | #ifdef CONFIG_NET_POLL_CONTROLLER | 197 | #ifdef CONFIG_NET_POLL_CONTROLLER |
@@ -319,21 +292,12 @@ static int br_del_slave(struct net_device *dev, struct net_device *slave_dev) | |||
319 | static const struct ethtool_ops br_ethtool_ops = { | 292 | static const struct ethtool_ops br_ethtool_ops = { |
320 | .get_drvinfo = br_getinfo, | 293 | .get_drvinfo = br_getinfo, |
321 | .get_link = ethtool_op_get_link, | 294 | .get_link = ethtool_op_get_link, |
322 | .get_tx_csum = ethtool_op_get_tx_csum, | ||
323 | .set_tx_csum = br_set_tx_csum, | ||
324 | .get_sg = ethtool_op_get_sg, | ||
325 | .set_sg = br_set_sg, | ||
326 | .get_tso = ethtool_op_get_tso, | ||
327 | .set_tso = br_set_tso, | ||
328 | .get_ufo = ethtool_op_get_ufo, | ||
329 | .set_ufo = ethtool_op_set_ufo, | ||
330 | .get_flags = ethtool_op_get_flags, | ||
331 | .set_flags = br_set_flags, | ||
332 | }; | 295 | }; |
333 | 296 | ||
334 | static const struct net_device_ops br_netdev_ops = { | 297 | static const struct net_device_ops br_netdev_ops = { |
335 | .ndo_open = br_dev_open, | 298 | .ndo_open = br_dev_open, |
336 | .ndo_stop = br_dev_stop, | 299 | .ndo_stop = br_dev_stop, |
300 | .ndo_init = br_dev_init, | ||
337 | .ndo_start_xmit = br_dev_xmit, | 301 | .ndo_start_xmit = br_dev_xmit, |
338 | .ndo_get_stats64 = br_get_stats64, | 302 | .ndo_get_stats64 = br_get_stats64, |
339 | .ndo_set_mac_address = br_set_mac_address, | 303 | .ndo_set_mac_address = br_set_mac_address, |
@@ -347,6 +311,7 @@ static const struct net_device_ops br_netdev_ops = { | |||
347 | #endif | 311 | #endif |
348 | .ndo_add_slave = br_add_slave, | 312 | .ndo_add_slave = br_add_slave, |
349 | .ndo_del_slave = br_del_slave, | 313 | .ndo_del_slave = br_del_slave, |
314 | .ndo_fix_features = br_fix_features, | ||
350 | }; | 315 | }; |
351 | 316 | ||
352 | static void br_dev_free(struct net_device *dev) | 317 | static void br_dev_free(struct net_device *dev) |
@@ -357,18 +322,49 @@ static void br_dev_free(struct net_device *dev) | |||
357 | free_netdev(dev); | 322 | free_netdev(dev); |
358 | } | 323 | } |
359 | 324 | ||
325 | static struct device_type br_type = { | ||
326 | .name = "bridge", | ||
327 | }; | ||
328 | |||
360 | void br_dev_setup(struct net_device *dev) | 329 | void br_dev_setup(struct net_device *dev) |
361 | { | 330 | { |
331 | struct net_bridge *br = netdev_priv(dev); | ||
332 | |||
362 | random_ether_addr(dev->dev_addr); | 333 | random_ether_addr(dev->dev_addr); |
363 | ether_setup(dev); | 334 | ether_setup(dev); |
364 | 335 | ||
365 | dev->netdev_ops = &br_netdev_ops; | 336 | dev->netdev_ops = &br_netdev_ops; |
366 | dev->destructor = br_dev_free; | 337 | dev->destructor = br_dev_free; |
367 | SET_ETHTOOL_OPS(dev, &br_ethtool_ops); | 338 | SET_ETHTOOL_OPS(dev, &br_ethtool_ops); |
339 | SET_NETDEV_DEVTYPE(dev, &br_type); | ||
368 | dev->tx_queue_len = 0; | 340 | dev->tx_queue_len = 0; |
369 | dev->priv_flags = IFF_EBRIDGE; | 341 | dev->priv_flags = IFF_EBRIDGE; |
370 | 342 | ||
371 | dev->features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HIGHDMA | | 343 | dev->features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HIGHDMA | |
372 | NETIF_F_GSO_MASK | NETIF_F_NO_CSUM | NETIF_F_LLTX | | 344 | NETIF_F_GSO_MASK | NETIF_F_NO_CSUM | NETIF_F_LLTX | |
373 | NETIF_F_NETNS_LOCAL | NETIF_F_GSO | NETIF_F_HW_VLAN_TX; | 345 | NETIF_F_NETNS_LOCAL | NETIF_F_HW_VLAN_TX; |
346 | dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HIGHDMA | | ||
347 | NETIF_F_GSO_MASK | NETIF_F_NO_CSUM | | ||
348 | NETIF_F_HW_VLAN_TX; | ||
349 | |||
350 | br->dev = dev; | ||
351 | spin_lock_init(&br->lock); | ||
352 | INIT_LIST_HEAD(&br->port_list); | ||
353 | spin_lock_init(&br->hash_lock); | ||
354 | |||
355 | br->bridge_id.prio[0] = 0x80; | ||
356 | br->bridge_id.prio[1] = 0x00; | ||
357 | |||
358 | memcpy(br->group_addr, br_group_address, ETH_ALEN); | ||
359 | |||
360 | br->stp_enabled = BR_NO_STP; | ||
361 | br->designated_root = br->bridge_id; | ||
362 | br->bridge_max_age = br->max_age = 20 * HZ; | ||
363 | br->bridge_hello_time = br->hello_time = 2 * HZ; | ||
364 | br->bridge_forward_delay = br->forward_delay = 15 * HZ; | ||
365 | br->ageing_time = 300 * HZ; | ||
366 | |||
367 | br_netfilter_rtable_init(br); | ||
368 | br_stp_timer_init(br); | ||
369 | br_multicast_init(br); | ||
374 | } | 370 | } |