Commit 24bcf35b authored by Michael S. Tsirkin's avatar Michael S. Tsirkin

virtio_crypto: correct tags for config space fields

Since crypto is a modern-only device,
tag config space fields as having little endian-ness.
Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
Reviewed-by: default avatarCornelia Huck <cohuck@redhat.com>
parent dbe2dc8c
...@@ -414,33 +414,33 @@ struct virtio_crypto_op_data_req { ...@@ -414,33 +414,33 @@ struct virtio_crypto_op_data_req {
struct virtio_crypto_config { struct virtio_crypto_config {
/* See VIRTIO_CRYPTO_OP_* above */ /* See VIRTIO_CRYPTO_OP_* above */
__u32 status; __le32 status;
/* /*
* Maximum number of data queue * Maximum number of data queue
*/ */
__u32 max_dataqueues; __le32 max_dataqueues;
/* /*
* Specifies the services mask which the device support, * Specifies the services mask which the device support,
* see VIRTIO_CRYPTO_SERVICE_* above * see VIRTIO_CRYPTO_SERVICE_* above
*/ */
__u32 crypto_services; __le32 crypto_services;
/* Detailed algorithms mask */ /* Detailed algorithms mask */
__u32 cipher_algo_l; __le32 cipher_algo_l;
__u32 cipher_algo_h; __le32 cipher_algo_h;
__u32 hash_algo; __le32 hash_algo;
__u32 mac_algo_l; __le32 mac_algo_l;
__u32 mac_algo_h; __le32 mac_algo_h;
__u32 aead_algo; __le32 aead_algo;
/* Maximum length of cipher key */ /* Maximum length of cipher key */
__u32 max_cipher_key_len; __le32 max_cipher_key_len;
/* Maximum length of authenticated key */ /* Maximum length of authenticated key */
__u32 max_auth_key_len; __le32 max_auth_key_len;
__u32 reserve; __le32 reserve;
/* Maximum size of each crypto request's content */ /* Maximum size of each crypto request's content */
__u64 max_size; __le64 max_size;
}; };
struct virtio_crypto_inhdr { struct virtio_crypto_inhdr {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment