aboutsummaryrefslogtreecommitdiff
path: root/lib/private.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private.h')
-rw-r--r--lib/private.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/lib/private.h b/lib/private.h
index 7ffe099..22c6807 100644
--- a/lib/private.h
+++ b/lib/private.h
@@ -47,7 +47,7 @@ struct transport_ops {
int (*attach)(vfu_ctx_t*);
int(*detach)(vfu_ctx_t*);
int (*get_request)(vfu_ctx_t*, struct vfio_user_header*,
- int *fds, int *nr_fds);
+ int *fds, size_t *nr_fds);
};
typedef enum {
@@ -143,13 +143,26 @@ region_to_offset(uint32_t region);
int
handle_dma_map_or_unmap(vfu_ctx_t *vfu_ctx, uint32_t size, bool map,
- int *fds, int nr_fds,
+ int *fds, size_t *nr_fds,
struct vfio_user_dma_region *dma_regions);
void
_dma_controller_do_remove_region(dma_controller_t *dma,
dma_memory_region_t *region);
+int
+get_next_command(vfu_ctx_t *vfu_ctx, struct vfio_user_header *hdr, int *fds,
+ size_t *nr_fds);
+
+int
+exec_command(vfu_ctx_t *vfu_ctx, struct vfio_user_header *hdr, size_t size,
+ int *fds, size_t *nr_fds,
+ struct iovec *_iovecs, struct iovec **iovecs, size_t *nr_iovecs,
+ bool *free_iovec_data);
+
+int
+process_request(vfu_ctx_t *vfu_ctx);
+
#endif /* LIB_VFIO_USER_PRIVATE_H */
/* ex: set tabstop=4 shiftwidth=4 softtabstop=4 expandtab: */