From: Herbert Xu Subject: Re: [RESEND PATCH v4 04/14] crypto: add a new driver for Marvell's CESA Date: Mon, 15 Jun 2015 17:37:54 +0800 Message-ID: <20150615093754.GA31948@gondor.apana.org.au> References: <1434093366-14681-1-git-send-email-boris.brezillon@free-electrons.com> <1434093366-14681-5-git-send-email-boris.brezillon@free-electrons.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "David S. Miller" , linux-crypto@vger.kernel.org, Arnaud Ebalard , Tawfik Bayouk , Lior Amsalem , Nadav Haklai , Eran Ben-Avi , Thomas Petazzoni , Gregory CLEMENT , Jason Cooper , Sebastian Hesselbarth , Andrew Lunn , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Jason Gunthorpe , Imre Kaloz To: Boris Brezillon Return-path: Received: from helcar.hengli.com.au ([209.40.204.226]:54506 "EHLO helcar.hengli.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753329AbbFOJix (ORCPT ); Mon, 15 Jun 2015 05:38:53 -0400 Content-Disposition: inline In-Reply-To: <1434093366-14681-5-git-send-email-boris.brezillon@free-electrons.com> Sender: linux-crypto-owner@vger.kernel.org List-ID: On Fri, Jun 12, 2015 at 09:15:56AM +0200, Boris Brezillon wrote: > > +static inline int mv_cesa_sg_count(struct scatterlist *sg, int nbytes) > +{ > + int nents = 0; > + > + while (nbytes > 0) { > + nents++; > + nbytes -= sg->length; > + sg = sg_next(sg); > + } > + > + return nents; > +} Please replace this with the newly added sg_nents_for_len. Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt