Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 335875
b: refs/heads/master
c: 403f43c
h: refs/heads/master
i:
  335873: dcda583
  335871: 3e43c2f
v: v3
  • Loading branch information
Jiri Pirko authored and David S. Miller committed Nov 21, 2012
1 parent c1f2a0e commit 72f76e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0e376bd0b791ac6ac6bdb051492df0769c840848
refs/heads/master: 403f43c937d24832b18524f65415c0bbba6b5064
6 changes: 3 additions & 3 deletions trunk/drivers/net/team/team_mode_broadcast.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ static bool bc_transmit(struct team *team, struct sk_buff *skb)
if (last) {
skb2 = skb_clone(skb, GFP_ATOMIC);
if (skb2) {
ret = team_dev_queue_xmit(team, last,
skb2);
ret = !team_dev_queue_xmit(team, last,
skb2);
if (!sum_ret)
sum_ret = ret;
}
Expand All @@ -39,7 +39,7 @@ static bool bc_transmit(struct team *team, struct sk_buff *skb)
}
}
if (last) {
ret = team_dev_queue_xmit(team, last, skb);
ret = !team_dev_queue_xmit(team, last, skb);
if (!sum_ret)
sum_ret = ret;
}
Expand Down

0 comments on commit 72f76e2

Please sign in to comment.