search for: did_error

Displaying 9 results from an estimated 9 matches for "did_error".

Did you mean: bind_error
2017 Jan 03
2
Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
...failing Dec 15 01:57:53 test.example.com multipathd: 360000970000196801239533037303434: Recovered to normal mode Dec 15 01:57:53 test.example.com multipathd: 360000970000196801239533037303434: remaining active paths: 1 Dec 15 01:57:53 test.example.com kernel: sd 1:0:2:20: [sdeu] Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK [root at test log]# multipath -ll |grep -i fail |- 1:0:0:15 sdq 65:0 failed ready running - 3:0:0:15 sdai 66:32 failed ready running We are using default multipath.conf HBA driver version 8.07.00.26.06.8-k HBA model QLogic Corp. ISP8324-based 16Gb Fibre Channel to...
2017 Jan 05
0
Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
> On Jan 3, 2017, at 2:59 PM, lakhera2017 <plakhera at salesforce.com> wrote: > > |- 1:0:0:15 sdq 65:0 failed ready running > - 3:0:0:15 sdai 66:32 failed ready running Does the same SAN target fail each time? What brand/model/firmware SAN switch is between initiator and target? Does the HBA show any SCSI aborts?
2011 Feb 15
6
HVM domU doesnt start
...success so I ran fsck.ext3 and it gave me input/output error in the domU and in dom0 the kernel says: Feb 14 18:22:28 scofield last message repeated 5 times Feb 14 18:22:30 scofield kernel: sd 0:2:3:0: [sdd] Unhandled error code Feb 14 18:22:30 scofield kernel: sd 0:2:3:0: [sdd] Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK Feb 14 18:22:30 scofield kernel: end_request: I/O error, dev sdd, sector 1073919 Feb 14 18:22:30 scofield Server Administrator: Storage Service EventID: 2095 SCSI sense data Sense key: 3 Sense code: 11 Sense qualifier: 0: Physical Disk 0:0:3 Controller 0, Connector 0<xen-...
2015 Oct 28
11
[Bug 11578] New: Rsync does start with an error directly connecting an USB drive to a port
https://bugzilla.samba.org/show_bug.cgi?id=11578 Bug ID: 11578 Summary: Rsync does start with an error directly connecting an USB drive to a port Product: rsync Version: 3.1.1 Hardware: x64 OS: Linux Status: NEW Severity: normal Priority: P5 Component: core
2009 Sep 30
1
SCSI driver for VMware's virtual HBA - V5.
...let's move on.. */ > + cmd->result = (DID_OK << 16); > + break; > + > + case BTSTAT_DATARUN: > + case BTSTAT_DATA_UNDERRUN: > + /* Report residual data in underruns */ > + scsi_set_resid(cmd, scsi_bufflen(cmd) - e->dataLen); > + cmd->result = (DID_ERROR << 16); > + break; > + > + case BTSTAT_SELTIMEO: > + /* Our emulation returns this for non-connected devs */ > + cmd->result = (DID_BAD_TARGET << 16); > + break; > + > + case BTSTAT_LUNMISMATCH: > + case BTSTAT_TAGREJECT: > + case BTSTAT_BADM...
2009 Sep 30
1
SCSI driver for VMware's virtual HBA - V5.
...let's move on.. */ > + cmd->result = (DID_OK << 16); > + break; > + > + case BTSTAT_DATARUN: > + case BTSTAT_DATA_UNDERRUN: > + /* Report residual data in underruns */ > + scsi_set_resid(cmd, scsi_bufflen(cmd) - e->dataLen); > + cmd->result = (DID_ERROR << 16); > + break; > + > + case BTSTAT_SELTIMEO: > + /* Our emulation returns this for non-connected devs */ > + cmd->result = (DID_BAD_TARGET << 16); > + break; > + > + case BTSTAT_LUNMISMATCH: > + case BTSTAT_TAGREJECT: > + case BTSTAT_BADM...
2009 Oct 13
1
SCSI driver for VMware's virtual HBA - V6.
...H_FLAG: + /* If everything went fine, let's move on.. */ + cmd->result = (DID_OK << 16); + break; + + case BTSTAT_DATARUN: + case BTSTAT_DATA_UNDERRUN: + /* Report residual data in underruns */ + scsi_set_resid(cmd, scsi_bufflen(cmd) - e->dataLen); + cmd->result = (DID_ERROR << 16); + break; + + case BTSTAT_SELTIMEO: + /* Our emulation returns this for non-connected devs */ + cmd->result = (DID_BAD_TARGET << 16); + break; + + case BTSTAT_LUNMISMATCH: + case BTSTAT_TAGREJECT: + case BTSTAT_BADMSG: + cmd->result = (DRIVER_INVALID <<...
2009 Oct 13
1
SCSI driver for VMware's virtual HBA - V6.
...H_FLAG: + /* If everything went fine, let's move on.. */ + cmd->result = (DID_OK << 16); + break; + + case BTSTAT_DATARUN: + case BTSTAT_DATA_UNDERRUN: + /* Report residual data in underruns */ + scsi_set_resid(cmd, scsi_bufflen(cmd) - e->dataLen); + cmd->result = (DID_ERROR << 16); + break; + + case BTSTAT_SELTIMEO: + /* Our emulation returns this for non-connected devs */ + cmd->result = (DID_BAD_TARGET << 16); + break; + + case BTSTAT_LUNMISMATCH: + case BTSTAT_TAGREJECT: + case BTSTAT_BADMSG: + cmd->result = (DRIVER_INVALID <<...
2007 Jan 02
0
[PATCH 1/4] add scsi-target and IO_CMD_EPOLL_WAIT patches
...uest_bufflen, tcmd->bufflen); ++ ++ bio = bio_list_pop(&tcmd->xfer_list); ++ BUG_ON(!bio); ++ ++ blk_rq_bio_prep(cmd->request->q, cmd->request, bio); ++ cmd->request->data_len = bio->bi_size; ++ err = scsi_tgt_init_cmd(cmd, GFP_ATOMIC); ++ if (err) { ++ cmd->result = DID_ERROR << 16; ++ goto send_uspace_err; ++ } ++ ++ if (scsi_tgt_transfer_data(cmd)) { ++ cmd->result = DID_NO_CONNECT << 16; ++ goto send_uspace_err; ++ } ++} ++ ++static int scsi_tgt_transfer_data(struct scsi_cmnd *cmd) ++{ ++ int err; ++ struct Scsi_Host *host = scsi_tgt_cmd_to_host(cmd...