15630257fSFerruh Yigit.. SPDX-License-Identifier: BSD-3-Clause 25630257fSFerruh Yigit Copyright(c) 2010-2016 Intel Corporation. 30ee5e7fbSSiobhan Butler 40ee5e7fbSSiobhan ButlerVhost Library 50ee5e7fbSSiobhan Butler============= 60ee5e7fbSSiobhan Butler 72bfaec90SYuanhan LiuThe vhost library implements a user space virtio net server allowing the user 82bfaec90SYuanhan Liuto manipulate the virtio ring directly. In another words, it allows the user 92bfaec90SYuanhan Liuto fetch/put packets from/to the VM virtio net device. To achieve this, a 102bfaec90SYuanhan Liuvhost library should be able to: 112bfaec90SYuanhan Liu 122bfaec90SYuanhan Liu* Access the guest memory: 132bfaec90SYuanhan Liu 142bfaec90SYuanhan Liu For QEMU, this is done by using the ``-object memory-backend-file,share=on,...`` 152bfaec90SYuanhan Liu option. Which means QEMU will create a file to serve as the guest RAM. 162bfaec90SYuanhan Liu The ``share=on`` option allows another process to map that file, which 172bfaec90SYuanhan Liu means it can access the guest RAM. 182bfaec90SYuanhan Liu 192bfaec90SYuanhan Liu* Know all the necessary information about the vring: 202bfaec90SYuanhan Liu 212bfaec90SYuanhan Liu Information such as where the available ring is stored. Vhost defines some 22647e191bSYuanhan Liu messages (passed through a Unix domain socket file) to tell the backend all 23647e191bSYuanhan Liu the information it needs to know how to manipulate the vring. 242bfaec90SYuanhan Liu 250ee5e7fbSSiobhan Butler 260ee5e7fbSSiobhan ButlerVhost API Overview 270ee5e7fbSSiobhan Butler------------------ 280ee5e7fbSSiobhan Butler 295fbb3941SYuanhan LiuThe following is an overview of some key Vhost API functions: 300ee5e7fbSSiobhan Butler 312bfaec90SYuanhan Liu* ``rte_vhost_driver_register(path, flags)`` 320ee5e7fbSSiobhan Butler 33647e191bSYuanhan Liu This function registers a vhost driver into the system. ``path`` specifies 34647e191bSYuanhan Liu the Unix domain socket file path. 350ee5e7fbSSiobhan Butler 36647e191bSYuanhan Liu Currently supported flags are: 370ee5e7fbSSiobhan Butler 382bfaec90SYuanhan Liu - ``RTE_VHOST_USER_CLIENT`` 390ee5e7fbSSiobhan Butler 402bfaec90SYuanhan Liu DPDK vhost-user will act as the client when this flag is given. See below 412bfaec90SYuanhan Liu for an explanation. 420ee5e7fbSSiobhan Butler 432bfaec90SYuanhan Liu - ``RTE_VHOST_USER_NO_RECONNECT`` 440ee5e7fbSSiobhan Butler 452bfaec90SYuanhan Liu When DPDK vhost-user acts as the client it will keep trying to reconnect 462bfaec90SYuanhan Liu to the server (QEMU) until it succeeds. This is useful in two cases: 470ee5e7fbSSiobhan Butler 482bfaec90SYuanhan Liu * When QEMU is not started yet. 492bfaec90SYuanhan Liu * When QEMU restarts (for example due to a guest OS reboot). 500ee5e7fbSSiobhan Butler 512bfaec90SYuanhan Liu This reconnect option is enabled by default. However, it can be turned off 522bfaec90SYuanhan Liu by setting this flag. 530ee5e7fbSSiobhan Butler 54002d6a7eSMaxime Coquelin - ``RTE_VHOST_USER_IOMMU_SUPPORT`` 55002d6a7eSMaxime Coquelin 56002d6a7eSMaxime Coquelin IOMMU support will be enabled when this flag is set. It is disabled by 57002d6a7eSMaxime Coquelin default. 58002d6a7eSMaxime Coquelin 59002d6a7eSMaxime Coquelin Enabling this flag makes possible to use guest vIOMMU to protect vhost 60002d6a7eSMaxime Coquelin from accessing memory the virtio device isn't allowed to, when the feature 61002d6a7eSMaxime Coquelin is negotiated and an IOMMU device is declared. 62002d6a7eSMaxime Coquelin 63cd85039eSMaxime Coquelin - ``RTE_VHOST_USER_POSTCOPY_SUPPORT`` 64cd85039eSMaxime Coquelin 65cd85039eSMaxime Coquelin Postcopy live-migration support will be enabled when this flag is set. 66cd85039eSMaxime Coquelin It is disabled by default. 67cd85039eSMaxime Coquelin 68cd85039eSMaxime Coquelin Enabling this flag should only be done when the calling application does 69cd85039eSMaxime Coquelin not pre-fault the guest shared memory, otherwise migration would fail. 70cd85039eSMaxime Coquelin 71c3ff0ac7SFlavio Leitner - ``RTE_VHOST_USER_LINEARBUF_SUPPORT`` 72c3ff0ac7SFlavio Leitner 73c3ff0ac7SFlavio Leitner Enabling this flag forces vhost dequeue function to only provide linear 74c3ff0ac7SFlavio Leitner pktmbuf (no multi-segmented pktmbuf). 75c3ff0ac7SFlavio Leitner 76c3ff0ac7SFlavio Leitner The vhost library by default provides a single pktmbuf for given a 77c3ff0ac7SFlavio Leitner packet, but if for some reason the data doesn't fit into a single 78c3ff0ac7SFlavio Leitner pktmbuf (e.g., TSO is enabled), the library will allocate additional 79c3ff0ac7SFlavio Leitner pktmbufs from the same mempool and chain them together to create a 80c3ff0ac7SFlavio Leitner multi-segmented pktmbuf. 81c3ff0ac7SFlavio Leitner 82c3ff0ac7SFlavio Leitner However, the vhost application needs to support multi-segmented format. 83c3ff0ac7SFlavio Leitner If the vhost application does not support that format and requires large 84c3ff0ac7SFlavio Leitner buffers to be dequeue, this flag should be enabled to force only linear 85c3ff0ac7SFlavio Leitner buffers (see RTE_VHOST_USER_EXTBUF_SUPPORT) or drop the packet. 86c3ff0ac7SFlavio Leitner 87c3ff0ac7SFlavio Leitner It is disabled by default. 88c3ff0ac7SFlavio Leitner 89c3ff0ac7SFlavio Leitner - ``RTE_VHOST_USER_EXTBUF_SUPPORT`` 90c3ff0ac7SFlavio Leitner 91c3ff0ac7SFlavio Leitner Enabling this flag allows vhost dequeue function to allocate and attach 92c3ff0ac7SFlavio Leitner an external buffer to a pktmbuf if the pkmbuf doesn't provide enough 93c3ff0ac7SFlavio Leitner space to store all data. 94c3ff0ac7SFlavio Leitner 95c3ff0ac7SFlavio Leitner This is useful when the vhost application wants to support large packets 96c3ff0ac7SFlavio Leitner but doesn't want to increase the default mempool object size nor to 97c3ff0ac7SFlavio Leitner support multi-segmented mbufs (non-linear). In this case, a fresh buffer 98c3ff0ac7SFlavio Leitner is allocated using rte_malloc() which gets attached to a pktmbuf using 99c3ff0ac7SFlavio Leitner rte_pktmbuf_attach_extbuf(). 100c3ff0ac7SFlavio Leitner 101c3ff0ac7SFlavio Leitner See RTE_VHOST_USER_LINEARBUF_SUPPORT as well to disable multi-segmented 102c3ff0ac7SFlavio Leitner mbufs for application that doesn't support chained mbufs. 103c3ff0ac7SFlavio Leitner 104c3ff0ac7SFlavio Leitner It is disabled by default. 105c3ff0ac7SFlavio Leitner 106362f06f9SPatrick Fu - ``RTE_VHOST_USER_ASYNC_COPY`` 107362f06f9SPatrick Fu 108362f06f9SPatrick Fu Asynchronous data path will be enabled when this flag is set. Async data 109362f06f9SPatrick Fu path allows applications to register async copy devices (typically 110362f06f9SPatrick Fu hardware DMA channels) to the vhost queues. Vhost leverages the copy 111362f06f9SPatrick Fu device registered to free CPU from memory copy operations. A set of 112362f06f9SPatrick Fu async data path APIs are defined for DPDK applications to make use of 113362f06f9SPatrick Fu the async capability. Only packets enqueued/dequeued by async APIs are 114362f06f9SPatrick Fu processed through the async data path. 115362f06f9SPatrick Fu 116362f06f9SPatrick Fu Currently this feature is only implemented on split ring enqueue data 117362f06f9SPatrick Fu path. 118362f06f9SPatrick Fu 119362f06f9SPatrick Fu It is disabled by default. 120362f06f9SPatrick Fu 1215fbb3941SYuanhan Liu* ``rte_vhost_driver_set_features(path, features)`` 1225fbb3941SYuanhan Liu 1235fbb3941SYuanhan Liu This function sets the feature bits the vhost-user driver supports. The 1245fbb3941SYuanhan Liu vhost-user driver could be vhost-user net, yet it could be something else, 1255fbb3941SYuanhan Liu say, vhost-user SCSI. 1265fbb3941SYuanhan Liu 1277c129037SYuanhan Liu* ``rte_vhost_driver_callback_register(path, vhost_device_ops)`` 1282bfaec90SYuanhan Liu 1292bfaec90SYuanhan Liu This function registers a set of callbacks, to let DPDK applications take 1302bfaec90SYuanhan Liu the appropriate action when some events happen. The following events are 1312bfaec90SYuanhan Liu currently supported: 1322bfaec90SYuanhan Liu 1332bfaec90SYuanhan Liu * ``new_device(int vid)`` 1342bfaec90SYuanhan Liu 135cb043557SYuanhan Liu This callback is invoked when a virtio device becomes ready. ``vid`` 136cb043557SYuanhan Liu is the vhost device ID. 1372bfaec90SYuanhan Liu 1382bfaec90SYuanhan Liu * ``destroy_device(int vid)`` 1392bfaec90SYuanhan Liu 140efba12a7SDariusz Stojaczyk This callback is invoked when a virtio device is paused or shut down. 1412bfaec90SYuanhan Liu 1422bfaec90SYuanhan Liu * ``vring_state_changed(int vid, uint16_t queue_id, int enable)`` 1432bfaec90SYuanhan Liu 1442bfaec90SYuanhan Liu This callback is invoked when a specific queue's state is changed, for 1452bfaec90SYuanhan Liu example to enabled or disabled. 1462bfaec90SYuanhan Liu 147abd53c16SYuanhan Liu * ``features_changed(int vid, uint64_t features)`` 148abd53c16SYuanhan Liu 149abd53c16SYuanhan Liu This callback is invoked when the features is changed. For example, 150abd53c16SYuanhan Liu ``VHOST_F_LOG_ALL`` will be set/cleared at the start/end of live 151abd53c16SYuanhan Liu migration, respectively. 152abd53c16SYuanhan Liu 153efba12a7SDariusz Stojaczyk * ``new_connection(int vid)`` 154efba12a7SDariusz Stojaczyk 155efba12a7SDariusz Stojaczyk This callback is invoked on new vhost-user socket connection. If DPDK 156efba12a7SDariusz Stojaczyk acts as the server the device should not be deleted before 157efba12a7SDariusz Stojaczyk ``destroy_connection`` callback is received. 158efba12a7SDariusz Stojaczyk 159efba12a7SDariusz Stojaczyk * ``destroy_connection(int vid)`` 160efba12a7SDariusz Stojaczyk 161efba12a7SDariusz Stojaczyk This callback is invoked when vhost-user socket connection is closed. 162efba12a7SDariusz Stojaczyk It indicates that device with id ``vid`` is no longer in use and can be 163efba12a7SDariusz Stojaczyk safely deleted. 164efba12a7SDariusz Stojaczyk 165af147591SYuanhan Liu* ``rte_vhost_driver_disable/enable_features(path, features))`` 166af147591SYuanhan Liu 167af147591SYuanhan Liu This function disables/enables some features. For example, it can be used to 168af147591SYuanhan Liu disable mergeable buffers and TSO features, which both are enabled by 169af147591SYuanhan Liu default. 170af147591SYuanhan Liu 171af147591SYuanhan Liu* ``rte_vhost_driver_start(path)`` 172af147591SYuanhan Liu 173af147591SYuanhan Liu This function triggers the vhost-user negotiation. It should be invoked at 174af147591SYuanhan Liu the end of initializing a vhost-user driver. 175af147591SYuanhan Liu 1762bfaec90SYuanhan Liu* ``rte_vhost_enqueue_burst(vid, queue_id, pkts, count)`` 1772bfaec90SYuanhan Liu 1782bfaec90SYuanhan Liu Transmits (enqueues) ``count`` packets from host to guest. 1792bfaec90SYuanhan Liu 1802bfaec90SYuanhan Liu* ``rte_vhost_dequeue_burst(vid, queue_id, mbuf_pool, pkts, count)`` 1812bfaec90SYuanhan Liu 1822bfaec90SYuanhan Liu Receives (dequeues) ``count`` packets from guest, and stored them at ``pkts``. 1832bfaec90SYuanhan Liu 184939066d9SFan Zhang* ``rte_vhost_crypto_create(vid, cryptodev_id, sess_mempool, socket_id)`` 185939066d9SFan Zhang 186939066d9SFan Zhang As an extension of new_device(), this function adds virtio-crypto workload 187939066d9SFan Zhang acceleration capability to the device. All crypto workload is processed by 188939066d9SFan Zhang DPDK cryptodev with the device ID of ``cryptodev_id``. 189939066d9SFan Zhang 190939066d9SFan Zhang* ``rte_vhost_crypto_free(vid)`` 191939066d9SFan Zhang 192939066d9SFan Zhang Frees the memory and vhost-user message handlers created in 193939066d9SFan Zhang rte_vhost_crypto_create(). 194939066d9SFan Zhang 195939066d9SFan Zhang* ``rte_vhost_crypto_fetch_requests(vid, queue_id, ops, nb_ops)`` 196939066d9SFan Zhang 197939066d9SFan Zhang Receives (dequeues) ``nb_ops`` virtio-crypto requests from guest, parses 198939066d9SFan Zhang them to DPDK Crypto Operations, and fills the ``ops`` with parsing results. 199939066d9SFan Zhang 200939066d9SFan Zhang* ``rte_vhost_crypto_finalize_requests(queue_id, ops, nb_ops)`` 201939066d9SFan Zhang 202939066d9SFan Zhang After the ``ops`` are dequeued from Cryptodev, finalizes the jobs and 203939066d9SFan Zhang notifies the guest(s). 204939066d9SFan Zhang 205939066d9SFan Zhang* ``rte_vhost_crypto_set_zero_copy(vid, option)`` 206939066d9SFan Zhang 207939066d9SFan Zhang Enable or disable zero copy feature of the vhost crypto backend. 208939066d9SFan Zhang 209362f06f9SPatrick Fu* ``rte_vhost_async_channel_register(vid, queue_id, features, ops)`` 210362f06f9SPatrick Fu 211362f06f9SPatrick Fu Register a vhost queue with async copy device channel. 212362f06f9SPatrick Fu Following device ``features`` must be specified together with the 213362f06f9SPatrick Fu registration: 214362f06f9SPatrick Fu 215362f06f9SPatrick Fu * ``async_inorder`` 216362f06f9SPatrick Fu 217362f06f9SPatrick Fu Async copy device can guarantee the ordering of copy completion 218362f06f9SPatrick Fu sequence. Copies are completed in the same order with that at 219362f06f9SPatrick Fu the submission time. 220362f06f9SPatrick Fu 221362f06f9SPatrick Fu Currently, only ``async_inorder`` capable device is supported by vhost. 222362f06f9SPatrick Fu 223362f06f9SPatrick Fu * ``async_threshold`` 224362f06f9SPatrick Fu 225362f06f9SPatrick Fu The copy length (in bytes) below which CPU copy will be used even if 226362f06f9SPatrick Fu applications call async vhost APIs to enqueue/dequeue data. 227362f06f9SPatrick Fu 228362f06f9SPatrick Fu Typical value is 512~1024 depending on the async device capability. 229362f06f9SPatrick Fu 230362f06f9SPatrick Fu Applications must provide following ``ops`` callbacks for vhost lib to 231362f06f9SPatrick Fu work with the async copy devices: 232362f06f9SPatrick Fu 233362f06f9SPatrick Fu * ``transfer_data(vid, queue_id, descs, opaque_data, count)`` 234362f06f9SPatrick Fu 235362f06f9SPatrick Fu vhost invokes this function to submit copy data to the async devices. 236362f06f9SPatrick Fu For non-async_inorder capable devices, ``opaque_data`` could be used 237362f06f9SPatrick Fu for identifying the completed packets. 238362f06f9SPatrick Fu 239362f06f9SPatrick Fu * ``check_completed_copies(vid, queue_id, opaque_data, max_packets)`` 240362f06f9SPatrick Fu 241362f06f9SPatrick Fu vhost invokes this function to get the copy data completed by async 242362f06f9SPatrick Fu devices. 243362f06f9SPatrick Fu 244362f06f9SPatrick Fu* ``rte_vhost_async_channel_unregister(vid, queue_id)`` 245362f06f9SPatrick Fu 246362f06f9SPatrick Fu Unregister the async copy device channel from a vhost queue. 247362f06f9SPatrick Fu 248362f06f9SPatrick Fu* ``rte_vhost_submit_enqueue_burst(vid, queue_id, pkts, count)`` 249362f06f9SPatrick Fu 250362f06f9SPatrick Fu Submit an enqueue request to transmit ``count`` packets from host to guest 251362f06f9SPatrick Fu by async data path. Enqueue is not guaranteed to finish upon the return of 252362f06f9SPatrick Fu this API call. 253362f06f9SPatrick Fu 254362f06f9SPatrick Fu Applications must not free the packets submitted for enqueue until the 255362f06f9SPatrick Fu packets are completed. 256362f06f9SPatrick Fu 257362f06f9SPatrick Fu* ``rte_vhost_poll_enqueue_completed(vid, queue_id, pkts, count)`` 258362f06f9SPatrick Fu 259362f06f9SPatrick Fu Poll enqueue completion status from async data path. Completed packets 260362f06f9SPatrick Fu are returned to applications through ``pkts``. 261362f06f9SPatrick Fu 262647e191bSYuanhan LiuVhost-user Implementations 263647e191bSYuanhan Liu-------------------------- 26442683a7dSHuawei Xie 2652bfaec90SYuanhan LiuVhost-user uses Unix domain sockets for passing messages. This means the DPDK 2662bfaec90SYuanhan Liuvhost-user implementation has two options: 26742683a7dSHuawei Xie 2682bfaec90SYuanhan Liu* DPDK vhost-user acts as the server. 26942683a7dSHuawei Xie 2702bfaec90SYuanhan Liu DPDK will create a Unix domain socket server file and listen for 2712bfaec90SYuanhan Liu connections from the frontend. 27242683a7dSHuawei Xie 2732bfaec90SYuanhan Liu Note, this is the default mode, and the only mode before DPDK v16.07. 27442683a7dSHuawei Xie 2752bfaec90SYuanhan Liu 2762bfaec90SYuanhan Liu* DPDK vhost-user acts as the client. 2772bfaec90SYuanhan Liu 2782bfaec90SYuanhan Liu Unlike the server mode, this mode doesn't create the socket file; 2792bfaec90SYuanhan Liu it just tries to connect to the server (which responses to create the 2802bfaec90SYuanhan Liu file instead). 2812bfaec90SYuanhan Liu 2822bfaec90SYuanhan Liu When the DPDK vhost-user application restarts, DPDK vhost-user will try to 2832bfaec90SYuanhan Liu connect to the server again. This is how the "reconnect" feature works. 2842bfaec90SYuanhan Liu 285f6ee75b5SYuanhan Liu .. Note:: 286f6ee75b5SYuanhan Liu * The "reconnect" feature requires **QEMU v2.7** (or above). 287f6ee75b5SYuanhan Liu 288f6ee75b5SYuanhan Liu * The vhost supported features must be exactly the same before and 289f6ee75b5SYuanhan Liu after the restart. For example, if TSO is disabled and then enabled, 290f6ee75b5SYuanhan Liu nothing will work and issues undefined might happen. 2912bfaec90SYuanhan Liu 2922bfaec90SYuanhan LiuNo matter which mode is used, once a connection is established, DPDK 2932bfaec90SYuanhan Liuvhost-user will start receiving and processing vhost messages from QEMU. 2942bfaec90SYuanhan Liu 2952bfaec90SYuanhan LiuFor messages with a file descriptor, the file descriptor can be used directly 2962bfaec90SYuanhan Liuin the vhost process as it is already installed by the Unix domain socket. 2972bfaec90SYuanhan Liu 2982bfaec90SYuanhan LiuThe supported vhost messages are: 2992bfaec90SYuanhan Liu 3002bfaec90SYuanhan Liu* ``VHOST_SET_MEM_TABLE`` 3012bfaec90SYuanhan Liu* ``VHOST_SET_VRING_KICK`` 3022bfaec90SYuanhan Liu* ``VHOST_SET_VRING_CALL`` 3032bfaec90SYuanhan Liu* ``VHOST_SET_LOG_FD`` 3042bfaec90SYuanhan Liu* ``VHOST_SET_VRING_ERR`` 3052bfaec90SYuanhan Liu 3062bfaec90SYuanhan LiuFor ``VHOST_SET_MEM_TABLE`` message, QEMU will send information for each 3072bfaec90SYuanhan Liumemory region and its file descriptor in the ancillary data of the message. 3082bfaec90SYuanhan LiuThe file descriptor is used to map that region. 3092bfaec90SYuanhan Liu 3102bfaec90SYuanhan Liu``VHOST_SET_VRING_KICK`` is used as the signal to put the vhost device into 3112bfaec90SYuanhan Liuthe data plane, and ``VHOST_GET_VRING_BASE`` is used as the signal to remove 3122bfaec90SYuanhan Liuthe vhost device from the data plane. 31342683a7dSHuawei Xie 31442683a7dSHuawei XieWhen the socket connection is closed, vhost will destroy the device. 31542683a7dSHuawei Xie 316768274ebSJianfeng TanGuest memory requirement 317768274ebSJianfeng Tan------------------------ 318768274ebSJianfeng Tan 319768274ebSJianfeng Tan* Memory pre-allocation 320768274ebSJianfeng Tan 321*cacf8267SMaxime Coquelin For non-async data path, guest memory pre-allocation is not a 322362f06f9SPatrick Fu must. This can help save of memory. If users really want the guest memory 323362f06f9SPatrick Fu to be pre-allocated (e.g., for performance reason), we can add option 324362f06f9SPatrick Fu ``-mem-prealloc`` when starting QEMU. Or, we can lock all memory at vhost 325362f06f9SPatrick Fu side which will force memory to be allocated when mmap at vhost side; 326362f06f9SPatrick Fu option --mlockall in ovs-dpdk is an example in hand. 327768274ebSJianfeng Tan 328*cacf8267SMaxime Coquelin For async data path, we force the VM memory to be pre-allocated at vhost 329*cacf8267SMaxime Coquelin lib when mapping the guest memory; and also we need to lock the memory to 330*cacf8267SMaxime Coquelin prevent pages being swapped out to disk. 331768274ebSJianfeng Tan 332768274ebSJianfeng Tan* Memory sharing 333768274ebSJianfeng Tan 334768274ebSJianfeng Tan Make sure ``share=on`` QEMU option is given. vhost-user will not work with 335768274ebSJianfeng Tan a QEMU version without shared memory mapping. 336768274ebSJianfeng Tan 3370ee5e7fbSSiobhan ButlerVhost supported vSwitch reference 3380ee5e7fbSSiobhan Butler--------------------------------- 3390ee5e7fbSSiobhan Butler 3402bfaec90SYuanhan LiuFor more vhost details and how to support vhost in vSwitch, please refer to 3412bfaec90SYuanhan Liuthe vhost example in the DPDK Sample Applications Guide. 3426beea244SZhihong Wang 3436beea244SZhihong WangVhost data path acceleration (vDPA) 3446beea244SZhihong Wang----------------------------------- 3456beea244SZhihong Wang 3466beea244SZhihong WangvDPA supports selective datapath in vhost-user lib by enabling virtio ring 3476beea244SZhihong Wangcompatible devices to serve virtio driver directly for datapath acceleration. 3486beea244SZhihong Wang 3496beea244SZhihong Wang``rte_vhost_driver_attach_vdpa_device`` is used to configure the vhost device 3506beea244SZhihong Wangwith accelerated backend. 3516beea244SZhihong Wang 3526beea244SZhihong WangAlso vhost device capabilities are made configurable to adopt various devices. 3536beea244SZhihong WangSuch capabilities include supported features, protocol features, queue number. 3546beea244SZhihong Wang 3556beea244SZhihong WangFinally, a set of device ops is defined for device specific operations: 3566beea244SZhihong Wang 3576beea244SZhihong Wang* ``get_queue_num`` 3586beea244SZhihong Wang 3596beea244SZhihong Wang Called to get supported queue number of the device. 3606beea244SZhihong Wang 3616beea244SZhihong Wang* ``get_features`` 3626beea244SZhihong Wang 3636beea244SZhihong Wang Called to get supported features of the device. 3646beea244SZhihong Wang 3656beea244SZhihong Wang* ``get_protocol_features`` 3666beea244SZhihong Wang 3676beea244SZhihong Wang Called to get supported protocol features of the device. 3686beea244SZhihong Wang 3696beea244SZhihong Wang* ``dev_conf`` 3706beea244SZhihong Wang 3716beea244SZhihong Wang Called to configure the actual device when the virtio device becomes ready. 3726beea244SZhihong Wang 3736beea244SZhihong Wang* ``dev_close`` 3746beea244SZhihong Wang 3756beea244SZhihong Wang Called to close the actual device when the virtio device is stopped. 3766beea244SZhihong Wang 3776beea244SZhihong Wang* ``set_vring_state`` 3786beea244SZhihong Wang 3796beea244SZhihong Wang Called to change the state of the vring in the actual device when vring state 3806beea244SZhihong Wang changes. 3816beea244SZhihong Wang 3826beea244SZhihong Wang* ``set_features`` 3836beea244SZhihong Wang 3846beea244SZhihong Wang Called to set the negotiated features to device. 3856beea244SZhihong Wang 3866beea244SZhihong Wang* ``migration_done`` 3876beea244SZhihong Wang 3886beea244SZhihong Wang Called to allow the device to response to RARP sending. 3896beea244SZhihong Wang 3906beea244SZhihong Wang* ``get_vfio_group_fd`` 3916beea244SZhihong Wang 3926beea244SZhihong Wang Called to get the VFIO group fd of the device. 3936beea244SZhihong Wang 3946beea244SZhihong Wang* ``get_vfio_device_fd`` 3956beea244SZhihong Wang 3966beea244SZhihong Wang Called to get the VFIO device fd of the device. 3976beea244SZhihong Wang 3986beea244SZhihong Wang* ``get_notify_area`` 3996beea244SZhihong Wang 4006beea244SZhihong Wang Called to get the notify area info of the queue. 401