Searched refs:tag_index (Results 1 – 6 of 6) sorted by relevance
/linux-4.4.14/block/ |
D | blk-tag.c | 42 kfree(bqt->tag_index); in blk_free_tags() 43 bqt->tag_index = NULL; in blk_free_tags() 91 struct request **tag_index; in init_tag_map() local 101 tag_index = kzalloc(depth * sizeof(struct request *), GFP_ATOMIC); in init_tag_map() 102 if (!tag_index) in init_tag_map() 112 tags->tag_index = tag_index; in init_tag_map() 117 kfree(tag_index); in init_tag_map() 206 struct request **tag_index; in blk_queue_resize_tags() local 234 tag_index = bqt->tag_index; in blk_queue_resize_tags() 241 memcpy(bqt->tag_index, tag_index, max_depth * sizeof(struct request *)); in blk_queue_resize_tags() [all …]
|
/linux-4.4.14/include/linux/ |
D | blkdev.h | 236 struct request **tag_index; /* map of busy tags */ member 1115 return bqt->tag_index[tag]; in blk_map_queue_find_tag()
|
/linux-4.4.14/drivers/block/ |
D | cciss.c | 3477 static inline int bad_tag(ctlr_info_t *h, u32 tag_index, in bad_tag() argument 3480 if (unlikely(tag_index >= h->nr_cmds)) { in bad_tag() 3526 u32 tag_index; in process_indexed_cmd() local 3529 tag_index = cciss_tag_to_index(raw_tag); in process_indexed_cmd() 3530 if (bad_tag(h, tag_index, raw_tag)) in process_indexed_cmd() 3532 c = h->cmd_pool + tag_index; in process_indexed_cmd()
|
/linux-4.4.14/drivers/scsi/fnic/ |
D | fnic_scsi.c | 2190 bqt->tag_index[tag] = sc->request; in fnic_scsi_host_start_tag() 2215 BUG_ON(!bqt || !bqt->tag_index[tag]); in fnic_scsi_host_end_tag() 2219 bqt->tag_index[tag] = NULL; in fnic_scsi_host_end_tag()
|
/linux-4.4.14/drivers/scsi/ |
D | hpsa.c | 6763 static inline int bad_tag(struct ctlr_info *h, u32 tag_index, in bad_tag() argument 6766 if (unlikely(tag_index >= h->nr_cmds)) { in bad_tag() 6787 u32 tag_index; in process_indexed_cmd() local 6790 tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT; in process_indexed_cmd() 6791 if (!bad_tag(h, tag_index, raw_tag)) { in process_indexed_cmd() 6792 c = h->cmd_pool + tag_index; in process_indexed_cmd()
|
/linux-4.4.14/Documentation/block/ |
D | biodoc.txt | 799 struct request **tag_index; /* array or pointers to rq */
|