diff options
Diffstat (limited to 'drivers/net/bonding/bond_main.c')
-rw-r--r-- | drivers/net/bonding/bond_main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index d927f71af8a3..66596d80b505 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
@@ -4277,7 +4277,7 @@ out: | |||
4277 | dev_kfree_skb(skb); | 4277 | dev_kfree_skb(skb); |
4278 | } | 4278 | } |
4279 | read_unlock(&bond->lock); | 4279 | read_unlock(&bond->lock); |
4280 | return 0; | 4280 | return NETDEV_TX_OK; |
4281 | } | 4281 | } |
4282 | 4282 | ||
4283 | 4283 | ||
@@ -4308,7 +4308,7 @@ out: | |||
4308 | 4308 | ||
4309 | read_unlock(&bond->curr_slave_lock); | 4309 | read_unlock(&bond->curr_slave_lock); |
4310 | read_unlock(&bond->lock); | 4310 | read_unlock(&bond->lock); |
4311 | return 0; | 4311 | return NETDEV_TX_OK; |
4312 | } | 4312 | } |
4313 | 4313 | ||
4314 | /* | 4314 | /* |
@@ -4354,7 +4354,7 @@ out: | |||
4354 | dev_kfree_skb(skb); | 4354 | dev_kfree_skb(skb); |
4355 | } | 4355 | } |
4356 | read_unlock(&bond->lock); | 4356 | read_unlock(&bond->lock); |
4357 | return 0; | 4357 | return NETDEV_TX_OK; |
4358 | } | 4358 | } |
4359 | 4359 | ||
4360 | /* | 4360 | /* |
@@ -4414,7 +4414,7 @@ out: | |||
4414 | 4414 | ||
4415 | /* frame sent to all suitable interfaces */ | 4415 | /* frame sent to all suitable interfaces */ |
4416 | read_unlock(&bond->lock); | 4416 | read_unlock(&bond->lock); |
4417 | return 0; | 4417 | return NETDEV_TX_OK; |
4418 | } | 4418 | } |
4419 | 4419 | ||
4420 | /*------------------------- Device initialization ---------------------------*/ | 4420 | /*------------------------- Device initialization ---------------------------*/ |