All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-08-31 13:50 Max Gurtovoy
  2021-09-01  5:21   ` Christoph Hellwig
  2021-09-02 13:45   ` Stefan Hajnoczi
  0 siblings, 2 replies; 32+ messages in thread
From: Max Gurtovoy @ 2021-08-31 13:50 UTC (permalink / raw)
  To: hch, mst, virtualization, kvm, stefanha
  Cc: israelr, nitzanc, oren, linux-block, axboe, Max Gurtovoy

Sometimes a user would like to control the amount of IO queues to be
created for a block device. For example, for limiting the memory
footprint of virtio-blk devices.

Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
---

changes from v1:
 - use param_set_uint_minmax (from Christoph)
 - added "Should > 0" to module description

Note: This commit apply on top of Jens's branch for-5.15/drivers
---
 drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
index 4b49df2dfd23..9332fc4e9b31 100644
--- a/drivers/block/virtio_blk.c
+++ b/drivers/block/virtio_blk.c
@@ -24,6 +24,22 @@
 /* The maximum number of sg elements that fit into a virtqueue */
 #define VIRTIO_BLK_MAX_SG_ELEMS 32768
 
+static int virtblk_queue_count_set(const char *val,
+		const struct kernel_param *kp)
+{
+	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
+}
+
+static const struct kernel_param_ops queue_count_ops = {
+	.set = virtblk_queue_count_set,
+	.get = param_get_uint,
+};
+
+static unsigned int num_io_queues;
+module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
+MODULE_PARM_DESC(num_io_queues,
+		 "Number of IO virt queues to use for blk device. Should > 0");
+
 static int major;
 static DEFINE_IDA(vd_index_ida);
 
@@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
 	if (err)
 		num_vqs = 1;
 
-	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
+	num_vqs = min_t(unsigned int,
+			min_not_zero(num_io_queues, nr_cpu_ids),
+			num_vqs);
 
 	vblk->vqs = kmalloc_array(num_vqs, sizeof(*vblk->vqs), GFP_KERNEL);
 	if (!vblk->vqs)
-- 
2.18.1


^ permalink raw reply related	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-08-31 13:50 [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter Max Gurtovoy
@ 2021-09-01  5:21   ` Christoph Hellwig
  2021-09-02 13:45   ` Stefan Hajnoczi
  1 sibling, 0 replies; 32+ messages in thread
From: Christoph Hellwig @ 2021-09-01  5:21 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: hch, mst, virtualization, kvm, stefanha, israelr, nitzanc, oren,
	linux-block, axboe

Looks good,

Reviewed-by: Christoph Hellwig <hch@lst.de>

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-01  5:21   ` Christoph Hellwig
  0 siblings, 0 replies; 32+ messages in thread
From: Christoph Hellwig @ 2021-09-01  5:21 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: axboe, linux-block, kvm, mst, israelr, virtualization, hch,
	nitzanc, stefanha, oren

Looks good,

Reviewed-by: Christoph Hellwig <hch@lst.de>
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-08-31 13:50 [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter Max Gurtovoy
@ 2021-09-02 13:45   ` Stefan Hajnoczi
  2021-09-02 13:45   ` Stefan Hajnoczi
  1 sibling, 0 replies; 32+ messages in thread
From: Stefan Hajnoczi @ 2021-09-02 13:45 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: hch, mst, virtualization, kvm, israelr, nitzanc, oren,
	linux-block, axboe

[-- Attachment #1: Type: text/plain, Size: 2048 bytes --]

On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> Sometimes a user would like to control the amount of IO queues to be
> created for a block device. For example, for limiting the memory
> footprint of virtio-blk devices.
> 
> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> ---
> 
> changes from v1:
>  - use param_set_uint_minmax (from Christoph)
>  - added "Should > 0" to module description
> 
> Note: This commit apply on top of Jens's branch for-5.15/drivers
> ---
>  drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>  1 file changed, 19 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> index 4b49df2dfd23..9332fc4e9b31 100644
> --- a/drivers/block/virtio_blk.c
> +++ b/drivers/block/virtio_blk.c
> @@ -24,6 +24,22 @@
>  /* The maximum number of sg elements that fit into a virtqueue */
>  #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>  
> +static int virtblk_queue_count_set(const char *val,
> +		const struct kernel_param *kp)
> +{
> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> +}
> +
> +static const struct kernel_param_ops queue_count_ops = {
> +	.set = virtblk_queue_count_set,
> +	.get = param_get_uint,
> +};
> +
> +static unsigned int num_io_queues;
> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> +MODULE_PARM_DESC(num_io_queues,
> +		 "Number of IO virt queues to use for blk device. Should > 0");
> +
>  static int major;
>  static DEFINE_IDA(vd_index_ida);
>  
> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>  	if (err)
>  		num_vqs = 1;
>  
> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> +	num_vqs = min_t(unsigned int,
> +			min_not_zero(num_io_queues, nr_cpu_ids),
> +			num_vqs);

If you respin, please consider calling them request queues. That's the
terminology from the VIRTIO spec and it's nice to keep it consistent.
But the purpose of num_io_queues is clear, so:

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-02 13:45   ` Stefan Hajnoczi
  0 siblings, 0 replies; 32+ messages in thread
From: Stefan Hajnoczi @ 2021-09-02 13:45 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: axboe, linux-block, kvm, mst, israelr, virtualization, hch,
	nitzanc, oren


[-- Attachment #1.1: Type: text/plain, Size: 2048 bytes --]

On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> Sometimes a user would like to control the amount of IO queues to be
> created for a block device. For example, for limiting the memory
> footprint of virtio-blk devices.
> 
> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> ---
> 
> changes from v1:
>  - use param_set_uint_minmax (from Christoph)
>  - added "Should > 0" to module description
> 
> Note: This commit apply on top of Jens's branch for-5.15/drivers
> ---
>  drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>  1 file changed, 19 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> index 4b49df2dfd23..9332fc4e9b31 100644
> --- a/drivers/block/virtio_blk.c
> +++ b/drivers/block/virtio_blk.c
> @@ -24,6 +24,22 @@
>  /* The maximum number of sg elements that fit into a virtqueue */
>  #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>  
> +static int virtblk_queue_count_set(const char *val,
> +		const struct kernel_param *kp)
> +{
> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> +}
> +
> +static const struct kernel_param_ops queue_count_ops = {
> +	.set = virtblk_queue_count_set,
> +	.get = param_get_uint,
> +};
> +
> +static unsigned int num_io_queues;
> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> +MODULE_PARM_DESC(num_io_queues,
> +		 "Number of IO virt queues to use for blk device. Should > 0");
> +
>  static int major;
>  static DEFINE_IDA(vd_index_ida);
>  
> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>  	if (err)
>  		num_vqs = 1;
>  
> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> +	num_vqs = min_t(unsigned int,
> +			min_not_zero(num_io_queues, nr_cpu_ids),
> +			num_vqs);

If you respin, please consider calling them request queues. That's the
terminology from the VIRTIO spec and it's nice to keep it consistent.
But the purpose of num_io_queues is clear, so:

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

[-- Attachment #2: Type: text/plain, Size: 183 bytes --]

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-02 13:45   ` Stefan Hajnoczi
@ 2021-09-05 16:02     ` Michael S. Tsirkin
  -1 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-05 16:02 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: Max Gurtovoy, hch, virtualization, kvm, israelr, nitzanc, oren,
	linux-block, axboe

On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > Sometimes a user would like to control the amount of IO queues to be
> > created for a block device. For example, for limiting the memory
> > footprint of virtio-blk devices.
> > 
> > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > ---
> > 
> > changes from v1:
> >  - use param_set_uint_minmax (from Christoph)
> >  - added "Should > 0" to module description
> > 
> > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > ---
> >  drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> >  1 file changed, 19 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > index 4b49df2dfd23..9332fc4e9b31 100644
> > --- a/drivers/block/virtio_blk.c
> > +++ b/drivers/block/virtio_blk.c
> > @@ -24,6 +24,22 @@
> >  /* The maximum number of sg elements that fit into a virtqueue */
> >  #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> >  
> > +static int virtblk_queue_count_set(const char *val,
> > +		const struct kernel_param *kp)
> > +{
> > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > +}
> > +
> > +static const struct kernel_param_ops queue_count_ops = {
> > +	.set = virtblk_queue_count_set,
> > +	.get = param_get_uint,
> > +};
> > +
> > +static unsigned int num_io_queues;
> > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > +MODULE_PARM_DESC(num_io_queues,
> > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > +
> >  static int major;
> >  static DEFINE_IDA(vd_index_ida);
> >  
> > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> >  	if (err)
> >  		num_vqs = 1;
> >  
> > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > +	num_vqs = min_t(unsigned int,
> > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > +			num_vqs);
> 
> If you respin, please consider calling them request queues. That's the
> terminology from the VIRTIO spec and it's nice to keep it consistent.
> But the purpose of num_io_queues is clear, so:
> 
> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

I did this:
+static unsigned int num_io_request_queues;
+module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
+MODULE_PARM_DESC(num_io_request_queues,
+                "Limit number of IO request virt queues to use for each device. 0 for now limit");


^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-05 16:02     ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-05 16:02 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: Max Gurtovoy, linux-block, kvm, israelr, virtualization, hch,
	nitzanc, axboe, oren

On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > Sometimes a user would like to control the amount of IO queues to be
> > created for a block device. For example, for limiting the memory
> > footprint of virtio-blk devices.
> > 
> > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > ---
> > 
> > changes from v1:
> >  - use param_set_uint_minmax (from Christoph)
> >  - added "Should > 0" to module description
> > 
> > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > ---
> >  drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> >  1 file changed, 19 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > index 4b49df2dfd23..9332fc4e9b31 100644
> > --- a/drivers/block/virtio_blk.c
> > +++ b/drivers/block/virtio_blk.c
> > @@ -24,6 +24,22 @@
> >  /* The maximum number of sg elements that fit into a virtqueue */
> >  #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> >  
> > +static int virtblk_queue_count_set(const char *val,
> > +		const struct kernel_param *kp)
> > +{
> > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > +}
> > +
> > +static const struct kernel_param_ops queue_count_ops = {
> > +	.set = virtblk_queue_count_set,
> > +	.get = param_get_uint,
> > +};
> > +
> > +static unsigned int num_io_queues;
> > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > +MODULE_PARM_DESC(num_io_queues,
> > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > +
> >  static int major;
> >  static DEFINE_IDA(vd_index_ida);
> >  
> > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> >  	if (err)
> >  		num_vqs = 1;
> >  
> > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > +	num_vqs = min_t(unsigned int,
> > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > +			num_vqs);
> 
> If you respin, please consider calling them request queues. That's the
> terminology from the VIRTIO spec and it's nice to keep it consistent.
> But the purpose of num_io_queues is clear, so:
> 
> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

I did this:
+static unsigned int num_io_request_queues;
+module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
+MODULE_PARM_DESC(num_io_request_queues,
+                "Limit number of IO request virt queues to use for each device. 0 for now limit");

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-05 16:02     ` Michael S. Tsirkin
  (?)
@ 2021-09-05 22:31     ` Max Gurtovoy
  2021-09-06 11:20         ` Michael S. Tsirkin
  -1 siblings, 1 reply; 32+ messages in thread
From: Max Gurtovoy @ 2021-09-05 22:31 UTC (permalink / raw)
  To: Michael S. Tsirkin, Stefan Hajnoczi
  Cc: hch, virtualization, kvm, israelr, nitzanc, oren, linux-block, axboe


On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
>> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
>>> Sometimes a user would like to control the amount of IO queues to be
>>> created for a block device. For example, for limiting the memory
>>> footprint of virtio-blk devices.
>>>
>>> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
>>> ---
>>>
>>> changes from v1:
>>>   - use param_set_uint_minmax (from Christoph)
>>>   - added "Should > 0" to module description
>>>
>>> Note: This commit apply on top of Jens's branch for-5.15/drivers
>>> ---
>>>   drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>>>   1 file changed, 19 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
>>> index 4b49df2dfd23..9332fc4e9b31 100644
>>> --- a/drivers/block/virtio_blk.c
>>> +++ b/drivers/block/virtio_blk.c
>>> @@ -24,6 +24,22 @@
>>>   /* The maximum number of sg elements that fit into a virtqueue */
>>>   #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>>>   
>>> +static int virtblk_queue_count_set(const char *val,
>>> +		const struct kernel_param *kp)
>>> +{
>>> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
>>> +}
>>> +
>>> +static const struct kernel_param_ops queue_count_ops = {
>>> +	.set = virtblk_queue_count_set,
>>> +	.get = param_get_uint,
>>> +};
>>> +
>>> +static unsigned int num_io_queues;
>>> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
>>> +MODULE_PARM_DESC(num_io_queues,
>>> +		 "Number of IO virt queues to use for blk device. Should > 0");
>>> +
>>>   static int major;
>>>   static DEFINE_IDA(vd_index_ida);
>>>   
>>> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>>>   	if (err)
>>>   		num_vqs = 1;
>>>   
>>> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
>>> +	num_vqs = min_t(unsigned int,
>>> +			min_not_zero(num_io_queues, nr_cpu_ids),
>>> +			num_vqs);
>> If you respin, please consider calling them request queues. That's the
>> terminology from the VIRTIO spec and it's nice to keep it consistent.
>> But the purpose of num_io_queues is clear, so:
>>
>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> I did this:
> +static unsigned int num_io_request_queues;
> +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> +MODULE_PARM_DESC(num_io_request_queues,
> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");

The parameter is writable and can be changed and then new devices might 
be probed with new value.

It can't be zero in the code. we can change param_set_uint_minmax args 
and say that 0 says nr_cpus.

I'm ok with the renaming but I prefer to stick to the description we 
gave in V3 of this patch (and maybe enable value of 0 as mentioned above).


^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-05 22:31     ` Max Gurtovoy
@ 2021-09-06 11:20         ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-06 11:20 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe

On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> 
> On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > Sometimes a user would like to control the amount of IO queues to be
> > > > created for a block device. For example, for limiting the memory
> > > > footprint of virtio-blk devices.
> > > > 
> > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > ---
> > > > 
> > > > changes from v1:
> > > >   - use param_set_uint_minmax (from Christoph)
> > > >   - added "Should > 0" to module description
> > > > 
> > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > ---
> > > >   drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > >   1 file changed, 19 insertions(+), 1 deletion(-)
> > > > 
> > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > --- a/drivers/block/virtio_blk.c
> > > > +++ b/drivers/block/virtio_blk.c
> > > > @@ -24,6 +24,22 @@
> > > >   /* The maximum number of sg elements that fit into a virtqueue */
> > > >   #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > +static int virtblk_queue_count_set(const char *val,
> > > > +		const struct kernel_param *kp)
> > > > +{
> > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > +}


Hmm which tree is this for?

> > > > +
> > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > +	.set = virtblk_queue_count_set,
> > > > +	.get = param_get_uint,
> > > > +};
> > > > +
> > > > +static unsigned int num_io_queues;
> > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > +MODULE_PARM_DESC(num_io_queues,
> > > > +		 "Number of IO virt queues to use for blk device. Should > 0");



better:

+MODULE_PARM_DESC(num_io_request_queues,
+                "Limit number of IO request virt queues to use for each device. 0 for now limit");


> > > > +
> > > >   static int major;
> > > >   static DEFINE_IDA(vd_index_ida);
> > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > >   	if (err)
> > > >   		num_vqs = 1;
> > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > +	num_vqs = min_t(unsigned int,
> > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > +			num_vqs);
> > > If you respin, please consider calling them request queues. That's the
> > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > But the purpose of num_io_queues is clear, so:
> > > 
> > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > I did this:
> > +static unsigned int num_io_request_queues;
> > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > +MODULE_PARM_DESC(num_io_request_queues,
> > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> 
> The parameter is writable and can be changed and then new devices might be
> probed with new value.
> 
> It can't be zero in the code. we can change param_set_uint_minmax args and
> say that 0 says nr_cpus.
> 
> I'm ok with the renaming but I prefer to stick to the description we gave in
> V3 of this patch (and maybe enable value of 0 as mentioned above).


^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-06 11:20         ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-06 11:20 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: axboe, linux-block, kvm, israelr, virtualization, hch, nitzanc,
	Stefan Hajnoczi, oren

On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> 
> On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > Sometimes a user would like to control the amount of IO queues to be
> > > > created for a block device. For example, for limiting the memory
> > > > footprint of virtio-blk devices.
> > > > 
> > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > ---
> > > > 
> > > > changes from v1:
> > > >   - use param_set_uint_minmax (from Christoph)
> > > >   - added "Should > 0" to module description
> > > > 
> > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > ---
> > > >   drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > >   1 file changed, 19 insertions(+), 1 deletion(-)
> > > > 
> > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > --- a/drivers/block/virtio_blk.c
> > > > +++ b/drivers/block/virtio_blk.c
> > > > @@ -24,6 +24,22 @@
> > > >   /* The maximum number of sg elements that fit into a virtqueue */
> > > >   #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > +static int virtblk_queue_count_set(const char *val,
> > > > +		const struct kernel_param *kp)
> > > > +{
> > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > +}


Hmm which tree is this for?

> > > > +
> > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > +	.set = virtblk_queue_count_set,
> > > > +	.get = param_get_uint,
> > > > +};
> > > > +
> > > > +static unsigned int num_io_queues;
> > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > +MODULE_PARM_DESC(num_io_queues,
> > > > +		 "Number of IO virt queues to use for blk device. Should > 0");



better:

+MODULE_PARM_DESC(num_io_request_queues,
+                "Limit number of IO request virt queues to use for each device. 0 for now limit");


> > > > +
> > > >   static int major;
> > > >   static DEFINE_IDA(vd_index_ida);
> > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > >   	if (err)
> > > >   		num_vqs = 1;
> > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > +	num_vqs = min_t(unsigned int,
> > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > +			num_vqs);
> > > If you respin, please consider calling them request queues. That's the
> > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > But the purpose of num_io_queues is clear, so:
> > > 
> > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > I did this:
> > +static unsigned int num_io_request_queues;
> > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > +MODULE_PARM_DESC(num_io_request_queues,
> > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> 
> The parameter is writable and can be changed and then new devices might be
> probed with new value.
> 
> It can't be zero in the code. we can change param_set_uint_minmax args and
> say that 0 says nr_cpus.
> 
> I'm ok with the renaming but I prefer to stick to the description we gave in
> V3 of this patch (and maybe enable value of 0 as mentioned above).

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-06 11:20         ` Michael S. Tsirkin
  (?)
@ 2021-09-06 11:59         ` Max Gurtovoy
  2021-09-09 13:42             ` Michael S. Tsirkin
  -1 siblings, 1 reply; 32+ messages in thread
From: Max Gurtovoy @ 2021-09-06 11:59 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe


On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
>> On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
>>> On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
>>>> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
>>>>> Sometimes a user would like to control the amount of IO queues to be
>>>>> created for a block device. For example, for limiting the memory
>>>>> footprint of virtio-blk devices.
>>>>>
>>>>> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
>>>>> ---
>>>>>
>>>>> changes from v1:
>>>>>    - use param_set_uint_minmax (from Christoph)
>>>>>    - added "Should > 0" to module description
>>>>>
>>>>> Note: This commit apply on top of Jens's branch for-5.15/drivers
>>>>> ---
>>>>>    drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>>>>>    1 file changed, 19 insertions(+), 1 deletion(-)
>>>>>
>>>>> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
>>>>> index 4b49df2dfd23..9332fc4e9b31 100644
>>>>> --- a/drivers/block/virtio_blk.c
>>>>> +++ b/drivers/block/virtio_blk.c
>>>>> @@ -24,6 +24,22 @@
>>>>>    /* The maximum number of sg elements that fit into a virtqueue */
>>>>>    #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>>>>> +static int virtblk_queue_count_set(const char *val,
>>>>> +		const struct kernel_param *kp)
>>>>> +{
>>>>> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
>>>>> +}
>
> Hmm which tree is this for?

I've mentioned in the note that it apply on branch for-5.15/drivers. But 
now you can apply it on linus/master as well.


>
>>>>> +
>>>>> +static const struct kernel_param_ops queue_count_ops = {
>>>>> +	.set = virtblk_queue_count_set,
>>>>> +	.get = param_get_uint,
>>>>> +};
>>>>> +
>>>>> +static unsigned int num_io_queues;
>>>>> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
>>>>> +MODULE_PARM_DESC(num_io_queues,
>>>>> +		 "Number of IO virt queues to use for blk device. Should > 0");
>
>
> better:
>
> +MODULE_PARM_DESC(num_io_request_queues,
> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");

You proposed it and I replied on it bellow.


>
>
>>>>> +
>>>>>    static int major;
>>>>>    static DEFINE_IDA(vd_index_ida);
>>>>> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>>>>>    	if (err)
>>>>>    		num_vqs = 1;
>>>>> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
>>>>> +	num_vqs = min_t(unsigned int,
>>>>> +			min_not_zero(num_io_queues, nr_cpu_ids),
>>>>> +			num_vqs);
>>>> If you respin, please consider calling them request queues. That's the
>>>> terminology from the VIRTIO spec and it's nice to keep it consistent.
>>>> But the purpose of num_io_queues is clear, so:
>>>>
>>>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
>>> I did this:
>>> +static unsigned int num_io_request_queues;
>>> +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
>>> +MODULE_PARM_DESC(num_io_request_queues,
>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>> The parameter is writable and can be changed and then new devices might be
>> probed with new value.
>>
>> It can't be zero in the code. we can change param_set_uint_minmax args and
>> say that 0 says nr_cpus.
>>
>> I'm ok with the renaming but I prefer to stick to the description we gave in
>> V3 of this patch (and maybe enable value of 0 as mentioned above).

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-06 11:59         ` Max Gurtovoy
@ 2021-09-09 13:42             ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-09 13:42 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: axboe, linux-block, kvm, israelr, virtualization, hch, nitzanc,
	Stefan Hajnoczi, oren

On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> 
> On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > created for a block device. For example, for limiting the memory
> > > > > > footprint of virtio-blk devices.
> > > > > > 
> > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > ---
> > > > > > 
> > > > > > changes from v1:
> > > > > >    - use param_set_uint_minmax (from Christoph)
> > > > > >    - added "Should > 0" to module description
> > > > > > 
> > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > ---
> > > > > >    drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > >    1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > 
> > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > @@ -24,6 +24,22 @@
> > > > > >    /* The maximum number of sg elements that fit into a virtqueue */
> > > > > >    #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > +		const struct kernel_param *kp)
> > > > > > +{
> > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > +}
> > 
> > Hmm which tree is this for?
> 
> I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> you can apply it on linus/master as well.
> 
> 
> > 
> > > > > > +
> > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > +	.set = virtblk_queue_count_set,
> > > > > > +	.get = param_get_uint,
> > > > > > +};
> > > > > > +
> > > > > > +static unsigned int num_io_queues;
> > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > 
> > 
> > better:
> > 
> > +MODULE_PARM_DESC(num_io_request_queues,
> > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> 
> You proposed it and I replied on it bellow.


Can't say I understand 100% what you are saying. Want to send
a description that does make sense to you but
also reflects reality? 0 is the default so
"should > 0" besides being ungrammatical does not seem t"
reflect what it does ...

> 
> > 
> > 
> > > > > > +
> > > > > >    static int major;
> > > > > >    static DEFINE_IDA(vd_index_ida);
> > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > >    	if (err)
> > > > > >    		num_vqs = 1;
> > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > +			num_vqs);
> > > > > If you respin, please consider calling them request queues. That's the
> > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > But the purpose of num_io_queues is clear, so:
> > > > > 
> > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > I did this:
> > > > +static unsigned int num_io_request_queues;
> > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > The parameter is writable and can be changed and then new devices might be
> > > probed with new value.
> > > 
> > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > say that 0 says nr_cpus.
> > > 
> > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > V3 of this patch (and maybe enable value of 0 as mentioned above).

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-09 13:42             ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-09 13:42 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe

On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> 
> On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > created for a block device. For example, for limiting the memory
> > > > > > footprint of virtio-blk devices.
> > > > > > 
> > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > ---
> > > > > > 
> > > > > > changes from v1:
> > > > > >    - use param_set_uint_minmax (from Christoph)
> > > > > >    - added "Should > 0" to module description
> > > > > > 
> > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > ---
> > > > > >    drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > >    1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > 
> > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > @@ -24,6 +24,22 @@
> > > > > >    /* The maximum number of sg elements that fit into a virtqueue */
> > > > > >    #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > +		const struct kernel_param *kp)
> > > > > > +{
> > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > +}
> > 
> > Hmm which tree is this for?
> 
> I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> you can apply it on linus/master as well.
> 
> 
> > 
> > > > > > +
> > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > +	.set = virtblk_queue_count_set,
> > > > > > +	.get = param_get_uint,
> > > > > > +};
> > > > > > +
> > > > > > +static unsigned int num_io_queues;
> > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > 
> > 
> > better:
> > 
> > +MODULE_PARM_DESC(num_io_request_queues,
> > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> 
> You proposed it and I replied on it bellow.


Can't say I understand 100% what you are saying. Want to send
a description that does make sense to you but
also reflects reality? 0 is the default so
"should > 0" besides being ungrammatical does not seem t"
reflect what it does ...

> 
> > 
> > 
> > > > > > +
> > > > > >    static int major;
> > > > > >    static DEFINE_IDA(vd_index_ida);
> > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > >    	if (err)
> > > > > >    		num_vqs = 1;
> > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > +			num_vqs);
> > > > > If you respin, please consider calling them request queues. That's the
> > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > But the purpose of num_io_queues is clear, so:
> > > > > 
> > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > I did this:
> > > > +static unsigned int num_io_request_queues;
> > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > The parameter is writable and can be changed and then new devices might be
> > > probed with new value.
> > > 
> > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > say that 0 says nr_cpus.
> > > 
> > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > V3 of this patch (and maybe enable value of 0 as mentioned above).


^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-09 13:42             ` Michael S. Tsirkin
  (?)
@ 2021-09-09 15:37             ` Max Gurtovoy
  2021-09-09 15:40                 ` Michael S. Tsirkin
  -1 siblings, 1 reply; 32+ messages in thread
From: Max Gurtovoy @ 2021-09-09 15:37 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe


On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
>> On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
>>> On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
>>>> On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
>>>>> On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
>>>>>> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
>>>>>>> Sometimes a user would like to control the amount of IO queues to be
>>>>>>> created for a block device. For example, for limiting the memory
>>>>>>> footprint of virtio-blk devices.
>>>>>>>
>>>>>>> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
>>>>>>> ---
>>>>>>>
>>>>>>> changes from v1:
>>>>>>>     - use param_set_uint_minmax (from Christoph)
>>>>>>>     - added "Should > 0" to module description
>>>>>>>
>>>>>>> Note: This commit apply on top of Jens's branch for-5.15/drivers
>>>>>>> ---
>>>>>>>     drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>>>>>>>     1 file changed, 19 insertions(+), 1 deletion(-)
>>>>>>>
>>>>>>> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
>>>>>>> index 4b49df2dfd23..9332fc4e9b31 100644
>>>>>>> --- a/drivers/block/virtio_blk.c
>>>>>>> +++ b/drivers/block/virtio_blk.c
>>>>>>> @@ -24,6 +24,22 @@
>>>>>>>     /* The maximum number of sg elements that fit into a virtqueue */
>>>>>>>     #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>>>>>>> +static int virtblk_queue_count_set(const char *val,
>>>>>>> +		const struct kernel_param *kp)
>>>>>>> +{
>>>>>>> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
>>>>>>> +}
>>> Hmm which tree is this for?
>> I've mentioned in the note that it apply on branch for-5.15/drivers. But now
>> you can apply it on linus/master as well.
>>
>>
>>>>>>> +
>>>>>>> +static const struct kernel_param_ops queue_count_ops = {
>>>>>>> +	.set = virtblk_queue_count_set,
>>>>>>> +	.get = param_get_uint,
>>>>>>> +};
>>>>>>> +
>>>>>>> +static unsigned int num_io_queues;
>>>>>>> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
>>>>>>> +MODULE_PARM_DESC(num_io_queues,
>>>>>>> +		 "Number of IO virt queues to use for blk device. Should > 0");
>>>
>>> better:
>>>
>>> +MODULE_PARM_DESC(num_io_request_queues,
>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>> You proposed it and I replied on it bellow.
>
> Can't say I understand 100% what you are saying. Want to send
> a description that does make sense to you but
> also reflects reality? 0 is the default so
> "should > 0" besides being ungrammatical does not seem t"
> reflect what it does ...

if you "modprobe virtio_blk" the previous behavior will happen.

You can't "modprobe virtio_blk num_io_request_queues=0" since the 
minimal value is 1.

So your description is not reflecting the code.

We can do:

MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");

>
>>>
>>>>>>> +
>>>>>>>     static int major;
>>>>>>>     static DEFINE_IDA(vd_index_ida);
>>>>>>> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>>>>>>>     	if (err)
>>>>>>>     		num_vqs = 1;
>>>>>>> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
>>>>>>> +	num_vqs = min_t(unsigned int,
>>>>>>> +			min_not_zero(num_io_queues, nr_cpu_ids),
>>>>>>> +			num_vqs);
>>>>>> If you respin, please consider calling them request queues. That's the
>>>>>> terminology from the VIRTIO spec and it's nice to keep it consistent.
>>>>>> But the purpose of num_io_queues is clear, so:
>>>>>>
>>>>>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
>>>>> I did this:
>>>>> +static unsigned int num_io_request_queues;
>>>>> +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>> The parameter is writable and can be changed and then new devices might be
>>>> probed with new value.
>>>>
>>>> It can't be zero in the code. we can change param_set_uint_minmax args and
>>>> say that 0 says nr_cpus.
>>>>
>>>> I'm ok with the renaming but I prefer to stick to the description we gave in
>>>> V3 of this patch (and maybe enable value of 0 as mentioned above).

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-09 15:37             ` Max Gurtovoy
@ 2021-09-09 15:40                 ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-09 15:40 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe

On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> 
> On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > footprint of virtio-blk devices.
> > > > > > > > 
> > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > ---
> > > > > > > > 
> > > > > > > > changes from v1:
> > > > > > > >     - use param_set_uint_minmax (from Christoph)
> > > > > > > >     - added "Should > 0" to module description
> > > > > > > > 
> > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > ---
> > > > > > > >     drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > >     1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > 
> > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > >     /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > >     #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > +{
> > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > +}
> > > > Hmm which tree is this for?
> > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > you can apply it on linus/master as well.
> > > 
> > > 
> > > > > > > > +
> > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > +	.get = param_get_uint,
> > > > > > > > +};
> > > > > > > > +
> > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > 
> > > > better:
> > > > 
> > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > You proposed it and I replied on it bellow.
> > 
> > Can't say I understand 100% what you are saying. Want to send
> > a description that does make sense to you but
> > also reflects reality? 0 is the default so
> > "should > 0" besides being ungrammatical does not seem t"
> > reflect what it does ...
> 
> if you "modprobe virtio_blk" the previous behavior will happen.
> 
> You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> value is 1.
> 
> So your description is not reflecting the code.
> 
> We can do:
> 
> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");

What's the default value? We should document that.

> > 
> > > > 
> > > > > > > > +
> > > > > > > >     static int major;
> > > > > > > >     static DEFINE_IDA(vd_index_ida);
> > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > >     	if (err)
> > > > > > > >     		num_vqs = 1;
> > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > +			num_vqs);
> > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > 
> > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > I did this:
> > > > > > +static unsigned int num_io_request_queues;
> > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > The parameter is writable and can be changed and then new devices might be
> > > > > probed with new value.
> > > > > 
> > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > say that 0 says nr_cpus.
> > > > > 
> > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).


^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-09 15:40                 ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-09 15:40 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: axboe, linux-block, kvm, israelr, virtualization, hch, nitzanc,
	Stefan Hajnoczi, oren

On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> 
> On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > footprint of virtio-blk devices.
> > > > > > > > 
> > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > ---
> > > > > > > > 
> > > > > > > > changes from v1:
> > > > > > > >     - use param_set_uint_minmax (from Christoph)
> > > > > > > >     - added "Should > 0" to module description
> > > > > > > > 
> > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > ---
> > > > > > > >     drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > >     1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > 
> > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > >     /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > >     #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > +{
> > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > +}
> > > > Hmm which tree is this for?
> > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > you can apply it on linus/master as well.
> > > 
> > > 
> > > > > > > > +
> > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > +	.get = param_get_uint,
> > > > > > > > +};
> > > > > > > > +
> > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > 
> > > > better:
> > > > 
> > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > You proposed it and I replied on it bellow.
> > 
> > Can't say I understand 100% what you are saying. Want to send
> > a description that does make sense to you but
> > also reflects reality? 0 is the default so
> > "should > 0" besides being ungrammatical does not seem t"
> > reflect what it does ...
> 
> if you "modprobe virtio_blk" the previous behavior will happen.
> 
> You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> value is 1.
> 
> So your description is not reflecting the code.
> 
> We can do:
> 
> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");

What's the default value? We should document that.

> > 
> > > > 
> > > > > > > > +
> > > > > > > >     static int major;
> > > > > > > >     static DEFINE_IDA(vd_index_ida);
> > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > >     	if (err)
> > > > > > > >     		num_vqs = 1;
> > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > +			num_vqs);
> > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > 
> > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > I did this:
> > > > > > +static unsigned int num_io_request_queues;
> > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > The parameter is writable and can be changed and then new devices might be
> > > > > probed with new value.
> > > > > 
> > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > say that 0 says nr_cpus.
> > > > > 
> > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-09 15:40                 ` Michael S. Tsirkin
  (?)
@ 2021-09-09 15:51                 ` Max Gurtovoy
  2021-09-09 16:31                     ` Michael S. Tsirkin
  -1 siblings, 1 reply; 32+ messages in thread
From: Max Gurtovoy @ 2021-09-09 15:51 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe


On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
>> On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
>>> On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
>>>> On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
>>>>> On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
>>>>>> On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
>>>>>>> On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
>>>>>>>> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
>>>>>>>>> Sometimes a user would like to control the amount of IO queues to be
>>>>>>>>> created for a block device. For example, for limiting the memory
>>>>>>>>> footprint of virtio-blk devices.
>>>>>>>>>
>>>>>>>>> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
>>>>>>>>> ---
>>>>>>>>>
>>>>>>>>> changes from v1:
>>>>>>>>>      - use param_set_uint_minmax (from Christoph)
>>>>>>>>>      - added "Should > 0" to module description
>>>>>>>>>
>>>>>>>>> Note: This commit apply on top of Jens's branch for-5.15/drivers
>>>>>>>>> ---
>>>>>>>>>      drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>>>>>>>>>      1 file changed, 19 insertions(+), 1 deletion(-)
>>>>>>>>>
>>>>>>>>> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
>>>>>>>>> index 4b49df2dfd23..9332fc4e9b31 100644
>>>>>>>>> --- a/drivers/block/virtio_blk.c
>>>>>>>>> +++ b/drivers/block/virtio_blk.c
>>>>>>>>> @@ -24,6 +24,22 @@
>>>>>>>>>      /* The maximum number of sg elements that fit into a virtqueue */
>>>>>>>>>      #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>>>>>>>>> +static int virtblk_queue_count_set(const char *val,
>>>>>>>>> +		const struct kernel_param *kp)
>>>>>>>>> +{
>>>>>>>>> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
>>>>>>>>> +}
>>>>> Hmm which tree is this for?
>>>> I've mentioned in the note that it apply on branch for-5.15/drivers. But now
>>>> you can apply it on linus/master as well.
>>>>
>>>>
>>>>>>>>> +
>>>>>>>>> +static const struct kernel_param_ops queue_count_ops = {
>>>>>>>>> +	.set = virtblk_queue_count_set,
>>>>>>>>> +	.get = param_get_uint,
>>>>>>>>> +};
>>>>>>>>> +
>>>>>>>>> +static unsigned int num_io_queues;
>>>>>>>>> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
>>>>>>>>> +MODULE_PARM_DESC(num_io_queues,
>>>>>>>>> +		 "Number of IO virt queues to use for blk device. Should > 0");
>>>>> better:
>>>>>
>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>> You proposed it and I replied on it bellow.
>>> Can't say I understand 100% what you are saying. Want to send
>>> a description that does make sense to you but
>>> also reflects reality? 0 is the default so
>>> "should > 0" besides being ungrammatical does not seem t"
>>> reflect what it does ...
>> if you "modprobe virtio_blk" the previous behavior will happen.
>>
>> You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
>> value is 1.
>>
>> So your description is not reflecting the code.
>>
>> We can do:
>>
>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> What's the default value? We should document that.

default value for static global variables is 0.

MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues 
to use for blk device. Minimum value is 1 queue. Default and Maximum 
value is equal to the total number of CPUs");


>
>>>>>>>>> +
>>>>>>>>>      static int major;
>>>>>>>>>      static DEFINE_IDA(vd_index_ida);
>>>>>>>>> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>>>>>>>>>      	if (err)
>>>>>>>>>      		num_vqs = 1;
>>>>>>>>> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
>>>>>>>>> +	num_vqs = min_t(unsigned int,
>>>>>>>>> +			min_not_zero(num_io_queues, nr_cpu_ids),
>>>>>>>>> +			num_vqs);
>>>>>>>> If you respin, please consider calling them request queues. That's the
>>>>>>>> terminology from the VIRTIO spec and it's nice to keep it consistent.
>>>>>>>> But the purpose of num_io_queues is clear, so:
>>>>>>>>
>>>>>>>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
>>>>>>> I did this:
>>>>>>> +static unsigned int num_io_request_queues;
>>>>>>> +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>> The parameter is writable and can be changed and then new devices might be
>>>>>> probed with new value.
>>>>>>
>>>>>> It can't be zero in the code. we can change param_set_uint_minmax args and
>>>>>> say that 0 says nr_cpus.
>>>>>>
>>>>>> I'm ok with the renaming but I prefer to stick to the description we gave in
>>>>>> V3 of this patch (and maybe enable value of 0 as mentioned above).

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-09 15:51                 ` Max Gurtovoy
@ 2021-09-09 16:31                     ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-09 16:31 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe

On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
> 
> On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> > On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> > > On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > > > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > > > footprint of virtio-blk devices.
> > > > > > > > > > 
> > > > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > > > ---
> > > > > > > > > > 
> > > > > > > > > > changes from v1:
> > > > > > > > > >      - use param_set_uint_minmax (from Christoph)
> > > > > > > > > >      - added "Should > 0" to module description
> > > > > > > > > > 
> > > > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > > > ---
> > > > > > > > > >      drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > > > >      1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > > > 
> > > > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > > > >      /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > > > >      #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > > > +{
> > > > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > > > +}
> > > > > > Hmm which tree is this for?
> > > > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > > > you can apply it on linus/master as well.
> > > > > 
> > > > > 
> > > > > > > > > > +
> > > > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > > > +	.get = param_get_uint,
> > > > > > > > > > +};
> > > > > > > > > > +
> > > > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > > > better:
> > > > > > 
> > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > You proposed it and I replied on it bellow.
> > > > Can't say I understand 100% what you are saying. Want to send
> > > > a description that does make sense to you but
> > > > also reflects reality? 0 is the default so
> > > > "should > 0" besides being ungrammatical does not seem t"
> > > > reflect what it does ...
> > > if you "modprobe virtio_blk" the previous behavior will happen.
> > > 
> > > You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> > > value is 1.
> > > 
> > > So your description is not reflecting the code.
> > > 
> > > We can do:
> > > 
> > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> > What's the default value? We should document that.
> 
> default value for static global variables is 0.
> 
> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
> use for blk device. Minimum value is 1 queue. Default and Maximum value is
> equal to the total number of CPUs");

So it says it's the # of cpus but yoiu inspect it with
sysfs and it's actually 0. Let's say that's confusing
at the least. why not just let users set it to 0
and document that?


> 
> > 
> > > > > > > > > > +
> > > > > > > > > >      static int major;
> > > > > > > > > >      static DEFINE_IDA(vd_index_ida);
> > > > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > > > >      	if (err)
> > > > > > > > > >      		num_vqs = 1;
> > > > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > > > +			num_vqs);
> > > > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > > > 
> > > > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > > > I did this:
> > > > > > > > +static unsigned int num_io_request_queues;
> > > > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > The parameter is writable and can be changed and then new devices might be
> > > > > > > probed with new value.
> > > > > > > 
> > > > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > > > say that 0 says nr_cpus.
> > > > > > > 
> > > > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).


^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-09 16:31                     ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-09 16:31 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: axboe, linux-block, kvm, israelr, virtualization, hch, nitzanc,
	Stefan Hajnoczi, oren

On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
> 
> On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> > On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> > > On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > > > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > > > footprint of virtio-blk devices.
> > > > > > > > > > 
> > > > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > > > ---
> > > > > > > > > > 
> > > > > > > > > > changes from v1:
> > > > > > > > > >      - use param_set_uint_minmax (from Christoph)
> > > > > > > > > >      - added "Should > 0" to module description
> > > > > > > > > > 
> > > > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > > > ---
> > > > > > > > > >      drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > > > >      1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > > > 
> > > > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > > > >      /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > > > >      #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > > > +{
> > > > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > > > +}
> > > > > > Hmm which tree is this for?
> > > > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > > > you can apply it on linus/master as well.
> > > > > 
> > > > > 
> > > > > > > > > > +
> > > > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > > > +	.get = param_get_uint,
> > > > > > > > > > +};
> > > > > > > > > > +
> > > > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > > > better:
> > > > > > 
> > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > You proposed it and I replied on it bellow.
> > > > Can't say I understand 100% what you are saying. Want to send
> > > > a description that does make sense to you but
> > > > also reflects reality? 0 is the default so
> > > > "should > 0" besides being ungrammatical does not seem t"
> > > > reflect what it does ...
> > > if you "modprobe virtio_blk" the previous behavior will happen.
> > > 
> > > You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> > > value is 1.
> > > 
> > > So your description is not reflecting the code.
> > > 
> > > We can do:
> > > 
> > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> > What's the default value? We should document that.
> 
> default value for static global variables is 0.
> 
> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
> use for blk device. Minimum value is 1 queue. Default and Maximum value is
> equal to the total number of CPUs");

So it says it's the # of cpus but yoiu inspect it with
sysfs and it's actually 0. Let's say that's confusing
at the least. why not just let users set it to 0
and document that?


> 
> > 
> > > > > > > > > > +
> > > > > > > > > >      static int major;
> > > > > > > > > >      static DEFINE_IDA(vd_index_ida);
> > > > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > > > >      	if (err)
> > > > > > > > > >      		num_vqs = 1;
> > > > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > > > +			num_vqs);
> > > > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > > > 
> > > > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > > > I did this:
> > > > > > > > +static unsigned int num_io_request_queues;
> > > > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > The parameter is writable and can be changed and then new devices might be
> > > > > > > probed with new value.
> > > > > > > 
> > > > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > > > say that 0 says nr_cpus.
> > > > > > > 
> > > > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-09 16:31                     ` Michael S. Tsirkin
  (?)
@ 2021-09-09 16:45                     ` Max Gurtovoy
  2021-09-09 22:57                         ` Michael S. Tsirkin
  -1 siblings, 1 reply; 32+ messages in thread
From: Max Gurtovoy @ 2021-09-09 16:45 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe


On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
> On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
>> On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
>>> On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
>>>> On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
>>>>> On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
>>>>>> On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
>>>>>>> On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
>>>>>>>> On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
>>>>>>>>> On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
>>>>>>>>>> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
>>>>>>>>>>> Sometimes a user would like to control the amount of IO queues to be
>>>>>>>>>>> created for a block device. For example, for limiting the memory
>>>>>>>>>>> footprint of virtio-blk devices.
>>>>>>>>>>>
>>>>>>>>>>> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
>>>>>>>>>>> ---
>>>>>>>>>>>
>>>>>>>>>>> changes from v1:
>>>>>>>>>>>       - use param_set_uint_minmax (from Christoph)
>>>>>>>>>>>       - added "Should > 0" to module description
>>>>>>>>>>>
>>>>>>>>>>> Note: This commit apply on top of Jens's branch for-5.15/drivers
>>>>>>>>>>> ---
>>>>>>>>>>>       drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>>>>>>>>>>>       1 file changed, 19 insertions(+), 1 deletion(-)
>>>>>>>>>>>
>>>>>>>>>>> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
>>>>>>>>>>> index 4b49df2dfd23..9332fc4e9b31 100644
>>>>>>>>>>> --- a/drivers/block/virtio_blk.c
>>>>>>>>>>> +++ b/drivers/block/virtio_blk.c
>>>>>>>>>>> @@ -24,6 +24,22 @@
>>>>>>>>>>>       /* The maximum number of sg elements that fit into a virtqueue */
>>>>>>>>>>>       #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>>>>>>>>>>> +static int virtblk_queue_count_set(const char *val,
>>>>>>>>>>> +		const struct kernel_param *kp)
>>>>>>>>>>> +{
>>>>>>>>>>> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
>>>>>>>>>>> +}
>>>>>>> Hmm which tree is this for?
>>>>>> I've mentioned in the note that it apply on branch for-5.15/drivers. But now
>>>>>> you can apply it on linus/master as well.
>>>>>>
>>>>>>
>>>>>>>>>>> +
>>>>>>>>>>> +static const struct kernel_param_ops queue_count_ops = {
>>>>>>>>>>> +	.set = virtblk_queue_count_set,
>>>>>>>>>>> +	.get = param_get_uint,
>>>>>>>>>>> +};
>>>>>>>>>>> +
>>>>>>>>>>> +static unsigned int num_io_queues;
>>>>>>>>>>> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
>>>>>>>>>>> +MODULE_PARM_DESC(num_io_queues,
>>>>>>>>>>> +		 "Number of IO virt queues to use for blk device. Should > 0");
>>>>>>> better:
>>>>>>>
>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>> You proposed it and I replied on it bellow.
>>>>> Can't say I understand 100% what you are saying. Want to send
>>>>> a description that does make sense to you but
>>>>> also reflects reality? 0 is the default so
>>>>> "should > 0" besides being ungrammatical does not seem t"
>>>>> reflect what it does ...
>>>> if you "modprobe virtio_blk" the previous behavior will happen.
>>>>
>>>> You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
>>>> value is 1.
>>>>
>>>> So your description is not reflecting the code.
>>>>
>>>> We can do:
>>>>
>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
>>> What's the default value? We should document that.
>> default value for static global variables is 0.
>>
>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
>> use for blk device. Minimum value is 1 queue. Default and Maximum value is
>> equal to the total number of CPUs");
> So it says it's the # of cpus but yoiu inspect it with
> sysfs and it's actually 0. Let's say that's confusing
> at the least. why not just let users set it to 0
> and document that?
>
Setting it by the user to 0 makes no sense.

We can say "if not set, the value equals to the total number of CPUs".

The actual value of the created queues can be seen in /sys/block/vda/mq/ 
as done today.

>>>>>>>>>>> +
>>>>>>>>>>>       static int major;
>>>>>>>>>>>       static DEFINE_IDA(vd_index_ida);
>>>>>>>>>>> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>>>>>>>>>>>       	if (err)
>>>>>>>>>>>       		num_vqs = 1;
>>>>>>>>>>> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
>>>>>>>>>>> +	num_vqs = min_t(unsigned int,
>>>>>>>>>>> +			min_not_zero(num_io_queues, nr_cpu_ids),
>>>>>>>>>>> +			num_vqs);
>>>>>>>>>> If you respin, please consider calling them request queues. That's the
>>>>>>>>>> terminology from the VIRTIO spec and it's nice to keep it consistent.
>>>>>>>>>> But the purpose of num_io_queues is clear, so:
>>>>>>>>>>
>>>>>>>>>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
>>>>>>>>> I did this:
>>>>>>>>> +static unsigned int num_io_request_queues;
>>>>>>>>> +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
>>>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>>>> The parameter is writable and can be changed and then new devices might be
>>>>>>>> probed with new value.
>>>>>>>>
>>>>>>>> It can't be zero in the code. we can change param_set_uint_minmax args and
>>>>>>>> say that 0 says nr_cpus.
>>>>>>>>
>>>>>>>> I'm ok with the renaming but I prefer to stick to the description we gave in
>>>>>>>> V3 of this patch (and maybe enable value of 0 as mentioned above).

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-09 16:45                     ` Max Gurtovoy
@ 2021-09-09 22:57                         ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-09 22:57 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe

On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
> 
> On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
> > On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
> > > On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> > > > On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> > > > > On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > > > > > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > > > > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > > > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > > > > > footprint of virtio-blk devices.
> > > > > > > > > > > > 
> > > > > > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > > > > > ---
> > > > > > > > > > > > 
> > > > > > > > > > > > changes from v1:
> > > > > > > > > > > >       - use param_set_uint_minmax (from Christoph)
> > > > > > > > > > > >       - added "Should > 0" to module description
> > > > > > > > > > > > 
> > > > > > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > > > > > ---
> > > > > > > > > > > >       drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > > > > > >       1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > > > > > 
> > > > > > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > > > > > >       /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > > > > > >       #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > > > > > +{
> > > > > > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > > > > > +}
> > > > > > > > Hmm which tree is this for?
> > > > > > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > > > > > you can apply it on linus/master as well.
> > > > > > > 
> > > > > > > 
> > > > > > > > > > > > +
> > > > > > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > > > > > +	.get = param_get_uint,
> > > > > > > > > > > > +};
> > > > > > > > > > > > +
> > > > > > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > > > > > better:
> > > > > > > > 
> > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > You proposed it and I replied on it bellow.
> > > > > > Can't say I understand 100% what you are saying. Want to send
> > > > > > a description that does make sense to you but
> > > > > > also reflects reality? 0 is the default so
> > > > > > "should > 0" besides being ungrammatical does not seem t"
> > > > > > reflect what it does ...
> > > > > if you "modprobe virtio_blk" the previous behavior will happen.
> > > > > 
> > > > > You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> > > > > value is 1.
> > > > > 
> > > > > So your description is not reflecting the code.
> > > > > 
> > > > > We can do:
> > > > > 
> > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> > > > What's the default value? We should document that.
> > > default value for static global variables is 0.
> > > 
> > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
> > > use for blk device. Minimum value is 1 queue. Default and Maximum value is
> > > equal to the total number of CPUs");
> > So it says it's the # of cpus but yoiu inspect it with
> > sysfs and it's actually 0. Let's say that's confusing
> > at the least. why not just let users set it to 0
> > and document that?
> > 
> Setting it by the user to 0 makes no sense.
> 
> We can say "if not set, the value equals to the total number of CPUs".

the value is 0. it seems to mean "no limit". the actual # of queues is
then te smaller between # of cpus and # of hardware queues.
I see no reason not to allow user to set that especially if
it was originally the value then user changed it
and is trying to change it back.

> The actual value of the created queues can be seen in /sys/block/vda/mq/ as
> done today.

> > > > > > > > > > > > +
> > > > > > > > > > > >       static int major;
> > > > > > > > > > > >       static DEFINE_IDA(vd_index_ida);
> > > > > > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > > > > > >       	if (err)
> > > > > > > > > > > >       		num_vqs = 1;
> > > > > > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > > > > > +			num_vqs);
> > > > > > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > > > > > 
> > > > > > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > > > > > I did this:
> > > > > > > > > > +static unsigned int num_io_request_queues;
> > > > > > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > The parameter is writable and can be changed and then new devices might be
> > > > > > > > > probed with new value.
> > > > > > > > > 
> > > > > > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > > > > > say that 0 says nr_cpus.
> > > > > > > > > 
> > > > > > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).


^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-09 22:57                         ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-09 22:57 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: axboe, linux-block, kvm, israelr, virtualization, hch, nitzanc,
	Stefan Hajnoczi, oren

On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
> 
> On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
> > On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
> > > On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> > > > On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> > > > > On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > > > > > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > > > > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > > > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > > > > > footprint of virtio-blk devices.
> > > > > > > > > > > > 
> > > > > > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > > > > > ---
> > > > > > > > > > > > 
> > > > > > > > > > > > changes from v1:
> > > > > > > > > > > >       - use param_set_uint_minmax (from Christoph)
> > > > > > > > > > > >       - added "Should > 0" to module description
> > > > > > > > > > > > 
> > > > > > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > > > > > ---
> > > > > > > > > > > >       drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > > > > > >       1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > > > > > 
> > > > > > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > > > > > >       /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > > > > > >       #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > > > > > +{
> > > > > > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > > > > > +}
> > > > > > > > Hmm which tree is this for?
> > > > > > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > > > > > you can apply it on linus/master as well.
> > > > > > > 
> > > > > > > 
> > > > > > > > > > > > +
> > > > > > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > > > > > +	.get = param_get_uint,
> > > > > > > > > > > > +};
> > > > > > > > > > > > +
> > > > > > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > > > > > better:
> > > > > > > > 
> > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > You proposed it and I replied on it bellow.
> > > > > > Can't say I understand 100% what you are saying. Want to send
> > > > > > a description that does make sense to you but
> > > > > > also reflects reality? 0 is the default so
> > > > > > "should > 0" besides being ungrammatical does not seem t"
> > > > > > reflect what it does ...
> > > > > if you "modprobe virtio_blk" the previous behavior will happen.
> > > > > 
> > > > > You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> > > > > value is 1.
> > > > > 
> > > > > So your description is not reflecting the code.
> > > > > 
> > > > > We can do:
> > > > > 
> > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> > > > What's the default value? We should document that.
> > > default value for static global variables is 0.
> > > 
> > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
> > > use for blk device. Minimum value is 1 queue. Default and Maximum value is
> > > equal to the total number of CPUs");
> > So it says it's the # of cpus but yoiu inspect it with
> > sysfs and it's actually 0. Let's say that's confusing
> > at the least. why not just let users set it to 0
> > and document that?
> > 
> Setting it by the user to 0 makes no sense.
> 
> We can say "if not set, the value equals to the total number of CPUs".

the value is 0. it seems to mean "no limit". the actual # of queues is
then te smaller between # of cpus and # of hardware queues.
I see no reason not to allow user to set that especially if
it was originally the value then user changed it
and is trying to change it back.

> The actual value of the created queues can be seen in /sys/block/vda/mq/ as
> done today.

> > > > > > > > > > > > +
> > > > > > > > > > > >       static int major;
> > > > > > > > > > > >       static DEFINE_IDA(vd_index_ida);
> > > > > > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > > > > > >       	if (err)
> > > > > > > > > > > >       		num_vqs = 1;
> > > > > > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > > > > > +			num_vqs);
> > > > > > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > > > > > 
> > > > > > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > > > > > I did this:
> > > > > > > > > > +static unsigned int num_io_request_queues;
> > > > > > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > The parameter is writable and can be changed and then new devices might be
> > > > > > > > > probed with new value.
> > > > > > > > > 
> > > > > > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > > > > > say that 0 says nr_cpus.
> > > > > > > > > 
> > > > > > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-09 22:57                         ` Michael S. Tsirkin
  (?)
@ 2021-09-11 12:56                         ` Max Gurtovoy
  2021-09-12  9:07                             ` Michael S. Tsirkin
  -1 siblings, 1 reply; 32+ messages in thread
From: Max Gurtovoy @ 2021-09-11 12:56 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe


On 9/10/2021 1:57 AM, Michael S. Tsirkin wrote:
> On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
>> On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
>>> On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
>>>> On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
>>>>> On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
>>>>>> On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
>>>>>>> On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
>>>>>>>> On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
>>>>>>>>> On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
>>>>>>>>>> On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
>>>>>>>>>>> On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
>>>>>>>>>>>> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
>>>>>>>>>>>>> Sometimes a user would like to control the amount of IO queues to be
>>>>>>>>>>>>> created for a block device. For example, for limiting the memory
>>>>>>>>>>>>> footprint of virtio-blk devices.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
>>>>>>>>>>>>> ---
>>>>>>>>>>>>>
>>>>>>>>>>>>> changes from v1:
>>>>>>>>>>>>>        - use param_set_uint_minmax (from Christoph)
>>>>>>>>>>>>>        - added "Should > 0" to module description
>>>>>>>>>>>>>
>>>>>>>>>>>>> Note: This commit apply on top of Jens's branch for-5.15/drivers
>>>>>>>>>>>>> ---
>>>>>>>>>>>>>        drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>>>>>>>>>>>>>        1 file changed, 19 insertions(+), 1 deletion(-)
>>>>>>>>>>>>>
>>>>>>>>>>>>> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
>>>>>>>>>>>>> index 4b49df2dfd23..9332fc4e9b31 100644
>>>>>>>>>>>>> --- a/drivers/block/virtio_blk.c
>>>>>>>>>>>>> +++ b/drivers/block/virtio_blk.c
>>>>>>>>>>>>> @@ -24,6 +24,22 @@
>>>>>>>>>>>>>        /* The maximum number of sg elements that fit into a virtqueue */
>>>>>>>>>>>>>        #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>>>>>>>>>>>>> +static int virtblk_queue_count_set(const char *val,
>>>>>>>>>>>>> +		const struct kernel_param *kp)
>>>>>>>>>>>>> +{
>>>>>>>>>>>>> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
>>>>>>>>>>>>> +}
>>>>>>>>> Hmm which tree is this for?
>>>>>>>> I've mentioned in the note that it apply on branch for-5.15/drivers. But now
>>>>>>>> you can apply it on linus/master as well.
>>>>>>>>
>>>>>>>>
>>>>>>>>>>>>> +
>>>>>>>>>>>>> +static const struct kernel_param_ops queue_count_ops = {
>>>>>>>>>>>>> +	.set = virtblk_queue_count_set,
>>>>>>>>>>>>> +	.get = param_get_uint,
>>>>>>>>>>>>> +};
>>>>>>>>>>>>> +
>>>>>>>>>>>>> +static unsigned int num_io_queues;
>>>>>>>>>>>>> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
>>>>>>>>>>>>> +MODULE_PARM_DESC(num_io_queues,
>>>>>>>>>>>>> +		 "Number of IO virt queues to use for blk device. Should > 0");
>>>>>>>>> better:
>>>>>>>>>
>>>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>>>> You proposed it and I replied on it bellow.
>>>>>>> Can't say I understand 100% what you are saying. Want to send
>>>>>>> a description that does make sense to you but
>>>>>>> also reflects reality? 0 is the default so
>>>>>>> "should > 0" besides being ungrammatical does not seem t"
>>>>>>> reflect what it does ...
>>>>>> if you "modprobe virtio_blk" the previous behavior will happen.
>>>>>>
>>>>>> You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
>>>>>> value is 1.
>>>>>>
>>>>>> So your description is not reflecting the code.
>>>>>>
>>>>>> We can do:
>>>>>>
>>>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
>>>>> What's the default value? We should document that.
>>>> default value for static global variables is 0.
>>>>
>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
>>>> use for blk device. Minimum value is 1 queue. Default and Maximum value is
>>>> equal to the total number of CPUs");
>>> So it says it's the # of cpus but yoiu inspect it with
>>> sysfs and it's actually 0. Let's say that's confusing
>>> at the least. why not just let users set it to 0
>>> and document that?
>>>
>> Setting it by the user to 0 makes no sense.
>>
>> We can say "if not set, the value equals to the total number of CPUs".
> the value is 0. it seems to mean "no limit". the actual # of queues is
> then te smaller between # of cpus and # of hardware queues.
> I see no reason not to allow user to set that especially if
> it was originally the value then user changed it
> and is trying to change it back.

I fine with that.

MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. 0 value means no limitation");


>
>> The actual value of the created queues can be seen in /sys/block/vda/mq/ as
>> done today.
>>>>>>>>>>>>> +
>>>>>>>>>>>>>        static int major;
>>>>>>>>>>>>>        static DEFINE_IDA(vd_index_ida);
>>>>>>>>>>>>> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>>>>>>>>>>>>>        	if (err)
>>>>>>>>>>>>>        		num_vqs = 1;
>>>>>>>>>>>>> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
>>>>>>>>>>>>> +	num_vqs = min_t(unsigned int,
>>>>>>>>>>>>> +			min_not_zero(num_io_queues, nr_cpu_ids),
>>>>>>>>>>>>> +			num_vqs);
>>>>>>>>>>>> If you respin, please consider calling them request queues. That's the
>>>>>>>>>>>> terminology from the VIRTIO spec and it's nice to keep it consistent.
>>>>>>>>>>>> But the purpose of num_io_queues is clear, so:
>>>>>>>>>>>>
>>>>>>>>>>>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
>>>>>>>>>>> I did this:
>>>>>>>>>>> +static unsigned int num_io_request_queues;
>>>>>>>>>>> +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
>>>>>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>>>>>> The parameter is writable and can be changed and then new devices might be
>>>>>>>>>> probed with new value.
>>>>>>>>>>
>>>>>>>>>> It can't be zero in the code. we can change param_set_uint_minmax args and
>>>>>>>>>> say that 0 says nr_cpus.
>>>>>>>>>>
>>>>>>>>>> I'm ok with the renaming but I prefer to stick to the description we gave in
>>>>>>>>>> V3 of this patch (and maybe enable value of 0 as mentioned above).

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-11 12:56                         ` Max Gurtovoy
@ 2021-09-12  9:07                             ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-12  9:07 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe

On Sat, Sep 11, 2021 at 03:56:45PM +0300, Max Gurtovoy wrote:
> 
> On 9/10/2021 1:57 AM, Michael S. Tsirkin wrote:
> > On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
> > > On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
> > > > On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
> > > > > On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> > > > > > On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> > > > > > > On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > > > > > > > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > > > > > > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > > > > > > > footprint of virtio-blk devices.
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > > > > > > > ---
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > changes from v1:
> > > > > > > > > > > > > >        - use param_set_uint_minmax (from Christoph)
> > > > > > > > > > > > > >        - added "Should > 0" to module description
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > > > > > > > ---
> > > > > > > > > > > > > >        drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > > > > > > > >        1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > > > > > > > >        /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > > > > > > > >        #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > > > > > > > +{
> > > > > > > > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > > > > > > > +}
> > > > > > > > > > Hmm which tree is this for?
> > > > > > > > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > > > > > > > you can apply it on linus/master as well.
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > > > > > > +
> > > > > > > > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > > > > > > > +	.get = param_get_uint,
> > > > > > > > > > > > > > +};
> > > > > > > > > > > > > > +
> > > > > > > > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > > > > > > > better:
> > > > > > > > > > 
> > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > You proposed it and I replied on it bellow.
> > > > > > > > Can't say I understand 100% what you are saying. Want to send
> > > > > > > > a description that does make sense to you but
> > > > > > > > also reflects reality? 0 is the default so
> > > > > > > > "should > 0" besides being ungrammatical does not seem t"
> > > > > > > > reflect what it does ...
> > > > > > > if you "modprobe virtio_blk" the previous behavior will happen.
> > > > > > > 
> > > > > > > You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> > > > > > > value is 1.
> > > > > > > 
> > > > > > > So your description is not reflecting the code.
> > > > > > > 
> > > > > > > We can do:
> > > > > > > 
> > > > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> > > > > > What's the default value? We should document that.
> > > > > default value for static global variables is 0.
> > > > > 
> > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
> > > > > use for blk device. Minimum value is 1 queue. Default and Maximum value is
> > > > > equal to the total number of CPUs");
> > > > So it says it's the # of cpus but yoiu inspect it with
> > > > sysfs and it's actually 0. Let's say that's confusing
> > > > at the least. why not just let users set it to 0
> > > > and document that?
> > > > 
> > > Setting it by the user to 0 makes no sense.
> > > 
> > > We can say "if not set, the value equals to the total number of CPUs".
> > the value is 0. it seems to mean "no limit". the actual # of queues is
> > then te smaller between # of cpus and # of hardware queues.
> > I see no reason not to allow user to set that especially if
> > it was originally the value then user changed it
> > and is trying to change it back.
> 
> I fine with that.
> 
> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. 0 value means no limitation");
> 

OK and the second distinction is that it's a limit on the
number, not the actual number. It's never more than what's provided
by the hypervisor.

> > 
> > > The actual value of the created queues can be seen in /sys/block/vda/mq/ as
> > > done today.
> > > > > > > > > > > > > > +
> > > > > > > > > > > > > >        static int major;
> > > > > > > > > > > > > >        static DEFINE_IDA(vd_index_ida);
> > > > > > > > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > > > > > > > >        	if (err)
> > > > > > > > > > > > > >        		num_vqs = 1;
> > > > > > > > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > > > > > > > +			num_vqs);
> > > > > > > > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > > > > > > > 
> > > > > > > > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > > > > > > > I did this:
> > > > > > > > > > > > +static unsigned int num_io_request_queues;
> > > > > > > > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > > > The parameter is writable and can be changed and then new devices might be
> > > > > > > > > > > probed with new value.
> > > > > > > > > > > 
> > > > > > > > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > > > > > > > say that 0 says nr_cpus.
> > > > > > > > > > > 
> > > > > > > > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > > > > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).


^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-12  9:07                             ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-12  9:07 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: axboe, linux-block, kvm, israelr, virtualization, hch, nitzanc,
	Stefan Hajnoczi, oren

On Sat, Sep 11, 2021 at 03:56:45PM +0300, Max Gurtovoy wrote:
> 
> On 9/10/2021 1:57 AM, Michael S. Tsirkin wrote:
> > On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
> > > On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
> > > > On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
> > > > > On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> > > > > > On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> > > > > > > On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > > > > > > > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > > > > > > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > > > > > > > footprint of virtio-blk devices.
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > > > > > > > ---
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > changes from v1:
> > > > > > > > > > > > > >        - use param_set_uint_minmax (from Christoph)
> > > > > > > > > > > > > >        - added "Should > 0" to module description
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > > > > > > > ---
> > > > > > > > > > > > > >        drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > > > > > > > >        1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > > > > > > > >        /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > > > > > > > >        #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > > > > > > > +{
> > > > > > > > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > > > > > > > +}
> > > > > > > > > > Hmm which tree is this for?
> > > > > > > > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > > > > > > > you can apply it on linus/master as well.
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > > > > > > +
> > > > > > > > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > > > > > > > +	.get = param_get_uint,
> > > > > > > > > > > > > > +};
> > > > > > > > > > > > > > +
> > > > > > > > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > > > > > > > better:
> > > > > > > > > > 
> > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > You proposed it and I replied on it bellow.
> > > > > > > > Can't say I understand 100% what you are saying. Want to send
> > > > > > > > a description that does make sense to you but
> > > > > > > > also reflects reality? 0 is the default so
> > > > > > > > "should > 0" besides being ungrammatical does not seem t"
> > > > > > > > reflect what it does ...
> > > > > > > if you "modprobe virtio_blk" the previous behavior will happen.
> > > > > > > 
> > > > > > > You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> > > > > > > value is 1.
> > > > > > > 
> > > > > > > So your description is not reflecting the code.
> > > > > > > 
> > > > > > > We can do:
> > > > > > > 
> > > > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> > > > > > What's the default value? We should document that.
> > > > > default value for static global variables is 0.
> > > > > 
> > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
> > > > > use for blk device. Minimum value is 1 queue. Default and Maximum value is
> > > > > equal to the total number of CPUs");
> > > > So it says it's the # of cpus but yoiu inspect it with
> > > > sysfs and it's actually 0. Let's say that's confusing
> > > > at the least. why not just let users set it to 0
> > > > and document that?
> > > > 
> > > Setting it by the user to 0 makes no sense.
> > > 
> > > We can say "if not set, the value equals to the total number of CPUs".
> > the value is 0. it seems to mean "no limit". the actual # of queues is
> > then te smaller between # of cpus and # of hardware queues.
> > I see no reason not to allow user to set that especially if
> > it was originally the value then user changed it
> > and is trying to change it back.
> 
> I fine with that.
> 
> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. 0 value means no limitation");
> 

OK and the second distinction is that it's a limit on the
number, not the actual number. It's never more than what's provided
by the hypervisor.

> > 
> > > The actual value of the created queues can be seen in /sys/block/vda/mq/ as
> > > done today.
> > > > > > > > > > > > > > +
> > > > > > > > > > > > > >        static int major;
> > > > > > > > > > > > > >        static DEFINE_IDA(vd_index_ida);
> > > > > > > > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > > > > > > > >        	if (err)
> > > > > > > > > > > > > >        		num_vqs = 1;
> > > > > > > > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > > > > > > > +			num_vqs);
> > > > > > > > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > > > > > > > 
> > > > > > > > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > > > > > > > I did this:
> > > > > > > > > > > > +static unsigned int num_io_request_queues;
> > > > > > > > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > > > The parameter is writable and can be changed and then new devices might be
> > > > > > > > > > > probed with new value.
> > > > > > > > > > > 
> > > > > > > > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > > > > > > > say that 0 says nr_cpus.
> > > > > > > > > > > 
> > > > > > > > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > > > > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-12  9:07                             ` Michael S. Tsirkin
  (?)
@ 2021-09-12  9:37                             ` Max Gurtovoy
  2021-09-12  9:50                                 ` Michael S. Tsirkin
  -1 siblings, 1 reply; 32+ messages in thread
From: Max Gurtovoy @ 2021-09-12  9:37 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe


On 9/12/2021 12:07 PM, Michael S. Tsirkin wrote:
> On Sat, Sep 11, 2021 at 03:56:45PM +0300, Max Gurtovoy wrote:
>> On 9/10/2021 1:57 AM, Michael S. Tsirkin wrote:
>>> On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
>>>> On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
>>>>> On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
>>>>>> On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
>>>>>>> On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
>>>>>>>> On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
>>>>>>>>> On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
>>>>>>>>>> On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
>>>>>>>>>>> On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
>>>>>>>>>>>> On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
>>>>>>>>>>>>> On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
>>>>>>>>>>>>>> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
>>>>>>>>>>>>>>> Sometimes a user would like to control the amount of IO queues to be
>>>>>>>>>>>>>>> created for a block device. For example, for limiting the memory
>>>>>>>>>>>>>>> footprint of virtio-blk devices.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
>>>>>>>>>>>>>>> ---
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> changes from v1:
>>>>>>>>>>>>>>>         - use param_set_uint_minmax (from Christoph)
>>>>>>>>>>>>>>>         - added "Should > 0" to module description
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Note: This commit apply on top of Jens's branch for-5.15/drivers
>>>>>>>>>>>>>>> ---
>>>>>>>>>>>>>>>         drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>>>>>>>>>>>>>>>         1 file changed, 19 insertions(+), 1 deletion(-)
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
>>>>>>>>>>>>>>> index 4b49df2dfd23..9332fc4e9b31 100644
>>>>>>>>>>>>>>> --- a/drivers/block/virtio_blk.c
>>>>>>>>>>>>>>> +++ b/drivers/block/virtio_blk.c
>>>>>>>>>>>>>>> @@ -24,6 +24,22 @@
>>>>>>>>>>>>>>>         /* The maximum number of sg elements that fit into a virtqueue */
>>>>>>>>>>>>>>>         #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>>>>>>>>>>>>>>> +static int virtblk_queue_count_set(const char *val,
>>>>>>>>>>>>>>> +		const struct kernel_param *kp)
>>>>>>>>>>>>>>> +{
>>>>>>>>>>>>>>> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
>>>>>>>>>>>>>>> +}
>>>>>>>>>>> Hmm which tree is this for?
>>>>>>>>>> I've mentioned in the note that it apply on branch for-5.15/drivers. But now
>>>>>>>>>> you can apply it on linus/master as well.
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>>>>>> +
>>>>>>>>>>>>>>> +static const struct kernel_param_ops queue_count_ops = {
>>>>>>>>>>>>>>> +	.set = virtblk_queue_count_set,
>>>>>>>>>>>>>>> +	.get = param_get_uint,
>>>>>>>>>>>>>>> +};
>>>>>>>>>>>>>>> +
>>>>>>>>>>>>>>> +static unsigned int num_io_queues;
>>>>>>>>>>>>>>> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
>>>>>>>>>>>>>>> +MODULE_PARM_DESC(num_io_queues,
>>>>>>>>>>>>>>> +		 "Number of IO virt queues to use for blk device. Should > 0");
>>>>>>>>>>> better:
>>>>>>>>>>>
>>>>>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>>>>>> You proposed it and I replied on it bellow.
>>>>>>>>> Can't say I understand 100% what you are saying. Want to send
>>>>>>>>> a description that does make sense to you but
>>>>>>>>> also reflects reality? 0 is the default so
>>>>>>>>> "should > 0" besides being ungrammatical does not seem t"
>>>>>>>>> reflect what it does ...
>>>>>>>> if you "modprobe virtio_blk" the previous behavior will happen.
>>>>>>>>
>>>>>>>> You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
>>>>>>>> value is 1.
>>>>>>>>
>>>>>>>> So your description is not reflecting the code.
>>>>>>>>
>>>>>>>> We can do:
>>>>>>>>
>>>>>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
>>>>>>> What's the default value? We should document that.
>>>>>> default value for static global variables is 0.
>>>>>>
>>>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
>>>>>> use for blk device. Minimum value is 1 queue. Default and Maximum value is
>>>>>> equal to the total number of CPUs");
>>>>> So it says it's the # of cpus but yoiu inspect it with
>>>>> sysfs and it's actually 0. Let's say that's confusing
>>>>> at the least. why not just let users set it to 0
>>>>> and document that?
>>>>>
>>>> Setting it by the user to 0 makes no sense.
>>>>
>>>> We can say "if not set, the value equals to the total number of CPUs".
>>> the value is 0. it seems to mean "no limit". the actual # of queues is
>>> then te smaller between # of cpus and # of hardware queues.
>>> I see no reason not to allow user to set that especially if
>>> it was originally the value then user changed it
>>> and is trying to change it back.
>> I fine with that.
>>
>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. 0 value means no limitation");
>>
> OK and the second distinction is that it's a limit on the
> number, not the actual number. It's never more than what's provided
> by the hypervisor.

MODULE_PARM_DESC(num_io_request_queues, "Maximal number of request virt queues to use for blk device. 0 value means no limitation");

is that ok ?

>>>> The actual value of the created queues can be seen in /sys/block/vda/mq/ as
>>>> done today.
>>>>>>>>>>>>>>> +
>>>>>>>>>>>>>>>         static int major;
>>>>>>>>>>>>>>>         static DEFINE_IDA(vd_index_ida);
>>>>>>>>>>>>>>> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>>>>>>>>>>>>>>>         	if (err)
>>>>>>>>>>>>>>>         		num_vqs = 1;
>>>>>>>>>>>>>>> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
>>>>>>>>>>>>>>> +	num_vqs = min_t(unsigned int,
>>>>>>>>>>>>>>> +			min_not_zero(num_io_queues, nr_cpu_ids),
>>>>>>>>>>>>>>> +			num_vqs);
>>>>>>>>>>>>>> If you respin, please consider calling them request queues. That's the
>>>>>>>>>>>>>> terminology from the VIRTIO spec and it's nice to keep it consistent.
>>>>>>>>>>>>>> But the purpose of num_io_queues is clear, so:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
>>>>>>>>>>>>> I did this:
>>>>>>>>>>>>> +static unsigned int num_io_request_queues;
>>>>>>>>>>>>> +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
>>>>>>>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>>>>>>>> The parameter is writable and can be changed and then new devices might be
>>>>>>>>>>>> probed with new value.
>>>>>>>>>>>>
>>>>>>>>>>>> It can't be zero in the code. we can change param_set_uint_minmax args and
>>>>>>>>>>>> say that 0 says nr_cpus.
>>>>>>>>>>>>
>>>>>>>>>>>> I'm ok with the renaming but I prefer to stick to the description we gave in
>>>>>>>>>>>> V3 of this patch (and maybe enable value of 0 as mentioned above).

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-12  9:37                             ` Max Gurtovoy
@ 2021-09-12  9:50                                 ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-12  9:50 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe

On Sun, Sep 12, 2021 at 12:37:26PM +0300, Max Gurtovoy wrote:
> 
> On 9/12/2021 12:07 PM, Michael S. Tsirkin wrote:
> > On Sat, Sep 11, 2021 at 03:56:45PM +0300, Max Gurtovoy wrote:
> > > On 9/10/2021 1:57 AM, Michael S. Tsirkin wrote:
> > > > On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
> > > > > On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
> > > > > > On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
> > > > > > > On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> > > > > > > > On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> > > > > > > > > On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > > > > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > > > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > > > > > > > > > footprint of virtio-blk devices.
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > > > > > > > > > ---
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > changes from v1:
> > > > > > > > > > > > > > > >         - use param_set_uint_minmax (from Christoph)
> > > > > > > > > > > > > > > >         - added "Should > 0" to module description
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > > > > > > > > > ---
> > > > > > > > > > > > > > > >         drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > > > > > > > > > >         1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > > > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > > > > > > > > > >         /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > > > > > > > > > >         #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > > > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > > > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > > > > > > > > > +{
> > > > > > > > > > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > > > > > > > > > +}
> > > > > > > > > > > > Hmm which tree is this for?
> > > > > > > > > > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > > > > > > > > > you can apply it on linus/master as well.
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > > > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > > > > > > > > > +	.get = param_get_uint,
> > > > > > > > > > > > > > > > +};
> > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > > > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > > > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > > > > > > > > > better:
> > > > > > > > > > > > 
> > > > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > > > You proposed it and I replied on it bellow.
> > > > > > > > > > Can't say I understand 100% what you are saying. Want to send
> > > > > > > > > > a description that does make sense to you but
> > > > > > > > > > also reflects reality? 0 is the default so
> > > > > > > > > > "should > 0" besides being ungrammatical does not seem t"
> > > > > > > > > > reflect what it does ...
> > > > > > > > > if you "modprobe virtio_blk" the previous behavior will happen.
> > > > > > > > > 
> > > > > > > > > You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> > > > > > > > > value is 1.
> > > > > > > > > 
> > > > > > > > > So your description is not reflecting the code.
> > > > > > > > > 
> > > > > > > > > We can do:
> > > > > > > > > 
> > > > > > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> > > > > > > > What's the default value? We should document that.
> > > > > > > default value for static global variables is 0.
> > > > > > > 
> > > > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
> > > > > > > use for blk device. Minimum value is 1 queue. Default and Maximum value is
> > > > > > > equal to the total number of CPUs");
> > > > > > So it says it's the # of cpus but yoiu inspect it with
> > > > > > sysfs and it's actually 0. Let's say that's confusing
> > > > > > at the least. why not just let users set it to 0
> > > > > > and document that?
> > > > > > 
> > > > > Setting it by the user to 0 makes no sense.
> > > > > 
> > > > > We can say "if not set, the value equals to the total number of CPUs".
> > > > the value is 0. it seems to mean "no limit". the actual # of queues is
> > > > then te smaller between # of cpus and # of hardware queues.
> > > > I see no reason not to allow user to set that especially if
> > > > it was originally the value then user changed it
> > > > and is trying to change it back.
> > > I fine with that.
> > > 
> > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. 0 value means no limitation");
> > > 
> > OK and the second distinction is that it's a limit on the
> > number, not the actual number. It's never more than what's provided
> > by the hypervisor.
> 
> MODULE_PARM_DESC(num_io_request_queues, "Maximal number of request virt queues to use for blk device. 0 value means no limitation");
> 
> is that ok ?


Looks ok. And then do we need to limit this to nr_cpu_ids?
Setting a value that's too high seems harmless ...

> > > > > The actual value of the created queues can be seen in /sys/block/vda/mq/ as
> > > > > done today.
> > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > >         static int major;
> > > > > > > > > > > > > > > >         static DEFINE_IDA(vd_index_ida);
> > > > > > > > > > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > > > > > > > > > >         	if (err)
> > > > > > > > > > > > > > > >         		num_vqs = 1;
> > > > > > > > > > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > > > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > > > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > > > > > > > > > +			num_vqs);
> > > > > > > > > > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > > > > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > > > > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > > > > > > > > > I did this:
> > > > > > > > > > > > > > +static unsigned int num_io_request_queues;
> > > > > > > > > > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > > > > > The parameter is writable and can be changed and then new devices might be
> > > > > > > > > > > > > probed with new value.
> > > > > > > > > > > > > 
> > > > > > > > > > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > > > > > > > > > say that 0 says nr_cpus.
> > > > > > > > > > > > > 
> > > > > > > > > > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > > > > > > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).


^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-12  9:50                                 ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-12  9:50 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: axboe, linux-block, kvm, israelr, virtualization, hch, nitzanc,
	Stefan Hajnoczi, oren

On Sun, Sep 12, 2021 at 12:37:26PM +0300, Max Gurtovoy wrote:
> 
> On 9/12/2021 12:07 PM, Michael S. Tsirkin wrote:
> > On Sat, Sep 11, 2021 at 03:56:45PM +0300, Max Gurtovoy wrote:
> > > On 9/10/2021 1:57 AM, Michael S. Tsirkin wrote:
> > > > On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
> > > > > On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
> > > > > > On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
> > > > > > > On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> > > > > > > > On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> > > > > > > > > On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > > > > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > > > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > > > > > > > > > footprint of virtio-blk devices.
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > > > > > > > > > ---
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > changes from v1:
> > > > > > > > > > > > > > > >         - use param_set_uint_minmax (from Christoph)
> > > > > > > > > > > > > > > >         - added "Should > 0" to module description
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > > > > > > > > > ---
> > > > > > > > > > > > > > > >         drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > > > > > > > > > >         1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > > > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > > > > > > > > > >         /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > > > > > > > > > >         #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > > > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > > > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > > > > > > > > > +{
> > > > > > > > > > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > > > > > > > > > +}
> > > > > > > > > > > > Hmm which tree is this for?
> > > > > > > > > > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > > > > > > > > > you can apply it on linus/master as well.
> > > > > > > > > > > 
> > > > > > > > > > > 
> > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > > > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > > > > > > > > > +	.get = param_get_uint,
> > > > > > > > > > > > > > > > +};
> > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > > > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > > > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > > > > > > > > > better:
> > > > > > > > > > > > 
> > > > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > > > You proposed it and I replied on it bellow.
> > > > > > > > > > Can't say I understand 100% what you are saying. Want to send
> > > > > > > > > > a description that does make sense to you but
> > > > > > > > > > also reflects reality? 0 is the default so
> > > > > > > > > > "should > 0" besides being ungrammatical does not seem t"
> > > > > > > > > > reflect what it does ...
> > > > > > > > > if you "modprobe virtio_blk" the previous behavior will happen.
> > > > > > > > > 
> > > > > > > > > You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> > > > > > > > > value is 1.
> > > > > > > > > 
> > > > > > > > > So your description is not reflecting the code.
> > > > > > > > > 
> > > > > > > > > We can do:
> > > > > > > > > 
> > > > > > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> > > > > > > > What's the default value? We should document that.
> > > > > > > default value for static global variables is 0.
> > > > > > > 
> > > > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
> > > > > > > use for blk device. Minimum value is 1 queue. Default and Maximum value is
> > > > > > > equal to the total number of CPUs");
> > > > > > So it says it's the # of cpus but yoiu inspect it with
> > > > > > sysfs and it's actually 0. Let's say that's confusing
> > > > > > at the least. why not just let users set it to 0
> > > > > > and document that?
> > > > > > 
> > > > > Setting it by the user to 0 makes no sense.
> > > > > 
> > > > > We can say "if not set, the value equals to the total number of CPUs".
> > > > the value is 0. it seems to mean "no limit". the actual # of queues is
> > > > then te smaller between # of cpus and # of hardware queues.
> > > > I see no reason not to allow user to set that especially if
> > > > it was originally the value then user changed it
> > > > and is trying to change it back.
> > > I fine with that.
> > > 
> > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. 0 value means no limitation");
> > > 
> > OK and the second distinction is that it's a limit on the
> > number, not the actual number. It's never more than what's provided
> > by the hypervisor.
> 
> MODULE_PARM_DESC(num_io_request_queues, "Maximal number of request virt queues to use for blk device. 0 value means no limitation");
> 
> is that ok ?


Looks ok. And then do we need to limit this to nr_cpu_ids?
Setting a value that's too high seems harmless ...

> > > > > The actual value of the created queues can be seen in /sys/block/vda/mq/ as
> > > > > done today.
> > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > >         static int major;
> > > > > > > > > > > > > > > >         static DEFINE_IDA(vd_index_ida);
> > > > > > > > > > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > > > > > > > > > >         	if (err)
> > > > > > > > > > > > > > > >         		num_vqs = 1;
> > > > > > > > > > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > > > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > > > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > > > > > > > > > +			num_vqs);
> > > > > > > > > > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > > > > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > > > > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > > > > > > > > > I did this:
> > > > > > > > > > > > > > +static unsigned int num_io_request_queues;
> > > > > > > > > > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > > > > > The parameter is writable and can be changed and then new devices might be
> > > > > > > > > > > > > probed with new value.
> > > > > > > > > > > > > 
> > > > > > > > > > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > > > > > > > > > say that 0 says nr_cpus.
> > > > > > > > > > > > > 
> > > > > > > > > > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > > > > > > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-12  9:50                                 ` Michael S. Tsirkin
  (?)
@ 2021-09-12 10:33                                 ` Max Gurtovoy
  2021-09-12 11:45                                     ` Michael S. Tsirkin
  -1 siblings, 1 reply; 32+ messages in thread
From: Max Gurtovoy @ 2021-09-12 10:33 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe


On 9/12/2021 12:50 PM, Michael S. Tsirkin wrote:
> On Sun, Sep 12, 2021 at 12:37:26PM +0300, Max Gurtovoy wrote:
>> On 9/12/2021 12:07 PM, Michael S. Tsirkin wrote:
>>> On Sat, Sep 11, 2021 at 03:56:45PM +0300, Max Gurtovoy wrote:
>>>> On 9/10/2021 1:57 AM, Michael S. Tsirkin wrote:
>>>>> On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
>>>>>> On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
>>>>>>> On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
>>>>>>>> On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
>>>>>>>>> On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
>>>>>>>>>> On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
>>>>>>>>>>> On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
>>>>>>>>>>>> On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
>>>>>>>>>>>>> On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
>>>>>>>>>>>>>> On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
>>>>>>>>>>>>>>> On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
>>>>>>>>>>>>>>>> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
>>>>>>>>>>>>>>>>> Sometimes a user would like to control the amount of IO queues to be
>>>>>>>>>>>>>>>>> created for a block device. For example, for limiting the memory
>>>>>>>>>>>>>>>>> footprint of virtio-blk devices.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
>>>>>>>>>>>>>>>>> ---
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> changes from v1:
>>>>>>>>>>>>>>>>>          - use param_set_uint_minmax (from Christoph)
>>>>>>>>>>>>>>>>>          - added "Should > 0" to module description
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Note: This commit apply on top of Jens's branch for-5.15/drivers
>>>>>>>>>>>>>>>>> ---
>>>>>>>>>>>>>>>>>          drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>>>>>>>>>>>>>>>>>          1 file changed, 19 insertions(+), 1 deletion(-)
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
>>>>>>>>>>>>>>>>> index 4b49df2dfd23..9332fc4e9b31 100644
>>>>>>>>>>>>>>>>> --- a/drivers/block/virtio_blk.c
>>>>>>>>>>>>>>>>> +++ b/drivers/block/virtio_blk.c
>>>>>>>>>>>>>>>>> @@ -24,6 +24,22 @@
>>>>>>>>>>>>>>>>>          /* The maximum number of sg elements that fit into a virtqueue */
>>>>>>>>>>>>>>>>>          #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>>>>>>>>>>>>>>>>> +static int virtblk_queue_count_set(const char *val,
>>>>>>>>>>>>>>>>> +		const struct kernel_param *kp)
>>>>>>>>>>>>>>>>> +{
>>>>>>>>>>>>>>>>> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
>>>>>>>>>>>>>>>>> +}
>>>>>>>>>>>>> Hmm which tree is this for?
>>>>>>>>>>>> I've mentioned in the note that it apply on branch for-5.15/drivers. But now
>>>>>>>>>>>> you can apply it on linus/master as well.
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> +
>>>>>>>>>>>>>>>>> +static const struct kernel_param_ops queue_count_ops = {
>>>>>>>>>>>>>>>>> +	.set = virtblk_queue_count_set,
>>>>>>>>>>>>>>>>> +	.get = param_get_uint,
>>>>>>>>>>>>>>>>> +};
>>>>>>>>>>>>>>>>> +
>>>>>>>>>>>>>>>>> +static unsigned int num_io_queues;
>>>>>>>>>>>>>>>>> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
>>>>>>>>>>>>>>>>> +MODULE_PARM_DESC(num_io_queues,
>>>>>>>>>>>>>>>>> +		 "Number of IO virt queues to use for blk device. Should > 0");
>>>>>>>>>>>>> better:
>>>>>>>>>>>>>
>>>>>>>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>>>>>>>> You proposed it and I replied on it bellow.
>>>>>>>>>>> Can't say I understand 100% what you are saying. Want to send
>>>>>>>>>>> a description that does make sense to you but
>>>>>>>>>>> also reflects reality? 0 is the default so
>>>>>>>>>>> "should > 0" besides being ungrammatical does not seem t"
>>>>>>>>>>> reflect what it does ...
>>>>>>>>>> if you "modprobe virtio_blk" the previous behavior will happen.
>>>>>>>>>>
>>>>>>>>>> You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
>>>>>>>>>> value is 1.
>>>>>>>>>>
>>>>>>>>>> So your description is not reflecting the code.
>>>>>>>>>>
>>>>>>>>>> We can do:
>>>>>>>>>>
>>>>>>>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
>>>>>>>>> What's the default value? We should document that.
>>>>>>>> default value for static global variables is 0.
>>>>>>>>
>>>>>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
>>>>>>>> use for blk device. Minimum value is 1 queue. Default and Maximum value is
>>>>>>>> equal to the total number of CPUs");
>>>>>>> So it says it's the # of cpus but yoiu inspect it with
>>>>>>> sysfs and it's actually 0. Let's say that's confusing
>>>>>>> at the least. why not just let users set it to 0
>>>>>>> and document that?
>>>>>>>
>>>>>> Setting it by the user to 0 makes no sense.
>>>>>>
>>>>>> We can say "if not set, the value equals to the total number of CPUs".
>>>>> the value is 0. it seems to mean "no limit". the actual # of queues is
>>>>> then te smaller between # of cpus and # of hardware queues.
>>>>> I see no reason not to allow user to set that especially if
>>>>> it was originally the value then user changed it
>>>>> and is trying to change it back.
>>>> I fine with that.
>>>>
>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. 0 value means no limitation");
>>>>
>>> OK and the second distinction is that it's a limit on the
>>> number, not the actual number. It's never more than what's provided
>>> by the hypervisor.
>> MODULE_PARM_DESC(num_io_request_queues, "Maximal number of request virt queues to use for blk device. 0 value means no limitation");
>>
>> is that ok ?
>
> Looks ok. And then do we need to limit this to nr_cpu_ids?
> Setting a value that's too high seems harmless ...

why would you want that ?


>
>>>>>> The actual value of the created queues can be seen in /sys/block/vda/mq/ as
>>>>>> done today.
>>>>>>>>>>>>>>>>> +
>>>>>>>>>>>>>>>>>          static int major;
>>>>>>>>>>>>>>>>>          static DEFINE_IDA(vd_index_ida);
>>>>>>>>>>>>>>>>> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>>>>>>>>>>>>>>>>>          	if (err)
>>>>>>>>>>>>>>>>>          		num_vqs = 1;
>>>>>>>>>>>>>>>>> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
>>>>>>>>>>>>>>>>> +	num_vqs = min_t(unsigned int,
>>>>>>>>>>>>>>>>> +			min_not_zero(num_io_queues, nr_cpu_ids),
>>>>>>>>>>>>>>>>> +			num_vqs);
>>>>>>>>>>>>>>>> If you respin, please consider calling them request queues. That's the
>>>>>>>>>>>>>>>> terminology from the VIRTIO spec and it's nice to keep it consistent.
>>>>>>>>>>>>>>>> But the purpose of num_io_queues is clear, so:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
>>>>>>>>>>>>>>> I did this:
>>>>>>>>>>>>>>> +static unsigned int num_io_request_queues;
>>>>>>>>>>>>>>> +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
>>>>>>>>>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>>>>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>>>>>>>>>> The parameter is writable and can be changed and then new devices might be
>>>>>>>>>>>>>> probed with new value.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> It can't be zero in the code. we can change param_set_uint_minmax args and
>>>>>>>>>>>>>> say that 0 says nr_cpus.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> I'm ok with the renaming but I prefer to stick to the description we gave in
>>>>>>>>>>>>>> V3 of this patch (and maybe enable value of 0 as mentioned above).

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-12 10:33                                 ` Max Gurtovoy
@ 2021-09-12 11:45                                     ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-12 11:45 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: axboe, linux-block, kvm, israelr, virtualization, hch, nitzanc,
	Stefan Hajnoczi, oren

On Sun, Sep 12, 2021 at 01:33:13PM +0300, Max Gurtovoy wrote:
> 
> On 9/12/2021 12:50 PM, Michael S. Tsirkin wrote:
> > On Sun, Sep 12, 2021 at 12:37:26PM +0300, Max Gurtovoy wrote:
> > > On 9/12/2021 12:07 PM, Michael S. Tsirkin wrote:
> > > > On Sat, Sep 11, 2021 at 03:56:45PM +0300, Max Gurtovoy wrote:
> > > > > On 9/10/2021 1:57 AM, Michael S. Tsirkin wrote:
> > > > > > On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
> > > > > > > On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
> > > > > > > > On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
> > > > > > > > > On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > > > > > > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > > > > > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > > > > > > > > > > > footprint of virtio-blk devices.
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > > > > > > > > > > > ---
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > changes from v1:
> > > > > > > > > > > > > > > > > >          - use param_set_uint_minmax (from Christoph)
> > > > > > > > > > > > > > > > > >          - added "Should > 0" to module description
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > > > > > > > > > > > ---
> > > > > > > > > > > > > > > > > >          drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > > > > > > > > > > > >          1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > > > > > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > > > > > > > > > > > >          /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > > > > > > > > > > > >          #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > > > > > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > > > > > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > > > > > > > > > > > +{
> > > > > > > > > > > > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > > > > > > > > > > > +}
> > > > > > > > > > > > > > Hmm which tree is this for?
> > > > > > > > > > > > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > > > > > > > > > > > you can apply it on linus/master as well.
> > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > > > > > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > > > > > > > > > > > +	.get = param_get_uint,
> > > > > > > > > > > > > > > > > > +};
> > > > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > > > > > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > > > > > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > > > > > > > > > > > better:
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > > > > > You proposed it and I replied on it bellow.
> > > > > > > > > > > > Can't say I understand 100% what you are saying. Want to send
> > > > > > > > > > > > a description that does make sense to you but
> > > > > > > > > > > > also reflects reality? 0 is the default so
> > > > > > > > > > > > "should > 0" besides being ungrammatical does not seem t"
> > > > > > > > > > > > reflect what it does ...
> > > > > > > > > > > if you "modprobe virtio_blk" the previous behavior will happen.
> > > > > > > > > > > 
> > > > > > > > > > > You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> > > > > > > > > > > value is 1.
> > > > > > > > > > > 
> > > > > > > > > > > So your description is not reflecting the code.
> > > > > > > > > > > 
> > > > > > > > > > > We can do:
> > > > > > > > > > > 
> > > > > > > > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> > > > > > > > > > What's the default value? We should document that.
> > > > > > > > > default value for static global variables is 0.
> > > > > > > > > 
> > > > > > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
> > > > > > > > > use for blk device. Minimum value is 1 queue. Default and Maximum value is
> > > > > > > > > equal to the total number of CPUs");
> > > > > > > > So it says it's the # of cpus but yoiu inspect it with
> > > > > > > > sysfs and it's actually 0. Let's say that's confusing
> > > > > > > > at the least. why not just let users set it to 0
> > > > > > > > and document that?
> > > > > > > > 
> > > > > > > Setting it by the user to 0 makes no sense.
> > > > > > > 
> > > > > > > We can say "if not set, the value equals to the total number of CPUs".
> > > > > > the value is 0. it seems to mean "no limit". the actual # of queues is
> > > > > > then te smaller between # of cpus and # of hardware queues.
> > > > > > I see no reason not to allow user to set that especially if
> > > > > > it was originally the value then user changed it
> > > > > > and is trying to change it back.
> > > > > I fine with that.
> > > > > 
> > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. 0 value means no limitation");
> > > > > 
> > > > OK and the second distinction is that it's a limit on the
> > > > number, not the actual number. It's never more than what's provided
> > > > by the hypervisor.
> > > MODULE_PARM_DESC(num_io_request_queues, "Maximal number of request virt queues to use for blk device. 0 value means no limitation");
> > > 
> > > is that ok ?
> > 
> > Looks ok. And then do we need to limit this to nr_cpu_ids?
> > Setting a value that's too high seems harmless ...
> 
> why would you want that ?

So one can write a script that keeps working even when hypervisor
changes the # of CPU IDs.

It's also consistent with other parameters, e.g.:

        clocksource.verify_n_cpus= [KNL]
                        Limit the number of CPUs checked for clocksources
                        marked with CLOCK_SOURCE_VERIFY_PERCPU that
                        are marked unstable due to excessive skew.
                        A negative value says to check all CPUs, while
                        zero says not to check any.  Values larger than
                        nr_cpu_ids are silently truncated to nr_cpu_ids.

			^^^^^^^^^^^^

                        The actual CPUs are chosen randomly, with
                        no replacement if the same CPU is chosen twice.


> 
> > 
> > > > > > > The actual value of the created queues can be seen in /sys/block/vda/mq/ as
> > > > > > > done today.
> > > > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > > > >          static int major;
> > > > > > > > > > > > > > > > > >          static DEFINE_IDA(vd_index_ida);
> > > > > > > > > > > > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > > > > > > > > > > > >          	if (err)
> > > > > > > > > > > > > > > > > >          		num_vqs = 1;
> > > > > > > > > > > > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > > > > > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > > > > > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > > > > > > > > > > > +			num_vqs);
> > > > > > > > > > > > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > > > > > > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > > > > > > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > > > > > > > > > > > I did this:
> > > > > > > > > > > > > > > > +static unsigned int num_io_request_queues;
> > > > > > > > > > > > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > > > > > > > The parameter is writable and can be changed and then new devices might be
> > > > > > > > > > > > > > > probed with new value.
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > > > > > > > > > > > say that 0 says nr_cpus.
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > > > > > > > > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
@ 2021-09-12 11:45                                     ` Michael S. Tsirkin
  0 siblings, 0 replies; 32+ messages in thread
From: Michael S. Tsirkin @ 2021-09-12 11:45 UTC (permalink / raw)
  To: Max Gurtovoy
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe

On Sun, Sep 12, 2021 at 01:33:13PM +0300, Max Gurtovoy wrote:
> 
> On 9/12/2021 12:50 PM, Michael S. Tsirkin wrote:
> > On Sun, Sep 12, 2021 at 12:37:26PM +0300, Max Gurtovoy wrote:
> > > On 9/12/2021 12:07 PM, Michael S. Tsirkin wrote:
> > > > On Sat, Sep 11, 2021 at 03:56:45PM +0300, Max Gurtovoy wrote:
> > > > > On 9/10/2021 1:57 AM, Michael S. Tsirkin wrote:
> > > > > > On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
> > > > > > > On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
> > > > > > > > On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
> > > > > > > > > On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > > > On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > > > On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
> > > > > > > > > > > > > > > > On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
> > > > > > > > > > > > > > > > > On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
> > > > > > > > > > > > > > > > > > Sometimes a user would like to control the amount of IO queues to be
> > > > > > > > > > > > > > > > > > created for a block device. For example, for limiting the memory
> > > > > > > > > > > > > > > > > > footprint of virtio-blk devices.
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
> > > > > > > > > > > > > > > > > > ---
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > changes from v1:
> > > > > > > > > > > > > > > > > >          - use param_set_uint_minmax (from Christoph)
> > > > > > > > > > > > > > > > > >          - added "Should > 0" to module description
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > Note: This commit apply on top of Jens's branch for-5.15/drivers
> > > > > > > > > > > > > > > > > > ---
> > > > > > > > > > > > > > > > > >          drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
> > > > > > > > > > > > > > > > > >          1 file changed, 19 insertions(+), 1 deletion(-)
> > > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > > > index 4b49df2dfd23..9332fc4e9b31 100644
> > > > > > > > > > > > > > > > > > --- a/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > > > +++ b/drivers/block/virtio_blk.c
> > > > > > > > > > > > > > > > > > @@ -24,6 +24,22 @@
> > > > > > > > > > > > > > > > > >          /* The maximum number of sg elements that fit into a virtqueue */
> > > > > > > > > > > > > > > > > >          #define VIRTIO_BLK_MAX_SG_ELEMS 32768
> > > > > > > > > > > > > > > > > > +static int virtblk_queue_count_set(const char *val,
> > > > > > > > > > > > > > > > > > +		const struct kernel_param *kp)
> > > > > > > > > > > > > > > > > > +{
> > > > > > > > > > > > > > > > > > +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
> > > > > > > > > > > > > > > > > > +}
> > > > > > > > > > > > > > Hmm which tree is this for?
> > > > > > > > > > > > > I've mentioned in the note that it apply on branch for-5.15/drivers. But now
> > > > > > > > > > > > > you can apply it on linus/master as well.
> > > > > > > > > > > > > 
> > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > > > > +static const struct kernel_param_ops queue_count_ops = {
> > > > > > > > > > > > > > > > > > +	.set = virtblk_queue_count_set,
> > > > > > > > > > > > > > > > > > +	.get = param_get_uint,
> > > > > > > > > > > > > > > > > > +};
> > > > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > > > > +static unsigned int num_io_queues;
> > > > > > > > > > > > > > > > > > +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
> > > > > > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_queues,
> > > > > > > > > > > > > > > > > > +		 "Number of IO virt queues to use for blk device. Should > 0");
> > > > > > > > > > > > > > better:
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > > > > > You proposed it and I replied on it bellow.
> > > > > > > > > > > > Can't say I understand 100% what you are saying. Want to send
> > > > > > > > > > > > a description that does make sense to you but
> > > > > > > > > > > > also reflects reality? 0 is the default so
> > > > > > > > > > > > "should > 0" besides being ungrammatical does not seem t"
> > > > > > > > > > > > reflect what it does ...
> > > > > > > > > > > if you "modprobe virtio_blk" the previous behavior will happen.
> > > > > > > > > > > 
> > > > > > > > > > > You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
> > > > > > > > > > > value is 1.
> > > > > > > > > > > 
> > > > > > > > > > > So your description is not reflecting the code.
> > > > > > > > > > > 
> > > > > > > > > > > We can do:
> > > > > > > > > > > 
> > > > > > > > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
> > > > > > > > > > What's the default value? We should document that.
> > > > > > > > > default value for static global variables is 0.
> > > > > > > > > 
> > > > > > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
> > > > > > > > > use for blk device. Minimum value is 1 queue. Default and Maximum value is
> > > > > > > > > equal to the total number of CPUs");
> > > > > > > > So it says it's the # of cpus but yoiu inspect it with
> > > > > > > > sysfs and it's actually 0. Let's say that's confusing
> > > > > > > > at the least. why not just let users set it to 0
> > > > > > > > and document that?
> > > > > > > > 
> > > > > > > Setting it by the user to 0 makes no sense.
> > > > > > > 
> > > > > > > We can say "if not set, the value equals to the total number of CPUs".
> > > > > > the value is 0. it seems to mean "no limit". the actual # of queues is
> > > > > > then te smaller between # of cpus and # of hardware queues.
> > > > > > I see no reason not to allow user to set that especially if
> > > > > > it was originally the value then user changed it
> > > > > > and is trying to change it back.
> > > > > I fine with that.
> > > > > 
> > > > > MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. 0 value means no limitation");
> > > > > 
> > > > OK and the second distinction is that it's a limit on the
> > > > number, not the actual number. It's never more than what's provided
> > > > by the hypervisor.
> > > MODULE_PARM_DESC(num_io_request_queues, "Maximal number of request virt queues to use for blk device. 0 value means no limitation");
> > > 
> > > is that ok ?
> > 
> > Looks ok. And then do we need to limit this to nr_cpu_ids?
> > Setting a value that's too high seems harmless ...
> 
> why would you want that ?

So one can write a script that keeps working even when hypervisor
changes the # of CPU IDs.

It's also consistent with other parameters, e.g.:

        clocksource.verify_n_cpus= [KNL]
                        Limit the number of CPUs checked for clocksources
                        marked with CLOCK_SOURCE_VERIFY_PERCPU that
                        are marked unstable due to excessive skew.
                        A negative value says to check all CPUs, while
                        zero says not to check any.  Values larger than
                        nr_cpu_ids are silently truncated to nr_cpu_ids.

			^^^^^^^^^^^^

                        The actual CPUs are chosen randomly, with
                        no replacement if the same CPU is chosen twice.


> 
> > 
> > > > > > > The actual value of the created queues can be seen in /sys/block/vda/mq/ as
> > > > > > > done today.
> > > > > > > > > > > > > > > > > > +
> > > > > > > > > > > > > > > > > >          static int major;
> > > > > > > > > > > > > > > > > >          static DEFINE_IDA(vd_index_ida);
> > > > > > > > > > > > > > > > > > @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
> > > > > > > > > > > > > > > > > >          	if (err)
> > > > > > > > > > > > > > > > > >          		num_vqs = 1;
> > > > > > > > > > > > > > > > > > -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
> > > > > > > > > > > > > > > > > > +	num_vqs = min_t(unsigned int,
> > > > > > > > > > > > > > > > > > +			min_not_zero(num_io_queues, nr_cpu_ids),
> > > > > > > > > > > > > > > > > > +			num_vqs);
> > > > > > > > > > > > > > > > > If you respin, please consider calling them request queues. That's the
> > > > > > > > > > > > > > > > > terminology from the VIRTIO spec and it's nice to keep it consistent.
> > > > > > > > > > > > > > > > > But the purpose of num_io_queues is clear, so:
> > > > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > > > > > > > > > > > > > I did this:
> > > > > > > > > > > > > > > > +static unsigned int num_io_request_queues;
> > > > > > > > > > > > > > > > +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
> > > > > > > > > > > > > > > > +MODULE_PARM_DESC(num_io_request_queues,
> > > > > > > > > > > > > > > > +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
> > > > > > > > > > > > > > > The parameter is writable and can be changed and then new devices might be
> > > > > > > > > > > > > > > probed with new value.
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > It can't be zero in the code. we can change param_set_uint_minmax args and
> > > > > > > > > > > > > > > say that 0 says nr_cpus.
> > > > > > > > > > > > > > > 
> > > > > > > > > > > > > > > I'm ok with the renaming but I prefer to stick to the description we gave in
> > > > > > > > > > > > > > > V3 of this patch (and maybe enable value of 0 as mentioned above).


^ permalink raw reply	[flat|nested] 32+ messages in thread

* Re: [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter
  2021-09-12 11:45                                     ` Michael S. Tsirkin
  (?)
@ 2021-09-13 14:23                                     ` Max Gurtovoy
  -1 siblings, 0 replies; 32+ messages in thread
From: Max Gurtovoy @ 2021-09-13 14:23 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Stefan Hajnoczi, hch, virtualization, kvm, israelr, nitzanc,
	oren, linux-block, axboe


On 9/12/2021 2:45 PM, Michael S. Tsirkin wrote:
> On Sun, Sep 12, 2021 at 01:33:13PM +0300, Max Gurtovoy wrote:
>> On 9/12/2021 12:50 PM, Michael S. Tsirkin wrote:
>>> On Sun, Sep 12, 2021 at 12:37:26PM +0300, Max Gurtovoy wrote:
>>>> On 9/12/2021 12:07 PM, Michael S. Tsirkin wrote:
>>>>> On Sat, Sep 11, 2021 at 03:56:45PM +0300, Max Gurtovoy wrote:
>>>>>> On 9/10/2021 1:57 AM, Michael S. Tsirkin wrote:
>>>>>>> On Thu, Sep 09, 2021 at 07:45:42PM +0300, Max Gurtovoy wrote:
>>>>>>>> On 9/9/2021 7:31 PM, Michael S. Tsirkin wrote:
>>>>>>>>> On Thu, Sep 09, 2021 at 06:51:56PM +0300, Max Gurtovoy wrote:
>>>>>>>>>> On 9/9/2021 6:40 PM, Michael S. Tsirkin wrote:
>>>>>>>>>>> On Thu, Sep 09, 2021 at 06:37:37PM +0300, Max Gurtovoy wrote:
>>>>>>>>>>>> On 9/9/2021 4:42 PM, Michael S. Tsirkin wrote:
>>>>>>>>>>>>> On Mon, Sep 06, 2021 at 02:59:40PM +0300, Max Gurtovoy wrote:
>>>>>>>>>>>>>> On 9/6/2021 2:20 PM, Michael S. Tsirkin wrote:
>>>>>>>>>>>>>>> On Mon, Sep 06, 2021 at 01:31:32AM +0300, Max Gurtovoy wrote:
>>>>>>>>>>>>>>>> On 9/5/2021 7:02 PM, Michael S. Tsirkin wrote:
>>>>>>>>>>>>>>>>> On Thu, Sep 02, 2021 at 02:45:52PM +0100, Stefan Hajnoczi wrote:
>>>>>>>>>>>>>>>>>> On Tue, Aug 31, 2021 at 04:50:35PM +0300, Max Gurtovoy wrote:
>>>>>>>>>>>>>>>>>>> Sometimes a user would like to control the amount of IO queues to be
>>>>>>>>>>>>>>>>>>> created for a block device. For example, for limiting the memory
>>>>>>>>>>>>>>>>>>> footprint of virtio-blk devices.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
>>>>>>>>>>>>>>>>>>> ---
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> changes from v1:
>>>>>>>>>>>>>>>>>>>           - use param_set_uint_minmax (from Christoph)
>>>>>>>>>>>>>>>>>>>           - added "Should > 0" to module description
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Note: This commit apply on top of Jens's branch for-5.15/drivers
>>>>>>>>>>>>>>>>>>> ---
>>>>>>>>>>>>>>>>>>>           drivers/block/virtio_blk.c | 20 +++++++++++++++++++-
>>>>>>>>>>>>>>>>>>>           1 file changed, 19 insertions(+), 1 deletion(-)
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
>>>>>>>>>>>>>>>>>>> index 4b49df2dfd23..9332fc4e9b31 100644
>>>>>>>>>>>>>>>>>>> --- a/drivers/block/virtio_blk.c
>>>>>>>>>>>>>>>>>>> +++ b/drivers/block/virtio_blk.c
>>>>>>>>>>>>>>>>>>> @@ -24,6 +24,22 @@
>>>>>>>>>>>>>>>>>>>           /* The maximum number of sg elements that fit into a virtqueue */
>>>>>>>>>>>>>>>>>>>           #define VIRTIO_BLK_MAX_SG_ELEMS 32768
>>>>>>>>>>>>>>>>>>> +static int virtblk_queue_count_set(const char *val,
>>>>>>>>>>>>>>>>>>> +		const struct kernel_param *kp)
>>>>>>>>>>>>>>>>>>> +{
>>>>>>>>>>>>>>>>>>> +	return param_set_uint_minmax(val, kp, 1, nr_cpu_ids);
>>>>>>>>>>>>>>>>>>> +}
>>>>>>>>>>>>>>> Hmm which tree is this for?
>>>>>>>>>>>>>> I've mentioned in the note that it apply on branch for-5.15/drivers. But now
>>>>>>>>>>>>>> you can apply it on linus/master as well.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> +
>>>>>>>>>>>>>>>>>>> +static const struct kernel_param_ops queue_count_ops = {
>>>>>>>>>>>>>>>>>>> +	.set = virtblk_queue_count_set,
>>>>>>>>>>>>>>>>>>> +	.get = param_get_uint,
>>>>>>>>>>>>>>>>>>> +};
>>>>>>>>>>>>>>>>>>> +
>>>>>>>>>>>>>>>>>>> +static unsigned int num_io_queues;
>>>>>>>>>>>>>>>>>>> +module_param_cb(num_io_queues, &queue_count_ops, &num_io_queues, 0644);
>>>>>>>>>>>>>>>>>>> +MODULE_PARM_DESC(num_io_queues,
>>>>>>>>>>>>>>>>>>> +		 "Number of IO virt queues to use for blk device. Should > 0");
>>>>>>>>>>>>>>> better:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>>>>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>>>>>>>>>> You proposed it and I replied on it bellow.
>>>>>>>>>>>>> Can't say I understand 100% what you are saying. Want to send
>>>>>>>>>>>>> a description that does make sense to you but
>>>>>>>>>>>>> also reflects reality? 0 is the default so
>>>>>>>>>>>>> "should > 0" besides being ungrammatical does not seem t"
>>>>>>>>>>>>> reflect what it does ...
>>>>>>>>>>>> if you "modprobe virtio_blk" the previous behavior will happen.
>>>>>>>>>>>>
>>>>>>>>>>>> You can't "modprobe virtio_blk num_io_request_queues=0" since the minimal
>>>>>>>>>>>> value is 1.
>>>>>>>>>>>>
>>>>>>>>>>>> So your description is not reflecting the code.
>>>>>>>>>>>>
>>>>>>>>>>>> We can do:
>>>>>>>>>>>>
>>>>>>>>>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. Minimum value is 1 queue");
>>>>>>>>>>> What's the default value? We should document that.
>>>>>>>>>> default value for static global variables is 0.
>>>>>>>>>>
>>>>>>>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to
>>>>>>>>>> use for blk device. Minimum value is 1 queue. Default and Maximum value is
>>>>>>>>>> equal to the total number of CPUs");
>>>>>>>>> So it says it's the # of cpus but yoiu inspect it with
>>>>>>>>> sysfs and it's actually 0. Let's say that's confusing
>>>>>>>>> at the least. why not just let users set it to 0
>>>>>>>>> and document that?
>>>>>>>>>
>>>>>>>> Setting it by the user to 0 makes no sense.
>>>>>>>>
>>>>>>>> We can say "if not set, the value equals to the total number of CPUs".
>>>>>>> the value is 0. it seems to mean "no limit". the actual # of queues is
>>>>>>> then te smaller between # of cpus and # of hardware queues.
>>>>>>> I see no reason not to allow user to set that especially if
>>>>>>> it was originally the value then user changed it
>>>>>>> and is trying to change it back.
>>>>>> I fine with that.
>>>>>>
>>>>>> MODULE_PARM_DESC(num_io_request_queues, "Number of request virt queues to use for blk device. 0 value means no limitation");
>>>>>>
>>>>> OK and the second distinction is that it's a limit on the
>>>>> number, not the actual number. It's never more than what's provided
>>>>> by the hypervisor.
>>>> MODULE_PARM_DESC(num_io_request_queues, "Maximal number of request virt queues to use for blk device. 0 value means no limitation");
>>>>
>>>> is that ok ?
>>> Looks ok. And then do we need to limit this to nr_cpu_ids?
>>> Setting a value that's too high seems harmless ...
>> why would you want that ?
> So one can write a script that keeps working even when hypervisor
> changes the # of CPU IDs.
>
> It's also consistent with other parameters, e.g.:
>
>          clocksource.verify_n_cpus= [KNL]
>                          Limit the number of CPUs checked for clocksources
>                          marked with CLOCK_SOURCE_VERIFY_PERCPU that
>                          are marked unstable due to excessive skew.
>                          A negative value says to check all CPUs, while
>                          zero says not to check any.  Values larger than
>                          nr_cpu_ids are silently truncated to nr_cpu_ids.
>
> 			^^^^^^^^^^^^
>
>                          The actual CPUs are chosen randomly, with
>                          no replacement if the same CPU is chosen twice.

I don't understand how this example is relevant. It's not a blk-mq 
device that allocate queues for submitting IOs.

There is no sense of creating more queues than the #CPUs in the blk-mq 
design.

And also no reason setting it to some high value that we'll silently 
decrease.

Why would anyone write a script with hard coded values of CPUs instead 
of checking it with some linux tool and then set the module param 
accordingly ?


>
>>>>>>>> The actual value of the created queues can be seen in /sys/block/vda/mq/ as
>>>>>>>> done today.
>>>>>>>>>>>>>>>>>>> +
>>>>>>>>>>>>>>>>>>>           static int major;
>>>>>>>>>>>>>>>>>>>           static DEFINE_IDA(vd_index_ida);
>>>>>>>>>>>>>>>>>>> @@ -501,7 +517,9 @@ static int init_vq(struct virtio_blk *vblk)
>>>>>>>>>>>>>>>>>>>           	if (err)
>>>>>>>>>>>>>>>>>>>           		num_vqs = 1;
>>>>>>>>>>>>>>>>>>> -	num_vqs = min_t(unsigned int, nr_cpu_ids, num_vqs);
>>>>>>>>>>>>>>>>>>> +	num_vqs = min_t(unsigned int,
>>>>>>>>>>>>>>>>>>> +			min_not_zero(num_io_queues, nr_cpu_ids),
>>>>>>>>>>>>>>>>>>> +			num_vqs);
>>>>>>>>>>>>>>>>>> If you respin, please consider calling them request queues. That's the
>>>>>>>>>>>>>>>>>> terminology from the VIRTIO spec and it's nice to keep it consistent.
>>>>>>>>>>>>>>>>>> But the purpose of num_io_queues is clear, so:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
>>>>>>>>>>>>>>>>> I did this:
>>>>>>>>>>>>>>>>> +static unsigned int num_io_request_queues;
>>>>>>>>>>>>>>>>> +module_param_cb(num_io_request_queues, &queue_count_ops, &num_io_request_queues, 0644);
>>>>>>>>>>>>>>>>> +MODULE_PARM_DESC(num_io_request_queues,
>>>>>>>>>>>>>>>>> +                "Limit number of IO request virt queues to use for each device. 0 for now limit");
>>>>>>>>>>>>>>>> The parameter is writable and can be changed and then new devices might be
>>>>>>>>>>>>>>>> probed with new value.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> It can't be zero in the code. we can change param_set_uint_minmax args and
>>>>>>>>>>>>>>>> say that 0 says nr_cpus.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> I'm ok with the renaming but I prefer to stick to the description we gave in
>>>>>>>>>>>>>>>> V3 of this patch (and maybe enable value of 0 as mentioned above).

^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2021-09-13 14:30 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-31 13:50 [PATCH v2 1/1] virtio-blk: add num_io_queues module parameter Max Gurtovoy
2021-09-01  5:21 ` Christoph Hellwig
2021-09-01  5:21   ` Christoph Hellwig
2021-09-02 13:45 ` Stefan Hajnoczi
2021-09-02 13:45   ` Stefan Hajnoczi
2021-09-05 16:02   ` Michael S. Tsirkin
2021-09-05 16:02     ` Michael S. Tsirkin
2021-09-05 22:31     ` Max Gurtovoy
2021-09-06 11:20       ` Michael S. Tsirkin
2021-09-06 11:20         ` Michael S. Tsirkin
2021-09-06 11:59         ` Max Gurtovoy
2021-09-09 13:42           ` Michael S. Tsirkin
2021-09-09 13:42             ` Michael S. Tsirkin
2021-09-09 15:37             ` Max Gurtovoy
2021-09-09 15:40               ` Michael S. Tsirkin
2021-09-09 15:40                 ` Michael S. Tsirkin
2021-09-09 15:51                 ` Max Gurtovoy
2021-09-09 16:31                   ` Michael S. Tsirkin
2021-09-09 16:31                     ` Michael S. Tsirkin
2021-09-09 16:45                     ` Max Gurtovoy
2021-09-09 22:57                       ` Michael S. Tsirkin
2021-09-09 22:57                         ` Michael S. Tsirkin
2021-09-11 12:56                         ` Max Gurtovoy
2021-09-12  9:07                           ` Michael S. Tsirkin
2021-09-12  9:07                             ` Michael S. Tsirkin
2021-09-12  9:37                             ` Max Gurtovoy
2021-09-12  9:50                               ` Michael S. Tsirkin
2021-09-12  9:50                                 ` Michael S. Tsirkin
2021-09-12 10:33                                 ` Max Gurtovoy
2021-09-12 11:45                                   ` Michael S. Tsirkin
2021-09-12 11:45                                     ` Michael S. Tsirkin
2021-09-13 14:23                                     ` Max Gurtovoy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.