public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: Eugenio Perez Martin <eperezma@redhat.com>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: passt-dev@passt.top
Subject: Re: [PATCH 3/3] tap: add die() on vhost error
Date: Thu, 3 Apr 2025 08:36:06 +0200	[thread overview]
Message-ID: <CAJaqyWc25kksyHdj+9o1w4=Bhz5T0oFqmAECT1X599RscFT=sg@mail.gmail.com> (raw)
In-Reply-To: <Z-3pe56BXp2KhbWY@zatzit>

On Thu, Apr 3, 2025 at 3:51 AM David Gibson <david@gibson.dropbear.id.au> wrote:
>
> On Tue, Apr 01, 2025 at 01:38:09PM +0200, Eugenio Pérez wrote:
> > In case the kernel needs to signal an error.
> >
> > Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
> > ---
> >  epoll_type.h |  2 ++
> >  passt.c      |  4 ++++
> >  passt.h      |  1 +
> >  tap.c        | 16 ++++++++++++++++
> >  4 files changed, 23 insertions(+)
> >
> > diff --git a/epoll_type.h b/epoll_type.h
> > index 6284c79..6b320db 100644
> > --- a/epoll_type.h
> > +++ b/epoll_type.h
> > @@ -46,6 +46,8 @@ enum epoll_type {
> >       EPOLL_TYPE_REPAIR,
> >       /* vhost-kernel call socket */
> >       EPOLL_TYPE_VHOST_CALL,
> > +     /* vhost-kernel error socket */
> > +     EPOLL_TYPE_VHOST_ERROR,
> >
> >       EPOLL_NUM_TYPES,
> >  };
> > diff --git a/passt.c b/passt.c
> > index 19c5d5f..2779e0b 100644
> > --- a/passt.c
> > +++ b/passt.c
> > @@ -80,6 +80,7 @@ char *epoll_type_str[] = {
> >       [EPOLL_TYPE_REPAIR_LISTEN]      = "TCP_REPAIR helper listening socket",
> >       [EPOLL_TYPE_REPAIR]             = "TCP_REPAIR helper socket",
> >       [EPOLL_TYPE_VHOST_CALL]         = "vhost-kernel call socket",
> > +     [EPOLL_TYPE_VHOST_ERROR]        = "vhost-kernel error socket",
> >  };
> >  static_assert(ARRAY_SIZE(epoll_type_str) == EPOLL_NUM_TYPES,
> >             "epoll_type_str[] doesn't match enum epoll_type");
> > @@ -361,6 +362,9 @@ loop:
> >               case EPOLL_TYPE_VHOST_CALL:
> >                       vhost_call_cb(&c, ref, &now);
> >                       break;
> > +             case EPOLL_TYPE_VHOST_ERROR:
> > +                     die("Error on vhost-kernel socket");
> > +                     break;
> >               default:
> >                       /* Can't happen */
> >                       ASSERT(0);
> > diff --git a/passt.h b/passt.h
> > index eb5aa03..9e42f3b 100644
> > --- a/passt.h
> > +++ b/passt.h
> > @@ -307,6 +307,7 @@ struct ctx {
> >
> >               int kick_fd;
> >               int call_fd;
> > +             int err_fd;
> >       } vq[2];
> >
> >       int no_dns;
> > diff --git a/tap.c b/tap.c
> > index fbe83aa..b02d3da 100644
> > --- a/tap.c
> > +++ b/tap.c
> > @@ -1552,6 +1552,22 @@ static int tap_ns_tun(void *arg)
> >               if (rc < 0)
> >                       die_perror("Failed to add call eventfd to epoll");
> >               c->vq[i].call_fd = file.fd;
> > +
> > +             file.fd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
> > +             if (file.fd < 0)
> > +                     die_perror("Failed to create error eventfd");
> > +
> > +             rc = ioctl(vhost_fd, VHOST_SET_VRING_ERR, &file);
> > +             if (rc < 0)
> > +                     die_perror(
> > +                             "VHOST_SET_VRING_ERR ioctl on /dev/vhost-net failed");
> > +
> > +             ref.type = EPOLL_TYPE_VHOST_ERROR, ref.fd = file.fd;
> > +             ev.data.u64 = ref.u64;
> > +             rc = epoll_ctl(c->epollfd, EPOLL_CTL_ADD, ref.fd, &ev);
> > +             if (rc < 0)
> > +                     die_perror("Failed to add error eventfd to epoll");
> > +             c->vq[i].err_fd = file.fd;
>
> If it's possible to re-initialize vhost, eventually it would be nice
> to do so eventually, but for now die()ing is perfectly reasonable.
>

That's a good point, adding TODO!


      reply	other threads:[~2025-04-03  6:36 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]

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='CAJaqyWc25kksyHdj+9o1w4=Bhz5T0oFqmAECT1X599RscFT=sg@mail.gmail.com' \
    --to=eperezma@redhat.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=passt-dev@passt.top \
    /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).