diff mbox series

signalfd: Convert to use the preferred fallthrough macro

Message ID 20200815090405.18672-1-linmiaohe@huawei.com (mailing list archive)
State New, archived
Headers show
Series signalfd: Convert to use the preferred fallthrough macro | expand

Commit Message

Miaohe Lin Aug. 15, 2020, 9:04 a.m. UTC
Convert the uses of fallthrough comments to fallthrough macro.

Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
---
 fs/signalfd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/fs/signalfd.c b/fs/signalfd.c
index 5b78719be445..456046e15873 100644
--- a/fs/signalfd.c
+++ b/fs/signalfd.c
@@ -176,7 +176,7 @@  static ssize_t signalfd_dequeue(struct signalfd_ctx *ctx, kernel_siginfo_t *info
 		if (!nonblock)
 			break;
 		ret = -EAGAIN;
-		/* fall through */
+		fallthrough;
 	default:
 		spin_unlock_irq(&current->sighand->siglock);
 		return ret;