diff options
| author | Jens Axboe <axboe@suse.de> | 2002-06-02 03:15:36 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-06-02 03:15:36 -0700 |
| commit | 86225b5ea4da3b4dd28e31f3a091fc5ceb941108 (patch) | |
| tree | a8f6add31e03036f9cac3b97c12d8c9516bb9654 | |
| parent | e3102b26af4dc54a98e4093642bc3c36b9800ac3 (diff) | |
[PATCH] update to the update
Too much copy'n paste between 2.4 and 2.5 code base, attached patch on
top of the previous block tag fixes makes it work/compile again. Sorry
about that.
| -rw-r--r-- | drivers/block/ll_rw_blk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/ll_rw_blk.c b/drivers/block/ll_rw_blk.c index 65f8680ed24a..ddb858b5d3b9 100644 --- a/drivers/block/ll_rw_blk.c +++ b/drivers/block/ll_rw_blk.c @@ -488,8 +488,8 @@ void blk_queue_invalidate_tags(request_queue_t *q) if (rq->tag == -1) { printk("bad tag found on list\n"); - list_del(&rq->queue); - rq->tagged = 0; + list_del(&rq->queuelist); + rq->flags &= ~REQ_QUEUED; } else blk_queue_end_tag(q, rq); |
