Symbol: camdd_buf
usr.sbin/camdd/camdd.c
126
struct camdd_buf *src_buf;
usr.sbin/camdd/camdd.c
1679
struct camdd_buf *buf;
usr.sbin/camdd/camdd.c
1954
camdd_queue_peer_buf(struct camdd_dev *dev, struct camdd_buf *buf)
usr.sbin/camdd/camdd.c
1957
STAILQ_HEAD(, camdd_buf) local_queue;
usr.sbin/camdd/camdd.c
1958
struct camdd_buf *buf1, *buf2;
usr.sbin/camdd/camdd.c
2079
STAILQ_REMOVE(&local_queue, buf1, camdd_buf,
usr.sbin/camdd/camdd.c
2139
STAILQ_REMOVE(&dev->peer_work_queue, buf1, camdd_buf,
usr.sbin/camdd/camdd.c
2156
camdd_complete_peer_buf(struct camdd_dev *dev, struct camdd_buf *peer_buf)
usr.sbin/camdd/camdd.c
2207
camdd_peer_done(struct camdd_buf *buf)
usr.sbin/camdd/camdd.c
2220
STAILQ_REMOVE(&dev->peer_work_queue, buf, camdd_buf, links);
usr.sbin/camdd/camdd.c
2234
camdd_complete_buf(struct camdd_dev *dev, struct camdd_buf *buf,
usr.sbin/camdd/camdd.c
2250
struct camdd_buf *tmp_buf, *next_buf;
usr.sbin/camdd/camdd.c
2254
struct camdd_buf *src_buf;
usr.sbin/camdd/camdd.c
2258
camdd_buf, src_links);
usr.sbin/camdd/camdd.c
2307
struct camdd_buf *buf;
usr.sbin/camdd/camdd.c
2328
STAILQ_REMOVE(&dev->active_queue, buf, camdd_buf, links);
usr.sbin/camdd/camdd.c
234
STAILQ_ENTRY(camdd_buf) links;
usr.sbin/camdd/camdd.c
235
STAILQ_ENTRY(camdd_buf) work_links;
usr.sbin/camdd/camdd.c
2388
struct camdd_buf *buf;
usr.sbin/camdd/camdd.c
2401
STAILQ_REMOVE(&dev->run_queue, buf, camdd_buf, links);
usr.sbin/camdd/camdd.c
2421
STAILQ_REMOVE(&dev->run_queue, buf, camdd_buf, links);
usr.sbin/camdd/camdd.c
246
STAILQ_HEAD(,camdd_buf) src_list;
usr.sbin/camdd/camdd.c
247
STAILQ_ENTRY(camdd_buf) src_links;
usr.sbin/camdd/camdd.c
2576
struct camdd_buf *buf2;
usr.sbin/camdd/camdd.c
2600
struct camdd_buf *buf = NULL;
usr.sbin/camdd/camdd.c
2627
STAILQ_REMOVE(&dev->run_queue, buf, camdd_buf, links);
usr.sbin/camdd/camdd.c
2792
camdd_queue(struct camdd_dev *dev, struct camdd_buf *read_buf)
usr.sbin/camdd/camdd.c
2794
struct camdd_buf *buf = NULL;
usr.sbin/camdd/camdd.c
2960
STAILQ_REMOVE(&dev->pending_queue, buf, camdd_buf,
usr.sbin/camdd/camdd.c
2989
STAILQ_REMOVE(&dev->pending_queue, buf, camdd_buf, links);
usr.sbin/camdd/camdd.c
3011
struct camdd_buf *idb;
usr.sbin/camdd/camdd.c
3042
STAILQ_REMOVE(&dev->pending_queue, buf, camdd_buf,
usr.sbin/camdd/camdd.c
3057
struct camdd_buf *new_buf;
usr.sbin/camdd/camdd.c
342
STAILQ_HEAD(,camdd_buf) free_queue;
usr.sbin/camdd/camdd.c
348
STAILQ_HEAD(,camdd_buf) free_indirect_queue;
usr.sbin/camdd/camdd.c
353
STAILQ_HEAD(,camdd_buf) active_queue;
usr.sbin/camdd/camdd.c
361
STAILQ_HEAD(,camdd_buf) pending_queue;
usr.sbin/camdd/camdd.c
373
STAILQ_HEAD(,camdd_buf) run_queue;
usr.sbin/camdd/camdd.c
380
STAILQ_HEAD(,camdd_buf) reorder_queue;
usr.sbin/camdd/camdd.c
389
STAILQ_HEAD(,camdd_buf) work_queue;
usr.sbin/camdd/camdd.c
395
STAILQ_HEAD(,camdd_buf) peer_done_queue;
usr.sbin/camdd/camdd.c
406
STAILQ_HEAD(,camdd_buf) peer_work_queue;
usr.sbin/camdd/camdd.c
443
static struct camdd_buf *camdd_alloc_buf(struct camdd_dev *dev,
usr.sbin/camdd/camdd.c
445
void camdd_release_buf(struct camdd_buf *buf);
usr.sbin/camdd/camdd.c
446
struct camdd_buf *camdd_get_buf(struct camdd_dev *dev, camdd_buf_type buf_type);
usr.sbin/camdd/camdd.c
447
int camdd_buf_sg_create(struct camdd_buf *buf, int iovec,
usr.sbin/camdd/camdd.c
450
uint32_t camdd_buf_get_len(struct camdd_buf *buf);
usr.sbin/camdd/camdd.c
451
void camdd_buf_add_child(struct camdd_buf *buf, struct camdd_buf *child_buf);
usr.sbin/camdd/camdd.c
475
int camdd_queue_peer_buf(struct camdd_dev *dev, struct camdd_buf *buf);
usr.sbin/camdd/camdd.c
476
int camdd_complete_peer_buf(struct camdd_dev *dev, struct camdd_buf *peer_buf);
usr.sbin/camdd/camdd.c
477
void camdd_peer_done(struct camdd_buf *buf);
usr.sbin/camdd/camdd.c
478
void camdd_complete_buf(struct camdd_dev *dev, struct camdd_buf *buf,
usr.sbin/camdd/camdd.c
484
int camdd_queue(struct camdd_dev *dev, struct camdd_buf *read_buf);
usr.sbin/camdd/camdd.c
645
static struct camdd_buf *
usr.sbin/camdd/camdd.c
648
struct camdd_buf *buf = NULL;
usr.sbin/camdd/camdd.c
700
camdd_release_buf(struct camdd_buf *buf)
usr.sbin/camdd/camdd.c
746
struct camdd_buf *
usr.sbin/camdd/camdd.c
749
struct camdd_buf *buf = NULL;
usr.sbin/camdd/camdd.c
794
camdd_buf_sg_create(struct camdd_buf *buf, int iovec, uint32_t sector_size,
usr.sbin/camdd/camdd.c
797
struct camdd_buf *tmp_buf;
usr.sbin/camdd/camdd.c
918
camdd_buf_get_len(struct camdd_buf *buf)
usr.sbin/camdd/camdd.c
938
camdd_buf_add_child(struct camdd_buf *buf, struct camdd_buf *child_buf)