All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/4] Implement vdpasim stop operation
@ 2022-05-26 12:43 Eugenio Pérez
  2022-05-26 12:43 ` [PATCH v4 1/4] vdpa: Add " Eugenio Pérez
                   ` (6 more replies)
  0 siblings, 7 replies; 69+ messages in thread
From: Eugenio Pérez @ 2022-05-26 12:43 UTC (permalink / raw)
  To: Michael S. Tsirkin, kvm, virtualization, linux-kernel,
	Jason Wang, netdev
  Cc: martinh, Stefano Garzarella, martinpo, lvivier, pabloc,
	Parav Pandit, Eli Cohen, Dan Carpenter, Xie Yongji,
	Christophe JAILLET, Zhang Min, Wu Zongyong, lulu, Zhu Lingshan,
	Piotr.Uminski, Si-Wei Liu, ecree.xilinx, gautam.dawar,
	habetsm.xilinx, tanuj.kamde, hanand, dinang, Longpeng

Implement stop operation for vdpa_sim devices, so vhost-vdpa will offer
that backend feature and userspace can effectively stop the device.

This is a must before get virtqueue indexes (base) for live migration,
since the device could modify them after userland gets them. There are
individual ways to perform that action for some devices
(VHOST_NET_SET_BACKEND, VHOST_VSOCK_SET_RUNNING, ...) but there was no
way to perform it for any vhost device (and, in particular, vhost-vdpa).

After the return of ioctl with stop != 0, the device MUST finish any
pending operations like in flight requests. It must also preserve all
the necessary state (the virtqueue vring base plus the possible device
specific states) that is required for restoring in the future. The
device must not change its configuration after that point.

After the return of ioctl with stop == 0, the device can continue
processing buffers as long as typical conditions are met (vq is enabled,
DRIVER_OK status bit is enabled, etc).

In the future, we will provide features similar to VHOST_USER_GET_INFLIGHT_FD
so the device can save pending operations.

Comments are welcome.

v4:
* Replace VHOST_STOP to VHOST_VDPA_STOP in vhost ioctl switch case too.

v3:
* s/VHOST_STOP/VHOST_VDPA_STOP/
* Add documentation and requirements of the ioctl above its definition.

v2:
* Replace raw _F_STOP with BIT_ULL(_F_STOP).
* Fix obtaining of stop ioctl arg (it was not obtained but written).
* Add stop to vdpa_sim_blk.

Eugenio Pérez (4):
  vdpa: Add stop operation
  vhost-vdpa: introduce STOP backend feature bit
  vhost-vdpa: uAPI to stop the device
  vdpa_sim: Implement stop vdpa op

 drivers/vdpa/vdpa_sim/vdpa_sim.c     | 21 +++++++++++++++++
 drivers/vdpa/vdpa_sim/vdpa_sim.h     |  1 +
 drivers/vdpa/vdpa_sim/vdpa_sim_blk.c |  3 +++
 drivers/vdpa/vdpa_sim/vdpa_sim_net.c |  3 +++
 drivers/vhost/vdpa.c                 | 34 +++++++++++++++++++++++++++-
 include/linux/vdpa.h                 |  6 +++++
 include/uapi/linux/vhost.h           | 14 ++++++++++++
 include/uapi/linux/vhost_types.h     |  2 ++
 8 files changed, 83 insertions(+), 1 deletion(-)

-- 
2.31.1



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

end of thread, other threads:[~2022-06-17  2:42 UTC | newest]

Thread overview: 69+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-26 12:43 [PATCH v4 0/4] Implement vdpasim stop operation Eugenio Pérez
2022-05-26 12:43 ` [PATCH v4 1/4] vdpa: Add " Eugenio Pérez
2022-05-26 14:23   ` Stefano Garzarella
2022-05-26 14:23     ` Stefano Garzarella
2022-05-26 15:32     ` Eugenio Perez Martin
2022-06-01  5:35   ` Eli Cohen
2022-06-01  6:53     ` Eugenio Perez Martin
2022-05-26 12:43 ` [PATCH v4 2/4] vhost-vdpa: introduce STOP backend feature bit Eugenio Pérez
2022-05-26 12:43 ` [PATCH v4 3/4] vhost-vdpa: uAPI to stop the device Eugenio Pérez
2022-06-01 11:03   ` Michael S. Tsirkin
2022-06-01 11:03     ` Michael S. Tsirkin
2022-06-01 11:15     ` Eugenio Perez Martin
2022-06-01 19:13       ` Parav Pandit via Virtualization
2022-06-01 19:13         ` Parav Pandit
2022-06-02  6:21         ` Eugenio Perez Martin
2022-05-26 12:43 ` [PATCH v4 4/4] vdpa_sim: Implement stop vdpa op Eugenio Pérez
2022-05-26 14:25   ` Stefano Garzarella
2022-05-26 14:25     ` Stefano Garzarella
2022-05-26 12:54 ` [PATCH v4 0/4] Implement vdpasim stop operation Parav Pandit
2022-05-26 12:54   ` Parav Pandit via Virtualization
2022-05-27  2:26   ` Jason Wang
2022-05-27  2:26     ` Jason Wang
2022-05-27  7:55     ` Eugenio Perez Martin
2022-05-31 20:26       ` Parav Pandit
2022-05-31 20:26         ` Parav Pandit via Virtualization
2022-06-01 10:48         ` Eugenio Perez Martin
2022-05-27 10:55   ` Michael S. Tsirkin
2022-05-27 10:55     ` Michael S. Tsirkin
2022-05-30  3:39     ` Jason Wang
2022-05-30  3:39       ` Jason Wang
2022-05-31  5:40       ` Michael S. Tsirkin
2022-05-31  5:40         ` Michael S. Tsirkin
2022-05-31  6:44         ` Jason Wang
2022-05-31  6:44           ` Jason Wang
2022-05-31 20:19       ` Parav Pandit
2022-05-31 20:19         ` Parav Pandit via Virtualization
2022-06-01  2:42         ` Jason Wang
2022-06-01  2:42           ` Jason Wang
2022-06-01 18:58           ` Parav Pandit via Virtualization
2022-06-01 18:58             ` Parav Pandit
2022-06-02  2:00             ` Jason Wang
2022-06-02  2:00               ` Jason Wang
2022-06-02  2:59               ` Parav Pandit
2022-06-02  2:59                 ` Parav Pandit via Virtualization
2022-06-02  3:53                 ` Jason Wang
2022-06-02  3:53                   ` Jason Wang
2022-06-15  0:10                   ` Parav Pandit
2022-06-15  0:10                     ` Parav Pandit via Virtualization
2022-06-15  1:28                     ` Jason Wang
2022-06-15  1:28                       ` Jason Wang
2022-06-16 19:36                       ` Parav Pandit
2022-06-16 19:36                         ` Parav Pandit via Virtualization
2022-06-17  1:15                         ` Jason Wang
2022-06-17  1:15                           ` Jason Wang
2022-06-17  2:42                           ` Parav Pandit
2022-06-17  2:42                             ` Parav Pandit via Virtualization
2022-06-02  8:57                 ` Eugenio Perez Martin
2022-06-01  9:49         ` Eugenio Perez Martin
2022-06-01 19:30           ` Parav Pandit via Virtualization
2022-06-01 19:30             ` Parav Pandit
2022-06-02  2:02             ` Jason Wang
2022-06-02  2:02               ` Jason Wang
2022-05-31  5:42 ` Michael S. Tsirkin
2022-05-31  5:42   ` Michael S. Tsirkin
2022-05-31  7:13   ` Eugenio Perez Martin
2022-05-31  9:23     ` Michael S. Tsirkin
2022-05-31  9:23       ` Michael S. Tsirkin
2022-06-02  2:08 ` Jason Wang
2022-06-02  2:08   ` Jason Wang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.