]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
NVMe: Update module version major number
authorKeith Busch <keith.busch@intel.com>
Fri, 21 Nov 2014 22:16:32 +0000 (15:16 -0700)
committerJens Axboe <axboe@fb.com>
Sat, 22 Nov 2014 01:22:35 +0000 (18:22 -0700)
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>
drivers/block/nvme-core.c

index c1541652b7e03c1cb9dd65dc1f32bc93448e4e08..c7ea07ce9372983e8b4b3fcaf0d2458b5e146cc2 100644 (file)
@@ -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);