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

signal: 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/20200814083932.4975-1-linmiaohe@huawei.com


Signed-off-by: default avatarChristian Brauner <christian.brauner@ubuntu.com>
parent 28c41efd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -851,7 +851,7 @@ static int check_kill_permission(int sig, struct kernel_siginfo *info,
			 */
			if (!sid || sid == task_session(current))
				break;
			/* fall through */
			fallthrough;
		default:
			return -EPERM;
		}