Symbol: sbp_status
sys/dev/firewire/sbp.c
1449
sbp_scsi_status(struct sbp_status *sbp_status, struct sbp_ocb *ocb)
sys/dev/firewire/sbp.c
1454
sbp_cmd_status = (struct sbp_cmd_status *)sbp_status->data;
sys/dev/firewire/sbp.c
1468
sbp_status->len);
sys/dev/firewire/sbp.c
1492
if (sbp_status->len <= 1)
sys/dev/firewire/sbp.c
1495
else if (sbp_status->len <= 4)
sys/dev/firewire/sbp.c
1587
struct sbp_status *sbp_status;
sys/dev/firewire/sbp.c
1614
sbp_status = (struct sbp_status *)xfer->recv.payload;
sys/dev/firewire/sbp.c
1635
switch (sbp_status->src) {
sys/dev/firewire/sbp.c
1641
if (OCB_MATCH(ocb, sbp_status)) {
sys/dev/firewire/sbp.c
1647
ocb = sbp_dequeue_ocb(sdev, sbp_status);
sys/dev/firewire/sbp.c
1652
ntohl(sbp_status->orb_lo));
sys/dev/firewire/sbp.c
1667
status_valid0 = (sbp_status->src < 2
sys/dev/firewire/sbp.c
1668
&& sbp_status->resp == ORB_RES_CMPL
sys/dev/firewire/sbp.c
1669
&& sbp_status->dead == 0);
sys/dev/firewire/sbp.c
1670
status_valid = (status_valid0 && sbp_status->status == 0);
sys/dev/firewire/sbp.c
1679
sbp_status->src, sbp_status->resp, sbp_status->dead,
sys/dev/firewire/sbp.c
1680
sbp_status->len, sbp_status->status,
sys/dev/firewire/sbp.c
1681
ntohs(sbp_status->orb_hi), ntohl(sbp_status->orb_lo));
sys/dev/firewire/sbp.c
1685
status = sbp_status->status;
sys/dev/firewire/sbp.c
1686
switch (sbp_status->resp) {
sys/dev/firewire/sbp.c
1705
printf("unknown respose code %d\n", sbp_status->resp);
sys/dev/firewire/sbp.c
1710
if (sbp_status->dead) {
sys/dev/firewire/sbp.c
1806
if (sbp_status->len > 1) {
sys/dev/firewire/sbp.c
1807
sbp_scsi_status(sbp_status, ocb);
sys/dev/firewire/sbp.c
1809
if (sbp_status->resp != ORB_RES_CMPL) {
sys/dev/firewire/sbp.c
233
static struct sbp_ocb * sbp_dequeue_ocb (struct sbp_dev *, struct sbp_status *);
sys/dev/firewire/sbp.c
2590
sbp_dequeue_ocb(struct sbp_dev *sdev, struct sbp_status *sbp_status)
sys/dev/firewire/sbp.c
2599
__func__, sdev->bustgtlun, ntohl(sbp_status->orb_lo), sbp_status->src);
sys/dev/firewire/sbp.c
2603
if (OCB_MATCH(ocb, sbp_status)) {
sys/dev/firewire/sbp.c
2618
if (sbp_status->src == SRC_NO_NEXT) {
sys/dev/firewire/sbp.c
2640
sbp_status->src == SRC_NO_NEXT)
sys/dev/firewire/sbp_targ.c
229
struct sbp_status status;
sys/dev/firewire/sbp_targ.c
660
struct sbp_status *sbp_status;
sys/dev/firewire/sbp_targ.c
665
sbp_status = &orbi->status;
sys/dev/firewire/sbp_targ.c
669
sbp_status->resp = 0; /* XXX */
sys/dev/firewire/sbp_targ.c
670
sbp_status->status = 0; /* XXX */
sys/dev/firewire/sbp_targ.c
671
sbp_status->dead = 0; /* XXX */
sys/dev/firewire/sbp_targ.c
679
sbp_status->len = 1;
sys/dev/firewire/sbp_targ.c
701
sbp_cmd_status = (struct sbp_cmd_status *)&sbp_status->data[0];
sys/dev/firewire/sbp_targ.c
749
sbp_status->len = 4;
sys/dev/firewire/sbp_targ.c
766
sbp_status->len = 5;
sys/dev/firewire/sbp_targ.c
773
sbp_status->len = 5;
sys/dev/firewire/sbp_targ.c
781
sbp_status->status);