mirror of https://gitee.com/openkylin/libvirt.git
util: Add virNetDevSetCoalesce function
That function is able to configure coalesce settings for an interface, similarly to 'ethtool -C'. This function also updates back the structure so that it contains actual data on the device (if the device doesn't support some settings kernel might just return 0 and not set whatever is not supported), so this way we'll have up-to-date information in the live domain XML. Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
parent
42000bf7e5
commit
652ef9bc8c
|
@ -347,7 +347,8 @@ AC_CHECK_TYPE([struct sockpeercred],
|
|||
]])
|
||||
|
||||
AC_CHECK_DECLS([ETH_FLAG_TXVLAN, ETH_FLAG_NTUPLE, ETH_FLAG_RXHASH, ETH_FLAG_LRO,
|
||||
ETHTOOL_GGSO, ETHTOOL_GGRO, ETHTOOL_GFLAGS, ETHTOOL_GFEATURES],
|
||||
ETHTOOL_GGSO, ETHTOOL_GGRO, ETHTOOL_GFLAGS, ETHTOOL_GFEATURES,
|
||||
ETHTOOL_SCOALESCE, ETHTOOL_GCOALESCE],
|
||||
[], [], [[#include <linux/ethtool.h>
|
||||
]])
|
||||
|
||||
|
|
|
@ -2077,6 +2077,7 @@ virNetDevRxFilterModeTypeFromString;
|
|||
virNetDevRxFilterModeTypeToString;
|
||||
virNetDevRxFilterNew;
|
||||
virNetDevSaveNetConfig;
|
||||
virNetDevSetCoalesce;
|
||||
virNetDevSetMAC;
|
||||
virNetDevSetMTU;
|
||||
virNetDevSetMTUFromDevice;
|
||||
|
|
|
@ -3078,6 +3078,89 @@ virNetDevGetEthtoolGFeatures(virBitmapPtr bitmap ATTRIBUTE_UNUSED,
|
|||
# endif
|
||||
|
||||
|
||||
# if HAVE_DECL_ETHTOOL_SCOALESCE && HAVE_DECL_ETHTOOL_GCOALESCE
|
||||
/**
|
||||
* virNetDevSetCoalesce:
|
||||
* @ifname: interface name to modify
|
||||
* @coalesce: Coalesce settings to set and update
|
||||
*
|
||||
* This function sets the various coalesce settings for a given interface
|
||||
* @ifname and updates them back into @coalesce.
|
||||
*
|
||||
* Returns 0 in case of success or -1 on failure
|
||||
*/
|
||||
int virNetDevSetCoalesce(const char *ifname,
|
||||
virNetDevCoalescePtr coalesce)
|
||||
{
|
||||
int fd = -1;
|
||||
int ret = -1;
|
||||
struct ifreq ifr;
|
||||
struct ethtool_coalesce coal = {0};
|
||||
|
||||
if (!coalesce)
|
||||
return 0;
|
||||
|
||||
coal = (struct ethtool_coalesce) {
|
||||
.cmd = ETHTOOL_SCOALESCE,
|
||||
.rx_max_coalesced_frames = coalesce->rx_max_coalesced_frames,
|
||||
.rx_coalesce_usecs_irq = coalesce->rx_coalesce_usecs_irq,
|
||||
.rx_max_coalesced_frames_irq = coalesce->rx_max_coalesced_frames_irq,
|
||||
.tx_coalesce_usecs = coalesce->tx_coalesce_usecs,
|
||||
.tx_max_coalesced_frames = coalesce->tx_max_coalesced_frames,
|
||||
.tx_coalesce_usecs_irq = coalesce->tx_coalesce_usecs_irq,
|
||||
.tx_max_coalesced_frames_irq = coalesce->tx_max_coalesced_frames_irq,
|
||||
.stats_block_coalesce_usecs = coalesce->stats_block_coalesce_usecs,
|
||||
.use_adaptive_rx_coalesce = coalesce->use_adaptive_rx_coalesce,
|
||||
.use_adaptive_tx_coalesce = coalesce->use_adaptive_tx_coalesce,
|
||||
.pkt_rate_low = coalesce->pkt_rate_low,
|
||||
.rx_coalesce_usecs_low = coalesce->rx_coalesce_usecs_low,
|
||||
.rx_max_coalesced_frames_low = coalesce->rx_max_coalesced_frames_low,
|
||||
.tx_coalesce_usecs_low = coalesce->tx_coalesce_usecs_low,
|
||||
.tx_max_coalesced_frames_low = coalesce->tx_max_coalesced_frames_low,
|
||||
.pkt_rate_high = coalesce->pkt_rate_high,
|
||||
.rx_coalesce_usecs_high = coalesce->rx_coalesce_usecs_high,
|
||||
.rx_max_coalesced_frames_high = coalesce->rx_max_coalesced_frames_high,
|
||||
.tx_coalesce_usecs_high = coalesce->tx_coalesce_usecs_high,
|
||||
.tx_max_coalesced_frames_high = coalesce->tx_max_coalesced_frames_high,
|
||||
.rate_sample_interval = coalesce->rate_sample_interval,
|
||||
};
|
||||
|
||||
if ((fd = virNetDevSetupControl(ifname, &ifr)) < 0)
|
||||
return -1;
|
||||
|
||||
ifr.ifr_data = (void *) &coal;
|
||||
|
||||
if (virNetDevSendEthtoolIoctl(fd, &ifr) < 0) {
|
||||
virReportSystemError(errno,
|
||||
_("Cannot set coalesce info on '%s'"),
|
||||
ifname);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
coal = (struct ethtool_coalesce) {
|
||||
.cmd = ETHTOOL_GCOALESCE,
|
||||
};
|
||||
|
||||
/* Don't fail if the update itself fails */
|
||||
virNetDevSendEthtoolIoctl(fd, &ifr);
|
||||
|
||||
ret = 0;
|
||||
cleanup:
|
||||
VIR_FORCE_CLOSE(fd);
|
||||
return ret;
|
||||
}
|
||||
# else
|
||||
int virNetDevSetCoalesce(const char *ifname,
|
||||
virNetDevCoalescePtr coalesce ATTRIBUTE_UNUSED)
|
||||
{
|
||||
virReportSystemError(ENOSYS,
|
||||
_("Cannot set coalesce info on interface '%s'"),
|
||||
ifname);
|
||||
return -1;
|
||||
}
|
||||
# endif
|
||||
|
||||
|
||||
/**
|
||||
* virNetDevGetFeatures:
|
||||
* This function gets the nic offloads features available for ifname
|
||||
|
|
|
@ -112,6 +112,36 @@ typedef enum {
|
|||
|
||||
VIR_ENUM_DECL(virNetDevFeature)
|
||||
|
||||
/* Modeled after struct ethtool_coalesce, see linux/ethtool.h for explanations
|
||||
* of particular fields */
|
||||
typedef struct _virNetDevCoalesce virNetDevCoalesce;
|
||||
typedef virNetDevCoalesce *virNetDevCoalescePtr;
|
||||
struct _virNetDevCoalesce {
|
||||
uint32_t rx_coalesce_usecs;
|
||||
uint32_t rx_max_coalesced_frames;
|
||||
uint32_t rx_coalesce_usecs_irq;
|
||||
uint32_t rx_max_coalesced_frames_irq;
|
||||
uint32_t tx_coalesce_usecs;
|
||||
uint32_t tx_max_coalesced_frames;
|
||||
uint32_t tx_coalesce_usecs_irq;
|
||||
uint32_t tx_max_coalesced_frames_irq;
|
||||
uint32_t stats_block_coalesce_usecs;
|
||||
uint32_t use_adaptive_rx_coalesce;
|
||||
uint32_t use_adaptive_tx_coalesce;
|
||||
uint32_t pkt_rate_low;
|
||||
uint32_t rx_coalesce_usecs_low;
|
||||
uint32_t rx_max_coalesced_frames_low;
|
||||
uint32_t tx_coalesce_usecs_low;
|
||||
uint32_t tx_max_coalesced_frames_low;
|
||||
uint32_t pkt_rate_high;
|
||||
uint32_t rx_coalesce_usecs_high;
|
||||
uint32_t rx_max_coalesced_frames_high;
|
||||
uint32_t tx_coalesce_usecs_high;
|
||||
uint32_t tx_max_coalesced_frames_high;
|
||||
uint32_t rate_sample_interval;
|
||||
};
|
||||
|
||||
|
||||
int virNetDevSetupControl(const char *ifname,
|
||||
virIfreq *ifr)
|
||||
ATTRIBUTE_RETURN_CHECK;
|
||||
|
@ -144,6 +174,10 @@ int virNetDevRestoreMacAddress(const char *linkdev,
|
|||
const char *stateDir)
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_RETURN_CHECK;
|
||||
|
||||
int virNetDevSetCoalesce(const char *ifname,
|
||||
virNetDevCoalescePtr coalesce)
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
||||
|
||||
int virNetDevSetMTU(const char *ifname,
|
||||
int mtu)
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
|
||||
|
|
Loading…
Reference in New Issue