diff options
author | Mikulas Patocka <mpatocka@redhat.com> | 2012-12-21 15:23:30 -0500 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2012-12-21 15:23:30 -0500 |
commit | 550929faf89e2e2cdb3e9945ea87d383989274cf (patch) | |
tree | f6ca310fe3955cb2a2925391e7fd4c6191fbd373 /drivers/md | |
parent | 29594404d7fe73cd80eaa4ee8c43dcc53970c60e (diff) |
dm persistent data: rename node to btree_node
This patch fixes a compilation failure on sparc32 by renaming struct node.
struct node is already defined in include/linux/node.h. On sparc32, it
happens to be included through other dependencies and persistent-data
doesn't compile because of conflicting declarations.
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Cc: stable@vger.kernel.org
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/persistent-data/dm-btree-internal.h | 16 | ||||
-rw-r--r-- | drivers/md/persistent-data/dm-btree-remove.c | 50 | ||||
-rw-r--r-- | drivers/md/persistent-data/dm-btree-spine.c | 6 | ||||
-rw-r--r-- | drivers/md/persistent-data/dm-btree.c | 22 |
4 files changed, 47 insertions, 47 deletions
diff --git a/drivers/md/persistent-data/dm-btree-internal.h b/drivers/md/persistent-data/dm-btree-internal.h index 5709bfeab1e8..accbb05f17b6 100644 --- a/drivers/md/persistent-data/dm-btree-internal.h +++ b/drivers/md/persistent-data/dm-btree-internal.h | |||
@@ -36,13 +36,13 @@ struct node_header { | |||
36 | __le32 padding; | 36 | __le32 padding; |
37 | } __packed; | 37 | } __packed; |
38 | 38 | ||
39 | struct node { | 39 | struct btree_node { |
40 | struct node_header header; | 40 | struct node_header header; |
41 | __le64 keys[0]; | 41 | __le64 keys[0]; |
42 | } __packed; | 42 | } __packed; |
43 | 43 | ||
44 | 44 | ||
45 | void inc_children(struct dm_transaction_manager *tm, struct node *n, | 45 | void inc_children(struct dm_transaction_manager *tm, struct btree_node *n, |
46 | struct dm_btree_value_type *vt); | 46 | struct dm_btree_value_type *vt); |
47 | 47 | ||
48 | int new_block(struct dm_btree_info *info, struct dm_block **result); | 48 | int new_block(struct dm_btree_info *info, struct dm_block **result); |
@@ -64,7 +64,7 @@ struct ro_spine { | |||
64 | void init_ro_spine(struct ro_spine *s, struct dm_btree_info *info); | 64 | void init_ro_spine(struct ro_spine *s, struct dm_btree_info *info); |
65 | int exit_ro_spine(struct ro_spine *s); | 65 | int exit_ro_spine(struct ro_spine *s); |
66 | int ro_step(struct ro_spine *s, dm_block_t new_child); | 66 | int ro_step(struct ro_spine *s, dm_block_t new_child); |
67 | struct node *ro_node(struct ro_spine *s); | 67 | struct btree_node *ro_node(struct ro_spine *s); |
68 | 68 | ||
69 | struct shadow_spine { | 69 | struct shadow_spine { |
70 | struct dm_btree_info *info; | 70 | struct dm_btree_info *info; |
@@ -98,17 +98,17 @@ int shadow_root(struct shadow_spine *s); | |||
98 | /* | 98 | /* |
99 | * Some inlines. | 99 | * Some inlines. |
100 | */ | 100 | */ |
101 | static inline __le64 *key_ptr(struct node *n, uint32_t index) | 101 | static inline __le64 *key_ptr(struct btree_node *n, uint32_t index) |
102 | { | 102 | { |
103 | return n->keys + index; | 103 | return n->keys + index; |
104 | } | 104 | } |
105 | 105 | ||
106 | static inline void *value_base(struct node *n) | 106 | static inline void *value_base(struct btree_node *n) |
107 | { | 107 | { |
108 | return &n->keys[le32_to_cpu(n->header.max_entries)]; | 108 | return &n->keys[le32_to_cpu(n->header.max_entries)]; |
109 | } | 109 | } |
110 | 110 | ||
111 | static inline void *value_ptr(struct node *n, uint32_t index) | 111 | static inline void *value_ptr(struct btree_node *n, uint32_t index) |
112 | { | 112 | { |
113 | uint32_t value_size = le32_to_cpu(n->header.value_size); | 113 | uint32_t value_size = le32_to_cpu(n->header.value_size); |
114 | return value_base(n) + (value_size * index); | 114 | return value_base(n) + (value_size * index); |
@@ -117,7 +117,7 @@ static inline void *value_ptr(struct node *n, uint32_t index) | |||
117 | /* | 117 | /* |
118 | * Assumes the values are suitably-aligned and converts to core format. | 118 | * Assumes the values are suitably-aligned and converts to core format. |
119 | */ | 119 | */ |
120 | static inline uint64_t value64(struct node *n, uint32_t index) | 120 | static inline uint64_t value64(struct btree_node *n, uint32_t index) |
121 | { | 121 | { |
122 | __le64 *values_le = value_base(n); | 122 | __le64 *values_le = value_base(n); |
123 | 123 | ||
@@ -127,7 +127,7 @@ static inline uint64_t value64(struct node *n, uint32_t index) | |||
127 | /* | 127 | /* |
128 | * Searching for a key within a single node. | 128 | * Searching for a key within a single node. |
129 | */ | 129 | */ |
130 | int lower_bound(struct node *n, uint64_t key); | 130 | int lower_bound(struct btree_node *n, uint64_t key); |
131 | 131 | ||
132 | extern struct dm_block_validator btree_node_validator; | 132 | extern struct dm_block_validator btree_node_validator; |
133 | 133 | ||
diff --git a/drivers/md/persistent-data/dm-btree-remove.c b/drivers/md/persistent-data/dm-btree-remove.c index aa71e2359a07..c4f28133ef82 100644 --- a/drivers/md/persistent-data/dm-btree-remove.c +++ b/drivers/md/persistent-data/dm-btree-remove.c | |||
@@ -53,7 +53,7 @@ | |||
53 | /* | 53 | /* |
54 | * Some little utilities for moving node data around. | 54 | * Some little utilities for moving node data around. |
55 | */ | 55 | */ |
56 | static void node_shift(struct node *n, int shift) | 56 | static void node_shift(struct btree_node *n, int shift) |
57 | { | 57 | { |
58 | uint32_t nr_entries = le32_to_cpu(n->header.nr_entries); | 58 | uint32_t nr_entries = le32_to_cpu(n->header.nr_entries); |
59 | uint32_t value_size = le32_to_cpu(n->header.value_size); | 59 | uint32_t value_size = le32_to_cpu(n->header.value_size); |
@@ -79,7 +79,7 @@ static void node_shift(struct node *n, int shift) | |||
79 | } | 79 | } |
80 | } | 80 | } |
81 | 81 | ||
82 | static void node_copy(struct node *left, struct node *right, int shift) | 82 | static void node_copy(struct btree_node *left, struct btree_node *right, int shift) |
83 | { | 83 | { |
84 | uint32_t nr_left = le32_to_cpu(left->header.nr_entries); | 84 | uint32_t nr_left = le32_to_cpu(left->header.nr_entries); |
85 | uint32_t value_size = le32_to_cpu(left->header.value_size); | 85 | uint32_t value_size = le32_to_cpu(left->header.value_size); |
@@ -108,7 +108,7 @@ static void node_copy(struct node *left, struct node *right, int shift) | |||
108 | /* | 108 | /* |
109 | * Delete a specific entry from a leaf node. | 109 | * Delete a specific entry from a leaf node. |
110 | */ | 110 | */ |
111 | static void delete_at(struct node *n, unsigned index) | 111 | static void delete_at(struct btree_node *n, unsigned index) |
112 | { | 112 | { |
113 | unsigned nr_entries = le32_to_cpu(n->header.nr_entries); | 113 | unsigned nr_entries = le32_to_cpu(n->header.nr_entries); |
114 | unsigned nr_to_copy = nr_entries - (index + 1); | 114 | unsigned nr_to_copy = nr_entries - (index + 1); |
@@ -128,7 +128,7 @@ static void delete_at(struct node *n, unsigned index) | |||
128 | n->header.nr_entries = cpu_to_le32(nr_entries - 1); | 128 | n->header.nr_entries = cpu_to_le32(nr_entries - 1); |
129 | } | 129 | } |
130 | 130 | ||
131 | static unsigned merge_threshold(struct node *n) | 131 | static unsigned merge_threshold(struct btree_node *n) |
132 | { | 132 | { |
133 | return le32_to_cpu(n->header.max_entries) / 3; | 133 | return le32_to_cpu(n->header.max_entries) / 3; |
134 | } | 134 | } |
@@ -136,7 +136,7 @@ static unsigned merge_threshold(struct node *n) | |||
136 | struct child { | 136 | struct child { |
137 | unsigned index; | 137 | unsigned index; |
138 | struct dm_block *block; | 138 | struct dm_block *block; |
139 | struct node *n; | 139 | struct btree_node *n; |
140 | }; | 140 | }; |
141 | 141 | ||
142 | static struct dm_btree_value_type le64_type = { | 142 | static struct dm_btree_value_type le64_type = { |
@@ -147,7 +147,7 @@ static struct dm_btree_value_type le64_type = { | |||
147 | .equal = NULL | 147 | .equal = NULL |
148 | }; | 148 | }; |
149 | 149 | ||
150 | static int init_child(struct dm_btree_info *info, struct node *parent, | 150 | static int init_child(struct dm_btree_info *info, struct btree_node *parent, |
151 | unsigned index, struct child *result) | 151 | unsigned index, struct child *result) |
152 | { | 152 | { |
153 | int r, inc; | 153 | int r, inc; |
@@ -177,7 +177,7 @@ static int exit_child(struct dm_btree_info *info, struct child *c) | |||
177 | return dm_tm_unlock(info->tm, c->block); | 177 | return dm_tm_unlock(info->tm, c->block); |
178 | } | 178 | } |
179 | 179 | ||
180 | static void shift(struct node *left, struct node *right, int count) | 180 | static void shift(struct btree_node *left, struct btree_node *right, int count) |
181 | { | 181 | { |
182 | uint32_t nr_left = le32_to_cpu(left->header.nr_entries); | 182 | uint32_t nr_left = le32_to_cpu(left->header.nr_entries); |
183 | uint32_t nr_right = le32_to_cpu(right->header.nr_entries); | 183 | uint32_t nr_right = le32_to_cpu(right->header.nr_entries); |
@@ -203,11 +203,11 @@ static void shift(struct node *left, struct node *right, int count) | |||
203 | right->header.nr_entries = cpu_to_le32(nr_right + count); | 203 | right->header.nr_entries = cpu_to_le32(nr_right + count); |
204 | } | 204 | } |
205 | 205 | ||
206 | static void __rebalance2(struct dm_btree_info *info, struct node *parent, | 206 | static void __rebalance2(struct dm_btree_info *info, struct btree_node *parent, |
207 | struct child *l, struct child *r) | 207 | struct child *l, struct child *r) |
208 | { | 208 | { |
209 | struct node *left = l->n; | 209 | struct btree_node *left = l->n; |
210 | struct node *right = r->n; | 210 | struct btree_node *right = r->n; |
211 | uint32_t nr_left = le32_to_cpu(left->header.nr_entries); | 211 | uint32_t nr_left = le32_to_cpu(left->header.nr_entries); |
212 | uint32_t nr_right = le32_to_cpu(right->header.nr_entries); | 212 | uint32_t nr_right = le32_to_cpu(right->header.nr_entries); |
213 | unsigned threshold = 2 * merge_threshold(left) + 1; | 213 | unsigned threshold = 2 * merge_threshold(left) + 1; |
@@ -239,7 +239,7 @@ static int rebalance2(struct shadow_spine *s, struct dm_btree_info *info, | |||
239 | unsigned left_index) | 239 | unsigned left_index) |
240 | { | 240 | { |
241 | int r; | 241 | int r; |
242 | struct node *parent; | 242 | struct btree_node *parent; |
243 | struct child left, right; | 243 | struct child left, right; |
244 | 244 | ||
245 | parent = dm_block_data(shadow_current(s)); | 245 | parent = dm_block_data(shadow_current(s)); |
@@ -270,9 +270,9 @@ static int rebalance2(struct shadow_spine *s, struct dm_btree_info *info, | |||
270 | * in right, then rebalance2. This wastes some cpu, but I want something | 270 | * in right, then rebalance2. This wastes some cpu, but I want something |
271 | * simple atm. | 271 | * simple atm. |
272 | */ | 272 | */ |
273 | static void delete_center_node(struct dm_btree_info *info, struct node *parent, | 273 | static void delete_center_node(struct dm_btree_info *info, struct btree_node *parent, |
274 | struct child *l, struct child *c, struct child *r, | 274 | struct child *l, struct child *c, struct child *r, |
275 | struct node *left, struct node *center, struct node *right, | 275 | struct btree_node *left, struct btree_node *center, struct btree_node *right, |
276 | uint32_t nr_left, uint32_t nr_center, uint32_t nr_right) | 276 | uint32_t nr_left, uint32_t nr_center, uint32_t nr_right) |
277 | { | 277 | { |
278 | uint32_t max_entries = le32_to_cpu(left->header.max_entries); | 278 | uint32_t max_entries = le32_to_cpu(left->header.max_entries); |
@@ -301,9 +301,9 @@ static void delete_center_node(struct dm_btree_info *info, struct node *parent, | |||
301 | /* | 301 | /* |
302 | * Redistributes entries among 3 sibling nodes. | 302 | * Redistributes entries among 3 sibling nodes. |
303 | */ | 303 | */ |
304 | static void redistribute3(struct dm_btree_info *info, struct node *parent, | 304 | static void redistribute3(struct dm_btree_info *info, struct btree_node *parent, |
305 | struct child *l, struct child *c, struct child *r, | 305 | struct child *l, struct child *c, struct child *r, |
306 | struct node *left, struct node *center, struct node *right, | 306 | struct btree_node *left, struct btree_node *center, struct btree_node *right, |
307 | uint32_t nr_left, uint32_t nr_center, uint32_t nr_right) | 307 | uint32_t nr_left, uint32_t nr_center, uint32_t nr_right) |
308 | { | 308 | { |
309 | int s; | 309 | int s; |
@@ -343,12 +343,12 @@ static void redistribute3(struct dm_btree_info *info, struct node *parent, | |||
343 | *key_ptr(parent, r->index) = right->keys[0]; | 343 | *key_ptr(parent, r->index) = right->keys[0]; |
344 | } | 344 | } |
345 | 345 | ||
346 | static void __rebalance3(struct dm_btree_info *info, struct node *parent, | 346 | static void __rebalance3(struct dm_btree_info *info, struct btree_node *parent, |
347 | struct child *l, struct child *c, struct child *r) | 347 | struct child *l, struct child *c, struct child *r) |
348 | { | 348 | { |
349 | struct node *left = l->n; | 349 | struct btree_node *left = l->n; |
350 | struct node *center = c->n; | 350 | struct btree_node *center = c->n; |
351 | struct node *right = r->n; | 351 | struct btree_node *right = r->n; |
352 | 352 | ||
353 | uint32_t nr_left = le32_to_cpu(left->header.nr_entries); | 353 | uint32_t nr_left = le32_to_cpu(left->header.nr_entries); |
354 | uint32_t nr_center = le32_to_cpu(center->header.nr_entries); | 354 | uint32_t nr_center = le32_to_cpu(center->header.nr_entries); |
@@ -371,7 +371,7 @@ static int rebalance3(struct shadow_spine *s, struct dm_btree_info *info, | |||
371 | unsigned left_index) | 371 | unsigned left_index) |
372 | { | 372 | { |
373 | int r; | 373 | int r; |
374 | struct node *parent = dm_block_data(shadow_current(s)); | 374 | struct btree_node *parent = dm_block_data(shadow_current(s)); |
375 | struct child left, center, right; | 375 | struct child left, center, right; |
376 | 376 | ||
377 | /* | 377 | /* |
@@ -421,7 +421,7 @@ static int get_nr_entries(struct dm_transaction_manager *tm, | |||
421 | { | 421 | { |
422 | int r; | 422 | int r; |
423 | struct dm_block *block; | 423 | struct dm_block *block; |
424 | struct node *n; | 424 | struct btree_node *n; |
425 | 425 | ||
426 | r = dm_tm_read_lock(tm, b, &btree_node_validator, &block); | 426 | r = dm_tm_read_lock(tm, b, &btree_node_validator, &block); |
427 | if (r) | 427 | if (r) |
@@ -438,7 +438,7 @@ static int rebalance_children(struct shadow_spine *s, | |||
438 | { | 438 | { |
439 | int i, r, has_left_sibling, has_right_sibling; | 439 | int i, r, has_left_sibling, has_right_sibling; |
440 | uint32_t child_entries; | 440 | uint32_t child_entries; |
441 | struct node *n; | 441 | struct btree_node *n; |
442 | 442 | ||
443 | n = dm_block_data(shadow_current(s)); | 443 | n = dm_block_data(shadow_current(s)); |
444 | 444 | ||
@@ -483,7 +483,7 @@ static int rebalance_children(struct shadow_spine *s, | |||
483 | return r; | 483 | return r; |
484 | } | 484 | } |
485 | 485 | ||
486 | static int do_leaf(struct node *n, uint64_t key, unsigned *index) | 486 | static int do_leaf(struct btree_node *n, uint64_t key, unsigned *index) |
487 | { | 487 | { |
488 | int i = lower_bound(n, key); | 488 | int i = lower_bound(n, key); |
489 | 489 | ||
@@ -506,7 +506,7 @@ static int remove_raw(struct shadow_spine *s, struct dm_btree_info *info, | |||
506 | uint64_t key, unsigned *index) | 506 | uint64_t key, unsigned *index) |
507 | { | 507 | { |
508 | int i = *index, r; | 508 | int i = *index, r; |
509 | struct node *n; | 509 | struct btree_node *n; |
510 | 510 | ||
511 | for (;;) { | 511 | for (;;) { |
512 | r = shadow_step(s, root, vt); | 512 | r = shadow_step(s, root, vt); |
@@ -556,7 +556,7 @@ int dm_btree_remove(struct dm_btree_info *info, dm_block_t root, | |||
556 | unsigned level, last_level = info->levels - 1; | 556 | unsigned level, last_level = info->levels - 1; |
557 | int index = 0, r = 0; | 557 | int index = 0, r = 0; |
558 | struct shadow_spine spine; | 558 | struct shadow_spine spine; |
559 | struct node *n; | 559 | struct btree_node *n; |
560 | 560 | ||
561 | init_shadow_spine(&spine, info); | 561 | init_shadow_spine(&spine, info); |
562 | for (level = 0; level < info->levels; level++) { | 562 | for (level = 0; level < info->levels; level++) { |
diff --git a/drivers/md/persistent-data/dm-btree-spine.c b/drivers/md/persistent-data/dm-btree-spine.c index d9a7912ee8ee..2f0805c3263e 100644 --- a/drivers/md/persistent-data/dm-btree-spine.c +++ b/drivers/md/persistent-data/dm-btree-spine.c | |||
@@ -23,7 +23,7 @@ static void node_prepare_for_write(struct dm_block_validator *v, | |||
23 | struct dm_block *b, | 23 | struct dm_block *b, |
24 | size_t block_size) | 24 | size_t block_size) |
25 | { | 25 | { |
26 | struct node *n = dm_block_data(b); | 26 | struct btree_node *n = dm_block_data(b); |
27 | struct node_header *h = &n->header; | 27 | struct node_header *h = &n->header; |
28 | 28 | ||
29 | h->blocknr = cpu_to_le64(dm_block_location(b)); | 29 | h->blocknr = cpu_to_le64(dm_block_location(b)); |
@@ -38,7 +38,7 @@ static int node_check(struct dm_block_validator *v, | |||
38 | struct dm_block *b, | 38 | struct dm_block *b, |
39 | size_t block_size) | 39 | size_t block_size) |
40 | { | 40 | { |
41 | struct node *n = dm_block_data(b); | 41 | struct btree_node *n = dm_block_data(b); |
42 | struct node_header *h = &n->header; | 42 | struct node_header *h = &n->header; |
43 | size_t value_size; | 43 | size_t value_size; |
44 | __le32 csum_disk; | 44 | __le32 csum_disk; |
@@ -164,7 +164,7 @@ int ro_step(struct ro_spine *s, dm_block_t new_child) | |||
164 | return r; | 164 | return r; |
165 | } | 165 | } |
166 | 166 | ||
167 | struct node *ro_node(struct ro_spine *s) | 167 | struct btree_node *ro_node(struct ro_spine *s) |
168 | { | 168 | { |
169 | struct dm_block *block; | 169 | struct dm_block *block; |
170 | 170 | ||
diff --git a/drivers/md/persistent-data/dm-btree.c b/drivers/md/persistent-data/dm-btree.c index d12b2cc51f1a..371f3d49d18e 100644 --- a/drivers/md/persistent-data/dm-btree.c +++ b/drivers/md/persistent-data/dm-btree.c | |||
@@ -38,7 +38,7 @@ static void array_insert(void *base, size_t elt_size, unsigned nr_elts, | |||
38 | /*----------------------------------------------------------------*/ | 38 | /*----------------------------------------------------------------*/ |
39 | 39 | ||
40 | /* makes the assumption that no two keys are the same. */ | 40 | /* makes the assumption that no two keys are the same. */ |
41 | static int bsearch(struct node *n, uint64_t key, int want_hi) | 41 | static int bsearch(struct btree_node *n, uint64_t key, int want_hi) |
42 | { | 42 | { |
43 | int lo = -1, hi = le32_to_cpu(n->header.nr_entries); | 43 | int lo = -1, hi = le32_to_cpu(n->header.nr_entries); |
44 | 44 | ||
@@ -58,12 +58,12 @@ static int bsearch(struct node *n, uint64_t key, int want_hi) | |||
58 | return want_hi ? hi : lo; | 58 | return want_hi ? hi : lo; |
59 | } | 59 | } |
60 | 60 | ||
61 | int lower_bound(struct node *n, uint64_t key) | 61 | int lower_bound(struct btree_node *n, uint64_t key) |
62 | { | 62 | { |
63 | return bsearch(n, key, 0); | 63 | return bsearch(n, key, 0); |
64 | } | 64 | } |
65 | 65 | ||
66 | void inc_children(struct dm_transaction_manager *tm, struct node *n, | 66 | void inc_children(struct dm_transaction_manager *tm, struct btree_node *n, |
67 | struct dm_btree_value_type *vt) | 67 | struct dm_btree_value_type *vt) |
68 | { | 68 | { |
69 | unsigned i; | 69 | unsigned i; |
@@ -77,7 +77,7 @@ void inc_children(struct dm_transaction_manager *tm, struct node *n, | |||
77 | vt->inc(vt->context, value_ptr(n, i)); | 77 | vt->inc(vt->context, value_ptr(n, i)); |
78 | } | 78 | } |
79 | 79 | ||
80 | static int insert_at(size_t value_size, struct node *node, unsigned index, | 80 | static int insert_at(size_t value_size, struct btree_node *node, unsigned index, |
81 | uint64_t key, void *value) | 81 | uint64_t key, void *value) |
82 | __dm_written_to_disk(value) | 82 | __dm_written_to_disk(value) |
83 | { | 83 | { |
@@ -122,7 +122,7 @@ int dm_btree_empty(struct dm_btree_info *info, dm_block_t *root) | |||
122 | { | 122 | { |
123 | int r; | 123 | int r; |
124 | struct dm_block *b; | 124 | struct dm_block *b; |
125 | struct node *n; | 125 | struct btree_node *n; |
126 | size_t block_size; | 126 | size_t block_size; |
127 | uint32_t max_entries; | 127 | uint32_t max_entries; |
128 | 128 | ||
@@ -154,7 +154,7 @@ EXPORT_SYMBOL_GPL(dm_btree_empty); | |||
154 | #define MAX_SPINE_DEPTH 64 | 154 | #define MAX_SPINE_DEPTH 64 |
155 | struct frame { | 155 | struct frame { |
156 | struct dm_block *b; | 156 | struct dm_block *b; |
157 | struct node *n; | 157 | struct btree_node *n; |
158 | unsigned level; | 158 | unsigned level; |
159 | unsigned nr_children; | 159 | unsigned nr_children; |
160 | unsigned current_child; | 160 | unsigned current_child; |
@@ -295,7 +295,7 @@ EXPORT_SYMBOL_GPL(dm_btree_del); | |||
295 | /*----------------------------------------------------------------*/ | 295 | /*----------------------------------------------------------------*/ |
296 | 296 | ||
297 | static int btree_lookup_raw(struct ro_spine *s, dm_block_t block, uint64_t key, | 297 | static int btree_lookup_raw(struct ro_spine *s, dm_block_t block, uint64_t key, |
298 | int (*search_fn)(struct node *, uint64_t), | 298 | int (*search_fn)(struct btree_node *, uint64_t), |
299 | uint64_t *result_key, void *v, size_t value_size) | 299 | uint64_t *result_key, void *v, size_t value_size) |
300 | { | 300 | { |
301 | int i, r; | 301 | int i, r; |
@@ -406,7 +406,7 @@ static int btree_split_sibling(struct shadow_spine *s, dm_block_t root, | |||
406 | size_t size; | 406 | size_t size; |
407 | unsigned nr_left, nr_right; | 407 | unsigned nr_left, nr_right; |
408 | struct dm_block *left, *right, *parent; | 408 | struct dm_block *left, *right, *parent; |
409 | struct node *ln, *rn, *pn; | 409 | struct btree_node *ln, *rn, *pn; |
410 | __le64 location; | 410 | __le64 location; |
411 | 411 | ||
412 | left = shadow_current(s); | 412 | left = shadow_current(s); |
@@ -491,7 +491,7 @@ static int btree_split_beneath(struct shadow_spine *s, uint64_t key) | |||
491 | size_t size; | 491 | size_t size; |
492 | unsigned nr_left, nr_right; | 492 | unsigned nr_left, nr_right; |
493 | struct dm_block *left, *right, *new_parent; | 493 | struct dm_block *left, *right, *new_parent; |
494 | struct node *pn, *ln, *rn; | 494 | struct btree_node *pn, *ln, *rn; |
495 | __le64 val; | 495 | __le64 val; |
496 | 496 | ||
497 | new_parent = shadow_current(s); | 497 | new_parent = shadow_current(s); |
@@ -576,7 +576,7 @@ static int btree_insert_raw(struct shadow_spine *s, dm_block_t root, | |||
576 | uint64_t key, unsigned *index) | 576 | uint64_t key, unsigned *index) |
577 | { | 577 | { |
578 | int r, i = *index, top = 1; | 578 | int r, i = *index, top = 1; |
579 | struct node *node; | 579 | struct btree_node *node; |
580 | 580 | ||
581 | for (;;) { | 581 | for (;;) { |
582 | r = shadow_step(s, root, vt); | 582 | r = shadow_step(s, root, vt); |
@@ -643,7 +643,7 @@ static int insert(struct dm_btree_info *info, dm_block_t root, | |||
643 | unsigned level, index = -1, last_level = info->levels - 1; | 643 | unsigned level, index = -1, last_level = info->levels - 1; |
644 | dm_block_t block = root; | 644 | dm_block_t block = root; |
645 | struct shadow_spine spine; | 645 | struct shadow_spine spine; |
646 | struct node *n; | 646 | struct btree_node *n; |
647 | struct dm_btree_value_type le64_type; | 647 | struct dm_btree_value_type le64_type; |
648 | 648 | ||
649 | le64_type.context = NULL; | 649 | le64_type.context = NULL; |