summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2018-06-14 20:47:23 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2018-06-14 22:02:01 +0200
commit3eff3aa4f8faa5a84de2ba696b15a976fad31852 (patch)
treee52617077e00600973e33b1fad9e13f9c56d8e39
parent5b515db71ba13d2a4f328be6a97bb309401c5c69 (diff)
downloadlvm2-3eff3aa4f8faa5a84de2ba696b15a976fad31852.tar.gz
device_mapper: drop unneeded function
Subdir without stats.
-rw-r--r--device_mapper/ioctl/libdm-iface.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/device_mapper/ioctl/libdm-iface.c b/device_mapper/ioctl/libdm-iface.c
index bec7f0fb9..733eece6c 100644
--- a/device_mapper/ioctl/libdm-iface.c
+++ b/device_mapper/ioctl/libdm-iface.c
@@ -624,20 +624,6 @@ static int _dm_inactive_supported(void)
return inactive_supported;
}
-int dm_message_supports_precise_timestamps(void)
-{
- /*
- * 4.32.0 supports "precise_timestamps" and "histogram:" options
- * to @stats_create messages but lacks the ability to report
- * these properties via a subsequent @stats_list: require at
- * least 4.33.0 in order to use these features.
- */
- if (dm_check_version() && _dm_version >= 4)
- if (_dm_version_minor >= 33)
- return 1;
- return 0;
-}
-
void *dm_get_next_target(struct dm_task *dmt, void *next,
uint64_t *start, uint64_t *length,
char **target_type, char **params)