From patchwork Thu Jul 20 15:51:06 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: pangzizhen001@208suo.com X-Patchwork-Id: 13320717 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 40101EB64DA for ; Thu, 20 Jul 2023 15:51:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233017AbjGTPvQ (ORCPT ); Thu, 20 Jul 2023 11:51:16 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54110 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233006AbjGTPvN (ORCPT ); Thu, 20 Jul 2023 11:51:13 -0400 Received: from mail.208.org (unknown [183.242.55.162]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D9ABB114 for ; Thu, 20 Jul 2023 08:51:11 -0700 (PDT) Received: from mail.208.org (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTP id 4R6HGf2wKdzBRDss for ; Thu, 20 Jul 2023 23:51:06 +0800 (CST) Authentication-Results: mail.208.org (amavisd-new); dkim=pass reason="pass (just generated, assumed good)" header.d=208.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=208.org; h= content-transfer-encoding:content-type:message-id:user-agent :references:in-reply-to:subject:to:from:date:mime-version; s= dkim; t=1689868266; x=1692460267; bh=QHWNe1mqz3NvIUz3H4DBgQVNjFe BHcnxIh6enZ//wnQ=; b=10MJxVoh2/j1mWb66F/BHH0337J6kutgh2mj587GoT4 U12y9QXiX0J/FQHUfK8lySeV3FH7jC/zxpvyZWJIKv4C80aCEpft4GiYCvrKsXsq 5pEq6hC+AElkA6CMPWpSVAuyC4UY+cpj6GNvRlIHXQDBNhs0T4dJnCEV4oda20Zv gzu4kMN/OUju59gHcgXYFTRTstA0660wH9+9r+SU/SknpidxEJCDxK/aBDzJIEmW bOJMRjZRfP07J8sFOVabuJPIrhk1BD85F1NIuxbhJENSYV6DSUaTksE85o9PvlkF KEIO8q8NGQUqg+q6p5AGwacidqNL62BBFhRQzcdO3kQ== X-Virus-Scanned: amavisd-new at mail.208.org Received: from mail.208.org ([127.0.0.1]) by mail.208.org (mail.208.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id GTptrQRUE3dE for ; Thu, 20 Jul 2023 23:51:06 +0800 (CST) Received: from localhost (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTPSA id 4R6HGf14BwzBHXgs; Thu, 20 Jul 2023 23:51:06 +0800 (CST) MIME-Version: 1.0 Date: Thu, 20 Jul 2023 23:51:06 +0800 From: pangzizhen001@208suo.com To: djwong@kernel.org Cc: linux-xfs@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] fs/xfs: Fix typos in comments In-Reply-To: <20230720154942.56848-1-wangjianli@cdjrlc.com> References: <20230720154942.56848-1-wangjianli@cdjrlc.com> User-Agent: Roundcube Webmail Message-ID: X-Sender: pangzizhen001@208suo.com Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org Delete duplicate word "the" Signed-off-by: Zizhen Pang Reviewed-by: Darrick J. Wong --- fs/xfs/xfs_aops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) */ diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c index 451942fb38ec..66b311ccc4f9 100644 --- a/fs/xfs/xfs_aops.c +++ b/fs/xfs/xfs_aops.c @@ -478,7 +478,7 @@ xfs_discard_folio( folio, ip->i_ino, pos); /* - * The end of the punch range is always the offset of the the first + * The end of the punch range is always the offset of the first * byte of the next folio. Hence the end offset is only dependent on the * folio itself and not the start offset that is passed in.