link: add support for IFLA_VFINFO_LIST and IFLA_VF_STATS#295
Merged
jsimonetti merged 1 commit intojsimonetti:masterfrom Feb 8, 2026
Merged
link: add support for IFLA_VFINFO_LIST and IFLA_VF_STATS#295jsimonetti merged 1 commit intojsimonetti:masterfrom
jsimonetti merged 1 commit intojsimonetti:masterfrom
Conversation
Owner
|
Hi @aharivel , It looks like you forgot to gofmt some files. Could you fix that please? |
Add support for decoding Virtual Function (VF) information from netlink messages. This enables users to retrieve SR-IOV VF details when querying network interfaces. The implementation adds: - VFStats struct containing per-VF traffic statistics (packets, bytes, broadcast, multicast, dropped counters for both RX and TX) - VFInfo struct containing VF configuration (MAC address, VLAN, QoS, TX rate limits, spoof check, link state, RSS query, trust settings) - VFLinkState type with Auto/Enable/Disable constants - NumVF and VFInfoList fields to LinkAttributes - Decoding logic for IFLA_NUM_VF and IFLA_VFINFO_LIST nested attributes The VF information follows the kernel's nested attribute structure. This is useful for monitoring and managing SR-IOV enabled network interfaces where the Physical Function (PF) exposes multiple Virtual Functions to guest VMs or containers. Signed-off-by: Anthony Harivel <[email protected]>
Contributor
Author
|
Hi @jsimonetti My end goal is to enhance Prometheus node_exporter that is using your library. |
Owner
|
Thank you for the contribution! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add support for decoding Virtual Function (VF) information from netlink messages. This enables users to retrieve SR-IOV VF details when querying network interfaces.
The implementation adds:
The VF information follows the kernel's nested attribute structure.
This is useful for monitoring and managing SR-IOV enabled network interfaces where the Physical Function (PF) exposes multiple Virtual Functions to guest VMs or containers.