1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-10 16:58:47 +03:00

device_mapper: drop unneeded function

Subdir without stats.
This commit is contained in:
Zdenek Kabelac 2018-06-14 20:47:23 +02:00
parent 5b515db71b
commit 3eff3aa4f8

View File

@ -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)