From: Jens Axboe <jens.axboe@oracle.com>
To: Boaz Harrosh <bharrosh@panasas.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>,
"David S. Miller" <davem@davemloft.net>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Linux Crypto Mailing List <linux-crypto@vger.kernel.org>,
netdev@vger.kernel.org
Subject: Re: [PATCH 1/2] [CRYPTO] tcrypt: Move sg_init_table out of timing loops
Date: Tue, 30 Oct 2007 10:32:13 +0100 [thread overview]
Message-ID: <20071030093213.GH4993@kernel.dk> (raw)
In-Reply-To: <4726FA01.2030002@panasas.com>
On Tue, Oct 30 2007, Boaz Harrosh wrote:
> On Mon, Oct 29 2007 at 22:16 +0200, Jens Axboe <jens.axboe@oracle.com> wrote:
> > On Fri, Oct 26 2007, Herbert Xu wrote:
> >> [CRYPTO] tcrypt: Move sg_init_table out of timing loops
> >>
> >> This patch moves the sg_init_table out of the timing loops for hash
> >> algorithms so that it doesn't impact on the speed test results.
> >
> > Wouldn't it be better to just make sg_init_one() call sg_init_table?
> >
> > diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h
> > index 4571231..ccc55a6 100644
> > --- a/include/linux/scatterlist.h
> > +++ b/include/linux/scatterlist.h
> > @@ -202,28 +202,6 @@ static inline void __sg_mark_end(struct scatterlist *sg)
> > }
> >
> > /**
> > - * sg_init_one - Initialize a single entry sg list
> > - * @sg: SG entry
> > - * @buf: Virtual address for IO
> > - * @buflen: IO length
> > - *
> > - * Notes:
> > - * This should not be used on a single entry that is part of a larger
> > - * table. Use sg_init_table() for that.
> > - *
> > - **/
> > -static inline void sg_init_one(struct scatterlist *sg, const void *buf,
> > - unsigned int buflen)
> > -{
> > - memset(sg, 0, sizeof(*sg));
> > -#ifdef CONFIG_DEBUG_SG
> > - sg->sg_magic = SG_MAGIC;
> > -#endif
> > - sg_mark_end(sg, 1);
> > - sg_set_buf(sg, buf, buflen);
> > -}
> > -
> > -/**
> > * sg_init_table - Initialize SG table
> > * @sgl: The SG table
> > * @nents: Number of entries in table
> > @@ -247,6 +225,24 @@ static inline void sg_init_table(struct scatterlist *sgl, unsigned int nents)
> > }
> >
> > /**
> > + * sg_init_one - Initialize a single entry sg list
> > + * @sg: SG entry
> > + * @buf: Virtual address for IO
> > + * @buflen: IO length
> > + *
> > + * Notes:
> > + * This should not be used on a single entry that is part of a larger
> > + * table. Use sg_init_table() for that.
> > + *
> > + **/
> > +static inline void sg_init_one(struct scatterlist *sg, const void *buf,
> > + unsigned int buflen)
> > +{
> > + sg_init_table(sg, 1);
> > + sg_set_buf(sg, buf, buflen);
> > +}
> > +
> > +/**
> > * sg_phys - Return physical address of an sg entry
> > * @sg: SG entry
> > *
> >
> Yes please submit this patch. scsi-ml is full of sg_init_one, specially
> on the error recovery path.
Will do.
--
Jens Axboe
next prev parent reply other threads:[~2007-10-30 9:34 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-26 14:59 [0/2] [CRYPTO] users: Fix up remaining sg issues Herbert Xu
2007-10-26 15:00 ` [PATCH 1/2] [CRYPTO] tcrypt: Move sg_init_table out of timing loops Herbert Xu
2007-10-27 7:51 ` David Miller
2007-10-29 20:16 ` Jens Axboe
2007-10-30 0:08 ` Herbert Xu
2007-10-30 5:50 ` Jens Axboe
2007-10-30 14:18 ` Herbert Xu
2007-10-30 14:17 ` Jens Axboe
2007-10-30 9:31 ` Boaz Harrosh
2007-10-30 9:32 ` Jens Axboe [this message]
2007-10-26 15:00 ` [PATCH 2/2] [CRYPTO] users: Fix up scatterlist conversion errors Herbert Xu
2007-10-26 15:44 ` Vlad Yasevich
2007-10-27 7:52 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20071030093213.GH4993@kernel.dk \
--to=jens.axboe@oracle.com \
--cc=bharrosh@panasas.com \
--cc=davem@davemloft.net \
--cc=herbert@gondor.apana.org.au \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.