diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-06-20 08:59:45 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-06-20 08:59:45 -0400 |
commit | d59bf96cdde5b874a57bfd1425faa45da915d0b7 (patch) | |
tree | 351a40b72514d620e5bebea2de38c26f23277ffc /block | |
parent | 28df955a2ad484d602314b30183ea8496a9aa34a (diff) | |
parent | 25f42b6af09e34c3f92107b36b5aa6edc2fdba2f (diff) |
Merge branch 'master' of /home/trondmy/kernel/linux-2.6/
Diffstat (limited to 'block')
-rw-r--r-- | block/cfq-iosched.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c index a46d030e092a..052b17487625 100644 --- a/block/cfq-iosched.c +++ b/block/cfq-iosched.c | |||
@@ -1323,17 +1323,12 @@ cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask) | |||
1323 | struct cfq_io_context *cic = kmem_cache_alloc(cfq_ioc_pool, gfp_mask); | 1323 | struct cfq_io_context *cic = kmem_cache_alloc(cfq_ioc_pool, gfp_mask); |
1324 | 1324 | ||
1325 | if (cic) { | 1325 | if (cic) { |
1326 | RB_CLEAR(&cic->rb_node); | 1326 | memset(cic, 0, sizeof(*cic)); |
1327 | cic->key = NULL; | 1327 | RB_CLEAR_COLOR(&cic->rb_node); |
1328 | cic->cfqq[ASYNC] = NULL; | ||
1329 | cic->cfqq[SYNC] = NULL; | ||
1330 | cic->last_end_request = jiffies; | 1328 | cic->last_end_request = jiffies; |
1331 | cic->ttime_total = 0; | 1329 | INIT_LIST_HEAD(&cic->queue_list); |
1332 | cic->ttime_samples = 0; | ||
1333 | cic->ttime_mean = 0; | ||
1334 | cic->dtor = cfq_free_io_context; | 1330 | cic->dtor = cfq_free_io_context; |
1335 | cic->exit = cfq_exit_io_context; | 1331 | cic->exit = cfq_exit_io_context; |
1336 | INIT_LIST_HEAD(&cic->queue_list); | ||
1337 | atomic_inc(&ioc_count); | 1332 | atomic_inc(&ioc_count); |
1338 | } | 1333 | } |
1339 | 1334 | ||