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 291531A70C for ; Fri, 24 Nov 2023 11:03:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="YbClAnKE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CBADEC433C8; Fri, 24 Nov 2023 11:03:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1700823819; bh=mQnh9+CbaX7F9yvVd/BdQa/ypVpUL6I1gEjexTa91Hw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YbClAnKEMtvAztNhxmFQq3k67SAx1o0kdt3yPcvK/HRRx5V+ur4D7TAw17CpEMzaI at+423+KSrxELwUGkgm52qFF2cNEluupE5cup12enSgSEuTLXRdOiK3oYU6aTmzjPi tcmc04EdOo6sC59ErrHKtzgXzB0oEStC48SZzHKI/wlziY4Pq2X9vi8ikOXjptRtIv tqp8gFp2bNngI+Fl8mNSizJ91vCEFUlfx9p7Q3RlpVgXFPoUXW/gG/RDqN1nvIUx+B 7jjuwJU9ju/Rkx9wKQ880CfZg9fRaaMlfPEaUlCYwBYX6CVkF2+MArtXe/0owwd7uF 3GtLwxnxRqt9A== Date: Fri, 24 Nov 2023 11:03:35 +0000 From: Simon Horman To: Jesse Brandeburg Cc: intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org, Julia Lawall , Marcin Szycik Subject: Re: [PATCH iwl-next v1 13/13] ice: field get conversion Message-ID: <20231124110335.GM50352@kernel.org> References: <20231121211921.19834-1-jesse.brandeburg@intel.com> <20231121211921.19834-14-jesse.brandeburg@intel.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231121211921.19834-14-jesse.brandeburg@intel.com> On Tue, Nov 21, 2023 at 01:19:21PM -0800, Jesse Brandeburg wrote: > Refactor the ice driver to use FIELD_GET() for mask and shift reads, > which reduces lines of code and adds clarity of intent. > > This code was generated by the following coccinelle/spatch script and > then manually repaired. > > @get@ > constant shift,mask; > type T; > expression a; > @@ > -(((T)(a) & mask) >> shift) > +FIELD_GET(mask, a) > > and applied via: > spatch --sp-file field_prep.cocci --in-place --dir \ > drivers/net/ethernet/intel/ > > Cc: Julia Lawall > Reviewed-by: Marcin Szycik > Signed-off-by: Jesse Brandeburg Reviewed-by: Simon Horman