public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
* [PATCH 0/3] Add vhost-net kernel support
@ 2025-04-01 11:38 Eugenio Pérez
  2025-04-01 11:38 ` [PATCH 1/3] tap: specify the packet pool Eugenio Pérez
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Eugenio Pérez @ 2025-04-01 11:38 UTC (permalink / raw)
  To: passt-dev; +Cc: jmaloy, sbrivio, lvivier, dgibson

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


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2025-04-03  6:41 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-01 11:38 [PATCH 0/3] Add vhost-net kernel support Eugenio Pérez
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

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).