diff options
author | Eilon Greenstein <eilong@broadcom.com> | 2009-07-05 06:18:14 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-07-06 03:03:23 +0200 |
commit | 1e9d9987598fa58f4bd8e72ee152c879136d6723 (patch) | |
tree | 15c61f48a069adc093a472fb5bcce8265c474481 /drivers/net/bnx2x.h | |
parent | bnx2x: Disable HC coalescing when setting timeout to zero. (diff) | |
download | linux-1e9d9987598fa58f4bd8e72ee152c879136d6723.tar.xz linux-1e9d9987598fa58f4bd8e72ee152c879136d6723.zip |
bnx2x: Fix the maximal values of coalescing timeouts.
This patch properly defines the maximum values for rx/tx coalescing timeouts.
Signed-off-by: Vlad Zolotarov <vladz@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2x.h')
-rw-r--r-- | drivers/net/bnx2x.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/bnx2x.h b/drivers/net/bnx2x.h index 8678457849f9..85a737c5c23f 100644 --- a/drivers/net/bnx2x.h +++ b/drivers/net/bnx2x.h @@ -902,6 +902,8 @@ struct bnx2x { u16 rx_quick_cons_trip; u16 rx_ticks_int; u16 rx_ticks; +/* Maximal coalescing timeout in us */ +#define BNX2X_MAX_COALESCE_TOUT (0xf0*12) u32 lin_cnt; |