scsi_host.h (6b1e5a45d4eaa75e28f2d170ea43ab8fc6dd34d8) | scsi_host.h (b45620229dd67ff1daffa8adce57f37b37860f78) |
---|---|
1#ifndef _SCSI_SCSI_HOST_H 2#define _SCSI_SCSI_HOST_H 3 4#include <linux/device.h> 5#include <linux/list.h> 6#include <linux/types.h> 7#include <linux/workqueue.h> 8#include <linux/mutex.h> --- 585 unchanged lines hidden (view full) --- 594 * without acquiring the lock. 595 */ 596 unsigned int host_busy; /* commands actually active on low-level */ 597 unsigned int host_failed; /* commands that failed. */ 598 unsigned int host_eh_scheduled; /* EH scheduled without command */ 599 600 unsigned int host_no; /* Used for IOCTL_GET_IDLUN, /proc/scsi et al. */ 601 | 1#ifndef _SCSI_SCSI_HOST_H 2#define _SCSI_SCSI_HOST_H 3 4#include <linux/device.h> 5#include <linux/list.h> 6#include <linux/types.h> 7#include <linux/workqueue.h> 8#include <linux/mutex.h> --- 585 unchanged lines hidden (view full) --- 594 * without acquiring the lock. 595 */ 596 unsigned int host_busy; /* commands actually active on low-level */ 597 unsigned int host_failed; /* commands that failed. */ 598 unsigned int host_eh_scheduled; /* EH scheduled without command */ 599 600 unsigned int host_no; /* Used for IOCTL_GET_IDLUN, /proc/scsi et al. */ 601 |
602 /* next two fields are used to bound the time spent in error handling */ 603 int eh_deadline; 604 unsigned long last_reset; 605 606 |
|
602 /* 603 * These three parameters can be used to allow for wide scsi, 604 * and for host adapters that support multiple busses 605 * The first two should be set to 1 more than the actual max id 606 * or lun (i.e. 8 for normal systems). 607 */ 608 unsigned int max_id; 609 unsigned int max_lun; --- 318 unchanged lines hidden --- | 607 /* 608 * These three parameters can be used to allow for wide scsi, 609 * and for host adapters that support multiple busses 610 * The first two should be set to 1 more than the actual max id 611 * or lun (i.e. 8 for normal systems). 612 */ 613 unsigned int max_id; 614 unsigned int max_lun; --- 318 unchanged lines hidden --- |