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 X-Spam-Level: X-Spam-Status: No, score=-8.3 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1FF0CC433E1 for ; Sat, 18 Jul 2020 02:54:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E36702070E for ; Sat, 18 Jul 2020 02:54:19 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="SM4/IitU" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728127AbgGRCyT (ORCPT ); Fri, 17 Jul 2020 22:54:19 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45906 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726262AbgGRCyT (ORCPT ); Fri, 17 Jul 2020 22:54:19 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0669CC0619D2; Fri, 17 Jul 2020 19:54:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Date:Message-ID:To:Subject:From:Sender:Reply-To:Cc:Content-ID: Content-Description:In-Reply-To:References; bh=Fuh8EMBNZiN9cOq2YFJghBp1zuZaExWQbdGYTJj/bUc=; b=SM4/IitUYHHfhcuVLGS/u0AQY7 9VWeLlkWQvNPdROl/xckHi3Ju3wEor7kYppMZxsJO3awvh7nNHYkjFJ7HHQSwyOSgx/0r4V0eHwTC BU/Agmp9CYB68EcConetRZ9g4Nmg7jufzrGZ75cwfsObJH/DFe2NLQx6XGnt7zXtIP/5xFnGua7cQ HTmvEefC14FOlQ0Raut8c59kAJemYrgoTvJ9TaWWsU8VNSuZ5+YEWwOFWwgpBg76poXogrvrhWO16 hFKYpc/2xtTJzgPq3BHWhzgkL3bLsvk2/th9CchXFkHO2KMYf4x98Y7juThdA3Mb/pMoct5XmH4vI 1tTJbbYw==; Received: from [2601:1c0:6280:3f0::19c2] by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jwczQ-0006ml-FD; Sat, 18 Jul 2020 02:54:16 +0000 From: Randy Dunlap Subject: [PATCH] locking: fcntl.h: drop duplicated word in a comment To: LKML , Linux FS Devel , "J. Bruce Fields" Message-ID: <13c2a925-8522-64e2-4d30-97395901e296@infradead.org> Date: Fri, 17 Jul 2020 19:54:13 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.9.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org From: Randy Dunlap Drop the doubled word "the" in a comment. Signed-off-by: Randy Dunlap Cc: Jeff Layton Cc: "J. Bruce Fields" Cc: linux-fsdevel@vger.kernel.org --- include/uapi/asm-generic/fcntl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200714.orig/include/uapi/asm-generic/fcntl.h +++ linux-next-20200714/include/uapi/asm-generic/fcntl.h @@ -143,7 +143,7 @@ * record locks, but are "owned" by the open file description, not the * process. This means that they are inherited across fork() like BSD (flock) * locks, and they are only released automatically when the last reference to - * the the open file against which they were acquired is put. + * the open file against which they were acquired is put. */ #define F_OFD_GETLK 36 #define F_OFD_SETLK 37