Symbol: sbp_status
sys/dev/ieee1394/sbp.c
1571
sbp_scsi_status(struct sbp_status *sbp_status, struct sbp_ocb *ocb)
sys/dev/ieee1394/sbp.c
1576
sbp_cmd_status = (struct sbp_cmd_status *)sbp_status->data;
sys/dev/ieee1394/sbp.c
1590
sbp_status->len);
sys/dev/ieee1394/sbp.c
1613
if (sbp_status->len <= 1)
sys/dev/ieee1394/sbp.c
1616
else if (sbp_status->len <= 4)
sys/dev/ieee1394/sbp.c
1721
struct sbp_status *sbp_status;
sys/dev/ieee1394/sbp.c
1751
sbp_status = (struct sbp_status *)xfer->recv.payload;
sys/dev/ieee1394/sbp.c
1767
switch (sbp_status->src) {
sys/dev/ieee1394/sbp.c
1773
if (OCB_MATCH(ocb, sbp_status)) {
sys/dev/ieee1394/sbp.c
1778
ocb = sbp_dequeue_ocb(sdev, sbp_status);
sys/dev/ieee1394/sbp.c
1782
sdev->bustgtlun, ntohl(sbp_status->orb_lo));
sys/dev/ieee1394/sbp.c
1796
status_valid0 = (sbp_status->src < 2
sys/dev/ieee1394/sbp.c
1797
&& sbp_status->resp == SBP_REQ_CMP
sys/dev/ieee1394/sbp.c
1798
&& sbp_status->dead == 0);
sys/dev/ieee1394/sbp.c
1799
status_valid = (status_valid0 && sbp_status->status == 0);
sys/dev/ieee1394/sbp.c
1807
sbp_status->src, sbp_status->resp, sbp_status->dead,
sys/dev/ieee1394/sbp.c
1808
sbp_status->len, sbp_status->status,
sys/dev/ieee1394/sbp.c
1809
ntohs(sbp_status->orb_hi), ntohl(sbp_status->orb_lo));
sys/dev/ieee1394/sbp.c
1812
status = sbp_status->status;
sys/dev/ieee1394/sbp.c
1813
switch (sbp_status->resp) {
sys/dev/ieee1394/sbp.c
1832
printf("unknown response code %d\n", sbp_status->resp);
sys/dev/ieee1394/sbp.c
1837
if (sbp_status->dead) {
sys/dev/ieee1394/sbp.c
1942
if (sbp_status->len > 1)
sys/dev/ieee1394/sbp.c
1943
sbp_scsi_status(sbp_status, ocb);
sys/dev/ieee1394/sbp.c
1945
if (sbp_status->resp != SBP_REQ_CMP)
sys/dev/ieee1394/sbp.c
2385
sbp_dequeue_ocb(struct sbp_dev *sdev, struct sbp_status *sbp_status)
sys/dev/ieee1394/sbp.c
2394
__func__, sdev->bustgtlun, ntohl(sbp_status->orb_lo),
sys/dev/ieee1394/sbp.c
2395
sbp_status->src);
sys/dev/ieee1394/sbp.c
2400
if (OCB_MATCH(ocb, sbp_status)) {
sys/dev/ieee1394/sbp.c
2419
if (sbp_status->src == SRC_NO_NEXT) {
sys/dev/ieee1394/sbp.c
2446
sbp_status->src == SRC_NO_NEXT)
sys/dev/ieee1394/sbp.c
384
static void sbp_scsi_status(struct sbp_status *, struct sbp_ocb *);
sys/dev/ieee1394/sbp.c
397
static struct sbp_ocb *sbp_dequeue_ocb(struct sbp_dev *, struct sbp_status *);