From: Keith Busch Date: Fri, 21 Nov 2014 22:16:32 +0000 (-0700) Subject: NVMe: Update module version major number X-Git-Tag: v3.19-rc1~87^2~13 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-linux.git;a=commitdiff_plain;h=c78b47136f7adebcf953f541c7d9c4c745a54e3f 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 Signed-off-by: Jens Axboe --- 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 "); MODULE_LICENSE("GPL"); -MODULE_VERSION("0.9"); +MODULE_VERSION("1.0"); module_init(nvme_init); module_exit(nvme_exit);