diff options
author | Huang Ying <ying.huang@intel.com> | 2009-02-19 01:33:40 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-02-19 01:33:40 -0500 |
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 @@ | |||
5 | obj-$(CONFIG_CRYPTO) += crypto.o | 5 | obj-$(CONFIG_CRYPTO) += crypto.o |
6 | crypto-objs := api.o cipher.o digest.o compress.o | 6 | crypto-objs := api.o cipher.o digest.o compress.o |
7 | 7 | ||
8 | obj-$(CONFIG_CRYPTO_WORKQUEUE) += crypto_wq.o | ||
9 | |||
8 | obj-$(CONFIG_CRYPTO_FIPS) += fips.o | 10 | obj-$(CONFIG_CRYPTO_FIPS) += fips.o |
9 | 11 | ||
10 | crypto_algapi-$(CONFIG_PROC_FS) += proc.o | 12 | crypto_algapi-$(CONFIG_PROC_FS) += proc.o |