virtio: fix query of legacy features
authorYuanhan Liu <yuanhan.liu@linux.intel.com>
Thu, 10 Mar 2016 07:01:20 +0000 (15:01 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 14 Mar 2016 22:16:15 +0000 (23:16 +0100)
commit36ea36efb471146ead95b4d1fc0c5642682bca77
treec886e4351ca00bc2cb1beeaff8b7887c70ee413c
parent6b5a857fb0b9985024f2523aa4572d7ce0c28779
virtio: fix query of legacy features

Declare dst as type uint32_t instead of uint64_t, otherwise, we will get
a random upper 32 bit feature bits, as the following io port read reads
lower 32 bit only. It could lead a feature bits that include VIRTIO_F_VERSION_1
(the 32th bit) for legacy virtio, which is obviously wrong.

Fixes: b8f04520ad71 ("virtio: use PCI ioport API")

Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Acked-by: Jianfeng Tan <jianfeng.tan@intel.com>
Reviewed-by: David Marchand <david.marchand@6wind.com>
drivers/net/virtio/virtio_pci.c