diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2006-08-21 02:36:12 -0400 |
---|---|---|
committer | Jens Axboe <axboe@nelson.home.kernel.dk> | 2006-08-21 04:02:54 -0400 |
commit | be33c3a67bb717508ab1eab0f2fa570fabcbc4d2 (patch) | |
tree | a3ed181d91d97487b5918a8e8c4eab05166978f1 /block | |
parent | e014ff8d4285b81f0de0719d8eee72bc50bfd4be (diff) |
[PATCH] cfq_cic_link: fix usage of wrong cfq_io_context
Obviously, cfq_cic_link() shouldn't free a just allocated cfq_io_context?
The dead key is from __cic, so drop that.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: Jens Axboe <axboe@suse.de>
Diffstat (limited to 'block')
-rw-r--r-- | block/cfq-iosched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c index aae3123bf3ee..3a3aee08ec5f 100644 --- a/block/cfq-iosched.c +++ b/block/cfq-iosched.c | |||
@@ -1561,7 +1561,7 @@ restart: | |||
1561 | /* ->key must be copied to avoid race with cfq_exit_queue() */ | 1561 | /* ->key must be copied to avoid race with cfq_exit_queue() */ |
1562 | k = __cic->key; | 1562 | k = __cic->key; |
1563 | if (unlikely(!k)) { | 1563 | if (unlikely(!k)) { |
1564 | cfq_drop_dead_cic(ioc, cic); | 1564 | cfq_drop_dead_cic(ioc, __cic); |
1565 | goto restart; | 1565 | goto restart; |
1566 | } | 1566 | } |
1567 | 1567 | ||