aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Chan <michael.chan@broadcom.com>2018-12-20 03:38:53 -0500
committerDavid S. Miller <davem@davemloft.net>2018-12-20 08:26:16 -0800
commit0c2ff8d796895448b3a23c9cf7f37e721daeea48 (patch)
treef4f4cf87803b23e633daa18265d73693d8d44bf8
parentbnxt_en: Support for 64-bit flow handle. (diff)
downloadlinux-dev-0c2ff8d796895448b3a23c9cf7f37e721daeea48.tar.xz
linux-dev-0c2ff8d796895448b3a23c9cf7f37e721daeea48.zip
bnxt_en: Adjust default RX coalescing ticks to 10 us.
For a little better performance on faster machines and faster link speeds. Signed-off-by: Michael Chan <michael.chan@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/ethernet/broadcom/bnxt/bnxt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt.c b/drivers/net/ethernet/broadcom/bnxt/bnxt.c
index 6872db9ac301..3aa80da973d7 100644
--- a/drivers/net/ethernet/broadcom/bnxt/bnxt.c
+++ b/drivers/net/ethernet/broadcom/bnxt/bnxt.c
@@ -9416,7 +9416,7 @@ static void bnxt_init_dflt_coal(struct bnxt *bp)
* 1 coal_buf x bufs_per_record = 1 completion record.
*/
coal = &bp->rx_coal;
- coal->coal_ticks = 14;
+ coal->coal_ticks = 10;
coal->coal_bufs = 30;
coal->coal_ticks_irq = 1;
coal->coal_bufs_irq = 2;