mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 14:12:06 +00:00
vop: Fix handling of >32 feature bits
This is needed, for example, for VIRTIO_F_IOMMU_PLATFORM. Signed-off-by: Vincent Whitchurch <vincent.whitchurch@axis.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
417406f2bd
commit
8216e7e367
@ -117,7 +117,7 @@ _vop_total_desc_size(struct mic_device_desc __iomem *desc)
|
|||||||
static u64 vop_get_features(struct virtio_device *vdev)
|
static u64 vop_get_features(struct virtio_device *vdev)
|
||||||
{
|
{
|
||||||
unsigned int i, bits;
|
unsigned int i, bits;
|
||||||
u32 features = 0;
|
u64 features = 0;
|
||||||
struct mic_device_desc __iomem *desc = to_vopvdev(vdev)->desc;
|
struct mic_device_desc __iomem *desc = to_vopvdev(vdev)->desc;
|
||||||
u8 __iomem *in_features = _vop_vq_features(desc);
|
u8 __iomem *in_features = _vop_vq_features(desc);
|
||||||
int feature_len = ioread8(&desc->feature_len);
|
int feature_len = ioread8(&desc->feature_len);
|
||||||
@ -125,7 +125,7 @@ static u64 vop_get_features(struct virtio_device *vdev)
|
|||||||
bits = min_t(unsigned, feature_len, sizeof(vdev->features)) * 8;
|
bits = min_t(unsigned, feature_len, sizeof(vdev->features)) * 8;
|
||||||
for (i = 0; i < bits; i++)
|
for (i = 0; i < bits; i++)
|
||||||
if (ioread8(&in_features[i / 8]) & (BIT(i % 8)))
|
if (ioread8(&in_features[i / 8]) & (BIT(i % 8)))
|
||||||
features |= BIT(i);
|
features |= BIT_ULL(i);
|
||||||
|
|
||||||
return features;
|
return features;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user