From 29d91682128b26482c55a7f87b4849cd05d8ca88 Mon Sep 17 00:00:00 2001 From: John Levon Date: Tue, 25 May 2021 16:01:20 +0100 Subject: more spec updates (#491) update spec to v0.9.1 Changes include: - reply message includes the command number - split out message definitions into request/reply sections, and skip the repeated standard header definitions - lots of markup fixes - re-organization for clarity - further documentation of argsz - remove VFIO_USER_VM_INTERRUPT until we have a working implementation - dirty page tracking is optional - fix implementations to match the spec Signed-off-by: John Levon Reviewed-by: Thanos Makatos --- include/vfio-user.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include') diff --git a/include/vfio-user.h b/include/vfio-user.h index d90db1d..f6cd75a 100644 --- a/include/vfio-user.h +++ b/include/vfio-user.h @@ -56,13 +56,13 @@ enum vfio_user_command { VFIO_USER_DMA_UNMAP = 3, VFIO_USER_DEVICE_GET_INFO = 4, VFIO_USER_DEVICE_GET_REGION_INFO = 5, - VFIO_USER_DEVICE_GET_IRQ_INFO = 6, - VFIO_USER_DEVICE_SET_IRQS = 7, - VFIO_USER_REGION_READ = 8, - VFIO_USER_REGION_WRITE = 9, - VFIO_USER_DMA_READ = 10, - VFIO_USER_DMA_WRITE = 11, - VFIO_USER_VM_INTERRUPT = 12, + VFIO_USER_DEVICE_GET_REGION_IO_FDS = 6, + VFIO_USER_DEVICE_GET_IRQ_INFO = 7, + VFIO_USER_DEVICE_SET_IRQS = 8, + VFIO_USER_REGION_READ = 9, + VFIO_USER_REGION_WRITE = 10, + VFIO_USER_DMA_READ = 11, + VFIO_USER_DMA_WRITE = 12, VFIO_USER_DEVICE_RESET = 13, VFIO_USER_DIRTY_PAGES = 14, VFIO_USER_MAX, -- cgit v1.1