Unverified Commit bda4c60d authored by Miaohe Lin's avatar Miaohe Lin Committed by Christian Brauner
Browse files

sys: Convert to the new fallthrough notation



Switch from using the /* fall through */ comment style notation to the new,
preferred notation as outlined in our docs.

Signed-off-by: default avatarMiaohe Lin <linmiaohe@huawei.com>
Acked-by: default avatarChristian Brauner <christian.brauner@ubuntu.com>
[christian.brauner@ubuntu.com: rewrite commit message]
Link: https://lore.kernel.org/r/20200814085718.40326-1-linmiaohe@huawei.com


Signed-off-by: default avatarChristian Brauner <christian.brauner@ubuntu.com>
parent 76df441a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);