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

驱动编程

开发平台:

Unix_Linux

  1. /* Copyright (c) 2004 Coraid, Inc.  See COPYING for GPL terms. */
  2. /*
  3.  * aoedev.c
  4.  * AoE device utility functions; maintains device list.
  5.  */
  6. #include <linux/hdreg.h>
  7. #include <linux/blkdev.h>
  8. #include <linux/netdevice.h>
  9. #include "aoe.h"
  10. static struct aoedev *devlist;
  11. static spinlock_t devlist_lock;
  12. struct aoedev *
  13. aoedev_by_aoeaddr(int maj, int min)
  14. {
  15. struct aoedev *d;
  16. ulong flags;
  17. spin_lock_irqsave(&devlist_lock, flags);
  18. for (d=devlist; d; d=d->next)
  19. if (d->aoemajor == maj && d->aoeminor == min)
  20. break;
  21. spin_unlock_irqrestore(&devlist_lock, flags);
  22. return d;
  23. }
  24. /* called with devlist lock held */
  25. static struct aoedev *
  26. aoedev_newdev(ulong nframes)
  27. {
  28. struct aoedev *d;
  29. struct frame *f, *e;
  30. d = kzalloc(sizeof *d, GFP_ATOMIC);
  31. if (d == NULL)
  32. return NULL;
  33. f = kcalloc(nframes, sizeof *f, GFP_ATOMIC);
  34. if (f == NULL) {
  35. kfree(d);
  36. return NULL;
  37. }
  38. d->nframes = nframes;
  39. d->frames = f;
  40. e = f + nframes;
  41. for (; f<e; f++)
  42. f->tag = FREETAG;
  43. spin_lock_init(&d->lock);
  44. init_timer(&d->timer);
  45. d->bufpool = NULL; /* defer to aoeblk_gdalloc */
  46. INIT_LIST_HEAD(&d->bufq);
  47. d->next = devlist;
  48. devlist = d;
  49. return d;
  50. }
  51. void
  52. aoedev_downdev(struct aoedev *d)
  53. {
  54. struct frame *f, *e;
  55. struct buf *buf;
  56. struct bio *bio;
  57. d->flags |= DEVFL_TKILL;
  58. del_timer(&d->timer);
  59. f = d->frames;
  60. e = f + d->nframes;
  61. for (; f<e; f->tag = FREETAG, f->buf = NULL, f++) {
  62. if (f->tag == FREETAG || f->buf == NULL)
  63. continue;
  64. buf = f->buf;
  65. bio = buf->bio;
  66. if (--buf->nframesout == 0) {
  67. mempool_free(buf, d->bufpool);
  68. bio_endio(bio, bio->bi_size, -EIO);
  69. }
  70. }
  71. d->inprocess = NULL;
  72. while (!list_empty(&d->bufq)) {
  73. buf = container_of(d->bufq.next, struct buf, bufs);
  74. list_del(d->bufq.next);
  75. bio = buf->bio;
  76. mempool_free(buf, d->bufpool);
  77. bio_endio(bio, bio->bi_size, -EIO);
  78. }
  79. if (d->nopen)
  80. d->flags |= DEVFL_CLOSEWAIT;
  81. if (d->gd)
  82. d->gd->capacity = 0;
  83. d->flags &= ~DEVFL_UP;
  84. }
  85. struct aoedev *
  86. aoedev_set(ulong sysminor, unsigned char *addr, struct net_device *ifp, ulong bufcnt)
  87. {
  88. struct aoedev *d;
  89. ulong flags;
  90. spin_lock_irqsave(&devlist_lock, flags);
  91. for (d=devlist; d; d=d->next)
  92. if (d->sysminor == sysminor)
  93. break;
  94. if (d == NULL && (d = aoedev_newdev(bufcnt)) == NULL) {
  95. spin_unlock_irqrestore(&devlist_lock, flags);
  96. printk(KERN_INFO "aoe: aoedev_set: aoedev_newdev failure.n");
  97. return NULL;
  98. } /* if newdev, (d->flags & DEVFL_UP) == 0 for below */
  99. spin_unlock_irqrestore(&devlist_lock, flags);
  100. spin_lock_irqsave(&d->lock, flags);
  101. d->ifp = ifp;
  102. memcpy(d->addr, addr, sizeof d->addr);
  103. if ((d->flags & DEVFL_UP) == 0) {
  104. aoedev_downdev(d); /* flushes outstanding frames */
  105. d->sysminor = sysminor;
  106. d->aoemajor = AOEMAJOR(sysminor);
  107. d->aoeminor = AOEMINOR(sysminor);
  108. }
  109. spin_unlock_irqrestore(&d->lock, flags);
  110. return d;
  111. }
  112. static void
  113. aoedev_freedev(struct aoedev *d)
  114. {
  115. if (d->gd) {
  116. aoedisk_rm_sysfs(d);
  117. del_gendisk(d->gd);
  118. put_disk(d->gd);
  119. }
  120. kfree(d->frames);
  121. if (d->bufpool)
  122. mempool_destroy(d->bufpool);
  123. kfree(d);
  124. }
  125. void
  126. aoedev_exit(void)
  127. {
  128. struct aoedev *d;
  129. ulong flags;
  130. flush_scheduled_work();
  131. while ((d = devlist)) {
  132. devlist = d->next;
  133. spin_lock_irqsave(&d->lock, flags);
  134. aoedev_downdev(d);
  135. spin_unlock_irqrestore(&d->lock, flags);
  136. del_timer_sync(&d->timer);
  137. aoedev_freedev(d);
  138. }
  139. }
  140. int __init
  141. aoedev_init(void)
  142. {
  143. spin_lock_init(&devlist_lock);
  144. return 0;
  145. }