patch-1.3.9 linux/drivers/scsi/scsi_proc.c
Next file: linux/drivers/scsi/sd.c
Previous file: linux/drivers/scsi/scsi_ioctl.c
Back to the patch index
Back to the overall index
- Lines: 70
- Date:
Tue Jul 11 07:56:04 1995
- Orig file:
v1.3.8/linux/drivers/scsi/scsi_proc.c
- Orig date:
Fri Jul 7 08:54:50 1995
diff -u --recursive --new-file v1.3.8/linux/drivers/scsi/scsi_proc.c linux/drivers/scsi/scsi_proc.c
@@ -7,7 +7,7 @@
* information directly to the lowlevel driver.
*
* (c) 1995 Michael Neuffer neuffer@goofy.zdv.uni-mainz.de
- * Version: 0.99.5 last change: 95/06/28
+ * Version: 0.99.6 last change: 95/07/04
*
* generic command parser provided by:
* Andreas Heilwagen <crashcar@informatik.uni-koblenz.de>
@@ -86,8 +86,7 @@
begin = 0;
pos = len = sprintf(buffer,
"The driver does not yet support the proc-fs\n");
- if(pos < offset)
- {
+ if(pos < offset) {
len = 0;
begin = pos;
}
@@ -110,27 +109,23 @@
struct Scsi_Host *hpnt = scsi_hostlist;
if(func != 2) {
- if(ino == PROC_SCSI_SCSI) {
+ if(ino == PROC_SCSI_SCSI) {
/*
- * If there are no hosts, tell the user to go away.
+ * This is for the scsi core, rather than any specific
+ * lowlevel driver.
*/
- if( hpnt == NULL ) {
- return (-ENOSYS);
- }
-
- retval = scsi_proc_info(buffer, start, offset, length,
- hpnt->host_no, func);
- return(retval);
+ return(scsi_proc_info(buffer, start, offset, length, 0, func));
}
while(hpnt) {
- if (ino == (hpnt->host_no + PROC_SCSI_FILE))
+ if (ino == (hpnt->host_no + PROC_SCSI_FILE)) {
if(hpnt->hostt->proc_info == NULL)
return generic_proc_info(buffer, start, offset, length,
hpnt->host_no, func);
else
- return(hpnt->hostt->proc_info(buffer, start, offset, length,
- hpnt->host_no, func));
+ return(hpnt->hostt->proc_info(buffer, start, offset,
+ length, hpnt->host_no, func));
+ }
hpnt = hpnt->next;
}
return(-EBADF);
@@ -154,8 +149,13 @@
{
Scsi_Host_Template *tpnt = scsi_hosts;
struct Scsi_Host *hpnt;
- static char names[PROC_SCSI_LAST - PROC_SCSI_FILE][3];
uint x, y;
+
+ /* namespace for 16 HBAs with host_no 0-999
+ * I don't think we'll need more. Having more than 2
+ * HBAs in one system is already highly unusual
+ */
+ static char names[PROC_SCSI_LAST - PROC_SCSI_FILE][4];
x = y = 0;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this