diff options
author | Xuan Zhuo <[email protected]> | 2023-10-10 11:11:17 +0800 |
---|---|---|
committer | Michael S. Tsirkin <[email protected]> | 2023-11-01 09:19:59 -0400 |
commit | 70e16c90ee23233bdd45462e1ebba72ff0c25c3a (patch) | |
tree | 734bb0c698a9e9f0a97e7c0e386b150987e69160 | |
parent | 484f0a071f8d482649eaf025dee7b76a7202fec9 (diff) |
virtio: add definition of VIRTIO_F_NOTIF_CONFIG_DATA feature bit
This patch adds the definition of VIRTIO_F_NOTIF_CONFIG_DATA feature bit
in the relevant header file.
This feature indicates that the driver uses the data provided by the
device as a virtqueue identifier in available buffer notifications.
It comes from here:
https://github.com/oasis-tcs/virtio-spec/issues/89
Signed-off-by: Xuan Zhuo <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
Acked-by: Jason Wang <[email protected]>
-rw-r--r-- | include/uapi/linux/virtio_config.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/uapi/linux/virtio_config.h b/include/uapi/linux/virtio_config.h index 2c712c654165..8881aea60f6f 100644 --- a/include/uapi/linux/virtio_config.h +++ b/include/uapi/linux/virtio_config.h @@ -105,6 +105,11 @@ */ #define VIRTIO_F_NOTIFICATION_DATA 38 +/* This feature indicates that the driver uses the data provided by the device + * as a virtqueue identifier in available buffer notifications. + */ +#define VIRTIO_F_NOTIF_CONFIG_DATA 39 + /* * This feature indicates that the driver can reset a queue individually. */ |