root/drivers/scsi/scsi_debug.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _SCSI_DEBUG_H
   2 
   3 #include <linux/types.h>
   4 
   5 int scsi_debug_detect(Scsi_Host_Template *);
   6 int scsi_debug_command(Scsi_Cmnd *);
   7 int scsi_debug_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
   8 int scsi_debug_abort(Scsi_Cmnd *);
   9 int scsi_debug_biosparam(Disk *, int, int[]);
  10 int scsi_debug_reset(Scsi_Cmnd *);
  11 
  12 extern int generic_proc_info(char *, char **, off_t, int, int, int);
  13 
  14 #ifndef NULL
  15         #define NULL 0
  16 #endif
  17 
  18 #define SCSI_DEBUG_MAILBOXES 8
  19 
  20 #define SCSI_DEBUG {NULL, NULL, generic_proc_info, "scsi_debug", \
  21                 PROC_SCSI_SCSI_DEBUG, "SCSI DEBUG", scsi_debug_detect, NULL, \
  22                 NULL, scsi_debug_command,               \
  23                 scsi_debug_queuecommand,                        \
  24                 scsi_debug_abort,                               \
  25                 scsi_debug_reset,                               \
  26                 NULL,                                           \
  27                 scsi_debug_biosparam,                           \
  28                 SCSI_DEBUG_MAILBOXES, 7, SG_ALL, 1, 0, 1, ENABLE_CLUSTERING}
  29 #endif

/* [previous][next][first][last][top][bottom][index][help] */