Symbol: sbp_ocb
sys/dev/firewire/sbp.c
1176
struct sbp_ocb *ocb;
sys/dev/firewire/sbp.c
1188
sbp_orb_pointer(struct sbp_dev *sdev, struct sbp_ocb *ocb)
sys/dev/firewire/sbp.c
1332
sbp_mgm_orb(struct sbp_dev *sdev, int func, struct sbp_ocb *aocb)
sys/dev/firewire/sbp.c
1336
struct sbp_ocb *ocb;
sys/dev/firewire/sbp.c
138
STAILQ_ENTRY(sbp_ocb) ocb;
sys/dev/firewire/sbp.c
1421
sbp_print_scsi_cmd(struct sbp_ocb *ocb)
sys/dev/firewire/sbp.c
1449
sbp_scsi_status(struct sbp_status *sbp_status, struct sbp_ocb *ocb)
sys/dev/firewire/sbp.c
1536
sbp_fix_inq_data(struct sbp_ocb *ocb)
sys/dev/firewire/sbp.c
1585
struct sbp_ocb *ocb;
sys/dev/firewire/sbp.c
180
struct sbp_ocb *ocb;
sys/dev/firewire/sbp.c
181
STAILQ_HEAD(, sbp_ocb) ocbs;
sys/dev/firewire/sbp.c
182
STAILQ_HEAD(, sbp_ocb) free_ocbs;
sys/dev/firewire/sbp.c
183
struct sbp_ocb *last_ocb;
sys/dev/firewire/sbp.c
197
struct sbp_ocb *mgm_ocb_cur;
sys/dev/firewire/sbp.c
198
STAILQ_HEAD(, sbp_ocb) mgm_ocb_queue;
sys/dev/firewire/sbp.c
2188
struct sbp_ocb *ocb = (struct sbp_ocb *)arg;
sys/dev/firewire/sbp.c
2207
struct sbp_ocb *ocb = (struct sbp_ocb *)arg;
sys/dev/firewire/sbp.c
224
static void sbp_orb_pointer (struct sbp_dev *, struct sbp_ocb *);
sys/dev/firewire/sbp.c
227
static void sbp_free_ocb (struct sbp_dev *, struct sbp_ocb *);
sys/dev/firewire/sbp.c
228
static void sbp_abort_ocb (struct sbp_ocb *, int);
sys/dev/firewire/sbp.c
231
static struct sbp_ocb * sbp_get_ocb (struct sbp_dev *);
sys/dev/firewire/sbp.c
2313
struct sbp_ocb *ocb;
sys/dev/firewire/sbp.c
232
static struct sbp_ocb * sbp_enqueue_ocb (struct sbp_dev *, struct sbp_ocb *);
sys/dev/firewire/sbp.c
233
static struct sbp_ocb * sbp_dequeue_ocb (struct sbp_dev *, struct sbp_status *);
sys/dev/firewire/sbp.c
240
static void sbp_mgm_orb (struct sbp_dev *, int, struct sbp_ocb *);
sys/dev/firewire/sbp.c
2511
struct sbp_ocb *ocb;
sys/dev/firewire/sbp.c
2512
struct sbp_ocb *prev;
sys/dev/firewire/sbp.c
2518
ocb = (struct sbp_ocb *)arg;
sys/dev/firewire/sbp.c
2589
static struct sbp_ocb *
sys/dev/firewire/sbp.c
2592
struct sbp_ocb *ocb;
sys/dev/firewire/sbp.c
2593
struct sbp_ocb *next;
sys/dev/firewire/sbp.c
2605
STAILQ_REMOVE(&sdev->ocbs, ocb, sbp_ocb, ocb);
sys/dev/firewire/sbp.c
2657
static struct sbp_ocb *
sys/dev/firewire/sbp.c
2658
sbp_enqueue_ocb(struct sbp_dev *sdev, struct sbp_ocb *ocb)
sys/dev/firewire/sbp.c
2660
struct sbp_ocb *prev, *prev2;
sys/dev/firewire/sbp.c
2667
prev2 = prev = STAILQ_LAST(&sdev->ocbs, sbp_ocb, ocb);
sys/dev/firewire/sbp.c
2696
static struct sbp_ocb *
sys/dev/firewire/sbp.c
2699
struct sbp_ocb *ocb;
sys/dev/firewire/sbp.c
2714
sbp_free_ocb(struct sbp_dev *sdev, struct sbp_ocb *ocb)
sys/dev/firewire/sbp.c
2732
sbp_abort_ocb(struct sbp_ocb *ocb, int status)
sys/dev/firewire/sbp.c
2763
struct sbp_ocb *ocb, *next;
sys/dev/firewire/sbp.c
2764
STAILQ_HEAD(, sbp_ocb) temp;
sys/dev/firewire/sbp.c
525
sdev->ocb = (struct sbp_ocb *)
sys/dev/firewire/sbp.c
528
sizeof(struct sbp_ocb) * SBP_QUEUE_LEN);
sys/dev/firewire/sbp.c
532
struct sbp_ocb *ocb;
sys/dev/firewire/sbp.c
536
+ sizeof(struct sbp_ocb) * i
sys/dev/firewire/sbp.c
537
+ offsetof(struct sbp_ocb, orb[0]);
sys/dev/firewire/sbp.c
75
#define SBP_QUEUE_LEN ((SBP_DMA_SIZE - SBP_LOGIN_SIZE) / sizeof(struct sbp_ocb))