diff options
author | Huang Ying <ying.huang@intel.com> | 2009-02-19 14:33:40 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-02-19 14:33:40 +0800 |
commit | 25c38d3fb92fc23af7730a1601bc20af8216ae44 (patch) | |
tree | c191112a61457ecbf69d1a477705c87678a44231 /crypto/Makefile | |
parent | 6fe4a28d8855e072036f36ee22f0a8f43f44918f (diff) |
crypto: api - Use dedicated workqueue for crypto subsystem
Use dedicated workqueue for crypto subsystem
A dedicated workqueue named kcrypto_wq is created to be used by crypto
subsystem. The system shared keventd_wq is not suitable for
encryption/decryption, because of potential starvation problem.
Signed-off-by: Huang Ying <ying.huang@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r-- | crypto/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile index 46b08bf2035f..e05a844e08d5 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -5,6 +5,8 @@ obj-$(CONFIG_CRYPTO) += crypto.o crypto-objs := api.o cipher.o digest.o compress.o +obj-$(CONFIG_CRYPTO_WORKQUEUE) += crypto_wq.o + obj-$(CONFIG_CRYPTO_FIPS) += fips.o crypto_algapi-$(CONFIG_PROC_FS) += proc.o |