From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 313282135A for ; Thu, 25 Apr 2024 22:18:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714083494; cv=none; b=noWcGSq7KgjHSrJ+3EI8N7GUnOYHprDBz1/LQVFTb2Nfpoxln2ZJG/SYhNLRXjjSkHxJ7Z3pCPPhukTdRbBFLjzFBOUseISXzEos8LpW29yZQpUk7o8NNTHOHeYfMowIOtJp0VS3QqIjSc1JbQg4/Ze7OU8KSDT9MZXTtXbJDgg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714083494; c=relaxed/simple; bh=Dz6RWLpFcn7RlWHOMLCCQ42JSiNuOiRkMPLd1UdxpfY=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=QRv2dWOzCf/wZJrgyk6/0+m8u1qnyWFBUkSbrPFSAcSPgYQWOChOB0A9/D8kN5YkB3yFCSaDaNJ/Zh26DxPbT/IVrMz5hR1gZrkvyjpPYDDpqOAPCD4O8NzeaKS5bxXaM1ZJkn0/IAV5vcbS19I4HTTdFtKELhQAeG2ast8kizU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=t489KzEa; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="t489KzEa" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 34942C113CC; Thu, 25 Apr 2024 22:18:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1714083493; bh=Dz6RWLpFcn7RlWHOMLCCQ42JSiNuOiRkMPLd1UdxpfY=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=t489KzEapf+A+qlRhxFNwbmGPHANlKrHHcdHx0/axrVh9VdDVTYmzjrfD/6WdhqEv aDs9jPtPj+POa+oKQUB+3ja5DLt11+NFng6m6Q2LkvPzY93fmlMKOn/nYPDn6rRNcx fV0f4HTEi63j7m4m56OFIe+iJY0WIsSKfqAOyiwm0RpUKeRUwmfvDsSHxC6VqDDLqf 6++6gUsX1eVBpBX5kQVFxNPVaTtjlRsMk7yqwCVHB8tYoXTqjUBwOvyJVGuopwYjjW iXidfea6eytZwIKrEG2d9PbJTaHljcv87tenhV+gs4TozydQYfb4yrc+QrgZ2qJ377 ADeYX0yfBLoAw== Date: Thu, 25 Apr 2024 15:18:12 -0700 From: Jakub Kicinski To: Doug Berger Cc: "David S. Miller" , Eric Dumazet , Paolo Abeni , Florian Fainelli , bcm-kernel-feedback-list@broadcom.com, netdev@vger.kernel.or, linux-kernel@vger.kernel.org Subject: Re: [PATCH 0/3] net: bcmgenet: protect contended accesses Message-ID: <20240425151812.3a8a31d2@kernel.org> In-Reply-To: <20240425220650.2138801-1-opendmb@gmail.com> References: <20240425220650.2138801-1-opendmb@gmail.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 25 Apr 2024 15:06:47 -0700 Doug Berger wrote: > Some registers may be modified by parallel execution contexts and > require protections to prevent corruption. > > A review of the driver revealed the need for these additional > protections. netdev@vger.kernel.or missing a 'g' at the end, FWIW