From: Michael Chan Date: Thu, 20 Dec 2018 08:38:53 +0000 (-0500) Subject: bnxt_en: Adjust default RX coalescing ticks to 10 us. X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=0c2ff8d796895448b3a23c9cf7f37e721daeea48;p=openwrt%2Fstaging%2Fblogic.git 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 Signed-off-by: David S. Miller --- 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;