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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DD7BBC4332F for ; Thu, 14 Dec 2023 11:27:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:From:References:Cc:To: Subject:MIME-Version:Date:Message-ID:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=uEFMIELoJfLL80e80bcjZNlOfbJHHVvExXsD9aQvE80=; b=xMikVr/aQlHKx1 n1OEcBfZrUQr9gpK8U0ummwUNAYbQQTLUzNVuCWTR8V8OnfG84Sy6ro0XwucR8AvviMq2aPWfKqtG wCxA+O6VmtHr2DlTirMC4xYbwh0ac2CCPUedH3Ue5GsLTSl4RDtht9k0uEdhk6XTkpADei0JqDjjH o3GHWO22fFWFC3aPLLvKrAJLeAEoD2K+HOLO5FbUqituyK/hdd868ImSrnpiqSIGyvLxhOmiiphzI pwoNjIlDdoYV6JpytX3xxEL70MQfyXGCY4MVpbw+45WxR7wcd9tf1iz5ohmMNSroZlrZxQupMWVTp VD4cBubLn/HxIgQrlJNw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1rDjrx-0005b6-03; Thu, 14 Dec 2023 11:27:09 +0000 Received: from out30-110.freemail.mail.aliyun.com ([115.124.30.110]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1rDjrt-0005VT-2e for linux-arm-kernel@lists.infradead.org; Thu, 14 Dec 2023 11:27:07 +0000 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R831e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046056;MF=xueshuai@linux.alibaba.com;NM=1;PH=DS;RN=18;SR=0;TI=SMTPD_---0VyUHCGA_1702553216; Received: from 30.240.112.122(mailfrom:xueshuai@linux.alibaba.com fp:SMTPD_---0VyUHCGA_1702553216) by smtp.aliyun-inc.com; Thu, 14 Dec 2023 19:26:58 +0800 Message-ID: Date: Thu, 14 Dec 2023 19:26:55 +0800 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v12 0/5] drivers/perf: add Synopsys DesignWare PCIe PMU driver support Content-Language: en-US To: Will Deacon , yangyicong@huawei.com, Jonathan.Cameron@huawei.com, ilkka@os.amperecomputing.com, robin.murphy@arm.com, kaishen@linux.alibaba.com, helgaas@kernel.org, baolin.wang@linux.alibaba.com Cc: catalin.marinas@arm.com, kernel-team@android.com, chengyou@linux.alibaba.com, linux-kernel@vger.kernel.org, renyu.zj@linux.alibaba.com, zhuo.song@linux.alibaba.com, mark.rutland@arm.com, rdunlap@infradead.org, linux-arm-kernel@lists.infradead.org, linux-pci@vger.kernel.org References: <20231208025652.87192-1-xueshuai@linux.alibaba.com> <170247454282.4025634.10934949931800191482.b4-ty@kernel.org> From: Shuai Xue In-Reply-To: <170247454282.4025634.10934949931800191482.b4-ty@kernel.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20231214_032706_081332_DC77D299 X-CRM114-Status: UNSURE ( 8.45 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 2023/12/14 01:25, Will Deacon wrote: > On Fri, 8 Dec 2023 10:56:47 +0800, Shuai Xue wrote: >> Change Log >> ========== >> change sinces v11: >> - Fix uninitialized symbol 'now' (Per Dan and Will) >> - Pick up Reviewed-and-tested-by tag from Ilkka for Patch 4/5 >> >> change sinces v10: >> - Rename to pci_clear_and_set_config_dword() to retain the "config" >> information and match the other accessors. (Per Bjorn) >> - Align pci_clear_and_set_config_dword() and its call site (Per Bjorn) >> - Polish commit log (Per Bjorn) >> - Simplify dwc_pcie_pmu_time_based_event_enable() with bool value (Per Ilkka) >> - Fix dwc_pcie_register_dev() return value (Per Ilkka) >> - Fix vesc capability discovery by pdev->vendor (Per Ilkka) >> - pick up Acked-by tag from Bjorn for Patch 3/5 >> - pick up Tested-by tag from Ilkka for all patch set >> >> [...] > > Applied to will (for-next/perf), thanks! > > [1/5] docs: perf: Add description for Synopsys DesignWare PCIe PMU driver > https://git.kernel.org/will/c/cae40614cdd6 > [2/5] PCI: Add Alibaba Vendor ID to linux/pci_ids.h > https://git.kernel.org/will/c/ad6534c626fe > [3/5] PCI: Move pci_clear_and_set_dword() helper to PCI header > https://git.kernel.org/will/c/ac16087134b8 > [4/5] drivers/perf: add DesignWare PCIe PMU driver > https://git.kernel.org/will/c/af9597adc2f1 > [5/5] MAINTAINERS: add maintainers for DesignWare PCIe PMU driver > https://git.kernel.org/will/c/f56bb3de66bc > > Cheers, Really a good news for me. Thank you very much:) And thanks to all patient and nice reviewers. Cheers, Shuai _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel