Lines Matching refs:hb
120 struct io_hash_bucket *hb = &table->hbs[index]; in io_poll_req_insert() local
122 spin_lock(&hb->lock); in io_poll_req_insert()
123 hlist_add_head(&req->hash_node, &hb->list); in io_poll_req_insert()
124 spin_unlock(&hb->lock); in io_poll_req_insert()
725 struct io_hash_bucket *hb = &table->hbs[i]; in io_poll_remove_all_table() local
727 spin_lock(&hb->lock); in io_poll_remove_all_table()
728 hlist_for_each_entry_safe(req, tmp, &hb->list, hash_node) { in io_poll_remove_all_table()
735 spin_unlock(&hb->lock); in io_poll_remove_all_table()
761 struct io_hash_bucket *hb = &table->hbs[index]; in io_poll_find() local
765 spin_lock(&hb->lock); in io_poll_find()
766 hlist_for_each_entry(req, &hb->list, hash_node) { in io_poll_find()
776 *out_bucket = hb; in io_poll_find()
779 spin_unlock(&hb->lock); in io_poll_find()
795 struct io_hash_bucket *hb = &table->hbs[i]; in io_poll_file_find() local
797 spin_lock(&hb->lock); in io_poll_file_find()
798 hlist_for_each_entry(req, &hb->list, hash_node) { in io_poll_file_find()
805 *out_bucket = hb; in io_poll_file_find()
808 spin_unlock(&hb->lock); in io_poll_file_find()