/* * Workqueue for crypto subsystem * * Copyright (c) 2009 Intel Corp. * Author: Huang Ying <ying.huang@intel.com> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * */ #include <linux/workqueue.h> #include <linux/module.h> #include <crypto/algapi.h> #include <crypto/crypto_wq.h> struct workqueue_struct *kcrypto_wq; EXPORT_SYMBOL_GPL(kcrypto_wq);
static int __init crypto_wq_init(void) { kcrypto_wq = alloc_workqueue("crypto", WQ_MEM_RECLAIM | WQ_CPU_INTENSIVE, 1); if (unlikely(!kcrypto_wq)) return -ENOMEM; return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Huang Ying | 30 | 81.08% | 1 | 50.00% |
Tejun Heo | 7 | 18.92% | 1 | 50.00% |
Total | 37 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Huang Ying | 14 | 100.00% | 1 | 100.00% |
Total | 14 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Huang Ying | 83 | 88.30% | 1 | 25.00% |
Tejun Heo | 7 | 7.45% | 1 | 25.00% |
Paul Gortmaker | 3 | 3.19% | 1 | 25.00% |
Tim Chen | 1 | 1.06% | 1 | 25.00% |
Total | 94 | 100.00% | 4 | 100.00% |