The following changes since commit 5932cf0f2a03396b5f3f0b4667f5e66f7d8477e5: Merge branch 'fix-example-disk-zone-profile' of github.com:cvubrugier/fio (2022-09-15 11:02:49 -0400) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to d14687025c0c61d047e4252036d1b024d62cb0a6: configure: change grep -P to grep -E (2022-09-19 09:42:14 -0400) ---------------------------------------------------------------- Vincent Fu (2): gettime: cleanups configure: change grep -P to grep -E configure | 2 +- gettime.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) --- Diff of recent changes: diff --git a/configure b/configure index 7741ef4f..546541a2 100755 --- a/configure +++ b/configure @@ -117,7 +117,7 @@ has() { } num() { - echo "$1" | grep -P -q "^[0-9]+$" + echo "$1" | grep -E -q "^[0-9]+$" } check_define() { diff --git a/gettime.c b/gettime.c index 14462420..8993be16 100644 --- a/gettime.c +++ b/gettime.c @@ -313,7 +313,7 @@ static int calibrate_cpu_clock(void) max_ticks = MAX_CLOCK_SEC * cycles_per_msec * 1000ULL; max_mult = ULLONG_MAX / max_ticks; - dprint(FD_TIME, "\n\nmax_ticks=%llu, __builtin_clzll=%d, " + dprint(FD_TIME, "max_ticks=%llu, __builtin_clzll=%d, " "max_mult=%llu\n", max_ticks, __builtin_clzll(max_ticks), max_mult); @@ -335,7 +335,7 @@ static int calibrate_cpu_clock(void) /* * Find the greatest power of 2 clock ticks that is less than the - * ticks in MAX_CLOCK_SEC_2STAGE + * ticks in MAX_CLOCK_SEC */ max_cycles_shift = max_cycles_mask = 0; tmp = MAX_CLOCK_SEC * 1000ULL * cycles_per_msec;