From patchwork Fri Jul 17 23:37:25 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1331451 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=PT6BqZ6w; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4B7nbg6QQ2z9sPB for ; Sat, 18 Jul 2020 09:37:35 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728596AbgGQXhc (ORCPT ); Fri, 17 Jul 2020 19:37:32 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44090 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726851AbgGQXhc (ORCPT ); Fri, 17 Jul 2020 19:37:32 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 41EEFC0619D2; Fri, 17 Jul 2020 16:37:32 -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:Cc:To:Subject:From:Sender:Reply-To:Content-ID: Content-Description:In-Reply-To:References; bh=Lsov2SASAuhjCO4jqEzip+ptJj6UaMBIGXq3ZYZ7r/g=; b=PT6BqZ6w6lTqw6TorsvKre0VNW ejwXPkvOBxMRZeOIrDhbnqnBm/C8w5kqqMULxWZ7vFs4vjDXUqzchCePkzHwRAAl5f3QMhiFUF2cY T2AJrOjeRWZWV6ohVuGWm2SExrS46b72p3/ED129Uh5bA0CFzSorRPRLVK+N9mW0jxVNR+SJ1eFkE roU0xg4tF1qKLWlTr3Ug7tS0kBJLw/94XbYan+1JdcDVj3Rxk+F3BfS2XuBUcYmNAcgBtnrZGXJpM MGjOGkJSRBISmX15vZ7BA/eBiN8w8ffJiIfsQKqtozQghtO1R8l47Lxye6lNJuXuJuTlS4kXYcL0p urU8iCFg==; Received: from [2601:1c0:6280:3f0::19c2] by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jwZuz-0006ah-0J; Fri, 17 Jul 2020 23:37:29 +0000 From: Randy Dunlap Subject: [PATCH] rhashtable: drop duplicated word in To: LKML , "netdev@vger.kernel.org" Cc: Thomas Graf , Herbert Xu Message-ID: <392beaa8-f240-70b5-b04d-3be910ef68a3@infradead.org> Date: Fri, 17 Jul 2020 16:37:25 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.9.0 MIME-Version: 1.0 Content-Language: en-US Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Randy Dunlap Drop the doubled word "be" in a comment. Signed-off-by: Randy Dunlap Cc: Thomas Graf Cc: Herbert Xu Cc: netdev@vger.kernel.org --- include/linux/rhashtable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200714.orig/include/linux/rhashtable.h +++ linux-next-20200714/include/linux/rhashtable.h @@ -33,7 +33,7 @@ * of two or more hash tables when the rhashtable is being resized. * The end of the chain is marked with a special nulls marks which has * the least significant bit set but otherwise stores the address of - * the hash bucket. This allows us to be be sure we've found the end + * the hash bucket. This allows us to be sure we've found the end * of the right list. * The value stored in the hash bucket has BIT(0) used as a lock bit. * This bit must be atomically set before any changes are made to