public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: "Eugenio Pérez" <eperezma@redhat.com>
To: passt-dev@passt.top
Cc: jmaloy@redhat.com, sbrivio@redhat.com, lvivier@redhat.com,
	dgibson@redhat.com
Subject: [PATCH 0/3] Add vhost-net kernel support
Date: Tue,  1 Apr 2025 13:38:06 +0200	[thread overview]
Message-ID: <20250401113809.1765282-1-eperezma@redhat.com> (raw)

vhost-net is a kernel device that allows to read packets from a tap
device using virtio queues instead of regular read(2) and write(2).
This enables a more eficient packet processing, as the memory can
be written directly by the kernel to the userspace and back, instead
of wasting bandwith on copies, and it enables to batch many packets
in a single notification (through eventfds) both tx and rx.

---
RFC: At this moment only to receive packets from the vhost kernel to
the pasta binary is supported. It does not even support to refill more
rx descriptors so the kernel can keep receiving packets! Just for early
review to make sure we're on the same page.

Eugenio Pérez (3):
  tap: specify the packet pool
  tap: implement vhost_call_cb
  tap: add die() on vhost error

 epoll_type.h |   4 +
 passt.c      |   8 ++
 passt.h      |  13 +-
 tap.c        | 366 +++++++++++++++++++++++++++++++++++++++++++++++++--
 tap.h        |   6 +-
 vu_common.c  |   7 +-
 6 files changed, 387 insertions(+), 17 deletions(-)

-- 
2.49.0


             reply	other threads:[~2025-04-01 11:38 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-01 11:38 Eugenio Pérez [this message]
2025-04-01 11:38 ` [PATCH 1/3] tap: specify the packet pool Eugenio Pérez
2025-04-03  1:07   ` David Gibson
2025-04-03  6:40     ` Eugenio Perez Martin
2025-04-01 11:38 ` [PATCH 2/3] tap: implement vhost_call_cb Eugenio Pérez
2025-04-02  7:16   ` Stefano Brivio
2025-04-02 12:03     ` Eugenio Perez Martin
2025-04-03  1:48     ` David Gibson
2025-04-03  4:28       ` Stefano Brivio
2025-04-03  1:45   ` David Gibson
2025-04-01 11:38 ` [PATCH 3/3] tap: add die() on vhost error Eugenio Pérez
2025-04-03  1:50   ` David Gibson
2025-04-03  6:36     ` Eugenio Perez Martin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250401113809.1765282-1-eperezma@redhat.com \
    --to=eperezma@redhat.com \
    --cc=dgibson@redhat.com \
    --cc=jmaloy@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=passt-dev@passt.top \
    --cc=sbrivio@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).