Searched refs:curr_node (Results 1 – 4 of 4) sorted by relevance
/linux-4.4.14/fs/ext4/ |
D | dir.c | 528 info->curr_node = NULL; in ext4_dx_readdir() 543 } else if (!info->curr_node) in ext4_dx_readdir() 544 info->curr_node = rb_first(&info->root); in ext4_dx_readdir() 552 if ((!info->curr_node) || in ext4_dx_readdir() 554 info->curr_node = NULL; in ext4_dx_readdir() 566 info->curr_node = rb_first(&info->root); in ext4_dx_readdir() 569 fname = rb_entry(info->curr_node, struct fname, rb_hash); in ext4_dx_readdir() 575 info->curr_node = rb_next(info->curr_node); in ext4_dx_readdir() 576 if (info->curr_node) { in ext4_dx_readdir() 577 fname = rb_entry(info->curr_node, struct fname, in ext4_dx_readdir()
|
D | ext4.h | 2066 struct rb_node *curr_node; member
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/ |
D | alloc.c | 345 struct mlx4_zone_entry *curr_node; in __mlx4_alloc_from_zone() local 356 list_for_each_entry(curr_node, &zone_alloc->prios, prio_list) { in __mlx4_alloc_from_zone() 357 if (unlikely(curr_node->priority == zone->priority)) in __mlx4_alloc_from_zone() 362 struct mlx4_zone_entry *it = curr_node; in __mlx4_alloc_from_zone() 376 struct mlx4_zone_entry *it = curr_node; in __mlx4_alloc_from_zone() 382 if (unlikely(it->priority != curr_node->priority)) in __mlx4_alloc_from_zone() 396 if (list_is_last(&curr_node->prio_list, &zone_alloc->prios)) in __mlx4_alloc_from_zone() 399 curr_node = list_first_entry(&curr_node->prio_list, in __mlx4_alloc_from_zone() 400 typeof(*curr_node), in __mlx4_alloc_from_zone() 403 list_for_each_entry_from(curr_node, &zone_alloc->entries, list) { in __mlx4_alloc_from_zone() [all …]
|
/linux-4.4.14/fs/btrfs/ |
D | delayed-inode.c | 1166 struct btrfs_delayed_node *curr_node, *prev_node; in __btrfs_run_delayed_items() local 1185 curr_node = btrfs_first_delayed_node(delayed_root); in __btrfs_run_delayed_items() 1186 while (curr_node && (!count || (count && nr--))) { in __btrfs_run_delayed_items() 1188 curr_node); in __btrfs_run_delayed_items() 1190 btrfs_release_delayed_node(curr_node); in __btrfs_run_delayed_items() 1191 curr_node = NULL; in __btrfs_run_delayed_items() 1196 prev_node = curr_node; in __btrfs_run_delayed_items() 1197 curr_node = btrfs_next_delayed_node(curr_node); in __btrfs_run_delayed_items() 1201 if (curr_node) in __btrfs_run_delayed_items() 1202 btrfs_release_delayed_node(curr_node); in __btrfs_run_delayed_items() [all …]
|