treewide: Use fallthrough pseudo-keyword
Replace the existing /* fall through */ comments and its variants with the new pseudo-keyword macro fallthrough[1]. Also, remove unnecessary fall-through markings when it is the case. [1] https://www.kernel.org/doc/html/v5.7/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
This commit is contained in:
@@ -59,7 +59,7 @@ static bool rdma_dim_decision(struct dim_stats *curr_stats, struct dim *dim)
|
||||
break;
|
||||
case DIM_STATS_WORSE:
|
||||
dim_turn(dim);
|
||||
/* fall through */
|
||||
fallthrough;
|
||||
case DIM_STATS_BETTER:
|
||||
step_res = rdma_dim_step(dim);
|
||||
if (step_res == DIM_ON_EDGE)
|
||||
@@ -94,7 +94,7 @@ void rdma_dim(struct dim *dim, u64 completions)
|
||||
schedule_work(&dim->work);
|
||||
break;
|
||||
}
|
||||
/* fall through */
|
||||
fallthrough;
|
||||
case DIM_START_MEASURE:
|
||||
dim->state = DIM_MEASURE_IN_PROGRESS;
|
||||
dim_update_sample_with_comps(curr_sample->event_ctr, 0, 0,
|
||||
|
Reference in New Issue
Block a user