Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use virtio-net device for forwarding networking data between the guest and host #4682

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

vyasgun
Copy link
Contributor

@vyasgun vyasgun commented Mar 16, 2025

Description

Use virtio-net device for forwarding networking data between the guest and host

Fixes: #4460

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • Feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change
  • Chore (non-breaking change which doesn't affect codebase;
    test, version modification, documentation, etc.)

Proposed changes

Testing

Contribution Checklist

  • I Keep It Small and Simple: The smaller the PR is, the easier it is to review and have it merged
  • I have performed a self-review of my code
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • Which platform have you tested the code changes on?
    • Linux
    • Windows
    • MacOS

@openshift-ci openshift-ci bot requested review from anjannath and gbraad March 16, 2025 18:09
Copy link

openshift-ci bot commented Mar 16, 2025

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign anjannath for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@vyasgun vyasgun force-pushed the pr/use-virtio-net branch 3 times, most recently from 7349709 to 844e8ba Compare March 17, 2025 09:17
@@ -246,12 +246,12 @@ func (d *Driver) Start() error {
return err
}

// virtio-vsock device
dev, err = config.VirtioVsockNew(d.DaemonVsockPort, d.VsockPath, true)
netDev, err := config.VirtioNetNew("5a:94:ef:e4:0c:ee")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This duplicates a value from cmd/crc/cmd/daemon.go, this at least deserves a comment, probably best to add it to d.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd add the UnixgramSocketPath to driver to be similar to DaemonVsockPort and VsockPath.
Maybe we can even support both vsock and unixgram modes in driver_darwin.go depending on which values are set in d?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have added code to set vsock mode only if UnixgramSockPath is not set but I'm setting the path here:
https://github.com/crc-org/crc/pull/4682/files#diff-bd1e0081558a01b12d1bfbb4eedac6696b0f7bc6571e2637d6207a9f7779e38bR70
so it won't be empty

@vyasgun vyasgun force-pushed the pr/use-virtio-net branch from 1be0233 to 85b83f1 Compare March 27, 2025 11:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[BUG] vfkit: Use --device virtio-net,unixSocketPath
3 participants