diff options
author | Keith Busch <keith.busch@intel.com> | 2014-04-04 11:43:36 -0600 |
---|---|---|
committer | Matthew Wilcox <matthew.r.wilcox@intel.com> | 2014-04-10 17:04:38 -0400 |
commit | b355084a891985d4cd0ca23b1a83366af2c4232d (patch) | |
tree | 3b819a5b20b3d752c900181afabaa06ae7f286dc /include | |
parent | 33b1e95c90447ea73e37e837ea0268a894919f19 (diff) | |
download | blackbird-obmc-linux-b355084a891985d4cd0ca23b1a83366af2c4232d.tar.gz blackbird-obmc-linux-b355084a891985d4cd0ca23b1a83366af2c4232d.zip |
NVMe: Make I/O timeout a module parameter
Increase the default timeout to 30 seconds to match SCSI.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[use byte instead of ushort]
Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/nvme.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index 15d071eba8b8..1da0807c65bc 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h @@ -66,7 +66,8 @@ enum { #define NVME_VS(major, minor) (major << 16 | minor) -#define NVME_IO_TIMEOUT (5 * HZ) +extern unsigned char io_timeout; +#define NVME_IO_TIMEOUT (io_timeout * HZ) /* * Represents an NVM Express device. Each nvme_dev is a PCI function. |