Re: [PATCH v2 0/6] crypto: SHA1 multibuffer implementation

2014-05-30 Thread Tim Chen
On Fri, 2014-05-30 at 17:26 +0800, Herbert Xu wrote: > On Fri, May 23, 2014 at 04:02:12PM -0700, Tim Chen wrote: > > > > The outline of the algorithm is sketched below: > > Any driver requesting the crypto service will place an async > > crypto request on the workqueue. The multi-buffer crypto dae

Re: [PATCH v2 0/6] crypto: SHA1 multibuffer implementation

2014-05-30 Thread Herbert Xu
On Fri, May 23, 2014 at 04:02:12PM -0700, Tim Chen wrote: > > The outline of the algorithm is sketched below: > Any driver requesting the crypto service will place an async > crypto request on the workqueue. The multi-buffer crypto daemon will > pull request from work queue and put each request in

Re: [PATCH v2 0/6] crypto: SHA1 multibuffer implementation

2014-05-23 Thread Tim Chen
Oops, a typo in the subject line. Should be [PATCH v2 0/5] crypto: SHA1 multibuffer implementation as there are now only 5 patches in the series. Tim -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to majord...@vger.kernel.org More majordomo

[PATCH v2 0/6] crypto: SHA1 multibuffer implementation

2014-05-23 Thread Tim Chen
Herbert, I've updated the code to use the new cyrpto_ahah_walk interfaces. I'll greatly appreciate more reviews from you and the community for other parts of this code. In this patch series, we introduce the multi-buffer crypto algorithm on x86_64 and apply it to SHA1 hash computation. The multi