]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
block: reorder elevator switch sequence
authorTejun Heo <tj@kernel.org>
Tue, 13 Dec 2011 23:33:40 +0000 (00:33 +0100)
committerJens Axboe <axboe@kernel.dk>
Tue, 13 Dec 2011 23:33:40 +0000 (00:33 +0100)
commitf8fc877d3c1f10457d0d73d8540a0c51a1fa718a
tree036d5d57996a6b3f1dfd68fb569eea0e699f2263
parentf2dbd76a0a994bc1d5a3d0e7c844cc373832e86c
block: reorder elevator switch sequence

Elevator switch sequence first attached the new elevator, then tried
registering it (sysfs) and if that failed attached back the old
elevator.  However, sysfs registration doesn't require the elevator to
be attached, so there is no reason to do the "detach, attach new,
register, maybe re-attach old" sequence.  It can just do "register,
detach, attach".

* elevator_init_queue() is updated to set ->elevator_data directly and
  return 0 / -errno.  This allows elevator_exit() on an unattached
  elevator.

* __elv_unregister_queue() which was necessary to unregister
  unattached q is removed in favor of __elv_register_queue() which can
  register unattached q.

* elevator_attach() becomes a single assignment and obscures more then
  it helps.  Dropped.

This will help cleaning up io_context handling across elevator switch.

This patch doesn't introduce visible behavior change.

Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/elevator.c