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=-4.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS 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 CC835C5519F for ; Thu, 12 Nov 2020 16:55:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5E82921D7F for ; Thu, 12 Nov 2020 16:55:36 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="mQU24Sq+" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728964AbgKLQzf (ORCPT ); Thu, 12 Nov 2020 11:55:35 -0500 Received: from mail.kernel.org ([198.145.29.99]:42356 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728692AbgKLQzf (ORCPT ); Thu, 12 Nov 2020 11:55:35 -0500 Received: from kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com (unknown [163.114.132.4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8D891206FA; Thu, 12 Nov 2020 16:55:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1605200134; bh=k+3SviLSqOkowHpjjuhnCv26uuu/tn/sd6MtqFR5CEI=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=mQU24Sq+0+Kpr68Fy7lO2kn86V4nrgZ57Wp2EELH1UAO2jMrNNGPg4XyKYMj/oTFU xruSXhFndDl0SaFThxpTZ09v/i5yaDZyyD0OMcNtvf5R9jnEGIoAXNzPXteYP4R4bL BK1E0lLb1+42rd7elzGK+5MjFbCjjCE9O0CdrRM4= Date: Thu, 12 Nov 2020 08:55:33 -0800 From: Jakub Kicinski To: Tony Nguyen Cc: davem@davemloft.net, netdev@vger.kernel.org, sassmann@redhat.com Subject: Re: [net 0/4][pull request] Intel Wired LAN Driver Updates 2020-11-10 Message-ID: <20201112085533.0d8c55d8@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com> In-Reply-To: <20201111001955.533210-1-anthony.l.nguyen@intel.com> References: <20201111001955.533210-1-anthony.l.nguyen@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Tue, 10 Nov 2020 16:19:51 -0800 Tony Nguyen wrote: > This series contains updates to i40e and igc drivers and the MAINTAINERS > file. > > Slawomir fixes updating VF MAC addresses to fix various issues related > to reporting and setting of these addresses for i40e. > > Dan Carpenter fixes a possible used before being initialized issue for > i40e. > > Vinicius fixes reporting of netdev stats for igc. > > Tony updates repositories for Intel Ethernet Drivers. Pulled, thanks! Please double check the use of the spin lock in patch 3. Stats are updated in an atomic context when read from /proc, you probably need to convert that spin lock to _bh.