queue.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/acorn/scsi/queue.h: queue handling
  3.  *
  4.  *  Copyright (C) 1997 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. #ifndef QUEUE_H
  11. #define QUEUE_H
  12. typedef struct {
  13. struct list_head head;
  14. struct list_head free;
  15. spinlock_t queue_lock;
  16. void *alloc; /* start of allocated mem */
  17. } Queue_t;
  18. /*
  19.  * Function: void queue_initialise (Queue_t *queue)
  20.  * Purpose : initialise a queue
  21.  * Params  : queue - queue to initialise
  22.  */
  23. extern int queue_initialise (Queue_t *queue);
  24. /*
  25.  * Function: void queue_free (Queue_t *queue)
  26.  * Purpose : free a queue
  27.  * Params  : queue - queue to free
  28.  */
  29. extern void queue_free (Queue_t *queue);
  30. /*
  31.  * Function: Scsi_Cmnd *queue_remove (queue)
  32.  * Purpose : removes first SCSI command from a queue
  33.  * Params  : queue   - queue to remove command from
  34.  * Returns : Scsi_Cmnd if successful (and a reference), or NULL if no command available
  35.  */
  36. extern Scsi_Cmnd *queue_remove (Queue_t *queue);
  37. /*
  38.  * Function: Scsi_Cmnd *queue_remove_exclude_ref (queue, exclude)
  39.  * Purpose : remove a SCSI command from a queue
  40.  * Params  : queue   - queue to remove command from
  41.  *      exclude - array of busy LUNs
  42.  * Returns : Scsi_Cmnd if successful (and a reference), or NULL if no command available
  43.  */
  44. extern Scsi_Cmnd *queue_remove_exclude (Queue_t *queue, void *exclude);
  45. #define queue_add_cmd_ordered(queue,SCpnt) 
  46. __queue_add(queue,SCpnt,(SCpnt)->cmnd[0] == REQUEST_SENSE)
  47. #define queue_add_cmd_tail(queue,SCpnt) 
  48. __queue_add(queue,SCpnt,0)
  49. /*
  50.  * Function: int __queue_add(Queue_t *queue, Scsi_Cmnd *SCpnt, int head)
  51.  * Purpose : Add a new command onto a queue
  52.  * Params  : queue - destination queue
  53.  *      SCpnt - command to add
  54.  *      head  - add command to head of queue
  55.  * Returns : 0 on error, !0 on success
  56.  */
  57. extern int __queue_add(Queue_t *queue, Scsi_Cmnd *SCpnt, int head);
  58. /*
  59.  * Function: Scsi_Cmnd *queue_remove_tgtluntag (queue, target, lun, tag)
  60.  * Purpose : remove a SCSI command from the queue for a specified target/lun/tag
  61.  * Params  : queue  - queue to remove command from
  62.  *      target - target that we want
  63.  *      lun    - lun on device
  64.  *      tag    - tag on device
  65.  * Returns : Scsi_Cmnd if successful, or NULL if no command satisfies requirements
  66.  */
  67. extern Scsi_Cmnd *queue_remove_tgtluntag (Queue_t *queue, int target, int lun, int tag);
  68. /*
  69.  * Function: int queue_probetgtlun (queue, target, lun)
  70.  * Purpose : check to see if we have a command in the queue for the specified
  71.  *      target/lun.
  72.  * Params  : queue  - queue to look in
  73.  *      target - target we want to probe
  74.  *      lun    - lun on target
  75.  * Returns : 0 if not found, != 0 if found
  76.  */
  77. extern int queue_probetgtlun (Queue_t *queue, int target, int lun);
  78. /*
  79.  * Function: int queue_remove_cmd (Queue_t *queue, Scsi_Cmnd *SCpnt)
  80.  * Purpose : remove a specific command from the queues
  81.  * Params  : queue - queue to look in
  82.  *      SCpnt - command to find
  83.  * Returns : 0 if not found
  84.  */
  85. int queue_remove_cmd(Queue_t *queue, Scsi_Cmnd *SCpnt);
  86. #endif /* QUEUE_H */