Lines Matching defs:aha152x_hostdata
473 struct aha152x_hostdata { struct
474 Scsi_Cmnd *issue_SC;
477 Scsi_Cmnd *current_SC;
480 Scsi_Cmnd *disconnected_SC;
483 Scsi_Cmnd *done_SC;
486 spinlock_t lock;
490 const char *locker;
492 int lockerl; /* where did it get it */
494 int debug; /* current debugging setting */
498 int total_commands;
499 int disconnections;
500 int busfree_without_any_action;
501 int busfree_without_old_command;
502 int busfree_without_new_command;
503 int busfree_without_done_command;
504 int busfree_with_check_condition;
505 int count[maxstate];
506 int count_trans[maxstate];
507 unsigned long time[maxstate];
510 int commands; /* current number of commands */
512 int reconnect; /* disconnection allowed */
513 int parity; /* parity checking enabled */
514 int synchronous; /* synchronous transferes enabled */
515 int delay; /* reset out delay */
516 int ext_trans; /* extended translation enabled */
518 int swint; /* software-interrupt was fired during detect() */
519 int service; /* bh needs to be run */
520 int in_intr; /* bh is running */
525 enum aha152x_state state, prevstate, laststate;
527 int target;
530 unsigned char syncrate[8];
533 unsigned char syncneg[8];
539 int cmd_i;
542 int msgi_len;
544 unsigned char msgi[256];
547 int msgo_i, msgo_len;
549 unsigned char msgo[256];
552 int data_len;
577 #define HOSTDATA(shpnt) ((struct aha152x_hostdata *) &shpnt->hostdata) argument