summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2016-12-18 12:58:03 +0000
committerBryn M. Reeves <bmr@redhat.com>2016-12-18 13:03:45 +0000
commit5a4750d76c9930a6e4a181ab664f0cac4d1a400b (patch)
tree20fef4072759c42d5ddeffb42ae391cfefc12fd8
parent5635cd3b0337ac854a82a1a15cef2609c2091e6c (diff)
downloadlvm2-5a4750d76c9930a6e4a181ab664f0cac4d1a400b.tar.gz
dmstats: fix interval number reporting with --count=0
When --count=0 interval numbers are miscalculated: Interval #18446744069414584325 time delta: 999920887ns Interval #18446744069414584325 current err: -79113ns End interval #18446744069414584325 duration: 999920887ns This is because the command line argument is cast through the uint32_t type, and fixed to UINT32_MAX: _count = ((uint32_t)_int_args[COUNT_ARG]) ? : UINT32_MAX; We also need to handle --count=0 specially when calculating the interval number: since intervals count from #1, this must account for the implicit "minus one" when converting from zero to the UINT64_MAX value used (which is too large to store in _int_args).
-rw-r--r--tools/dmsetup.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/tools/dmsetup.c b/tools/dmsetup.c
index b1967db1a..06d609b21 100644
--- a/tools/dmsetup.c
+++ b/tools/dmsetup.c
@@ -264,7 +264,7 @@ static struct dm_tree *_dtree;
static struct dm_report *_report;
static report_type_t _report_type;
static dev_name_t _dev_name_type;
-static uint32_t _count = 1; /* count of repeating reports */
+static uint64_t _count = 1; /* count of repeating reports */
static struct dm_timestamp *_initial_timestamp = NULL;
static uint64_t _disp_factor = 512; /* display sizes in sectors */
static char _disp_units = 's';
@@ -557,7 +557,8 @@ static void _destroy_split_name(struct dm_split_name *split_name)
*/
static uint64_t _interval_num(void)
{
- return 1 + (uint64_t) _int_args[COUNT_ARG] - _count;
+ uint64_t count_arg = _int_args[COUNT_ARG];
+ return ((uint64_t) _int_args[COUNT_ARG] - _count) + !!count_arg;
}
#ifdef HAVE_SYS_TIMERFD_H
@@ -6873,10 +6874,10 @@ unknown:
goto_out;
}
- if (_switches[COUNT_ARG])
- _count = ((uint32_t)_int_args[COUNT_ARG]) ? : UINT32_MAX;
- else if (_switches[INTERVAL_ARG])
- _count = UINT32_MAX;
+ if (_switches[COUNT_ARG] && _int_args[COUNT_ARG])
+ _count = (uint64_t)_int_args[COUNT_ARG];
+ else if (_switches[COUNT_ARG] || _switches[INTERVAL_ARG])
+ _count = UINT64_MAX;
if (_switches[UNITS_ARG]) {
_disp_factor = _factor_from_units(_string_args[UNITS_ARG],