Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24508
b: refs/heads/master
c: 7143dd4
h: refs/heads/master
v: v3
  • Loading branch information
Jens Axboe committed Mar 28, 2006
1 parent 936e1c4 commit d6db0f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e8a99053ea82a4b4375049886cf1db64d7dcd755
refs/heads/master: 7143dd4b0127141a4f773e819d1d1f4ab82bb517
4 changes: 3 additions & 1 deletion trunk/block/ll_rw_blk.c
Original file line number Diff line number Diff line change
Expand Up @@ -3545,7 +3545,9 @@ void put_io_context(struct io_context *ioc)
if (ioc->aic && ioc->aic->dtor)
ioc->aic->dtor(ioc->aic);
if (ioc->cic_root.rb_node != NULL) {
cic = rb_entry(rb_first(&ioc->cic_root), struct cfq_io_context, rb_node);
struct rb_node *n = rb_first(&ioc->cic_root);

cic = rb_entry(n, struct cfq_io_context, rb_node);
cic->dtor(ioc);
}
rcu_read_unlock();
Expand Down

0 comments on commit d6db0f2

Please sign in to comment.