Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 167005
b: refs/heads/master
c: a4d63a9
h: refs/heads/master
i:
  167003: 9eebaf5
v: v3
  • Loading branch information
Thomas Chou authored and David S. Miller committed Oct 7, 2009
1 parent 3e197cb commit 8527681
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 0baa080c75cea6357bfba9b93ba598d747457cbd
refs/heads/master: a4d63a943735efa30270ce70716d43323fd40f02
4 changes: 2 additions & 2 deletions trunk/drivers/net/ethoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -662,8 +662,8 @@ static int ethoc_open(struct net_device *dev)
if (ret)
return ret;

/* calculate the number of TX/RX buffers */
num_bd = (dev->mem_end - dev->mem_start + 1) / ETHOC_BUFSIZ;
/* calculate the number of TX/RX buffers, maximum 128 supported */
num_bd = min(128, (dev->mem_end - dev->mem_start + 1) / ETHOC_BUFSIZ);
priv->num_tx = max(min_tx, num_bd / 4);
priv->num_rx = num_bd - priv->num_tx;
ethoc_write(priv, TX_BD_NUM, priv->num_tx);
Expand Down

0 comments on commit 8527681

Please sign in to comment.