Re: [sheepdog] [PATCH 2/2] sha1: add x86 hardware acceleration for sha1

2014-07-04 Thread MORITA Kazutaka
At Fri, 4 Jul 2014 16:45:23 +0200, Valerio Pachera wrote: > > Has this patch been merged in the end? > Is sheepdog using ssse3 and avx to speed up checksum calculation? > Yes. https://github.com/sheepdog/sheepdog/commit/04396f5e668f9a3bd13431e7a239eb305cb27f00 Thanks, Kazutaka -- sheepdog

Re: [sheepdog] [PATCH 2/2] sha1: add x86 hardware acceleration for sha1

2014-07-04 Thread Valerio Pachera
Has this patch been merged in the end? Is sheepdog using ssse3 and avx to speed up checksum calculation? 2013-09-09 11:51 GMT+02:00 MORITA Kazutaka : > At Mon, 9 Sep 2013 17:45:17 +0800, > Liu Yuan wrote: > > > > On Mon, Sep 09, 2013 at 06:15:24PM +0900, MORITA Kazutaka wrote: > > > At Thu, 5 S

Re: [sheepdog] [PATCH 2/2] sha1: add x86 hardware acceleration for sha1

2013-09-09 Thread MORITA Kazutaka
At Mon, 9 Sep 2013 17:45:17 +0800, Liu Yuan wrote: > > On Mon, Sep 09, 2013 at 06:15:24PM +0900, MORITA Kazutaka wrote: > > At Thu, 5 Sep 2013 18:47:52 +0800, > > Liu Yuan wrote: > > > > > > This doesn't change the sha1 algorithm. This patch tries to make use of > > > intel's > > > ssse3 and av

Re: [sheepdog] [PATCH 2/2] sha1: add x86 hardware acceleration for sha1

2013-09-09 Thread Liu Yuan
On Mon, Sep 09, 2013 at 06:15:24PM +0900, MORITA Kazutaka wrote: > At Thu, 5 Sep 2013 18:47:52 +0800, > Liu Yuan wrote: > > > > This doesn't change the sha1 algorithm. This patch tries to make use of > > intel's > > ssse3 and avx for sha1 acceleration. > > > > Signed-off-by: Liu Yuan > > --- >

Re: [sheepdog] [PATCH 2/2] sha1: add x86 hardware acceleration for sha1

2013-09-09 Thread MORITA Kazutaka
At Thu, 5 Sep 2013 18:47:52 +0800, Liu Yuan wrote: > > This doesn't change the sha1 algorithm. This patch tries to make use of > intel's > ssse3 and avx for sha1 acceleration. > > Signed-off-by: Liu Yuan > --- > include/sha1.h | 11 +- > lib/Makefile.am |2 +- > lib/sha1.c | 1

[sheepdog] [PATCH 2/2] sha1: add x86 hardware acceleration for sha1

2013-09-05 Thread Liu Yuan
This doesn't change the sha1 algorithm. This patch tries to make use of intel's ssse3 and avx for sha1 acceleration. Signed-off-by: Liu Yuan --- include/sha1.h | 11 +- lib/Makefile.am |2 +- lib/sha1.c | 159 +-- lib/sha1_ssse3.S | 564 ++