Lines Matching refs:l
399 struct list_head *l; in mb_cache_shrink() local
402 l = &mb_cache_lru_list; in mb_cache_shrink()
404 while (!list_is_last(l, &mb_cache_lru_list)) { in mb_cache_shrink()
405 l = l->next; in mb_cache_shrink()
406 ce = list_entry(l, struct mb_cache_entry, e_lru_list); in mb_cache_shrink()
424 l = &mb_cache_lru_list; in mb_cache_shrink()
432 l = &mb_cache_lru_list; in mb_cache_shrink()
507 struct list_head *l; in mb_cache_entry_alloc() local
509 l = &mb_cache_lru_list; in mb_cache_entry_alloc()
511 while (!list_is_last(l, &mb_cache_lru_list)) { in mb_cache_entry_alloc()
512 l = l->next; in mb_cache_entry_alloc()
513 ce = list_entry(l, struct mb_cache_entry, e_lru_list); in mb_cache_entry_alloc()
532 l = &mb_cache_lru_list; in mb_cache_entry_alloc()
584 struct hlist_bl_node *l; in mb_cache_entry_insert() local
594 hlist_bl_for_each_entry(lce, l, block_hash_p, e_block_list) { in mb_cache_entry_insert()
665 struct hlist_bl_node *l; in mb_cache_entry_get() local
674 hlist_bl_for_each_entry(ce, l, block_hash_p, e_block_list) { in mb_cache_entry_get()
719 __mb_cache_entry_find(struct hlist_bl_node *l, struct hlist_bl_head *head, in __mb_cache_entry_find() argument
724 while (l != NULL) { in __mb_cache_entry_find()
726 hlist_bl_entry(l, struct mb_cache_entry, in __mb_cache_entry_find()
766 l = l->next; in __mb_cache_entry_find()
790 struct hlist_bl_node *l; in mb_cache_entry_find_first() local
797 l = hlist_bl_first(index_hash_p); in mb_cache_entry_find_first()
798 ce = __mb_cache_entry_find(l, index_hash_p, bdev, key); in mb_cache_entry_find_first()
829 struct hlist_bl_node *l; in mb_cache_entry_find_next() local
837 l = prev->e_index.o_list.next; in mb_cache_entry_find_next()
838 ce = __mb_cache_entry_find(l, index_hash_p, bdev, key); in mb_cache_entry_find_next()