diff options
| author | 2022-09-09 17:53:33 -0400 | |
|---|---|---|
| committer | 2022-09-26 12:28:04 +0200 | |
| commit | ccaeff929098dcad1661d0e4d524e569bac949be (patch) | |
| tree | 8ab7bd8a08e34d574df75dbe937c7d314e92d352 /samples/git:/ssh:/git@git.zx2c4.com | |
| parent | btrfs: remove struct tree_entry in extent-io-tree.c (diff) | |
| download | linux-dev-ccaeff929098dcad1661d0e4d524e569bac949be.tar.xz linux-dev-ccaeff929098dcad1661d0e4d524e569bac949be.zip | |
btrfs: use next_state instead of rb_next where we can
We can simplify a lot of these functions where we have to cycle through
extent_state's by simply using next_state() instead of rb_next(). In
many spots this allows us to do things like
while (state) {
/* whatever */
state = next_state(state);
}
instead of
while (1) {
state = rb_entry(n, struct extent_state, rb_node);
n = rb_next(n);
if (!n)
break;
}
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'samples/git:/ssh:/git@git.zx2c4.com')
0 files changed, 0 insertions, 0 deletions
