* [PATCH] [BLOCK] Allow tag 0 to be generated
@ 2011-01-10 17:26 Luben Tuikov
2011-01-10 18:49 ` Jens Axboe
0 siblings, 1 reply; 5+ messages in thread
From: Luben Tuikov @ 2011-01-10 17:26 UTC (permalink / raw)
To: linux-scsi, linux-kernel; +Cc: jaxboe
Commit 67869fb9fdfa04503b250d59e086c15f1698aea0
skipped tag 0 by virtue of setting last_tag to
0. This commit sets it to -1, in order to start
and loop over from 0, thus generating tags
[0,max_tag-1], instead of [1,max_tag-1].
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
---
For a reference to the original patch see here:
git://github.com/ltuikov/linux-2.6.git
block/blk-tag.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/block/blk-tag.c b/block/blk-tag.c
index f792e98..744cea6 100644
--- a/block/blk-tag.c
+++ b/block/blk-tag.c
@@ -130,7 +130,7 @@ init_tag_map(struct request_queue *q, struct blk_queue_tag *tags, int depth)
tags->max_depth = depth;
tags->tag_index = tag_index;
tags->tag_map = tag_map;
- tags->last_tag = 0;
+ tags->last_tag = -1;
return 0;
fail:
@@ -340,7 +340,7 @@ EXPORT_SYMBOL(blk_queue_end_tag);
int blk_queue_start_tag(struct request_queue *q, struct request *rq)
{
struct blk_queue_tag *bqt = q->queue_tags;
- unsigned max_depth;
+ int max_depth;
int tag;
if (unlikely((rq->cmd_flags & REQ_QUEUED))) {
@@ -361,14 +361,14 @@ int blk_queue_start_tag(struct request_queue *q, struct request *rq)
max_depth = bqt->max_depth;
if (!rq_is_sync(rq) && max_depth > 1) {
max_depth -= 2;
- if (!max_depth)
+ if (max_depth <= 0)
max_depth = 1;
if (q->in_flight[BLK_RW_ASYNC] > max_depth)
return 1;
}
if (bqt->last_tag == bqt->max_depth-1)
- bqt->last_tag = 0;
+ bqt->last_tag = -1;
do {
tag = find_next_zero_bit(bqt->tag_map,
--
1.7.2.2.165.gbc382
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] [BLOCK] Allow tag 0 to be generated
2011-01-10 17:26 [PATCH] [BLOCK] Allow tag 0 to be generated Luben Tuikov
@ 2011-01-10 18:49 ` Jens Axboe
2011-01-10 18:52 ` Jens Axboe
0 siblings, 1 reply; 5+ messages in thread
From: Jens Axboe @ 2011-01-10 18:49 UTC (permalink / raw)
To: ltuikov@yahoo.com
Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
On 2011-01-10 18:26, Luben Tuikov wrote:
> Commit 67869fb9fdfa04503b250d59e086c15f1698aea0
That commit isn't a valid sha in my tree. What commit do you mean?
> skipped tag 0 by virtue of setting last_tag to
> 0. This commit sets it to -1, in order to start
> and loop over from 0, thus generating tags
> [0,max_tag-1], instead of [1,max_tag-1].
Irregardless, patch looks good. That's definitely a bug. Thanks!
--
Jens Axboe
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [BLOCK] Allow tag 0 to be generated
2011-01-10 18:49 ` Jens Axboe
@ 2011-01-10 18:52 ` Jens Axboe
2011-01-10 19:27 ` Luben Tuikov
0 siblings, 1 reply; 5+ messages in thread
From: Jens Axboe @ 2011-01-10 18:52 UTC (permalink / raw)
To: ltuikov@yahoo.com
Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
On 2011-01-10 19:49, Jens Axboe wrote:
> On 2011-01-10 18:26, Luben Tuikov wrote:
>> Commit 67869fb9fdfa04503b250d59e086c15f1698aea0
>
> That commit isn't a valid sha in my tree. What commit do you mean?
>
>> skipped tag 0 by virtue of setting last_tag to
>> 0. This commit sets it to -1, in order to start
>> and loop over from 0, thus generating tags
>> [0,max_tag-1], instead of [1,max_tag-1].
>
> Irregardless, patch looks good. That's definitely a bug. Thanks!
But not in my kernel, what tree are you looking at? I don't remember
seeing any tag patches, and they should be in my tree if there are.
--
Jens Axboe
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [BLOCK] Allow tag 0 to be generated
2011-01-10 18:52 ` Jens Axboe
@ 2011-01-10 19:27 ` Luben Tuikov
2011-01-10 19:31 ` Jens Axboe
0 siblings, 1 reply; 5+ messages in thread
From: Luben Tuikov @ 2011-01-10 19:27 UTC (permalink / raw)
To: Jens Axboe; +Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
--- On Mon, 1/10/11, Jens Axboe <jaxboe@fusionio.com> wrote:
> > That commit isn't a valid sha in my tree. What commit
> do you mean?
> >
> >> skipped tag 0 by virtue of setting last_tag to
> >> 0. This commit sets it to -1, in order to start
> >> and loop over from 0, thus generating tags
> >> [0,max_tag-1], instead of [1,max_tag-1].
> >
> > Irregardless, patch looks good. That's definitely a
> bug. Thanks!
>
> But not in my kernel, what tree are you looking at? I don't
> remember
> seeing any tag patches, and they should be in my tree if
> there are.
It applies on top of this patch:
>From 67869fb9fdfa04503b250d59e086c15f1698aea0 Mon Sep 17 00:00:00 2001
From: Luben Tuikov <ltuikov@yahoo.com>
Date: Wed, 24 Nov 2010 14:18:27 -0800
Subject: [PATCH] [BLOCK] Preliminary increasing tag sequence implementation
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
---
block/blk-tag.c | 15 +++++++++++++--
include/linux/blkdev.h | 1 +
2 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/block/blk-tag.c b/block/blk-tag.c
index ece65fc..f792e98 100644
--- a/block/blk-tag.c
+++ b/block/blk-tag.c
@@ -130,6 +130,7 @@ init_tag_map(struct request_queue *q, struct blk_queue_tag *tags, int depth)
tags->max_depth = depth;
tags->tag_index = tag_index;
tags->tag_map = tag_map;
+ tags->last_tag = 0;
return 0;
fail:
@@ -222,7 +223,7 @@ int blk_queue_resize_tags(struct request_queue *q, int new_depth)
struct blk_queue_tag *bqt = q->queue_tags;
struct request **tag_index;
unsigned long *tag_map;
- int max_depth, nr_ulongs;
+ int max_depth, nr_ulongs, last_tag;
if (!bqt)
return -ENXIO;
@@ -251,6 +252,7 @@ int blk_queue_resize_tags(struct request_queue *q, int new_depth)
tag_index = bqt->tag_index;
tag_map = bqt->tag_map;
max_depth = bqt->real_max_depth;
+ last_tag = bqt->last_tag;
if (init_tag_map(q, bqt, new_depth))
return -ENOMEM;
@@ -258,6 +260,7 @@ int blk_queue_resize_tags(struct request_queue *q, int new_depth)
memcpy(bqt->tag_index, tag_index, max_depth * sizeof(struct request *));
nr_ulongs = ALIGN(max_depth, BITS_PER_LONG) / BITS_PER_LONG;
memcpy(bqt->tag_map, tag_map, nr_ulongs * sizeof(unsigned long));
+ bqt->last_tag = last_tag;
kfree(tag_index);
kfree(tag_map);
@@ -364,12 +367,20 @@ int blk_queue_start_tag(struct request_queue *q, struct request *rq)
return 1;
}
+ if (bqt->last_tag == bqt->max_depth-1)
+ bqt->last_tag = 0;
+
do {
- tag = find_first_zero_bit(bqt->tag_map, max_depth);
+ tag = find_next_zero_bit(bqt->tag_map,
+ max_depth,
+ bqt->last_tag+1);
if (tag >= max_depth)
return 1;
} while (test_and_set_bit_lock(tag, bqt->tag_map));
+
+ bqt->last_tag = tag;
+
/*
* We need lock ordering semantics given by test_and_set_bit_lock.
* See blk_queue_end_tag for details.
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index aae86fd..228efcc 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -224,6 +224,7 @@ struct blk_queue_tag {
int max_depth; /* what we will send to device */
int real_max_depth; /* what the array can hold */
atomic_t refcnt; /* map can be shared */
+ int last_tag;
};
#define BLK_SCSI_MAX_CMDS (256)
--
1.7.2.2.165.gbc382
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] [BLOCK] Allow tag 0 to be generated
2011-01-10 19:27 ` Luben Tuikov
@ 2011-01-10 19:31 ` Jens Axboe
0 siblings, 0 replies; 5+ messages in thread
From: Jens Axboe @ 2011-01-10 19:31 UTC (permalink / raw)
To: ltuikov@yahoo.com
Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
On 2011-01-10 20:27, Luben Tuikov wrote:
> --- On Mon, 1/10/11, Jens Axboe <jaxboe@fusionio.com> wrote:
>>> That commit isn't a valid sha in my tree. What commit
>> do you mean?
>>>
>>>> skipped tag 0 by virtue of setting last_tag to
>>>> 0. This commit sets it to -1, in order to start
>>>> and loop over from 0, thus generating tags
>>>> [0,max_tag-1], instead of [1,max_tag-1].
>>>
>>> Irregardless, patch looks good. That's definitely a
>> bug. Thanks!
>>
>> But not in my kernel, what tree are you looking at? I don't
>> remember
>> seeing any tag patches, and they should be in my tree if
>> there are.
>
> It applies on top of this patch:
>
> From 67869fb9fdfa04503b250d59e086c15f1698aea0 Mon Sep 17 00:00:00 2001
Ah I see. It doesn't make sense to mention shas in your own tree in
commit messages for patches you send, as they will not be valid unless
your tree is actually pulled from.
And since this patch is not in any tree, and at least I didn't agree
with it, then you should post your updated fixed patch instead of
sending a patch against a broken patch.
--
Jens Axboe
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-01-10 19:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-10 17:26 [PATCH] [BLOCK] Allow tag 0 to be generated Luben Tuikov
2011-01-10 18:49 ` Jens Axboe
2011-01-10 18:52 ` Jens Axboe
2011-01-10 19:27 ` Luben Tuikov
2011-01-10 19:31 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).