queue.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/acorn/scsi/queue.c: queue handling primitives
  3.  *
  4.  *  Copyright (C) 1997-2000 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Changelog:
  11.  *   15-Sep-1997 RMK Created.
  12.  *   11-Oct-1997 RMK Corrected problem with queue_remove_exclude
  13.  * not updating internal linked list properly
  14.  * (was causing commands to go missing).
  15.  *   30-Aug-2000 RMK Use Linux list handling and spinlocks
  16.  */
  17. #include <linux/module.h>
  18. #include <linux/blk.h>
  19. #include <linux/kernel.h>
  20. #include <linux/string.h>
  21. #include <linux/slab.h>
  22. #include <linux/spinlock.h>
  23. #include <linux/list.h>
  24. #include <linux/init.h>
  25. #include "../../scsi/scsi.h"
  26. #define DEBUG
  27. typedef struct queue_entry {
  28. struct list_head   list;
  29. Scsi_Cmnd    *SCpnt;
  30. #ifdef DEBUG
  31. unsigned long    magic;
  32. #endif
  33. } QE_t;
  34. #ifdef DEBUG
  35. #define QUEUE_MAGIC_FREE 0xf7e1c9a3
  36. #define QUEUE_MAGIC_USED 0xf7e1cc33
  37. #define SET_MAGIC(q,m) ((q)->magic = (m))
  38. #define BAD_MAGIC(q,m) ((q)->magic != (m))
  39. #else
  40. #define SET_MAGIC(q,m) do { } while (0)
  41. #define BAD_MAGIC(q,m) (0)
  42. #endif
  43. #include "queue.h"
  44. #define NR_QE 32
  45. /*
  46.  * Function: void queue_initialise (Queue_t *queue)
  47.  * Purpose : initialise a queue
  48.  * Params  : queue - queue to initialise
  49.  */
  50. int queue_initialise (Queue_t *queue)
  51. {
  52. unsigned int nqueues = NR_QE;
  53. QE_t *q;
  54. spin_lock_init(&queue->queue_lock);
  55. INIT_LIST_HEAD(&queue->head);
  56. INIT_LIST_HEAD(&queue->free);
  57. /*
  58.  * If life was easier, then SCpnt would have a
  59.  * host-available list head, and we wouldn't
  60.  * need to keep free lists or allocate this
  61.  * memory.
  62.  */
  63. queue->alloc = q = kmalloc(sizeof(QE_t) * nqueues, GFP_KERNEL);
  64. if (q) {
  65. for (; nqueues; q++, nqueues--) {
  66. SET_MAGIC(q, QUEUE_MAGIC_FREE);
  67. q->SCpnt = NULL;
  68. list_add(&q->list, &queue->free);
  69. }
  70. }
  71. return queue->alloc != NULL;
  72. }
  73. /*
  74.  * Function: void queue_free (Queue_t *queue)
  75.  * Purpose : free a queue
  76.  * Params  : queue - queue to free
  77.  */
  78. void queue_free (Queue_t *queue)
  79. {
  80. if (!list_empty(&queue->head))
  81. printk(KERN_WARNING "freeing non-empty queue %pn", queue);
  82. if (queue->alloc)
  83. kfree(queue->alloc);
  84. }
  85.      
  86. /*
  87.  * Function: int queue_add_cmd(Queue_t *queue, Scsi_Cmnd *SCpnt, int head)
  88.  * Purpose : Add a new command onto a queue, adding REQUEST_SENSE to head.
  89.  * Params  : queue - destination queue
  90.  *      SCpnt - command to add
  91.  *      head  - add command to head of queue
  92.  * Returns : 0 on error, !0 on success
  93.  */
  94. int __queue_add(Queue_t *queue, Scsi_Cmnd *SCpnt, int head)
  95. {
  96. unsigned long flags;
  97. struct list_head *l;
  98. QE_t *q;
  99. int ret = 0;
  100. spin_lock_irqsave(&queue->queue_lock, flags);
  101. if (list_empty(&queue->free))
  102. goto empty;
  103. l = queue->free.next;
  104. list_del(l);
  105. q = list_entry(l, QE_t, list);
  106. if (BAD_MAGIC(q, QUEUE_MAGIC_FREE))
  107. BUG();
  108. SET_MAGIC(q, QUEUE_MAGIC_USED);
  109. q->SCpnt = SCpnt;
  110. if (head)
  111. list_add(l, &queue->head);
  112. else
  113. list_add_tail(l, &queue->head);
  114. ret = 1;
  115. empty:
  116. spin_unlock_irqrestore(&queue->queue_lock, flags);
  117. return ret;
  118. }
  119. static Scsi_Cmnd *__queue_remove(Queue_t *queue, struct list_head *ent)
  120. {
  121. QE_t *q;
  122. /*
  123.  * Move the entry from the "used" list onto the "free" list
  124.  */
  125. list_del(ent);
  126. q = list_entry(ent, QE_t, list);
  127. if (BAD_MAGIC(q, QUEUE_MAGIC_USED))
  128. BUG();
  129. SET_MAGIC(q, QUEUE_MAGIC_FREE);
  130. list_add(ent, &queue->free);
  131. return q->SCpnt;
  132. }
  133. /*
  134.  * Function: Scsi_Cmnd *queue_remove_exclude (queue, exclude)
  135.  * Purpose : remove a SCSI command from a queue
  136.  * Params  : queue   - queue to remove command from
  137.  *      exclude - bit array of target&lun which is busy
  138.  * Returns : Scsi_Cmnd if successful (and a reference), or NULL if no command available
  139.  */
  140. Scsi_Cmnd *queue_remove_exclude(Queue_t *queue, void *exclude)
  141. {
  142. unsigned long flags;
  143. struct list_head *l;
  144. Scsi_Cmnd *SCpnt = NULL;
  145. spin_lock_irqsave(&queue->queue_lock, flags);
  146. list_for_each(l, &queue->head) {
  147. QE_t *q = list_entry(l, QE_t, list);
  148. if (!test_bit(q->SCpnt->target * 8 + q->SCpnt->lun, exclude)) {
  149. SCpnt = __queue_remove(queue, l);
  150. break;
  151. }
  152. }
  153. spin_unlock_irqrestore(&queue->queue_lock, flags);
  154. return SCpnt;
  155. }
  156. /*
  157.  * Function: Scsi_Cmnd *queue_remove (queue)
  158.  * Purpose : removes first SCSI command from a queue
  159.  * Params  : queue   - queue to remove command from
  160.  * Returns : Scsi_Cmnd if successful (and a reference), or NULL if no command available
  161.  */
  162. Scsi_Cmnd *queue_remove(Queue_t *queue)
  163. {
  164. unsigned long flags;
  165. Scsi_Cmnd *SCpnt = NULL;
  166. spin_lock_irqsave(&queue->queue_lock, flags);
  167. if (!list_empty(&queue->head))
  168. SCpnt = __queue_remove(queue, queue->head.next);
  169. spin_unlock_irqrestore(&queue->queue_lock, flags);
  170. return SCpnt;
  171. }
  172. /*
  173.  * Function: Scsi_Cmnd *queue_remove_tgtluntag (queue, target, lun, tag)
  174.  * Purpose : remove a SCSI command from the queue for a specified target/lun/tag
  175.  * Params  : queue  - queue to remove command from
  176.  *      target - target that we want
  177.  *      lun    - lun on device
  178.  *      tag    - tag on device
  179.  * Returns : Scsi_Cmnd if successful, or NULL if no command satisfies requirements
  180.  */
  181. Scsi_Cmnd *queue_remove_tgtluntag (Queue_t *queue, int target, int lun, int tag)
  182. {
  183. unsigned long flags;
  184. struct list_head *l;
  185. Scsi_Cmnd *SCpnt = NULL;
  186. spin_lock_irqsave(&queue->queue_lock, flags);
  187. list_for_each(l, &queue->head) {
  188. QE_t *q = list_entry(l, QE_t, list);
  189. if (q->SCpnt->target == target && q->SCpnt->lun == lun &&
  190.     q->SCpnt->tag == tag) {
  191. SCpnt = __queue_remove(queue, l);
  192. break;
  193. }
  194. }
  195. spin_unlock_irqrestore(&queue->queue_lock, flags);
  196. return SCpnt;
  197. }
  198. /*
  199.  * Function: int queue_probetgtlun (queue, target, lun)
  200.  * Purpose : check to see if we have a command in the queue for the specified
  201.  *      target/lun.
  202.  * Params  : queue  - queue to look in
  203.  *      target - target we want to probe
  204.  *      lun    - lun on target
  205.  * Returns : 0 if not found, != 0 if found
  206.  */
  207. int queue_probetgtlun (Queue_t *queue, int target, int lun)
  208. {
  209. unsigned long flags;
  210. struct list_head *l;
  211. int found = 0;
  212. spin_lock_irqsave(&queue->queue_lock, flags);
  213. list_for_each(l, &queue->head) {
  214. QE_t *q = list_entry(l, QE_t, list);
  215. if (q->SCpnt->target == target && q->SCpnt->lun == lun) {
  216. found = 1;
  217. break;
  218. }
  219. }
  220. spin_unlock_irqrestore(&queue->queue_lock, flags);
  221. return found;
  222. }
  223. /*
  224.  * Function: int queue_remove_cmd(Queue_t *queue, Scsi_Cmnd *SCpnt)
  225.  * Purpose : remove a specific command from the queues
  226.  * Params  : queue - queue to look in
  227.  *      SCpnt - command to find
  228.  * Returns : 0 if not found
  229.  */
  230. int queue_remove_cmd(Queue_t *queue, Scsi_Cmnd *SCpnt)
  231. {
  232. unsigned long flags;
  233. struct list_head *l;
  234. int found = 0;
  235. spin_lock_irqsave(&queue->queue_lock, flags);
  236. list_for_each(l, &queue->head) {
  237. QE_t *q = list_entry(l, QE_t, list);
  238. if (q->SCpnt == SCpnt) {
  239. __queue_remove(queue, l);
  240. found = 1;
  241. break;
  242. }
  243. }
  244. spin_unlock_irqrestore(&queue->queue_lock, flags);
  245. return found;
  246. }
  247. EXPORT_SYMBOL(queue_initialise);
  248. EXPORT_SYMBOL(queue_free);
  249. EXPORT_SYMBOL(__queue_add);
  250. EXPORT_SYMBOL(queue_remove);
  251. EXPORT_SYMBOL(queue_remove_exclude);
  252. EXPORT_SYMBOL(queue_remove_tgtluntag);
  253. EXPORT_SYMBOL(queue_remove_cmd);
  254. EXPORT_SYMBOL(queue_probetgtlun);
  255. MODULE_AUTHOR("Russell King");
  256. MODULE_DESCRIPTION("SCSI command queueing");
  257. MODULE_LICENSE("GPL");