diff options
author | Dmitry Kravkov <dmitry@broadcom.com> | 2011-03-06 10:51:37 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-06 18:06:04 -0800 |
commit | 9b3de1ef1ba0aa1129a9f857f07a6a97d954c6fd (patch) | |
tree | 9456f9b8c4f5ce7b788afffaf996aa41348932e1 /drivers | |
parent | e3835b99333eb3ac7222f6fc0af5cae46074ac49 (diff) | |
download | linux-3.10-9b3de1ef1ba0aa1129a9f857f07a6a97d954c6fd.tar.gz linux-3.10-9b3de1ef1ba0aa1129a9f857f07a6a97d954c6fd.tar.bz2 linux-3.10-9b3de1ef1ba0aa1129a9f857f07a6a97d954c6fd.zip |
bnx2x: fix MaxBW configuration
Increase resolution of MaxBW algorithm to suit
Min Bandwidth configuration.
Signed-off-by: Dmitry Kravkov <dmitry@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/bnx2x/bnx2x.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/bnx2x/bnx2x.h b/drivers/net/bnx2x/bnx2x.h index 2ac4e3c597f..8849699c66c 100644 --- a/drivers/net/bnx2x/bnx2x.h +++ b/drivers/net/bnx2x/bnx2x.h @@ -1617,8 +1617,8 @@ static inline u32 reg_poll(struct bnx2x *bp, u32 reg, u32 expected, int ms, /* CMNG constants, as derived from system spec calculations */ /* default MIN rate in case VNIC min rate is configured to zero - 100Mbps */ #define DEF_MIN_RATE 100 -/* resolution of the rate shaping timer - 100 usec */ -#define RS_PERIODIC_TIMEOUT_USEC 100 +/* resolution of the rate shaping timer - 400 usec */ +#define RS_PERIODIC_TIMEOUT_USEC 400 /* number of bytes in single QM arbitration cycle - * coefficient for calculating the fairness timer */ #define QM_ARB_BYTES 160000 |