Lines Matching defs:aha152x_hostdata
457 struct aha152x_hostdata { struct
458 Scsi_Cmnd *issue_SC;
461 Scsi_Cmnd *current_SC;
464 Scsi_Cmnd *disconnected_SC;
467 Scsi_Cmnd *done_SC;
470 spinlock_t lock;
474 char *locker; /* which function has the lock */
475 int lockerl; /* where did it get it */
477 int debug; /* current debugging setting */
481 int total_commands;
482 int disconnections;
483 int busfree_without_any_action;
484 int busfree_without_old_command;
485 int busfree_without_new_command;
486 int busfree_without_done_command;
487 int busfree_with_check_condition;
488 int count[maxstate];
489 int count_trans[maxstate];
490 unsigned long time[maxstate];
493 int commands; /* current number of commands */
495 int reconnect; /* disconnection allowed */
496 int parity; /* parity checking enabled */
497 int synchronous; /* synchronous transferes enabled */
498 int delay; /* reset out delay */
499 int ext_trans; /* extended translation enabled */
501 int swint; /* software-interrupt was fired during detect() */
502 int service; /* bh needs to be run */
503 int in_intr; /* bh is running */
508 enum aha152x_state state, prevstate, laststate;
510 int target;
513 unsigned char syncrate[8];
516 unsigned char syncneg[8];
522 int cmd_i;
525 int msgi_len;
527 unsigned char msgi[256];
530 int msgo_i, msgo_len;
532 unsigned char msgo[256];
556 #define HOSTDATA(shpnt) ((struct aha152x_hostdata *) &shpnt->hostdata) argument