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=-11.7 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable 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 83471C432BE for ; Fri, 13 Aug 2021 18:14:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 55F98610A4 for ; Fri, 13 Aug 2021 18:14:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232772AbhHMSOh (ORCPT ); Fri, 13 Aug 2021 14:14:37 -0400 Received: from mail.kernel.org ([198.145.29.99]:46138 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229612AbhHMSOf (ORCPT ); Fri, 13 Aug 2021 14:14:35 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id DEE70610CC; Fri, 13 Aug 2021 18:14:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1628878448; bh=pYf2UEh5Nm0666CPs41LWTiFp2UMvV32qks8VGI+LTo=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=C4sEO6yfVYGNZvCqvyTXxh4VRObBcvX8XDPKAdbqjYDHZVhbdhwojyD4gSU31cEY+ ZaP3+G1EMAymx+WiaLLu069BfSlzfjFBIlAMbMRqEfdk7wK8Zjs+DP4Q/pe9umBOha qa1TYpete7IIkAgnBMfOVB6STmwXjC2uPS4m/rMVWyLHz0lcjDMWevFwydupPKgv4o SiVVV0m1XFO01c3jeJKtLteWmuEiv7wB7MH3KOJ7eq8/LFSMOEUvxFjfoCHNAPGE97 FY91HmJlha07OFi77n0EyC3h/3ygPqIieQYTY3p/oV7Owi3v7+E0zvd3soKMfGGzYV Z5WssmdTkDX4Q== Date: Fri, 13 Aug 2021 11:14:07 -0700 From: Jakub Kicinski To: Andy Shevchenko Cc: Jonathan Lemon , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Richard Cochran Subject: Re: [PATCH v1 net-next 1/3] ptp_ocp: Switch to use module_pci_driver() macro Message-ID: <20210813111407.0c2288f1@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com> In-Reply-To: <20210813122737.45860-1-andriy.shevchenko@linux.intel.com> References: <20210813122737.45860-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 13 Aug 2021 15:27:35 +0300 Andy Shevchenko wrote: > Eliminate some boilerplate code by using module_pci_driver() instead of > init/exit, and, if needed, moving the salient bits from init into probe. > > Signed-off-by: Andy Shevchenko Jonathan has a series in flight which is fixing some of the same issues: https://patchwork.kernel.org/project/netdevbpf/list/?series=530079&state=* Please hold off for a day or two so it can get merged, and if you don't mind double check at that point which of your patches are still needed. According to patchwork your series does not apply to net-next as of last night so it'll need a respin anyway. Thanks!