aoemain.c
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:2k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /* Copyright (c) 2004 Coraid, Inc.  See COPYING for GPL terms. */
  2. /*
  3.  * aoemain.c
  4.  * Module initialization routines, discover timer
  5.  */
  6. #include <linux/hdreg.h>
  7. #include <linux/blkdev.h>
  8. #include <linux/module.h>
  9. #include "aoe.h"
  10. MODULE_LICENSE("GPL");
  11. MODULE_AUTHOR("Sam Hopkins <sah@coraid.com>");
  12. MODULE_DESCRIPTION("AoE block/char driver for 2.6.[0-9]+");
  13. MODULE_VERSION(VERSION);
  14. enum { TINIT, TRUN, TKILL };
  15. static void
  16. discover_timer(ulong vp)
  17. {
  18. static struct timer_list t;
  19. static volatile ulong die;
  20. static spinlock_t lock;
  21. ulong flags;
  22. enum { DTIMERTICK = HZ * 60 }; /* one minute */
  23. switch (vp) {
  24. case TINIT:
  25. init_timer(&t);
  26. spin_lock_init(&lock);
  27. t.data = TRUN;
  28. t.function = discover_timer;
  29. die = 0;
  30. case TRUN:
  31. spin_lock_irqsave(&lock, flags);
  32. if (!die) {
  33. t.expires = jiffies + DTIMERTICK;
  34. add_timer(&t);
  35. }
  36. spin_unlock_irqrestore(&lock, flags);
  37. aoecmd_cfg(0xffff, 0xff);
  38. return;
  39. case TKILL:
  40. spin_lock_irqsave(&lock, flags);
  41. die = 1;
  42. spin_unlock_irqrestore(&lock, flags);
  43. del_timer_sync(&t);
  44. default:
  45. return;
  46. }
  47. }
  48. static void
  49. aoe_exit(void)
  50. {
  51. discover_timer(TKILL);
  52. aoenet_exit();
  53. unregister_blkdev(AOE_MAJOR, DEVICE_NAME);
  54. aoechr_exit();
  55. aoedev_exit();
  56. aoeblk_exit(); /* free cache after de-allocating bufs */
  57. }
  58. static int __init
  59. aoe_init(void)
  60. {
  61. int ret;
  62. ret = aoedev_init();
  63. if (ret)
  64. return ret;
  65. ret = aoechr_init();
  66. if (ret)
  67. goto chr_fail;
  68. ret = aoeblk_init();
  69. if (ret)
  70. goto blk_fail;
  71. ret = aoenet_init();
  72. if (ret)
  73. goto net_fail;
  74. ret = register_blkdev(AOE_MAJOR, DEVICE_NAME);
  75. if (ret < 0) {
  76. printk(KERN_ERR "aoe: aoeblk_init: can't register majorn");
  77. goto blkreg_fail;
  78. }
  79. printk(KERN_INFO
  80.        "aoe: aoe_init: AoE v2.6-%s initialised.n",
  81.        VERSION);
  82. discover_timer(TINIT);
  83. return 0;
  84.  blkreg_fail:
  85. aoenet_exit();
  86.  net_fail:
  87. aoeblk_exit();
  88.  blk_fail:
  89. aoechr_exit();
  90.  chr_fail:
  91. aoedev_exit();
  92. printk(KERN_INFO "aoe: aoe_init: initialisation failure.n");
  93. return ret;
  94. }
  95. module_init(aoe_init);
  96. module_exit(aoe_exit);