Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
1e4d4052
Commit
1e4d4052
authored
Oct 08, 2002
by
Alan Cox
Committed by
Linus Torvalds
Oct 08, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] update fdomain scsi
parent
12610bb6
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
125 additions
and
301 deletions
+125
-301
drivers/scsi/fdomain.c
drivers/scsi/fdomain.c
+97
-278
drivers/scsi/fdomain.h
drivers/scsi/fdomain.h
+28
-23
No files found.
drivers/scsi/fdomain.c
View file @
1e4d4052
This diff is collapsed.
Click to expand it.
drivers/scsi/fdomain.h
View file @
1e4d4052
...
...
@@ -25,29 +25,34 @@
#ifndef _FDOMAIN_H
#define _FDOMAIN_H
int
fdomain_16x0_detect
(
Scsi_Host_Template
*
);
int
fdomain_16x0_command
(
Scsi_Cmnd
*
);
int
fdomain_16x0_abort
(
Scsi_Cmnd
*
);
const
char
*
fdomain_16x0_info
(
struct
Scsi_Host
*
);
int
fdomain_16x0_reset
(
Scsi_Cmnd
*
,
unsigned
int
);
int
fdomain_16x0_queue
(
Scsi_Cmnd
*
,
void
(
*
done
)(
Scsi_Cmnd
*
)
);
int
fdomain_16x0_biosparam
(
Disk
*
,
struct
block_device
*
,
int
*
);
int
fdomain_16x0_proc_info
(
char
*
buffer
,
char
**
start
,
off_t
offset
,
static
int
fdomain_16x0_detect
(
Scsi_Host_Template
*
);
static
int
fdomain_16x0_command
(
Scsi_Cmnd
*
);
static
int
fdomain_16x0_abort
(
Scsi_Cmnd
*
);
static
const
char
*
fdomain_16x0_info
(
struct
Scsi_Host
*
);
static
int
fdomain_16x0_bus_reset
(
Scsi_Cmnd
*
);
static
int
fdomain_16x0_host_reset
(
Scsi_Cmnd
*
);
static
int
fdomain_16x0_device_reset
(
Scsi_Cmnd
*
);
static
int
fdomain_16x0_queue
(
Scsi_Cmnd
*
,
void
(
*
done
)(
Scsi_Cmnd
*
));
static
int
fdomain_16x0_biosparam
(
Disk
*
,
struct
block_device
*
,
int
*
);
static
int
fdomain_16x0_proc_info
(
char
*
buffer
,
char
**
start
,
off_t
offset
,
int
length
,
int
hostno
,
int
inout
);
int
fdomain_16x0_release
(
struct
Scsi_Host
*
shpnt
);
static
int
fdomain_16x0_release
(
struct
Scsi_Host
*
shpnt
);
#define FDOMAIN_16X0 { proc_info: fdomain_16x0_proc_info, \
detect: fdomain_16x0_detect, \
info: fdomain_16x0_info, \
command: fdomain_16x0_command, \
queuecommand: fdomain_16x0_queue, \
abort: fdomain_16x0_abort, \
reset: fdomain_16x0_reset, \
bios_param: fdomain_16x0_biosparam, \
release: fdomain_16x0_release, \
can_queue: 1, \
this_id: 6, \
sg_tablesize: 64, \
cmd_per_lun: 1, \
use_clustering: DISABLE_CLUSTERING }
#define FDOMAIN_16X0 { proc_info: fdomain_16x0_proc_info, \
detect: fdomain_16x0_detect, \
info: fdomain_16x0_info, \
command: fdomain_16x0_command, \
queuecommand: fdomain_16x0_queue, \
eh_abort_handler: fdomain_16x0_abort, \
eh_bus_reset_handler: fdomain_16x0_bus_reset, \
eh_device_reset_handler: fdomain_16x0_device_reset, \
eh_host_reset_handler: fdomain_16x0_host_reset, \
bios_param: fdomain_16x0_biosparam, \
release: fdomain_16x0_release, \
can_queue: 1, \
this_id: 6, \
sg_tablesize: 64, \
cmd_per_lun: 1, \
use_clustering: DISABLE_CLUSTERING \
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment