diff options
author | Keith Busch <keith.busch@intel.com> | 2014-11-21 17:16:32 -0500 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2014-11-21 20:22:35 -0500 |
commit | c78b47136f7adebcf953f541c7d9c4c745a54e3f (patch) | |
tree | bd084e87e57fb46ed2c72b2d5e8aebdf48d5d1c3 /drivers/block | |
parent | be7837e89d610046ae8dd28dc504df09261d9f91 (diff) |
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')
-rw-r--r-- | drivers/block/nvme-core.c | 2 |
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) | |||
2888 | 2888 | ||
2889 | MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>"); | 2889 | MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>"); |
2890 | MODULE_LICENSE("GPL"); | 2890 | MODULE_LICENSE("GPL"); |
2891 | MODULE_VERSION("0.9"); | 2891 | MODULE_VERSION("1.0"); |
2892 | module_init(nvme_init); | 2892 | module_init(nvme_init); |
2893 | module_exit(nvme_exit); | 2893 | module_exit(nvme_exit); |