Review NIC settings for VMWare VM
Open
@Rezi1999 is already working on this.
Since Jun 5, 2025.
- Dominant language
- JavaScript
- Stars
- 37
- Forks
- 7
- PR merge metrics
- No merged PRs in 30d
Description
Following up on #432, it seems like we need to review the system settings we use to tune the system to see if they should apply to VM as well.
One of the proposals is to remove the coalescing parameters depending on the driver:
if [ "${RX_FRAMES-unset}" = "unset" ]; then
DRIVER=$(ethtool -i $1 | sed -n 's/^driver: //p')
case $DRIVER in
igb) RX_FRAMES=; RX_USECS=1;;
tg3) RX_FRAMES=1; RX_USECS=1;;
*) RX_FRAMES=1; RX_USECS=0;;
esac
fi
and add the following case:
vmxnet3) RX_FRAMES=; RX_USECS=;;
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.