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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 82F46ECAAD3 for ; Thu, 1 Sep 2022 08:14:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234210AbiIAINl (ORCPT ); Thu, 1 Sep 2022 04:13:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45630 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233979AbiIAIM5 (ORCPT ); Thu, 1 Sep 2022 04:12:57 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AA98812C3C3; Thu, 1 Sep 2022 01:12:54 -0700 (PDT) Date: Thu, 01 Sep 2022 08:12:51 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1662019972; 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: in-reply-to:in-reply-to:references:references; bh=6MhfucQt32O86WFml9HVixLtjpA8ponwZjfwi+mNDR8=; b=sZ7i68Ap6cALMhZlFLqiWEi+J6fy3pzr9ZznWTU3e1YBL3JOQO1lsSwXIEDsGQ42PRa8ky N0bkAIH9YZMzw26jbtTWPiwqxNfgagWaaj/v11xzGw7eFL7LvVfuba2TsC2pYRK1m8dcvu PiNZMlhZXQAspJ9AkCYhw7tbbwJ1leVxFNmCGcTzqPS98jQAv8ofHIUuWcTsE1rffIIau3 5WqdhWAnTgmANm9pEvXGo9HAo+crsYqTFvWZ2Tl1CQxovTS4HMMSispj7PSXIdR02cfeyB CR+G9yhEr3kR5wk8nclenOjKe5xz1giR+UqUaGn7T3TKIHdRWHMf1FHRy1sd8A== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1662019972; 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: in-reply-to:in-reply-to:references:references; bh=6MhfucQt32O86WFml9HVixLtjpA8ponwZjfwi+mNDR8=; b=iweAxtZG+UD5z0d+l0QZK1PHd298Jn7+CTybFBrtSwNvXbADx8ohkw7Cp9LKdQfjczFwYA 6cAwkixpL+ncWuCQ== From: "tip-bot2 for Marco Elver" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: perf/core] perf/hw_breakpoint: Clean up headers Cc: Marco Elver , "Peter Zijlstra (Intel)" , Dmitry Vyukov , Ian Rogers , x86@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <20220829124719.675715-4-elver@google.com> References: <20220829124719.675715-4-elver@google.com> MIME-Version: 1.0 Message-ID: <166201997136.401.3034458301083102391.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 perf/core branch of tip: Commit-ID: 089cdcb0cd1c25343fa56d3eabbe878df31a7c0e Gitweb: https://git.kernel.org/tip/089cdcb0cd1c25343fa56d3eabbe878df31a7c0e Author: Marco Elver AuthorDate: Mon, 29 Aug 2022 14:47:08 +02:00 Committer: Peter Zijlstra CommitterDate: Tue, 30 Aug 2022 10:56:21 +02:00 perf/hw_breakpoint: Clean up headers Clean up headers: - Remove unused - Remove unused - Remove unused - Remove unused - Add for EXPORT_SYMBOL_GPL(). - Add for mutex. - Sort alphabetically. - Move to top to test it compiles on its own. Signed-off-by: Marco Elver Signed-off-by: Peter Zijlstra (Intel) Acked-by: Dmitry Vyukov Acked-by: Ian Rogers Link: https://lore.kernel.org/r/20220829124719.675715-4-elver@google.com --- kernel/events/hw_breakpoint.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/kernel/events/hw_breakpoint.c b/kernel/events/hw_breakpoint.c index fd5cd1f..6076c63 100644 --- a/kernel/events/hw_breakpoint.c +++ b/kernel/events/hw_breakpoint.c @@ -17,23 +17,22 @@ * This file contains the arch-independent routines. */ +#include + +#include +#include +#include +#include #include -#include -#include -#include #include #include -#include +#include +#include +#include #include #include -#include #include -#include -#include -#include -#include -#include /* * Constraints data */