From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0AAC5C433F5 for ; Wed, 10 Nov 2021 06:29:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D63EF611C9 for ; Wed, 10 Nov 2021 06:29:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229900AbhKJGcN (ORCPT ); Wed, 10 Nov 2021 01:32:13 -0500 Received: from out30-43.freemail.mail.aliyun.com ([115.124.30.43]:45772 "EHLO out30-43.freemail.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229765AbhKJGcM (ORCPT ); Wed, 10 Nov 2021 01:32:12 -0500 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R221e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01e04357;MF=guwen@linux.alibaba.com;NM=1;PH=DS;RN=9;SR=0;TI=SMTPD_---0Uvrwkfz_1636525756; Received: from e02h04404.eu6sqa(mailfrom:guwen@linux.alibaba.com fp:SMTPD_---0Uvrwkfz_1636525756) by smtp.aliyun-inc.com(127.0.0.1); Wed, 10 Nov 2021 14:29:24 +0800 From: Wen Gu To: viro@zeniv.linux.org.uk, jlayton@kernel.org, bfields@fieldses.org Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, dust.li@linux.alibaba.com, tonylu@linux.alibaba.com, xuanzhuo@linux.alibaba.com, guwen@linux.alibaba.com Subject: [PATCH] fasync: Use tabs instead of spaces in code indent Date: Wed, 10 Nov 2021 14:29:16 +0800 Message-Id: <1636525756-68970-1-git-send-email-guwen@linux.alibaba.com> X-Mailer: git-send-email 1.8.3.1 Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org When I investigated about fasync_list in SMC network subsystem, I happened to find that here uses spaces instead of tabs in code indent and fix this by the way. Fixes: f7347ce4ee7c ("fasync: re-organize fasync entry insertion to allow it under a spinlock") Signed-off-by: Wen Gu Reviewed-by: Tony Lu --- fs/fcntl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/fcntl.c b/fs/fcntl.c index 9c6c6a3..36ba188 100644 --- a/fs/fcntl.c +++ b/fs/fcntl.c @@ -927,7 +927,7 @@ void fasync_free(struct fasync_struct *new) */ struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, struct fasync_struct *new) { - struct fasync_struct *fa, **fp; + struct fasync_struct *fa, **fp; spin_lock(&filp->f_lock); spin_lock(&fasync_lock); -- 1.8.3.1