]> git.karo-electronics.de Git - linux-beck.git/commit
libnvdimm, pmem: move request_queue allocation earlier in probe
authorDan Williams <dan.j.williams@intel.com>
Sat, 16 Jan 2016 00:56:46 +0000 (16:56 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 16 Jan 2016 01:56:32 +0000 (17:56 -0800)
commit468ded03c07e0f2b5f05332bc255add47b1b0dee
tree0713ee3c5a57e53b3b54ee3ab7f767a0707a8c78
parentf25748e3c34eb8bb54853e9adba2d3dcf030503c
libnvdimm, pmem: move request_queue allocation earlier in probe

Before the dynamically allocated struct pages from devm_memremap_pages()
can be put to use outside the driver, we need a mechanism to track
whether they are still in use at teardown.  Towards that goal reorder
the initialization sequence to allow the 'q_usage_counter' from the
request_queue to be used by the devm_memremap_pages() implementation (in
subsequent patches).

Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Cc: Ross Zwisler <ross.zwisler@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/nvdimm/pmem.c