Symbol: sbp_status
sys/dev/firewire/sbp.c
1461
sbp_scsi_status(struct sbp_status *sbp_status, struct sbp_ocb *ocb)
sys/dev/firewire/sbp.c
1466
sbp_cmd_status = (struct sbp_cmd_status *)sbp_status->data;
sys/dev/firewire/sbp.c
1480
sbp_status->len);
sys/dev/firewire/sbp.c
1504
if (sbp_status->len <= 1)
sys/dev/firewire/sbp.c
1507
else if (sbp_status->len <= 4)
sys/dev/firewire/sbp.c
1609
struct sbp_status *sbp_status;
sys/dev/firewire/sbp.c
1636
sbp_status = (struct sbp_status *)xfer->recv.payload;
sys/dev/firewire/sbp.c
1657
switch (sbp_status->src) {
sys/dev/firewire/sbp.c
1663
if (OCB_MATCH(ocb, sbp_status)) {
sys/dev/firewire/sbp.c
1669
ocb = sbp_dequeue_ocb(sdev, sbp_status);
sys/dev/firewire/sbp.c
1674
ntohl(sbp_status->orb_lo));
sys/dev/firewire/sbp.c
1689
status_valid0 = (sbp_status->src < 2
sys/dev/firewire/sbp.c
1690
&& sbp_status->resp == ORB_RES_CMPL
sys/dev/firewire/sbp.c
1691
&& sbp_status->dead == 0);
sys/dev/firewire/sbp.c
1692
status_valid = (status_valid0 && sbp_status->status == 0);
sys/dev/firewire/sbp.c
1701
sbp_status->src, sbp_status->resp, sbp_status->dead,
sys/dev/firewire/sbp.c
1702
sbp_status->len, sbp_status->status,
sys/dev/firewire/sbp.c
1703
ntohs(sbp_status->orb_hi), ntohl(sbp_status->orb_lo));
sys/dev/firewire/sbp.c
1707
status = sbp_status->status;
sys/dev/firewire/sbp.c
1708
switch (sbp_status->resp) {
sys/dev/firewire/sbp.c
1727
printf("unknown respose code %d\n", sbp_status->resp);
sys/dev/firewire/sbp.c
1732
if (sbp_status->dead) {
sys/dev/firewire/sbp.c
1828
if (sbp_status->len > 1) {
sys/dev/firewire/sbp.c
1829
sbp_scsi_status(sbp_status, ocb);
sys/dev/firewire/sbp.c
1831
if (sbp_status->resp != ORB_RES_CMPL) {
sys/dev/firewire/sbp.c
238
static struct sbp_ocb * sbp_dequeue_ocb (struct sbp_dev *, struct sbp_status *);
sys/dev/firewire/sbp.c
2640
sbp_dequeue_ocb(struct sbp_dev *sdev, struct sbp_status *sbp_status)
sys/dev/firewire/sbp.c
2649
__func__, sdev->bustgtlun, ntohl(sbp_status->orb_lo), sbp_status->src);
sys/dev/firewire/sbp.c
2653
if (OCB_MATCH(ocb, sbp_status)) {
sys/dev/firewire/sbp.c
2668
if (sbp_status->src == SRC_NO_NEXT) {
sys/dev/firewire/sbp.c
2690
sbp_status->src == SRC_NO_NEXT)
sys/dev/firewire/sbp_targ.c
228
struct sbp_status status;
sys/dev/firewire/sbp_targ.c
663
struct sbp_status *sbp_status;
sys/dev/firewire/sbp_targ.c
668
sbp_status = &orbi->status;
sys/dev/firewire/sbp_targ.c
672
sbp_status->resp = 0; /* XXX */
sys/dev/firewire/sbp_targ.c
673
sbp_status->status = 0; /* XXX */
sys/dev/firewire/sbp_targ.c
674
sbp_status->dead = 0; /* XXX */
sys/dev/firewire/sbp_targ.c
682
sbp_status->len = 1;
sys/dev/firewire/sbp_targ.c
704
sbp_cmd_status = (struct sbp_cmd_status *)&sbp_status->data[0];
sys/dev/firewire/sbp_targ.c
770
sbp_status->len = 4;
sys/dev/firewire/sbp_targ.c
787
sbp_status->len = 5;
sys/dev/firewire/sbp_targ.c
794
sbp_status->len = 5;
sys/dev/firewire/sbp_targ.c
802
sbp_status->status);