diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-22 20:51:31 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-22 20:51:31 -0500 |
commit | b7ad6d75028d021362221d9b2db19fcff995c3f8 (patch) | |
tree | 30d2a515571d7a43d5df7cb91d118a1d46b6142a /drivers/net/sky2.c | |
parent | 0caab23e11c015559af81a4c0f4759ca05a5446a (diff) | |
parent | 6a6bbd29a0284c1b9d33c324ba85f3ebb5509589 (diff) |
Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6
* 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6:
[PATCH] Use of uninitialized variable in drivers/net/depca.c
[PATCH] Use after free in net/tulip/de2104x.c
[PATCH] sis900 adm7001 PHY support
[PATCH] sky2: more ethtool stats
[PATCH] s390: qeth :allow setting of attribute "route6" to "no_router".
[PATCH] s390: qeth driver cleanups
[PATCH] s390: qeth driver statistics fixes
[PATCH] AMD Au1xx0: fix Ethernet TX stats
[PATCH] fix spidernet build issue
Diffstat (limited to 'drivers/net/sky2.c')
-rw-r--r-- | drivers/net/sky2.c | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c index f08fe6c884b2..36db93811ac7 100644 --- a/drivers/net/sky2.c +++ b/drivers/net/sky2.c | |||
@@ -2478,17 +2478,34 @@ static const struct sky2_stat { | |||
2478 | { "rx_unicast", GM_RXF_UC_OK }, | 2478 | { "rx_unicast", GM_RXF_UC_OK }, |
2479 | { "tx_mac_pause", GM_TXF_MPAUSE }, | 2479 | { "tx_mac_pause", GM_TXF_MPAUSE }, |
2480 | { "rx_mac_pause", GM_RXF_MPAUSE }, | 2480 | { "rx_mac_pause", GM_RXF_MPAUSE }, |
2481 | { "collisions", GM_TXF_SNG_COL }, | 2481 | { "collisions", GM_TXF_COL }, |
2482 | { "late_collision",GM_TXF_LAT_COL }, | 2482 | { "late_collision",GM_TXF_LAT_COL }, |
2483 | { "aborted", GM_TXF_ABO_COL }, | 2483 | { "aborted", GM_TXF_ABO_COL }, |
2484 | { "single_collisions", GM_TXF_SNG_COL }, | ||
2484 | { "multi_collisions", GM_TXF_MUL_COL }, | 2485 | { "multi_collisions", GM_TXF_MUL_COL }, |
2485 | { "fifo_underrun", GM_TXE_FIFO_UR }, | 2486 | |
2486 | { "fifo_overflow", GM_RXE_FIFO_OV }, | 2487 | { "rx_short", GM_RXE_SHT }, |
2487 | { "rx_toolong", GM_RXF_LNG_ERR }, | ||
2488 | { "rx_jabber", GM_RXF_JAB_PKT }, | ||
2489 | { "rx_runt", GM_RXE_FRAG }, | 2488 | { "rx_runt", GM_RXE_FRAG }, |
2489 | { "rx_64_byte_packets", GM_RXF_64B }, | ||
2490 | { "rx_65_to_127_byte_packets", GM_RXF_127B }, | ||
2491 | { "rx_128_to_255_byte_packets", GM_RXF_255B }, | ||
2492 | { "rx_256_to_511_byte_packets", GM_RXF_511B }, | ||
2493 | { "rx_512_to_1023_byte_packets", GM_RXF_1023B }, | ||
2494 | { "rx_1024_to_1518_byte_packets", GM_RXF_1518B }, | ||
2495 | { "rx_1518_to_max_byte_packets", GM_RXF_MAX_SZ }, | ||
2490 | { "rx_too_long", GM_RXF_LNG_ERR }, | 2496 | { "rx_too_long", GM_RXF_LNG_ERR }, |
2497 | { "rx_fifo_overflow", GM_RXE_FIFO_OV }, | ||
2498 | { "rx_jabber", GM_RXF_JAB_PKT }, | ||
2491 | { "rx_fcs_error", GM_RXF_FCS_ERR }, | 2499 | { "rx_fcs_error", GM_RXF_FCS_ERR }, |
2500 | |||
2501 | { "tx_64_byte_packets", GM_TXF_64B }, | ||
2502 | { "tx_65_to_127_byte_packets", GM_TXF_127B }, | ||
2503 | { "tx_128_to_255_byte_packets", GM_TXF_255B }, | ||
2504 | { "tx_256_to_511_byte_packets", GM_TXF_511B }, | ||
2505 | { "tx_512_to_1023_byte_packets", GM_TXF_1023B }, | ||
2506 | { "tx_1024_to_1518_byte_packets", GM_TXF_1518B }, | ||
2507 | { "tx_1519_to_max_byte_packets", GM_TXF_MAX_SZ }, | ||
2508 | { "tx_fifo_underrun", GM_TXE_FIFO_UR }, | ||
2492 | }; | 2509 | }; |
2493 | 2510 | ||
2494 | static u32 sky2_get_rx_csum(struct net_device *dev) | 2511 | static u32 sky2_get_rx_csum(struct net_device *dev) |