diff options
author | Kaleb S. KEITHLEY <kkeithle@redhat.com> | 2017-09-14 13:33:09 -0400 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2018-07-23 03:01:10 +0000 |
commit | fd8f712f31227ebfc3ecca63a7a3a5c3f15727d9 (patch) | |
tree | 85d9640f15dac663c0aac2fbe532ecd1962bfd39 /xlators/performance | |
parent | 621138ce763eda8270d0a4f6d7209fd50ada8787 (diff) |
core (named threads): flood of -Wformat-truncation warnings with gcc-7.1
Starting in Fedora 26 which has gcc-7.1.x, -Wformat-trunction is enabled
with -Wformat, resulting in a flood of new warnings. This many warnings
is a concern because it makes it hard(er) to see other warnings that
should be addressed.
An example is at
https://kojipkgs.fedoraproject.org//packages/glusterfs/3.12.0/1.fc28/data/logs/x86_64/build.log
For more info see https://review.gluster.org/#/c/18267/
I can't find much (or good) documentation on the heuristics the
compiler uses for this warning. In the case of printing integer types
it appears it looks at the available space in the destination and the
range of values for the variable and/or its type.
To address the specific question about why 0x3ff versus 0xfff to mask
the value, either would suffice to hint to the compiler that the
printed value will fit in three characters. But the loop is from
0...1023 (or 0...0x3ff if you prefer) so I chose that as a more
"accurate" mask to use as it exactly matches the range of values of
the loop.
Fixes: bz#1492847
Change-Id: I6e309ba42159841131d8241bfc0566ef09e00aa9
Diffstat (limited to 'xlators/performance')
-rw-r--r-- | xlators/performance/io-threads/src/io-threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/performance/io-threads/src/io-threads.c b/xlators/performance/io-threads/src/io-threads.c index 49a515712f5..832291d3a6d 100644 --- a/xlators/performance/io-threads/src/io-threads.c +++ b/xlators/performance/io-threads/src/io-threads.c @@ -835,7 +835,7 @@ __iot_workers_scale (iot_conf_t *conf) diff --; snprintf (thread_name, sizeof(thread_name), - "%s%d", "iotwr", conf->curr_count); + "iotwr%03hx", (conf->curr_count & 0x3ff)); ret = gf_thread_create (&thread, &conf->w_attr, iot_worker, conf, thread_name); if (ret == 0) { |