Commit 2a7f925b authored by Matthew Sakai's avatar Matthew Sakai Committed by Mike Snitzer

dm vdo: remove meaningless version number constant

Also remove related log messages.
Signed-off-by: default avatarMatthew Sakai <msakai@redhat.com>
Signed-off-by: default avatarMike Snitzer <snitzer@kernel.org>
parent 7eb30fe1
......@@ -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();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment