Searched refs:rbroot (Results 1 – 5 of 5) sorted by relevance
/Linux-v5.15/mm/ |
D | zswap.c | 193 struct rb_root rbroot; member 379 zswap_rb_erase(&tree->rbroot, entry); in zswap_entry_put() 959 entry = zswap_entry_find_get(&tree->rbroot, offset); in zswap_writeback_entry() 1029 if (entry == zswap_rb_search(&tree->rbroot, offset)) in zswap_writeback_entry() 1218 ret = zswap_rb_insert(&tree->rbroot, entry, &dupentry); in zswap_frontswap_store() 1222 zswap_rb_erase(&tree->rbroot, dupentry); in zswap_frontswap_store() 1260 entry = zswap_entry_find_get(&tree->rbroot, offset); in zswap_frontswap_load() 1331 entry = zswap_rb_search(&tree->rbroot, offset); in zswap_frontswap_invalidate_page() 1339 zswap_rb_erase(&tree->rbroot, entry); in zswap_frontswap_invalidate_page() 1358 rbtree_postorder_for_each_entry_safe(entry, n, &tree->rbroot, rbnode) in zswap_frontswap_invalidate_area() [all …]
|
/Linux-v5.15/drivers/iommu/ |
D | iova.c | 59 iovad->rbroot = RB_ROOT; in init_iova_domain() 69 rb_link_node(&iovad->anchor.node, NULL, &iovad->rbroot.rb_node); in init_iova_domain() 70 rb_insert_color(&iovad->anchor.node, &iovad->rbroot); in init_iova_domain() 182 node = iovad->rbroot.rb_node; in iova_find_limit() 283 iova_insert_rbtree(&iovad->rbroot, new, prev); in __alloc_and_insert_iova_range() 395 struct rb_node *node = iovad->rbroot.rb_node; in private_find_iova() 417 rb_erase(&iova->node, &iovad->rbroot); in remove_iova() 694 rbtree_postorder_for_each_entry_safe(iova, tmp, &iovad->rbroot, node) in put_iova_domain() 732 iova_insert_rbtree(&iovad->rbroot, iova, NULL); in __insert_new_range() 769 for (node = rb_first(&iovad->rbroot); node; node = rb_next(node)) { in reserve_iova()
|
/Linux-v5.15/mm/damon/ |
D | vaddr.c | 134 struct rb_root rbroot; in __damon_va_three_regions() local 144 rbroot.rb_node = &vma->vm_rb; in __damon_va_three_regions() 145 vma = rb_entry(rb_last(&rbroot), in __damon_va_three_regions()
|
/Linux-v5.15/include/linux/ |
D | iova.h | 70 struct rb_root rbroot; /* iova domain rbtree root */ member
|
/Linux-v5.15/drivers/mtd/ |
D | mtdswap.c | 79 #define MTDSWAP_ECNT_MIN(rbroot) (rb_entry(rb_first(rbroot), struct swap_eb, \ argument 81 #define MTDSWAP_ECNT_MAX(rbroot) (rb_entry(rb_last(rbroot), struct swap_eb, \ argument
|