perfsonar / perfsonar/toolkit

Review NIC settings for VMWare VM

Open
#435 2 comments 0 reactions 3 assignees View on GitHub

@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

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.