From nobody Fri Apr 17 19:44:29 2026 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 02311CCA473 for ; Fri, 22 Jul 2022 19:47:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236549AbiGVTrN (ORCPT ); Fri, 22 Jul 2022 15:47:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46958 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229679AbiGVTrK (ORCPT ); Fri, 22 Jul 2022 15:47:10 -0400 Received: from smtpbg.qq.com (unknown [43.155.67.158]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7D30121E3E; Fri, 22 Jul 2022 12:47:05 -0700 (PDT) X-QQ-mid: bizesmtp80t1658519213tfhl2rzf Received: from harry-jrlc.. ( [125.70.163.183]) by bizesmtp.qq.com (ESMTP) with id ; Sat, 23 Jul 2022 03:46:40 +0800 (CST) X-QQ-SSF: 0100000000200030C000B00A0000020 X-QQ-FEAT: lO87fmWkX3HCErG+gOK8vO8LaZDVgUXcpbAHnB2mjNmhqHTah2biSvUA5ZYOf gMqA6fP56plzoaJVzSoifa3NrxBXpYQcexZP3YoiKTzemJdkE/63tp0Jl7oK7DhKdrOwmPj QS4luxYerZLyLcQsRbb4AUlnO4n6+7/yIMOkwEbQmVdf9AuPquyW1LyOD37a4AMmpBJhIu/ IBrpltBFhXKFrLCgif16lIvkM9hyo1jkT61ztWVyib0wjQuswI66+5B8z8hc8fAG+HRICgK 5WUYBIKHQiwFxX0UgtmXYVsYlAo0dfEj1WxNXgYtWKK4yx02Bf6p6p74Fe9Cs/dvEKF4q9C tFt0O5UsdkMPnr+3+2ucYdk3bOVApqjEGF+J66Y2xpyn6FzAecnhUW47n9Dsg== X-QQ-GoodBg: 0 From: Xin Gao To: jack@suse.cz Cc: amir73il@gmail.com, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Xin Gao Subject: [PATCH] fsnotify: Fix comment typo Date: Sat, 23 Jul 2022 03:46:39 +0800 Message-Id: <20220722194639.18545-1-gaoxin@cdjrlc.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:cdjrlc.com:qybglogicsvr:qybglogicsvr6 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" The double `if' is duplicated in line 104, remove one. Signed-off-by: Xin Gao --- fs/notify/fsnotify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/notify/fsnotify.c b/fs/notify/fsnotify.c index 6eee19d15e8c..a9773167d695 100644 --- a/fs/notify/fsnotify.c +++ b/fs/notify/fsnotify.c @@ -100,7 +100,7 @@ void fsnotify_sb_delete(struct super_block *sb) * Given an inode, first check if we care what happens to our children. I= notify * and dnotify both tell their parents about events. If we care about any= event * on a child we run all of our children and set a dentry flag saying that= the - * parent cares. Thus when an event happens on a child it can quickly tel= l if + * parent cares. Thus when an event happens on a child it can quickly tell * if there is a need to find a parent and send the event to the parent. */ void __fsnotify_update_child_dentry_flags(struct inode *inode) --=20 2.30.2