Ming Lei <ming....@canonical.com> writes:
> +     if (virtio_has_feature(vdev, VIRTIO_BLK_F_MQ))
> +             err = virtio_cread_feature(vdev, VIRTIO_BLK_F_MQ,
> +                                struct virtio_blk_config, num_queues,
> +                                &num_vqs);
> +     else
> +             num_vqs = 1;

This is redundant: virtio_cread_feature() checks the feature.

So, either:
        if (virtio_has_feature(vdev, VIRTIO_BLK_F_MQ))
                virtio_cread(vdev, struct virtio_blk_config, num_queues,
                             &num_vqs);
        else
                num_vqs = 1;

Or:
        err = virtio_cread_feature(vdev, VIRTIO_BLK_F_MQ,
                           struct virtio_blk_config, num_queues,
                           &num_vqs);
        if (err)
                num_vqs = 1;

Otherwise, the patch looks pretty straight-forward.

Cheers,
Rusty.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to