aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorMatthew Sakai <msakai@redhat.com>2024-03-01 18:19:40 -0500
committerMike Snitzer <snitzer@kernel.org>2024-03-04 23:11:11 -0500
commit2a7f925bc25fc3591e6c7f2c1bd561004d744b6d (patch)
treedadd2757e6bb2f0325c905be5492ef1b99da777d /drivers/md
parent7eb30fe18fe9eae235f71ecd5c1d24eaeb21a036 (diff)
downloadlinux-2a7f925bc25fc3591e6c7f2c1bd561004d744b6d.tar.gz
dm vdo: remove meaningless version number constant
Also remove related log messages. Signed-off-by: Matthew Sakai <msakai@redhat.com> Signed-off-by: Mike Snitzer <snitzer@kernel.org>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-vdo/dm-vdo-target.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/md/dm-vdo/dm-vdo-target.c b/drivers/md/dm-vdo/dm-vdo-target.c
index 9128e6cd08443..5a4b0a927f560 100644
--- a/drivers/md/dm-vdo/dm-vdo-target.c
+++ b/drivers/md/dm-vdo/dm-vdo-target.c
@@ -39,8 +39,6 @@
#include "vdo.h"
#include "vio.h"
-#define CURRENT_VERSION "8.3.0.65"
-
enum admin_phases {
GROW_LOGICAL_PHASE_START,
GROW_LOGICAL_PHASE_GROW_BLOCK_MAP,
@@ -2863,8 +2861,6 @@ static void vdo_module_destroy(void)
instances.count);
vdo_free(instances.words);
memset(&instances, 0, sizeof(struct instance_tracker));
-
- vdo_log_info("unloaded version %s", CURRENT_VERSION);
}
static int __init vdo_init(void)
@@ -2876,7 +2872,6 @@ static int __init vdo_init(void)
vdo_initialize_threads_mutex();
vdo_initialize_thread_device_registry();
vdo_initialize_device_registry_once();
- vdo_log_info("loaded version %s", CURRENT_VERSION);
/* Add VDO errors to the set of errors registered by the indexer. */
result = vdo_register_status_codes();