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 | |
| 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>
| -rw-r--r-- | crypto/Kconfig | 3 | ||||
| -rw-r--r-- | crypto/Makefile | 2 | ||||
| -rw-r--r-- | crypto/crypto_wq.c | 38 | ||||
| -rw-r--r-- | include/crypto/crypto_wq.h | 7 |
4 files changed, 50 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index a83ce0462b6b..420b630a17cf 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig | |||
| @@ -106,6 +106,9 @@ config CRYPTO_NULL | |||
| 106 | help | 106 | help |
| 107 | These are 'Null' algorithms, used by IPsec, which do nothing. | 107 | These are 'Null' algorithms, used by IPsec, which do nothing. |
| 108 | 108 | ||
| 109 | config CRYPTO_WORKQUEUE | ||
| 110 | tristate | ||
| 111 | |||
| 109 | config CRYPTO_CRYPTD | 112 | config CRYPTO_CRYPTD |
| 110 | tristate "Software async crypto daemon" | 113 | tristate "Software async crypto daemon" |
| 111 | select CRYPTO_BLKCIPHER | 114 | select CRYPTO_BLKCIPHER |
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 |
diff --git a/crypto/crypto_wq.c b/crypto/crypto_wq.c new file mode 100644 index 000000000000..fdcf6248f152 --- /dev/null +++ b/crypto/crypto_wq.c | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | /* | ||
| 2 | * Workqueue for crypto subsystem | ||
| 3 | * | ||
| 4 | * Copyright (c) 2009 Intel Corp. | ||
| 5 | * Author: Huang Ying <ying.huang@intel.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU General Public License as published by the Free | ||
| 9 | * Software Foundation; either version 2 of the License, or (at your option) | ||
| 10 | * any later version. | ||
| 11 | * | ||
| 12 | */ | ||
| 13 | |||
| 14 | #include <linux/workqueue.h> | ||
| 15 | #include <crypto/algapi.h> | ||
| 16 | #include <crypto/crypto_wq.h> | ||
| 17 | |||
| 18 | struct workqueue_struct *kcrypto_wq; | ||
| 19 | EXPORT_SYMBOL_GPL(kcrypto_wq); | ||
| 20 | |||
| 21 | static int __init crypto_wq_init(void) | ||
| 22 | { | ||
| 23 | kcrypto_wq = create_workqueue("crypto"); | ||
| 24 | if (unlikely(!kcrypto_wq)) | ||
| 25 | return -ENOMEM; | ||
| 26 | return 0; | ||
| 27 | } | ||
| 28 | |||
| 29 | static void __exit crypto_wq_exit(void) | ||
| 30 | { | ||
| 31 | destroy_workqueue(kcrypto_wq); | ||
| 32 | } | ||
| 33 | |||
| 34 | module_init(crypto_wq_init); | ||
| 35 | module_exit(crypto_wq_exit); | ||
| 36 | |||
| 37 | MODULE_LICENSE("GPL"); | ||
| 38 | MODULE_DESCRIPTION("Workqueue for crypto subsystem"); | ||
diff --git a/include/crypto/crypto_wq.h b/include/crypto/crypto_wq.h new file mode 100644 index 000000000000..a7d252daf91b --- /dev/null +++ b/include/crypto/crypto_wq.h | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | #ifndef CRYPTO_WQ_H | ||
| 2 | #define CRYPTO_WQ_H | ||
| 3 | |||
| 4 | #include <linux/workqueue.h> | ||
| 5 | |||
| 6 | extern struct workqueue_struct *kcrypto_wq; | ||
| 7 | #endif | ||
