diff options
author | Changpeng Liu | 2018-03-30 04:46:16 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2018-04-09 16:35:46 +0200 |
commit | ea3e6f5a93f77fa068b7858b714057e4bbde67cb (patch) | |
tree | ac40cf3a9525ba762791b82f74ed58da58f03b81 | |
parent | vhost-user: back SET/GET_CONFIG requests with a protocol feature (diff) | |
download | qemu-ea3e6f5a93f77fa068b7858b714057e4bbde67cb.tar.gz qemu-ea3e6f5a93f77fa068b7858b714057e4bbde67cb.tar.xz qemu-ea3e6f5a93f77fa068b7858b714057e4bbde67cb.zip |
contrib/libvhost-user: add the protocol feature used for SET/GET message
Signed-off-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rw-r--r-- | contrib/libvhost-user/libvhost-user.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/libvhost-user/libvhost-user.h b/contrib/libvhost-user/libvhost-user.h index 79f7a53ee8..b27075ea3b 100644 --- a/contrib/libvhost-user/libvhost-user.h +++ b/contrib/libvhost-user/libvhost-user.h @@ -50,6 +50,7 @@ enum VhostUserProtocolFeature { VHOST_USER_PROTOCOL_F_CROSS_ENDIAN = 6, VHOST_USER_PROTOCOL_F_CRYPTO_SESSION = 7, VHOST_USER_PROTOCOL_F_PAGEFAULT = 8, + VHOST_USER_PROTOCOL_F_CONFIG = 9, VHOST_USER_PROTOCOL_F_MAX }; |