svn commit: r293931 - stable/10/sys/dev/sfxge
Andrew Rybchenko
arybchik at FreeBSD.org
Thu Jan 14 14:20:34 UTC 2016
Author: arybchik
Date: Thu Jan 14 14:20:33 2016
New Revision: 293931
URL: https://svnweb.freebsd.org/changeset/base/293931
Log:
MFC r291570
sfxge: added setting TSO-related parameters
Submitted by: Artem V. Andreev <Artem.Andreev at oktetlabs.ru>
Sponsored by: Solarflare Communications, Inc.
Modified:
stable/10/sys/dev/sfxge/sfxge.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/sfxge/sfxge.c
==============================================================================
--- stable/10/sys/dev/sfxge/sfxge.c Thu Jan 14 14:19:03 2016 (r293930)
+++ stable/10/sys/dev/sfxge/sfxge.c Thu Jan 14 14:20:33 2016 (r293931)
@@ -559,6 +559,9 @@ sfxge_ifnet_init(struct ifnet *ifp, stru
ifp->if_capabilities = SFXGE_CAP;
ifp->if_capenable = SFXGE_CAP_ENABLE;
+ ifp->if_hw_tsomax = SFXGE_TSO_MAX_SIZE;
+ ifp->if_hw_tsomaxsegcount = SFXGE_TX_MAPPING_MAX_SEG;
+ ifp->if_hw_tsomaxsegsize = PAGE_SIZE;
#ifdef SFXGE_LRO
ifp->if_capabilities |= IFCAP_LRO;
More information about the svn-src-stable-10
mailing list