aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/nvme-core.c
diff options
context:
space:
mode:
authorKeith Busch <keith.busch@intel.com>2014-11-21 15:16:32 -0700
committerJens Axboe <axboe@fb.com>2014-11-21 18:22:35 -0700
commitc78b47136f7adebcf953f541c7d9c4c745a54e3f (patch)
treebd084e87e57fb46ed2c72b2d5e8aebdf48d5d1c3 /drivers/block/nvme-core.c
parentNVMe: fail pci initialization if the device doesn't have any BARs (diff)
downloadlinux-dev-c78b47136f7adebcf953f541c7d9c4c745a54e3f.tar.xz
linux-dev-c78b47136f7adebcf953f541c7d9c4c745a54e3f.zip
NVMe: Update module version major number
It's already near impossible to tell what bits someone is running based on a 'modinfo nvme', and I don't want to try guessing if someone is running blk-mq or bio-based. Let's make it obvious with the module version that the blk-mq conversion is a major change. Future bio-based versions can increment to 0.10 in a fork if revisions occur. Signed-off-by: Keith Busch <keith.busch@intel.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/block/nvme-core.c')
-rw-r--r--drivers/block/nvme-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/nvme-core.c b/drivers/block/nvme-core.c
index c1541652b7e0..c7ea07ce9372 100644
--- a/drivers/block/nvme-core.c
+++ b/drivers/block/nvme-core.c
@@ -2888,6 +2888,6 @@ static void __exit nvme_exit(void)
MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
MODULE_LICENSE("GPL");
-MODULE_VERSION("0.9");
+MODULE_VERSION("1.0");
module_init(nvme_init);
module_exit(nvme_exit);