diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-26 14:04:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-26 14:04:34 -0400 |
commit | 562f477a54478002ddfbb5b85627c009ca41e71d (patch) | |
tree | 52384cc554ae64cc7a26878d64d606f40fd703ce /crypto/crypto_wq.c | |
parent | ada19a31a90b4f46c040c25ef4ef8ffc203c7fc6 (diff) | |
parent | 949abe574739848b1e68271fbac86c3cb4506aad (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: (29 commits)
crypto: sha512-s390 - Add missing block size
hwrng: timeriomem - Breaks an allyesconfig build on s390:
nlattr: Fix build error with NET off
crypto: testmgr - add zlib test
crypto: zlib - New zlib crypto module, using pcomp
crypto: testmgr - Add support for the pcomp interface
crypto: compress - Add pcomp interface
netlink: Move netlink attribute parsing support to lib
crypto: Fix dead links
hwrng: timeriomem - New driver
crypto: chainiv - Use kcrypto_wq instead of keventd_wq
crypto: cryptd - Per-CPU thread implementation based on kcrypto_wq
crypto: api - Use dedicated workqueue for crypto subsystem
crypto: testmgr - Test skciphers with no IVs
crypto: aead - Avoid infinite loop when nivaead fails selftest
crypto: skcipher - Avoid infinite loop when cipher fails selftest
crypto: api - Fix crypto_alloc_tfm/create_create_tfm return convention
crypto: api - crypto_alg_mod_lookup either tested or untested
crypto: amcc - Add crypt4xx driver
crypto: ansi_cprng - Add maintainer
...
Diffstat (limited to 'crypto/crypto_wq.c')
-rw-r--r-- | crypto/crypto_wq.c | 38 |
1 files changed, 38 insertions, 0 deletions
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"); | ||