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

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.