Linux block layer
 help / color / mirror / Atom feed
* [PATCH] block: allow us to change max_segments on the fly
@ 2017-04-03 19:13 Josef Bacik
  2017-04-03 19:15 ` Jens Axboe
  0 siblings, 1 reply; 2+ messages in thread
From: Josef Bacik @ 2017-04-03 19:13 UTC (permalink / raw)
  To: kernel-team, axboe, linux-block

For things like NBD we want to be able to experiment with different
sized requests going over the wire.  Half of our limit is controled by
max_sectors_kb, but the other half is how many bvec's we can cram into a
request, which is controlled by max_segments.  Changing this sysfs knob
to be writeable allows us to be able to control our io limits more
precisely.

Signed-off-by: Josef Bacik <jbacik@fb.com>
---
 block/blk-sysfs.c | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c
index 4585426..e7db3f8 100644
--- a/block/blk-sysfs.c
+++ b/block/blk-sysfs.c
@@ -116,6 +116,19 @@ static ssize_t queue_max_sectors_show(struct request_queue *q, char *page)
 	return queue_var_show(max_sectors_kb, (page));
 }
 
+static ssize_t queue_max_segments_store(struct request_queue *q,
+					const char *page, size_t count)
+{
+	unsigned long max_segments;
+	ssize_t ret = queue_var_store(&max_segments, page, count);
+
+	if (ret < 0)
+		return ret;
+
+	q->limits.max_segments = (short)max_segments;
+	return ret;
+}
+
 static ssize_t queue_max_segments_show(struct request_queue *q, char *page)
 {
 	return queue_var_show(queue_max_segments(q), (page));
@@ -527,8 +540,9 @@ static struct queue_sysfs_entry queue_max_hw_sectors_entry = {
 };
 
 static struct queue_sysfs_entry queue_max_segments_entry = {
-	.attr = {.name = "max_segments", .mode = S_IRUGO },
+	.attr = {.name = "max_segments", .mode = S_IRUGO | S_IWUSR },
 	.show = queue_max_segments_show,
+	.store = queue_max_segments_store,
 };
 
 static struct queue_sysfs_entry queue_max_discard_segments_entry = {
-- 
2.7.4

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

* Re: [PATCH] block: allow us to change max_segments on the fly
  2017-04-03 19:13 [PATCH] block: allow us to change max_segments on the fly Josef Bacik
@ 2017-04-03 19:15 ` Jens Axboe
  0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2017-04-03 19:15 UTC (permalink / raw)
  To: Josef Bacik, kernel-team, linux-block

On 04/03/2017 01:13 PM, Josef Bacik wrote:
> For things like NBD we want to be able to experiment with different
> sized requests going over the wire.  Half of our limit is controled by
> max_sectors_kb, but the other half is how many bvec's we can cram into a
> request, which is controlled by max_segments.  Changing this sysfs knob
> to be writeable allows us to be able to control our io limits more
> precisely.

This is a hw setting for most drivers, we can't make it user settable.
If you want it user settable, you'd have to split it in a hw and user
setting.

-- 
Jens Axboe

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

end of thread, other threads:[~2017-04-03 19:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-03 19:13 [PATCH] block: allow us to change max_segments on the fly Josef Bacik
2017-04-03 19:15 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox