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=-20.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=ham 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 6FF02C433DB for ; Fri, 12 Feb 2021 13:03:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 34FF364DF0 for ; Fri, 12 Feb 2021 13:03:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231586AbhBLND3 (ORCPT ); Fri, 12 Feb 2021 08:03:29 -0500 Received: from Galois.linutronix.de ([193.142.43.55]:45848 "EHLO galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231781AbhBLMlW (ORCPT ); Fri, 12 Feb 2021 07:41:22 -0500 Date: Fri, 12 Feb 2021 12:37:24 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1613133444; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=CDQ0VQsFFu3XSMncu/md/n+h77WeDn/dkiuiQeq3ROg=; b=rtw/rw08NbRLAnXrS3bjoK8SRG54EckCy2V89VO3mz6bAoraeGhVy03p8IemagQF+w6BXY gEpUAbIYb4N96WXCyilz3ctPdZORDiBDil6P0T9z02SC+uppns+c2UWGFpxO6Auzf1FHiC fWjBS3ah9vq84sCzteRHJzbB0E9OvdcKRKXK9IwtB9ugjuCFG51PbU3WK2irCmeIPORxTS tWhrCgn+p3xwm6+1SMjDO30cL1MqmHVap2hUVBEGv8gGwOrt0vASnO4xvPXKUXYPfL+Q67 MnEzWB7lg/3Lw0MxhWiiheZZWe/216m+sAl4rVM+73ZS5vxwUaUjFH5Dh76JtA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1613133444; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=CDQ0VQsFFu3XSMncu/md/n+h77WeDn/dkiuiQeq3ROg=; b=dcaCck9e2/Ggf5q6+Aej/NfHdKcPF2W0QqoHXclWJuhFc2vZCNnlW+YkCddIl29aEqyNu3 uaaDw/+QIEbM3NAw== From: "tip-bot2 for Wang Qing" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: core/rcu] locking: Remove duplicate include of percpu-rwsem.h Cc: Wang Qing , "Paul E. McKenney" , x86@kernel.org, linux-kernel@vger.kernel.org MIME-Version: 1.0 Message-ID: <161313344425.23325.10005591129809470247.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the core/rcu branch of tip: Commit-ID: c5586e32dfe258925c5dbb599bea3eadf34e79c1 Gitweb: https://git.kernel.org/tip/c5586e32dfe258925c5dbb599bea3eadf34e79c1 Author: Wang Qing AuthorDate: Sat, 07 Nov 2020 16:24:03 +08:00 Committer: Paul E. McKenney CommitterDate: Mon, 04 Jan 2021 15:54:49 -08:00 locking: Remove duplicate include of percpu-rwsem.h This commit removes an unnecessary #include. Signed-off-by: Wang Qing Signed-off-by: Paul E. McKenney --- kernel/locking/locktorture.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/locking/locktorture.c b/kernel/locking/locktorture.c index 62d215b..af99e9c 100644 --- a/kernel/locking/locktorture.c +++ b/kernel/locking/locktorture.c @@ -27,7 +27,6 @@ #include #include #include -#include #include MODULE_LICENSE("GPL");