mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
Merge ead65f7695 ("virtio_blk: allow 0 as num_request_queues") into android-mainline
Steps on the way to 5.16-rc1 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I747a1c9969a407dae63926631299bea88e138331
This commit is contained in:
@@ -30,20 +30,8 @@
|
||||
#define VIRTIO_BLK_INLINE_SG_CNT 2
|
||||
#endif
|
||||
|
||||
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_request_queues;
|
||||
module_param_cb(num_request_queues, &queue_count_ops, &num_request_queues,
|
||||
0644);
|
||||
module_param(num_request_queues, uint, 0644);
|
||||
MODULE_PARM_DESC(num_request_queues,
|
||||
"Limit the number of request queues to use for blk device. "
|
||||
"0 for no limit. "
|
||||
|
||||
Reference in New Issue
Block a user