NVMe: Add a module parameter to use a threaded interrupt
authorMatthew Wilcox <matthew.r.wilcox@intel.com>
Sun, 6 Feb 2011 12:28:06 +0000 (07:28 -0500)
committerMatthew Wilcox <matthew.r.wilcox@intel.com>
Fri, 4 Nov 2011 19:52:55 +0000 (15:52 -0400)
commit58ffacb545f76fc2c65d1fbfa5acf5184a2a09e6
tree382cf8004b88f9d2bd2b86d78121938afa863e42
parentb1ad37efcafe396ac3944853589688dd0ec3c64e
NVMe: Add a module parameter to use a threaded interrupt

We're currently calling bio_endio from hard interrupt context.  This is
not a good idea for preemptible kernels as it will cause longer latencies.
Using a threaded interrupt will run the entire queue processing mechanism
(including bio_endio) in a thread, which can be preempted.  Unfortuantely,
it also adds about 7us of latency to the single-I/O case, so make it a
module parameter for the moment.

Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
drivers/block/nvme.c