Lines Matching refs:coal
38 struct ethtool_coalesce *coal) in bnxt_get_coalesce() argument
42 memset(coal, 0, sizeof(*coal)); in bnxt_get_coalesce()
44 coal->rx_coalesce_usecs = in bnxt_get_coalesce()
46 coal->rx_max_coalesced_frames = bp->coal_bufs / 2; in bnxt_get_coalesce()
47 coal->rx_coalesce_usecs_irq = in bnxt_get_coalesce()
49 coal->rx_max_coalesced_frames_irq = bp->coal_bufs_irq / 2; in bnxt_get_coalesce()
55 struct ethtool_coalesce *coal) in bnxt_set_coalesce() argument
60 bp->coal_ticks = BNXT_USEC_TO_COAL_TIMER(coal->rx_coalesce_usecs); in bnxt_set_coalesce()
61 bp->coal_bufs = coal->rx_max_coalesced_frames * 2; in bnxt_set_coalesce()
63 BNXT_USEC_TO_COAL_TIMER(coal->rx_coalesce_usecs_irq); in bnxt_set_coalesce()
64 bp->coal_bufs_irq = coal->rx_max_coalesced_frames_irq * 2; in bnxt_set_coalesce()