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=-3.9 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no 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 E5C7BC43465 for ; Mon, 21 Sep 2020 15:06:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9AB4D2075E for ; Mon, 21 Sep 2020 15:06:41 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="pTx1IOlI" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727397AbgIUPGk (ORCPT ); Mon, 21 Sep 2020 11:06:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47248 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726688AbgIUPGk (ORCPT ); Mon, 21 Sep 2020 11:06:40 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C667FC061755 for ; Mon, 21 Sep 2020 08:06:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=KKSOebSqFBQq+k0gm/kiYdMJdTo/44slQm7w5kX1m+Q=; b=pTx1IOlI+CsJ0c/Zhiy8r+N+om tKXNWba4lvApQb5hocKzZFp0PXbZ1e9dnH+0JswfYYOJ7sTvfjiBuhpC3K0Xu5qH0xLC8rPhJxivf +OxF6yHAgirK99LEu6ZZvGG1sMdzFy5cjrhSgVR+TIPEd1R1jWuL6gWdN0T36WrzMdPa8c9a1lbg5 FElG4i4KGmnN6sir2RSVCXATiE+WBr8oflN9lhcwjyra6FHd7YoCWc+PnS96zClt0NiP8iZtjGBpV jdJvBw0YDAfxUWtlxJVp0pQ31DqdGg8et452N8axYuWippxkg4jqXHKqRkstzKx7/fgLTFm9xMpnM ZImGjjMg==; Received: from j217100.upc-j.chello.nl ([24.132.217.100] helo=noisy.programming.kicks-ass.net) by casper.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1kKNOk-0002lZ-9s; Mon, 21 Sep 2020 15:06:34 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id DC1D7301478; Mon, 21 Sep 2020 17:06:31 +0200 (CEST) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id C8502202075F1; Mon, 21 Sep 2020 17:06:31 +0200 (CEST) Date: Mon, 21 Sep 2020 17:06:31 +0200 From: peterz@infradead.org To: kan.liang@linux.intel.com Cc: mingo@redhat.com, linux-kernel@vger.kernel.org, bhelgaas@google.com, eranian@google.com, ak@linux.intel.com Subject: Re: [RESEND PATCH V2 0/6] Support PCIe3 uncore PMU on Snow Ridge Message-ID: <20200921150631.GS1362448@hirez.programming.kicks-ass.net> References: <1600094060-82746-1-git-send-email-kan.liang@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1600094060-82746-1-git-send-email-kan.liang@linux.intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 14, 2020 at 07:34:14AM -0700, kan.liang@linux.intel.com wrote: > From: Kan Liang > > Changes since V1: > - Drop the platform device solution > - A new uncore PCI sub driver solution is introduced which searches > the PCIe Root Port device via pci_get_device() and id table. > Register a PCI bus notifier for the remove notification. Once the > device is removed, the uncore driver can be notified to unregister > the corresponding PMU. > - Modify the parameters of uncore_pci_pmu_unregister() function. Bjorn, you hated on the last version of this thing, are you OK with this one?