Blame view

crypto/crypto_wq.c 968 Bytes
25c38d3fb   Huang Ying   crypto: api - Use...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  /*
   * 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>
4bb33cc89   Paul Gortmaker   crypto: add modul...
15
  #include <linux/module.h>
25c38d3fb   Huang Ying   crypto: api - Use...
16
17
18
19
20
21
22
23
  #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)
  {
c73b7d02d   Tejun Heo   crypto: mark cryp...
24
25
  	kcrypto_wq = alloc_workqueue("crypto",
  				     WQ_MEM_RECLAIM | WQ_CPU_INTENSIVE, 1);
25c38d3fb   Huang Ying   crypto: api - Use...
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  	if (unlikely(!kcrypto_wq))
  		return -ENOMEM;
  	return 0;
  }
  
  static void __exit crypto_wq_exit(void)
  {
  	destroy_workqueue(kcrypto_wq);
  }
  
  module_init(crypto_wq_init);
  module_exit(crypto_wq_exit);
  
  MODULE_LICENSE("GPL");
  MODULE_DESCRIPTION("Workqueue for crypto subsystem");