crypto_wq.c 896 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. #include <linux/workqueue.h>
  14. #include <crypto/algapi.h>
  15. #include <crypto/crypto_wq.h>
  16. struct workqueue_struct *kcrypto_wq;
  17. EXPORT_SYMBOL_GPL(kcrypto_wq);
  18. static int __init crypto_wq_init(void)
  19. {
  20. kcrypto_wq = create_workqueue("crypto");
  21. if (unlikely(!kcrypto_wq))
  22. return -ENOMEM;
  23. return 0;
  24. }
  25. static void __exit crypto_wq_exit(void)
  26. {
  27. destroy_workqueue(kcrypto_wq);
  28. }
  29. module_init(crypto_wq_init);
  30. module_exit(crypto_wq_exit);
  31. MODULE_LICENSE("GPL");
  32. MODULE_DESCRIPTION("Workqueue for crypto subsystem");