Lines Matching refs:hb
123 struct io_hash_bucket *hb = &table->hbs[index]; in io_poll_req_insert() local
125 spin_lock(&hb->lock); in io_poll_req_insert()
126 hlist_add_head(&req->hash_node, &hb->list); in io_poll_req_insert()
127 spin_unlock(&hb->lock); in io_poll_req_insert()
753 struct io_hash_bucket *hb = &table->hbs[i]; in io_poll_remove_all_table() local
755 spin_lock(&hb->lock); in io_poll_remove_all_table()
756 hlist_for_each_entry_safe(req, tmp, &hb->list, hash_node) { in io_poll_remove_all_table()
763 spin_unlock(&hb->lock); in io_poll_remove_all_table()
789 struct io_hash_bucket *hb = &table->hbs[index]; in io_poll_find() local
793 spin_lock(&hb->lock); in io_poll_find()
794 hlist_for_each_entry(req, &hb->list, hash_node) { in io_poll_find()
804 *out_bucket = hb; in io_poll_find()
807 spin_unlock(&hb->lock); in io_poll_find()
823 struct io_hash_bucket *hb = &table->hbs[i]; in io_poll_file_find() local
825 spin_lock(&hb->lock); in io_poll_file_find()
826 hlist_for_each_entry(req, &hb->list, hash_node) { in io_poll_file_find()
828 *out_bucket = hb; in io_poll_file_find()
832 spin_unlock(&hb->lock); in io_poll_file_find()