projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7174953
)
sky2: use roundup() macro
author
Stephen Hemminger
<shemminger@linux-foundation.org>
Mon, 9 Jul 2007 22:33:41 +0000
(15:33 -0700)
committer
Jeff Garzik
<jeff@garzik.org>
Tue, 10 Jul 2007 16:22:29 +0000
(12:22 -0400)
Use roundup() macro to size receive buffer.
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/net/sky2.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/net/sky2.c
b/drivers/net/sky2.c
index 4e0b839de7e4d4ac918579ac5ce735687e73646c..8cc3eea727a888bbb126a5939ec91ebcdc1221fa 100644
(file)
--- a/
drivers/net/sky2.c
+++ b/
drivers/net/sky2.c
@@
-1180,8
+1180,7
@@
static int sky2_rx_start(struct sky2_port *sky2)
rx_set_checksum(sky2);
/* Space needed for frame data + headers rounded up */
- size = ALIGN(sky2->netdev->mtu + ETH_HLEN + VLAN_HLEN, 8)
- + 8;
+ size = roundup(sky2->netdev->mtu + ETH_HLEN + VLAN_HLEN, 8);
/* Stopping point for hardware truncation */
thresh = (size - 8) / sizeof(u32);