diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2020-07-10 14:17:13 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2020-08-05 18:08:39 +0300 |
commit | fc4a1accbb4ef372bb55b7ab161cf88e3b631935 (patch) | |
tree | 2f10ca71908c5f515063f7dfe7d9c70747910cd2 | |
parent | 24bcf35b695ef5228f3035eb979cc2de571d560b (diff) | |
download | linux-fc4a1accbb4ef372bb55b7ab161cf88e3b631935.tar.xz |
virtio_fs: correct tags for config space fields
Since fs is a modern-only device,
tag config space fields as having little endian-ness.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Vivek Goyal <vgoyal@redhat.com>
Acked-by: Vivek Goyal <vgoyal@redhat.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
-rw-r--r-- | include/uapi/linux/virtio_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/virtio_fs.h b/include/uapi/linux/virtio_fs.h index b02eb2ac3d99..3056b6e9f8ce 100644 --- a/include/uapi/linux/virtio_fs.h +++ b/include/uapi/linux/virtio_fs.h @@ -13,7 +13,7 @@ struct virtio_fs_config { __u8 tag[36]; /* Number of request queues */ - __u32 num_request_queues; + __le32 num_request_queues; } __attribute__((packed)); #endif /* _UAPI_LINUX_VIRTIO_FS_H */ |