Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1425864 > unrolled thread

Re: [PATCH] drivers: virtio_blk: notify blk-core when hw-queue number changes

Started byPaolo Bonzini <pbonzini@redhat.com>
First post2016-06-19 00:20 +0200
Last post2016-06-19 00:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH] drivers: virtio_blk: notify blk-core when hw-queue number  changes Paolo Bonzini <pbonzini@redhat.com> - 2016-06-19 00:20 +0200

#1425864 — Re: [PATCH] drivers: virtio_blk: notify blk-core when hw-queue number changes

FromPaolo Bonzini <pbonzini@redhat.com>
Date2016-06-19 00:20 +0200
SubjectRe: [PATCH] drivers: virtio_blk: notify blk-core when hw-queue number changes
Message-ID<rLwKS-1CT-1@gated-at.bofh.it>

On 13/06/2016 11:58, Bob Liu wrote:
> A guest might be migrated to other hosts with different num_queues, the
> blk-core should aware of that else the reference of &vblk->vqs[qid] may be wrong.
> 
> Signed-off-by: Bob Liu <bob.liu@oracle.com>
> ---
>  drivers/block/virtio_blk.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> index 42758b5..c169238 100644
> --- a/drivers/block/virtio_blk.c
> +++ b/drivers/block/virtio_blk.c
> @@ -819,6 +819,9 @@ static int virtblk_restore(struct virtio_device *vdev)
>  	if (ret)
>  		return ret;
>  
> +	if (vblk->num_vqs != vblk->tag_set.nr_hw_queues)
> +		blk_mq_update_nr_hw_queues(&vblk->tag_set, vblk->num_vqs);
> +
>  	virtio_device_ready(vdev);
>  
>  	blk_mq_start_stopped_hw_queues(vblk->disk->queue, true);
> 

This should never happen; it'd be a configuration problem.

Paolo

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web