Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 188135
b: refs/heads/master
c: d287d66
h: refs/heads/master
i:
  188133: b0ba845
  188131: 7959b78
  188127: 2e0fd1b
v: v3
  • Loading branch information
Akinobu Mita authored and David S. Miller committed Mar 15, 2010
1 parent 6b621a1 commit 060d847
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 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: a1ca14ac54675d3bf48d442b5a7b9eba133f1888
refs/heads/master: d287d66ee460b8d90b9ac840dd37f524a289bf97
7 changes: 3 additions & 4 deletions trunk/drivers/atm/lanai.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,11 +306,10 @@ static void vci_bitfield_iterate(struct lanai_dev *lanai,
const unsigned long *lp,
void (*func)(struct lanai_dev *,vci_t vci))
{
vci_t vci = find_first_bit(lp, NUM_VCI);
while (vci < NUM_VCI) {
vci_t vci;

for_each_set_bit(vci, lp, NUM_VCI)
func(lanai, vci);
vci = find_next_bit(lp, NUM_VCI, vci + 1);
}
}

/* -------------------- BUFFER UTILITIES: */
Expand Down

0 comments on commit 060d847

Please sign in to comment.