summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2020-08-28 09:14:38 -0600
committerJens Axboe <axboe@kernel.dk>2020-08-28 09:14:38 -0600
commitdb83b0abd16bbd6b8f589a993e6f70d9812be6e3 (patch)
tree002dea71b408e7018993e4b4ef097386c0615ec2
parent065b0606366fe6dad1768295957d9cd56a098a70 (diff)
downloadfio-db83b0abd16bbd6b8f589a993e6f70d9812be6e3.tar.gz
fio-db83b0abd16bbd6b8f589a993e6f70d9812be6e3.tar.bz2
Use fallthrough attribute
Fio currently triggers a bunch of fall through errors on clang 10, since it doesn't work with the /* fall through */ method of indicating fallthrough. Normalize this a bit and use the correct compiler attribute for this. Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r--compiler/compiler.h10
-rw-r--r--crc/murmur3.c5
-rw-r--r--hash.h24
-rw-r--r--init.c2
-rw-r--r--io_u.c5
-rw-r--r--lib/lfsr.c32
-rw-r--r--parse.c4
-rw-r--r--t/lfsr-test.c7
8 files changed, 54 insertions, 35 deletions
diff --git a/compiler/compiler.h b/compiler/compiler.h
index 8a784b92..8988236c 100644
--- a/compiler/compiler.h
+++ b/compiler/compiler.h
@@ -66,4 +66,14 @@
#define FIELD_SIZE(s, f) (sizeof(((__typeof__(s))0)->f))
#endif
+#ifndef __has_attribute
+#define __GCC4_has_attribute___fallthrough__ 0
+#endif
+
+#if __has_attribute(__fallthrough__)
+#define fallthrough __attribute__((__fallthrough__))
+#else
+#define fallthrough do {} while (0) /* fallthrough */
+#endif
+
#endif
diff --git a/crc/murmur3.c b/crc/murmur3.c
index f4f2f2c6..ba408a9e 100644
--- a/crc/murmur3.c
+++ b/crc/murmur3.c
@@ -1,4 +1,5 @@
#include "murmur3.h"
+#include "../compiler/compiler.h"
static inline uint32_t rotl32(uint32_t x, int8_t r)
{
@@ -29,10 +30,10 @@ static uint32_t murmur3_tail(const uint8_t *data, const int nblocks,
switch (len & 3) {
case 3:
k1 ^= tail[2] << 16;
- /* fall through */
+ fallthrough;
case 2:
k1 ^= tail[1] << 8;
- /* fall through */
+ fallthrough;
case 1:
k1 ^= tail[0];
k1 *= c1;
diff --git a/hash.h b/hash.h
index 66dd3d69..2c04bc29 100644
--- a/hash.h
+++ b/hash.h
@@ -3,6 +3,7 @@
#include <inttypes.h>
#include "arch/arch.h"
+#include "compiler/compiler.h"
/* Fast hashing routine for a long.
(C) 2002 William Lee Irwin III, IBM */
@@ -141,19 +142,20 @@ static inline uint32_t jhash(const void *key, uint32_t length, uint32_t initval)
/* Last block: affect all 32 bits of (c) */
/* All the case statements fall through */
switch (length) {
- case 12: c += (uint32_t) k[11] << 24; /* fall through */
- case 11: c += (uint32_t) k[10] << 16; /* fall through */
- case 10: c += (uint32_t) k[9] << 8; /* fall through */
- case 9: c += k[8]; /* fall through */
- case 8: b += (uint32_t) k[7] << 24; /* fall through */
- case 7: b += (uint32_t) k[6] << 16; /* fall through */
- case 6: b += (uint32_t) k[5] << 8; /* fall through */
- case 5: b += k[4]; /* fall through */
- case 4: a += (uint32_t) k[3] << 24; /* fall through */
- case 3: a += (uint32_t) k[2] << 16; /* fall through */
- case 2: a += (uint32_t) k[1] << 8; /* fall through */
+ case 12: c += (uint32_t) k[11] << 24; fallthrough;
+ case 11: c += (uint32_t) k[10] << 16; fallthrough;
+ case 10: c += (uint32_t) k[9] << 8; fallthrough;
+ case 9: c += k[8]; fallthrough;
+ case 8: b += (uint32_t) k[7] << 24; fallthrough;
+ case 7: b += (uint32_t) k[6] << 16; fallthrough;
+ case 6: b += (uint32_t) k[5] << 8; fallthrough;
+ case 5: b += k[4]; fallthrough;
+ case 4: a += (uint32_t) k[3] << 24; fallthrough;
+ case 3: a += (uint32_t) k[2] << 16; fallthrough;
+ case 2: a += (uint32_t) k[1] << 8; fallthrough;
case 1: a += k[0];
__jhash_final(a, b, c);
+ fallthrough;
case 0: /* Nothing left to add */
break;
}
diff --git a/init.c b/init.c
index 9dd5c9b8..3cd0238b 100644
--- a/init.c
+++ b/init.c
@@ -2895,7 +2895,7 @@ int parse_cmd_line(int argc, char *argv[], int client_type)
log_err("%s: unrecognized option '%s'\n", argv[0],
argv[optind - 1]);
show_closest_option(argv[optind - 1]);
- /* fall through */
+ fallthrough;
default:
do_exit++;
exit_val = 1;
diff --git a/io_u.c b/io_u.c
index 2ef5acec..155d0a32 100644
--- a/io_u.c
+++ b/io_u.c
@@ -993,6 +993,7 @@ static void __io_u_mark_map(uint64_t *map, unsigned int nr)
break;
case 1 ... 4:
idx = 1;
+ fallthrough;
case 0:
break;
}
@@ -1034,6 +1035,7 @@ void io_u_mark_depth(struct thread_data *td, unsigned int nr)
break;
case 2 ... 3:
idx = 1;
+ fallthrough;
case 1:
break;
}
@@ -1074,6 +1076,7 @@ static void io_u_mark_lat_nsec(struct thread_data *td, unsigned long long nsec)
break;
case 2 ... 3:
idx = 1;
+ fallthrough;
case 0 ... 1:
break;
}
@@ -1115,6 +1118,7 @@ static void io_u_mark_lat_usec(struct thread_data *td, unsigned long long usec)
break;
case 2 ... 3:
idx = 1;
+ fallthrough;
case 0 ... 1:
break;
}
@@ -1162,6 +1166,7 @@ static void io_u_mark_lat_msec(struct thread_data *td, unsigned long long msec)
break;
case 2 ... 3:
idx = 1;
+ fallthrough;
case 0 ... 1:
break;
}
diff --git a/lib/lfsr.c b/lib/lfsr.c
index 1ef6ebbf..a32e850a 100644
--- a/lib/lfsr.c
+++ b/lib/lfsr.c
@@ -88,37 +88,37 @@ static inline void __lfsr_next(struct fio_lfsr *fl, unsigned int spin)
*/
switch (spin) {
case 15: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 14: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 13: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 12: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 11: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 10: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 9: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 8: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 7: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 6: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 5: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 4: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 3: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 2: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 1: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
case 0: __LFSR_NEXT(fl, fl->last_val);
- /* fall through */
+ fallthrough;
default: break;
}
}
diff --git a/parse.c b/parse.c
index 04b2e198..f4cefcf6 100644
--- a/parse.c
+++ b/parse.c
@@ -596,7 +596,7 @@ static int __handle_option(const struct fio_option *o, const char *ptr,
}
case FIO_OPT_STR_VAL_TIME:
is_time = 1;
- /* fall through */
+ fallthrough;
case FIO_OPT_ULL:
case FIO_OPT_INT:
case FIO_OPT_STR_VAL: {
@@ -941,7 +941,7 @@ static int __handle_option(const struct fio_option *o, const char *ptr,
}
case FIO_OPT_DEPRECATED:
ret = 1;
- /* fall through */
+ fallthrough;
case FIO_OPT_SOFT_DEPRECATED:
log_info("Option %s is deprecated\n", o->name);
break;
diff --git a/t/lfsr-test.c b/t/lfsr-test.c
index ea8c8ddb..279e07f0 100644
--- a/t/lfsr-test.c
+++ b/t/lfsr-test.c
@@ -6,6 +6,7 @@
#include "../lib/lfsr.h"
#include "../gettime.h"
#include "../fio_time.h"
+#include "../compiler/compiler.h"
static void usage(void)
{
@@ -40,11 +41,11 @@ int main(int argc, char *argv[])
switch (argc) {
case 5: if (strncmp(argv[4], "verify", 7) == 0)
verify = 1;
- /* fall through */
+ fallthrough;
case 4: spin = atoi(argv[3]);
- /* fall through */
+ fallthrough;
case 3: seed = atol(argv[2]);
- /* fall through */
+ fallthrough;
case 2: numbers = strtol(argv[1], NULL, 16);
break;
default: usage();