From: Herton Ronaldo Krzesinski Date: Mon, 27 Aug 2012 23:56:51 +0000 (-0300) Subject: floppy: don't call alloc_ordered_workqueue inside the alloc_disk loop X-Git-Tag: v3.7-rc4~23^2~11 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b54e1f88897bcacc2cd359f48ea3b39eaf55f084;p=pandora-kernel.git floppy: don't call alloc_ordered_workqueue inside the alloc_disk loop Since commit 070ad7e ("floppy: convert to delayed work and single-thread wq"), we end up calling alloc_ordered_workqueue multiple times inside the loop, which shouldn't be intended. Besides the leak, other side effect in the current code is if blk_init_queue fails, we would end up calling unregister_blkdev even if we didn't call yet register_blkdev. Just moved the allocation of floppy_wq before the loop, and adjusted the code accordingly. Cc: stable@vger.kernel.org # 3.5+ Acked-by: Vivek Goyal Reviewed-by: Ben Hutchings Signed-off-by: Herton Ronaldo Krzesinski Signed-off-by: Jiri Kosina Signed-off-by: Jens Axboe --- Reading git-diff-tree failed