Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 194044
b: refs/heads/master
c: 18d777a
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Apr 13, 2010
1 parent 12524b6 commit 1f58043
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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: 6f59d6604d9361ef53a7721fb8aa1687ad6f8448
refs/heads/master: 18d777a5bcf31491021f527d32b72dd16f911fe0
2 changes: 1 addition & 1 deletion trunk/drivers/net/chelsio/sge.c
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ static struct sk_buff *sched_skb(struct sge *sge, struct sk_buff *skb,

again:
for (i = 0; i < MAX_NPORTS; i++) {
s->port = ++s->port & (MAX_NPORTS - 1);
s->port = (s->port + 1) & (MAX_NPORTS - 1);
skbq = &s->p[s->port].skbq;

skb = skb_peek(skbq);
Expand Down

0 comments on commit 1f58043

Please sign in to comment.