diff options
author | Sunil Goutham <sgoutham@cavium.com> | 2015-12-02 13:06:15 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-12-02 23:58:50 +0300 |
commit | 006394a7cb20559418c602b8433ec1839b6fc1d3 (patch) | |
tree | dae6b236b332e451292db8a544d6dfe69f69e2b2 /drivers/net/ethernet/cavium/thunder/nicvf_queues.h | |
parent | a7b1f535a8d45816cfe25c0fd900fc726ba5acce (diff) | |
download | linux-006394a7cb20559418c602b8433ec1839b6fc1d3.tar.xz |
net: thunderx: Set CQ timer threshold properly
Properly set CQ timer threshold and also set it to 2us.
With previous incorrect settings it was set to 0.5us which is too less.
Signed-off-by: Sunil Goutham <sgoutham@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/cavium/thunder/nicvf_queues.h')
-rw-r--r-- | drivers/net/ethernet/cavium/thunder/nicvf_queues.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/cavium/thunder/nicvf_queues.h b/drivers/net/ethernet/cavium/thunder/nicvf_queues.h index fb4957d09914..033e8306e91c 100644 --- a/drivers/net/ethernet/cavium/thunder/nicvf_queues.h +++ b/drivers/net/ethernet/cavium/thunder/nicvf_queues.h @@ -76,7 +76,7 @@ #define CMP_QSIZE CMP_QUEUE_SIZE2 #define CMP_QUEUE_LEN (1ULL << (CMP_QSIZE + 10)) #define CMP_QUEUE_CQE_THRESH 0 -#define CMP_QUEUE_TIMER_THRESH 220 /* 10usec */ +#define CMP_QUEUE_TIMER_THRESH 80 /* ~2usec */ #define RBDR_SIZE RBDR_SIZE0 #define RCV_BUF_COUNT (1ULL << (RBDR_SIZE + 13)) |