Re: [PATCH] kernel/sys.c: Convert to use the preferred fallthrough macro

From: Christian Brauner
Date: Fri Aug 14 2020 - 06:34:58 EST


On Fri, Aug 14, 2020 at 04:57:18AM -0400, Miaohe Lin wrote:
> Convert the uses of fallthrough comments to fallthrough macro.
>
> Signed-off-by: Miaohe Lin <linmiaohe@xxxxxxxxxx>
> ---

This matches what we have documented in:

Documentation/process/deprecated.rst
Documentation/process/coding-style.rst

I'm going to reference that info in the commit message.

Applied, queueing for post rc1.
Acked-by: Christian Brauner <christian.brauner@xxxxxxxxxx>

> kernel/sys.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/sys.c b/kernel/sys.c
> index ca11af9d815d..ab6c409b1159 100644
> --- a/kernel/sys.c
> +++ b/kernel/sys.c
> @@ -1753,7 +1753,7 @@ void getrusage(struct task_struct *p, int who, struct rusage *r)
>
> if (who == RUSAGE_CHILDREN)
> break;
> - /* fall through */
> + fallthrough;
>
> case RUSAGE_SELF:
> thread_group_cputime_adjusted(p, &tgutime, &tgstime);
> --
> 2.19.1
>