Home
last modified time | relevance | path

Searched refs:scsi (Results 1 – 25 of 41) sorted by relevance

12

/external/syslinux/gpxe/src/drivers/block/
Dscsi.c55 int scsi_detached_command ( struct scsi_device *scsi __unused, in scsi_detached_command()
67 static int scsi_command ( struct scsi_device *scsi, in scsi_command() argument
71 DBGC2 ( scsi, "SCSI %p " SCSI_CDB_FORMAT "\n", in scsi_command()
72 scsi, SCSI_CDB_DATA ( command->cdb ) ); in scsi_command()
81 if ( ( rc = scsi->command ( scsi, command ) ) != 0 ) { in scsi_command()
83 DBGC ( scsi, "SCSI %p " SCSI_CDB_FORMAT " err %s\n", in scsi_command()
84 scsi, SCSI_CDB_DATA ( command->cdb ), strerror ( rc ) ); in scsi_command()
93 DBGC ( scsi, "SCSI %p " SCSI_CDB_FORMAT " err %s\n", in scsi_command()
94 scsi, SCSI_CDB_DATA ( command->cdb ), strerror ( rc ) ); in scsi_command()
100 DBGC ( scsi, "SCSI %p " SCSI_CDB_FORMAT " status %02x sense " in scsi_command()
[all …]
Dsrp.c440 static int srp_command ( struct scsi_device *scsi, in srp_command() argument
443 container_of ( scsi->backend, struct srp_device, refcnt ); in srp_command()
471 int srp_attach ( struct scsi_device *scsi, const char *root_path ) { in srp_attach() argument
497 scsi->backend = ref_get ( &srp->refcnt ); in srp_attach()
498 scsi->command = srp_command; in srp_attach()
513 void srp_detach ( struct scsi_device *scsi ) { in srp_detach() argument
515 container_of ( scsi->backend, struct srp_device, refcnt ); in srp_detach()
520 scsi->command = scsi_detached_command; in srp_detach()
521 ref_put ( scsi->backend ); in srp_detach()
522 scsi->backend = NULL; in srp_detach()
/external/syslinux/gpxe/src/arch/i386/interface/pcbios/
Dib_srpboot.c14 struct scsi_device *scsi; in ib_srpboot() local
18 scsi = zalloc ( sizeof ( *scsi ) ); in ib_srpboot()
19 if ( ! scsi ) { in ib_srpboot()
29 if ( ( rc = srp_attach ( scsi, root_path ) ) != 0 ) { in ib_srpboot()
34 if ( ( rc = init_scsidev ( scsi ) ) != 0 ) { in ib_srpboot()
40 drive->blockdev = &scsi->blockdev; in ib_srpboot()
44 container_of ( scsi->backend, struct srp_device, refcnt ); in ib_srpboot()
61 srp_detach ( scsi ); in ib_srpboot()
65 free ( scsi ); in ib_srpboot()
Discsiboot.c15 struct scsi_device *scsi; in iscsiboot() local
19 scsi = zalloc ( sizeof ( *scsi ) ); in iscsiboot()
20 if ( ! scsi ) { in iscsiboot()
30 if ( ( rc = iscsi_attach ( scsi, root_path ) ) != 0 ) { in iscsiboot()
35 if ( ( rc = init_scsidev ( scsi ) ) != 0 ) { in iscsiboot()
41 drive->blockdev = &scsi->blockdev; in iscsiboot()
46 container_of ( scsi->backend, struct iscsi_session, refcnt ); in iscsiboot()
63 iscsi_detach ( scsi ); in iscsiboot()
67 free ( scsi ); in iscsiboot()
Dsbft.c59 .scsi_offset = offsetof ( typeof ( sbftab ), scsi ),
72 struct sbft_scsi_subtable *sbft_scsi = &sbftab.scsi; in sbft_fill_data()
/external/kernel-headers/original/
DREADME.TXT38 The scsi directory contains a set of manually updated headers. The scsi kernel
40 contains the unmodified scsi headers that are imported into bionic. The
44 The files from the scsi directory will be copied into bionic after being
46 ../modified/scsi. Any files found in the modified directory completely
47 replace the ones in the scsi directory.
/external/kmod/testsuite/rootfs-pristine/test-depmod/modules-order-compressed/lib/modules/4.4.4/
Dmodules.order4 kernel/drivers/scsi/scsi_mod.ko
6 kernel/drivers/scsi/hpsa.ko
/external/syslinux/gpxe/src/include/gpxe/
Dscsi.h270 int ( * command ) ( struct scsi_device *scsi,
276 extern int scsi_detached_command ( struct scsi_device *scsi,
278 extern int init_scsidev ( struct scsi_device *scsi );
Discsi.h674 extern int iscsi_attach ( struct scsi_device *scsi, const char *root_path );
675 extern void iscsi_detach ( struct scsi_device *scsi );
Dsrp.h865 extern int srp_attach ( struct scsi_device *scsi, const char *root_path );
866 extern void srp_detach ( struct scsi_device *scsi );
/external/kernel-headers/modified/
DREADME.TXT4 Currently this includes scsi/scsi.h from 3.18, which mixes userspace-facing
/external/kernel-headers/modified/scsi/
DREADME.TXT4 Currently this includes scsi/scsi.h from 3.18, which mixes userspace-facing
/external/syslinux/gpxe/src/net/tcp/
Discsi.c1548 static int iscsi_command ( struct scsi_device *scsi, in iscsi_command() argument
1551 container_of ( scsi->backend, struct iscsi_session, refcnt ); in iscsi_command()
1579 void iscsi_detach ( struct scsi_device *scsi ) { in iscsi_detach() argument
1581 container_of ( scsi->backend, struct iscsi_session, refcnt ); in iscsi_detach()
1586 scsi->command = scsi_detached_command; in iscsi_detach()
1587 ref_put ( scsi->backend ); in iscsi_detach()
1588 scsi->backend = NULL; in iscsi_detach()
1726 int iscsi_attach ( struct scsi_device *scsi, const char *root_path ) { in iscsi_attach() argument
1764 scsi->backend = ref_get ( &iscsi->refcnt ); in iscsi_attach()
1765 scsi->command = iscsi_command; in iscsi_attach()
/external/kernel-headers/original/uapi/linux/
Dpg.h56 char scsi; /* "scsi" status == sense key */ member
Dedd.h134 } __attribute__ ((packed)) scsi; member
/external/ltp/testscripts/
Dltp-scsi_debug.sh6 ls /lib/modules/$kernel/kernel/drivers/scsi | grep scsi_debug > /dev/null 2>&1
51 dev_name=$(ls /proc/scsi/scsi_debug)
/external/iproute2/etc/iproute2/
Dnl_protos20 18 scsi-trans
/external/ltp/tools/pounder21/test_scripts/
Dget_hw_info73 find /proc/scsi -type f | while read f; do echo $f; cat $f; done;
/external/syslinux/gpxe/src/arch/i386/include/gpxe/
Dsbft.h114 struct sbft_scsi_subtable scsi; member
/external/ltp/tools/pounder21/test_repo/
DT00hwinfo73 find /proc/scsi -type f | while read f; do echo $f; cat $f; done;
/external/autotest/client/tests/qemu_iotests/
Dcontrol15 but no actual block drivers like ide, scsi or virtio.
/external/kmod/testsuite/module-playground/
DMakefile37 obj-m += mod-fake-scsi-mod.o
/external/syslinux/com32/gplinclude/disk/
Dgeom.h148 } __attribute__ ((packed)) scsi; member
/external/strace/
DAndroid.mk143 scsi.c \
Ddefs.h682 DECL_IOCTL(scsi);

12