Commit 7143dd4b authored by Jens Axboe's avatar Jens Axboe

[PATCH] ll_rw_blk: fix 80-col offender in put_io_context()

This makes akpm more happy.
Signed-off-by: default avatarJens Axboe <axboe@suse.de>
parent e8a99053
...@@ -3545,7 +3545,9 @@ void put_io_context(struct io_context *ioc) ...@@ -3545,7 +3545,9 @@ void put_io_context(struct io_context *ioc)
if (ioc->aic && ioc->aic->dtor) if (ioc->aic && ioc->aic->dtor)
ioc->aic->dtor(ioc->aic); ioc->aic->dtor(ioc->aic);
if (ioc->cic_root.rb_node != NULL) { 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); cic->dtor(ioc);
} }
rcu_read_unlock(); rcu_read_unlock();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment