Update existing fallthrough comments for GCC 7

The stricter warning levels (-Wimplicit-fallthrough=4) require all-caps
FALLTHROUGH, so update the existing comments to match.

Change-Id: I5f8608101cad31d8ea8e84d48604397f98400e87
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-on: https://review.gerrithub.io/363491
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
Daniel Verkamp 2017-06-01 23:32:45 -07:00
parent aab3b1def3
commit a0cb1377f6
3 changed files with 3 additions and 3 deletions

View File

@ -584,7 +584,7 @@ timeout_cb(void *cb_arg, struct spdk_nvme_ctrlr *ctrlr,
SPDK_ERRLOG("Unable to send abort. Resetting.\n"); SPDK_ERRLOG("Unable to send abort. Resetting.\n");
} }
/* Fallthrough */ /* FALLTHROUGH */
case TIMEOUT_ACTION_RESET: case TIMEOUT_ACTION_RESET:
rc = spdk_nvme_ctrlr_reset(ctrlr); rc = spdk_nvme_ctrlr_reset(ctrlr);
if (rc) { if (rc) {

View File

@ -441,7 +441,7 @@ spdk_reactor_start(struct spdk_reactor *reactor)
switch (rte_eal_get_lcore_state(reactor->lcore)) { switch (rte_eal_get_lcore_state(reactor->lcore)) {
case FINISHED: case FINISHED:
rte_eal_wait_lcore(reactor->lcore); rte_eal_wait_lcore(reactor->lcore);
/* drop through */ /* FALLTHROUGH */
case WAIT: case WAIT:
rte_eal_remote_launch(_spdk_reactor_run, (void *)reactor, reactor->lcore); rte_eal_remote_launch(_spdk_reactor_run, (void *)reactor, reactor->lcore);
break; break;

View File

@ -184,7 +184,7 @@ retry:
"Verify IP address in config file " "Verify IP address in config file "
"and make sure setup script is " "and make sure setup script is "
"run before starting spdk app.\n", ip); "run before starting spdk app.\n", ip);
/* fallthrough */ /* FALLTHROUGH */
default: default:
/* try next family */ /* try next family */
close(sock); close(sock);