From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtprz14.163.net ([106.3.154.247]:61317 "EHLO smtp.tom.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1732016AbeHWSjS (ORCPT ); Thu, 23 Aug 2018 14:39:18 -0400 Received: from antispam2.tom.com (unknown [172.25.16.56]) by freemail02.tom.com (Postfix) with ESMTP id 168B2B00D44 for ; Thu, 23 Aug 2018 22:58:24 +0800 (CST) Received: from antispam2.tom.com (antispam2.tom.com [127.0.0.1]) by antispam2.tom.com (Postfix) with ESMTP id 0203D813A6 for ; Thu, 23 Aug 2018 22:58:24 +0800 (CST) Received: from antispam2.tom.com ([127.0.0.1]) by antispam2.tom.com (antispam2.tom.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uHsJ_WTbtzUU for ; Thu, 23 Aug 2018 22:58:23 +0800 (CST) From: liusong@tom.com To: jlayton@kernel.org, bfields@fieldses.org, viro@zeniv.linux.org.uk Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, liu.song11@zte.com.cn Subject: [PATCH] fcntl: Remove invisible but existing spaces to match the coding style Date: Thu, 23 Aug 2018 22:58:07 +0800 Message-Id: <20180823145807.3613-1-liusong@tom.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: From: Liu Song There are invisible spaces in some blank lines, which are removed to satisfy the coding style. Signed-off-by: Liu Song --- fs/fcntl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/fcntl.c b/fs/fcntl.c index 4137d96534a6..b3254b0d5f9a 100644 --- a/fs/fcntl.c +++ b/fs/fcntl.c @@ -488,7 +488,7 @@ SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd, err = security_file_fcntl(f.file, cmd, arg); if (err) goto out1; - + switch (cmd) { case F_GETLK64: case F_OFD_GETLK: @@ -780,7 +780,7 @@ void send_sigio(struct fown_struct *fown, int fd, int band) struct task_struct *p; enum pid_type type; struct pid *pid; - + read_lock(&fown->lock); type = fown->pid_type; @@ -818,7 +818,7 @@ int send_sigurg(struct fown_struct *fown) enum pid_type type; struct pid *pid; int ret = 0; - + read_lock(&fown->lock); type = fown->pid_type; -- 2.17.1