diff options
Diffstat (limited to 'drivers/net/bnx2x/bnx2x_stats.h')
-rw-r--r-- | drivers/net/bnx2x/bnx2x_stats.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/net/bnx2x/bnx2x_stats.h b/drivers/net/bnx2x/bnx2x_stats.h index 38a4e908f4fb..45d14d8bc1aa 100644 --- a/drivers/net/bnx2x/bnx2x_stats.h +++ b/drivers/net/bnx2x/bnx2x_stats.h | |||
@@ -1,6 +1,6 @@ | |||
1 | /* bnx2x_stats.h: Broadcom Everest network driver. | 1 | /* bnx2x_stats.h: Broadcom Everest network driver. |
2 | * | 2 | * |
3 | * Copyright (c) 2007-2010 Broadcom Corporation | 3 | * Copyright (c) 2007-2011 Broadcom Corporation |
4 | * | 4 | * |
5 | * This program is free software; you can redistribute it and/or modify | 5 | * This program is free software; you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License as published by | 6 | * it under the terms of the GNU General Public License as published by |
@@ -9,6 +9,10 @@ | |||
9 | * Maintained by: Eilon Greenstein <eilong@broadcom.com> | 9 | * Maintained by: Eilon Greenstein <eilong@broadcom.com> |
10 | * Written by: Eliezer Tamir | 10 | * Written by: Eliezer Tamir |
11 | * Based on code from Michael Chan's bnx2 driver | 11 | * Based on code from Michael Chan's bnx2 driver |
12 | * UDP CSUM errata workaround by Arik Gendelman | ||
13 | * Slowpath and fastpath rework by Vladislav Zolotarov | ||
14 | * Statistics and Link management by Yitchak Gertner | ||
15 | * | ||
12 | */ | 16 | */ |
13 | 17 | ||
14 | #ifndef BNX2X_STATS_H | 18 | #ifndef BNX2X_STATS_H |
@@ -49,7 +53,6 @@ struct bnx2x_eth_q_stats { | |||
49 | u32 hw_csum_err; | 53 | u32 hw_csum_err; |
50 | }; | 54 | }; |
51 | 55 | ||
52 | #define BNX2X_NUM_Q_STATS 13 | ||
53 | #define Q_STATS_OFFSET32(stat_name) \ | 56 | #define Q_STATS_OFFSET32(stat_name) \ |
54 | (offsetof(struct bnx2x_eth_q_stats, stat_name) / 4) | 57 | (offsetof(struct bnx2x_eth_q_stats, stat_name) / 4) |
55 | 58 | ||
@@ -221,19 +224,14 @@ struct bnx2x_eth_stats { | |||
221 | u32 nig_timer_max; | 224 | u32 nig_timer_max; |
222 | }; | 225 | }; |
223 | 226 | ||
224 | #define BNX2X_NUM_STATS 43 | ||
225 | #define STATS_OFFSET32(stat_name) \ | 227 | #define STATS_OFFSET32(stat_name) \ |
226 | (offsetof(struct bnx2x_eth_stats, stat_name) / 4) | 228 | (offsetof(struct bnx2x_eth_stats, stat_name) / 4) |
227 | 229 | ||
228 | /* Forward declaration */ | 230 | /* Forward declaration */ |
229 | struct bnx2x; | 231 | struct bnx2x; |
230 | 232 | ||
231 | |||
232 | void bnx2x_stats_init(struct bnx2x *bp); | 233 | void bnx2x_stats_init(struct bnx2x *bp); |
233 | 234 | ||
234 | extern const u32 dmae_reg_go_c[]; | 235 | extern const u32 dmae_reg_go_c[]; |
235 | extern int bnx2x_sp_post(struct bnx2x *bp, int command, int cid, | ||
236 | u32 data_hi, u32 data_lo, int common); | ||
237 | |||
238 | 236 | ||
239 | #endif /* BNX2X_STATS_H */ | 237 | #endif /* BNX2X_STATS_H */ |