diff options
author | arybchik <arybchik@FreeBSD.org> | 2015-03-25 13:11:19 +0000 |
---|---|---|
committer | arybchik <arybchik@FreeBSD.org> | 2015-03-25 13:11:19 +0000 |
commit | 7226fa93cac4e7cc7b3b6004265f143f7ef24d4c (patch) | |
tree | aeb54b2e4921ece890d41545df1c47404aa8c3d6 /sys/dev/sfxge/common/efx.h | |
parent | e5108d2f3104998466166cd9547b87594e0abb52 (diff) | |
download | FreeBSD-src-7226fa93cac4e7cc7b3b6004265f143f7ef24d4c.zip FreeBSD-src-7226fa93cac4e7cc7b3b6004265f143f7ef24d4c.tar.gz |
MFC: 279182
sfxge: correct event queue interrupt moderation timer quanta
Submitted by: Andrew Lee <alee at solarflare.com>
Sponsored by: Solarflare Communications, Inc.
Approved by: gnn (mentor)
Diffstat (limited to 'sys/dev/sfxge/common/efx.h')
-rw-r--r-- | sys/dev/sfxge/common/efx.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/sfxge/common/efx.h b/sys/dev/sfxge/common/efx.h index 1fc1e1a..c5f832f 100644 --- a/sys/dev/sfxge/common/efx.h +++ b/sys/dev/sfxge/common/efx.h @@ -895,7 +895,8 @@ typedef struct efx_nic_cfg_s { uint32_t enc_txq_limit; uint32_t enc_rxq_limit; uint32_t enc_buftbl_limit; - uint32_t enc_evq_moderation_max; + uint32_t enc_evq_timer_quantum_ns; + uint32_t enc_evq_timer_max_us; uint32_t enc_clk_mult; #if EFSYS_OPT_LOOPBACK uint32_t enc_loopback_types[EFX_LINK_NMODES]; |