Re: [PATCH] Fix late crypto work queue initialization

2014-03-25 Thread Greg Kroah-Hartman
On Tue, Mar 25, 2014 at 04:40:56PM -0700, Tim Chen wrote: > On Fri, 2014-03-21 at 22:40 +0800, Herbert Xu wrote: > > On Mon, Mar 17, 2014 at 04:52:26PM -0700, Tim Chen wrote: > > > The crypto algorithm modules utilizing the crypto daemon could > > > be used early when the system start up. Using mo

Re: [PATCH] Fix late crypto work queue initialization

2014-03-25 Thread Tim Chen
On Fri, 2014-03-21 at 22:40 +0800, Herbert Xu wrote: > On Mon, Mar 17, 2014 at 04:52:26PM -0700, Tim Chen wrote: > > The crypto algorithm modules utilizing the crypto daemon could > > be used early when the system start up. Using module_init > > does not guarantee that the daemon's work queue is i

Re: [PATCH] Fix late crypto work queue initialization

2014-03-21 Thread Herbert Xu
On Mon, Mar 17, 2014 at 04:52:26PM -0700, Tim Chen wrote: > The crypto algorithm modules utilizing the crypto daemon could > be used early when the system start up. Using module_init > does not guarantee that the daemon's work queue is initialized > when the cypto alorithm depending on crypto_wq s

Re: [PATCH] Fix late crypto work queue initialization

2014-03-20 Thread Tim Chen
On Mon, 2014-03-17 at 16:52 -0700, Tim Chen wrote: > The crypto algorithm modules utilizing the crypto daemon could > be used early when the system start up. Using module_init > does not guarantee that the daemon's work queue is initialized > when the cypto alorithm depending on crypto_wq starts.

[PATCH] Fix late crypto work queue initialization

2014-03-17 Thread Tim Chen
The crypto algorithm modules utilizing the crypto daemon could be used early when the system start up. Using module_init does not guarantee that the daemon's work queue is initialized when the cypto alorithm depending on crypto_wq starts. It is necessary to initialize the crypto work queue earlie