]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commit - block/blk-cgroup.c
blkcg: drop local variable @q from blkg_destroy()
authorTejun Heo <tj@kernel.org>
Tue, 5 Jun 2012 11:36:44 +0000 (13:36 +0200)
committerJens Axboe <axboe@kernel.dk>
Wed, 6 Jun 2012 06:35:31 +0000 (08:35 +0200)
commit27e1f9d1cc87be4e53c6eb7158cafc21c4b85a14
treecdb26074805f8635af606bd1b9e92f21481c0d51
parent7b421d24eac79800ee68905f732300a291f72f00
blkcg: drop local variable @q from blkg_destroy()

blkg_destroy() caches @blkg->q in local variable @q.  While there are
two places which needs @blkg->q, only lockdep_assert_held() used the
local variable leading to unused local variable warning if lockdep is
configured out.  Drop the local variable and just use @blkg->q
directly.

Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Rakesh Iyer <rni@google.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-cgroup.c