Lines Matching defs:aha152x_hostdata
424 struct aha152x_hostdata { struct
425 Scsi_Cmnd *issue_SC;
428 Scsi_Cmnd *current_SC;
431 Scsi_Cmnd *disconnected_SC;
434 Scsi_Cmnd *done_SC;
437 spinlock_t lock;
441 int total_commands;
442 int disconnections;
443 int busfree_without_any_action;
444 int busfree_without_old_command;
445 int busfree_without_new_command;
446 int busfree_without_done_command;
447 int busfree_with_check_condition;
448 int count[maxstate];
449 int count_trans[maxstate];
450 unsigned long time[maxstate];
453 int commands; /* current number of commands */
455 int reconnect; /* disconnection allowed */
456 int parity; /* parity checking enabled */
457 int synchronous; /* synchronous transferes enabled */
458 int delay; /* reset out delay */
459 int ext_trans; /* extended translation enabled */
461 int swint; /* software-interrupt was fired during detect() */
462 int service; /* bh needs to be run */
463 int in_intr; /* bh is running */
468 enum aha152x_state state, prevstate, laststate;
470 int target;
473 unsigned char syncrate[8];
476 unsigned char syncneg[8];
482 int cmd_i;
485 int msgi_len;
487 unsigned char msgi[256];
490 int msgo_i, msgo_len;
492 unsigned char msgo[256];
495 int data_len;
520 #define HOSTDATA(shpnt) ((struct aha152x_hostdata *) &shpnt->hostdata) argument