reiserfs: balance_leaf refactor, format balance_leaf_insert_right
[deliverable/linux.git] / fs / reiserfs / do_balan.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
3 */
4
098297b2
JM
5/*
6 * Now we have all buffers that must be used in balancing of the tree
7 * Further calculations can not cause schedule(), and thus the buffer
8 * tree will be stable until the balancing will be finished
9 * balance the tree according to the analysis made before,
10 * and using buffers obtained after all above.
11 */
1da177e4 12
1da177e4
LT
13#include <asm/uaccess.h>
14#include <linux/time.h>
f466c6fd 15#include "reiserfs.h"
1da177e4 16#include <linux/buffer_head.h>
79a81aef 17#include <linux/kernel.h>
1da177e4 18
fba4ebb5
JM
19static inline void buffer_info_init_left(struct tree_balance *tb,
20 struct buffer_info *bi)
21{
22 bi->tb = tb;
23 bi->bi_bh = tb->L[0];
24 bi->bi_parent = tb->FL[0];
25 bi->bi_position = get_left_neighbor_position(tb, 0);
26}
27
28static inline void buffer_info_init_right(struct tree_balance *tb,
29 struct buffer_info *bi)
30{
31 bi->tb = tb;
32 bi->bi_bh = tb->R[0];
33 bi->bi_parent = tb->FR[0];
34 bi->bi_position = get_right_neighbor_position(tb, 0);
35}
36
37static inline void buffer_info_init_tbS0(struct tree_balance *tb,
38 struct buffer_info *bi)
39{
40 bi->tb = tb;
41 bi->bi_bh = PATH_PLAST_BUFFER(tb->tb_path);
42 bi->bi_parent = PATH_H_PPARENT(tb->tb_path, 0);
43 bi->bi_position = PATH_H_POSITION(tb->tb_path, 1);
44}
45
46static inline void buffer_info_init_bh(struct tree_balance *tb,
47 struct buffer_info *bi,
48 struct buffer_head *bh)
49{
50 bi->tb = tb;
51 bi->bi_bh = bh;
52 bi->bi_parent = NULL;
53 bi->bi_position = 0;
54}
55
bd4c625c
LT
56inline void do_balance_mark_leaf_dirty(struct tree_balance *tb,
57 struct buffer_head *bh, int flag)
1da177e4 58{
09f1b80b 59 journal_mark_dirty(tb->transaction_handle, bh);
1da177e4
LT
60}
61
62#define do_balance_mark_internal_dirty do_balance_mark_leaf_dirty
63#define do_balance_mark_sb_dirty do_balance_mark_leaf_dirty
64
098297b2
JM
65/*
66 * summary:
67 * if deleting something ( tb->insert_size[0] < 0 )
68 * return(balance_leaf_when_delete()); (flag d handled here)
69 * else
70 * if lnum is larger than 0 we put items into the left node
71 * if rnum is larger than 0 we put items into the right node
72 * if snum1 is larger than 0 we put items into the new node s1
73 * if snum2 is larger than 0 we put items into the new node s2
74 * Note that all *num* count new items being created.
75 *
76 * It would be easier to read balance_leaf() if each of these summary
77 * lines was a separate procedure rather than being inlined. I think
78 * that there are many passages here and in balance_leaf_when_delete() in
79 * which two calls to one procedure can replace two passages, and it
80 * might save cache space and improve software maintenance costs to do so.
81 *
82 * Vladimir made the perceptive comment that we should offload most of
83 * the decision making in this function into fix_nodes/check_balance, and
84 * then create some sort of structure in tb that says what actions should
85 * be performed by do_balance.
86 *
87 * -Hans
88 */
89
90/*
91 * Balance leaf node in case of delete or cut: insert_size[0] < 0
1da177e4
LT
92 *
93 * lnum, rnum can have values >= -1
94 * -1 means that the neighbor must be joined with S
95 * 0 means that nothing should be done with the neighbor
098297b2
JM
96 * >0 means to shift entirely or partly the specified number of items
97 * to the neighbor
1da177e4 98 */
bd4c625c 99static int balance_leaf_when_delete(struct tree_balance *tb, int flag)
1da177e4 100{
bd4c625c
LT
101 struct buffer_head *tbS0 = PATH_PLAST_BUFFER(tb->tb_path);
102 int item_pos = PATH_LAST_POSITION(tb->tb_path);
103 int pos_in_item = tb->tb_path->pos_in_item;
104 struct buffer_info bi;
105 int n;
106 struct item_head *ih;
1da177e4 107
bd4c625c
LT
108 RFALSE(tb->FR[0] && B_LEVEL(tb->FR[0]) != DISK_LEAF_NODE_LEVEL + 1,
109 "vs- 12000: level: wrong FR %z", tb->FR[0]);
110 RFALSE(tb->blknum[0] > 1,
111 "PAP-12005: tb->blknum == %d, can not be > 1", tb->blknum[0]);
112 RFALSE(!tb->blknum[0] && !PATH_H_PPARENT(tb->tb_path, 0),
113 "PAP-12010: tree can not be empty");
1da177e4 114
4cf5f7ad 115 ih = item_head(tbS0, item_pos);
fba4ebb5 116 buffer_info_init_tbS0(tb, &bi);
1da177e4 117
bd4c625c 118 /* Delete or truncate the item */
1da177e4 119
bd4c625c
LT
120 switch (flag) {
121 case M_DELETE: /* delete item in S[0] */
122
123 RFALSE(ih_item_len(ih) + IH_SIZE != -tb->insert_size[0],
124 "vs-12013: mode Delete, insert size %d, ih to be deleted %h",
125 -tb->insert_size[0], ih);
126
bd4c625c
LT
127 leaf_delete_items(&bi, 0, item_pos, 1, -1);
128
129 if (!item_pos && tb->CFL[0]) {
130 if (B_NR_ITEMS(tbS0)) {
131 replace_key(tb, tb->CFL[0], tb->lkey[0], tbS0,
132 0);
133 } else {
134 if (!PATH_H_POSITION(tb->tb_path, 1))
135 replace_key(tb, tb->CFL[0], tb->lkey[0],
136 PATH_H_PPARENT(tb->tb_path,
137 0), 0);
138 }
139 }
1da177e4 140
bd4c625c
LT
141 RFALSE(!item_pos && !tb->CFL[0],
142 "PAP-12020: tb->CFL[0]==%p, tb->L[0]==%p", tb->CFL[0],
143 tb->L[0]);
1da177e4 144
bd4c625c
LT
145 break;
146
147 case M_CUT:{ /* cut item in S[0] */
bd4c625c
LT
148 if (is_direntry_le_ih(ih)) {
149
098297b2
JM
150 /*
151 * UFS unlink semantics are such that you
152 * can only delete one directory entry at
153 * a time.
154 */
155
156 /*
157 * when we cut a directory tb->insert_size[0]
158 * means number of entries to be cut (always 1)
159 */
bd4c625c
LT
160 tb->insert_size[0] = -1;
161 leaf_cut_from_buffer(&bi, item_pos, pos_in_item,
162 -tb->insert_size[0]);
163
164 RFALSE(!item_pos && !pos_in_item && !tb->CFL[0],
165 "PAP-12030: can not change delimiting key. CFL[0]=%p",
166 tb->CFL[0]);
167
168 if (!item_pos && !pos_in_item && tb->CFL[0]) {
169 replace_key(tb, tb->CFL[0], tb->lkey[0],
170 tbS0, 0);
171 }
172 } else {
173 leaf_cut_from_buffer(&bi, item_pos, pos_in_item,
174 -tb->insert_size[0]);
175
176 RFALSE(!ih_item_len(ih),
177 "PAP-12035: cut must leave non-zero dynamic length of item");
178 }
179 break;
1da177e4 180 }
1da177e4 181
bd4c625c
LT
182 default:
183 print_cur_tb("12040");
c3a9c210
JM
184 reiserfs_panic(tb->tb_sb, "PAP-12040",
185 "unexpected mode: %s(%d)",
bd4c625c
LT
186 (flag ==
187 M_PASTE) ? "PASTE" : ((flag ==
188 M_INSERT) ? "INSERT" :
189 "UNKNOWN"), flag);
190 }
1da177e4 191
098297b2
JM
192 /*
193 * the rule is that no shifting occurs unless by shifting
194 * a node can be freed
195 */
bd4c625c 196 n = B_NR_ITEMS(tbS0);
098297b2
JM
197 /* L[0] takes part in balancing */
198 if (tb->lnum[0]) {
199 /* L[0] must be joined with S[0] */
200 if (tb->lnum[0] == -1) {
201 /* R[0] must be also joined with S[0] */
202 if (tb->rnum[0] == -1) {
bd4c625c 203 if (tb->FR[0] == PATH_H_PPARENT(tb->tb_path, 0)) {
098297b2
JM
204 /*
205 * all contents of all the 3 buffers
206 * will be in L[0]
207 */
bd4c625c
LT
208 if (PATH_H_POSITION(tb->tb_path, 1) == 0
209 && 1 < B_NR_ITEMS(tb->FR[0]))
210 replace_key(tb, tb->CFL[0],
211 tb->lkey[0],
212 tb->FR[0], 1);
213
214 leaf_move_items(LEAF_FROM_S_TO_L, tb, n,
215 -1, NULL);
216 leaf_move_items(LEAF_FROM_R_TO_L, tb,
217 B_NR_ITEMS(tb->R[0]),
218 -1, NULL);
219
220 reiserfs_invalidate_buffer(tb, tbS0);
221 reiserfs_invalidate_buffer(tb,
222 tb->R[0]);
223
224 return 0;
225 }
098297b2
JM
226 /*
227 * all contents of all the 3 buffers will
228 * be in R[0]
229 */
bd4c625c
LT
230 leaf_move_items(LEAF_FROM_S_TO_R, tb, n, -1,
231 NULL);
232 leaf_move_items(LEAF_FROM_L_TO_R, tb,
233 B_NR_ITEMS(tb->L[0]), -1, NULL);
234
235 /* right_delimiting_key is correct in R[0] */
236 replace_key(tb, tb->CFR[0], tb->rkey[0],
237 tb->R[0], 0);
1da177e4 238
bd4c625c
LT
239 reiserfs_invalidate_buffer(tb, tbS0);
240 reiserfs_invalidate_buffer(tb, tb->L[0]);
1da177e4 241
bd4c625c
LT
242 return -1;
243 }
1da177e4 244
bd4c625c
LT
245 RFALSE(tb->rnum[0] != 0,
246 "PAP-12045: rnum must be 0 (%d)", tb->rnum[0]);
247 /* all contents of L[0] and S[0] will be in L[0] */
248 leaf_shift_left(tb, n, -1);
1da177e4 249
bd4c625c
LT
250 reiserfs_invalidate_buffer(tb, tbS0);
251
252 return 0;
253 }
098297b2
JM
254
255 /*
256 * a part of contents of S[0] will be in L[0] and the
257 * rest part of S[0] will be in R[0]
258 */
bd4c625c
LT
259
260 RFALSE((tb->lnum[0] + tb->rnum[0] < n) ||
261 (tb->lnum[0] + tb->rnum[0] > n + 1),
262 "PAP-12050: rnum(%d) and lnum(%d) and item number(%d) in S[0] are not consistent",
263 tb->rnum[0], tb->lnum[0], n);
264 RFALSE((tb->lnum[0] + tb->rnum[0] == n) &&
265 (tb->lbytes != -1 || tb->rbytes != -1),
266 "PAP-12055: bad rbytes (%d)/lbytes (%d) parameters when items are not split",
267 tb->rbytes, tb->lbytes);
268 RFALSE((tb->lnum[0] + tb->rnum[0] == n + 1) &&
269 (tb->lbytes < 1 || tb->rbytes != -1),
270 "PAP-12060: bad rbytes (%d)/lbytes (%d) parameters when items are split",
271 tb->rbytes, tb->lbytes);
272
273 leaf_shift_left(tb, tb->lnum[0], tb->lbytes);
274 leaf_shift_right(tb, tb->rnum[0], tb->rbytes);
275
276 reiserfs_invalidate_buffer(tb, tbS0);
277
278 return 0;
1da177e4 279 }
1da177e4 280
bd4c625c
LT
281 if (tb->rnum[0] == -1) {
282 /* all contents of R[0] and S[0] will be in R[0] */
283 leaf_shift_right(tb, n, -1);
284 reiserfs_invalidate_buffer(tb, tbS0);
285 return 0;
286 }
1da177e4 287
bd4c625c
LT
288 RFALSE(tb->rnum[0],
289 "PAP-12065: bad rnum parameter must be 0 (%d)", tb->rnum[0]);
1da177e4 290 return 0;
1da177e4
LT
291}
292
f1f007c3
JM
293static void balance_leaf_insert_left(struct tree_balance *tb,
294 struct item_head *ih, const char *body)
295{
4bf4de6b 296 int ret;
f1f007c3
JM
297 struct buffer_info bi;
298 int n = B_NR_ITEMS(tb->L[0]);
299
4bf4de6b
JM
300 if (tb->item_pos == tb->lnum[0] - 1 && tb->lbytes != -1) {
301 /* part of new item falls into L[0] */
302 int new_item_len, shift;
303 int version;
304
305 ret = leaf_shift_left(tb, tb->lnum[0] - 1, -1);
306
307 /* Calculate item length to insert to S[0] */
308 new_item_len = ih_item_len(ih) - tb->lbytes;
309
310 /* Calculate and check item length to insert to L[0] */
311 put_ih_item_len(ih, ih_item_len(ih) - new_item_len);
f1f007c3 312
4bf4de6b
JM
313 RFALSE(ih_item_len(ih) <= 0,
314 "PAP-12080: there is nothing to insert into L[0]: "
315 "ih_item_len=%d", ih_item_len(ih));
316
317 /* Insert new item into L[0] */
318 buffer_info_init_left(tb, &bi);
319 leaf_insert_into_buf(&bi, n + tb->item_pos - ret, ih, body,
320 min_t(int, tb->zeroes_num, ih_item_len(ih)));
321
322 version = ih_version(ih);
323
324 /*
325 * Calculate key component, item length and body to
326 * insert into S[0]
327 */
328 shift = 0;
329 if (is_indirect_le_ih(ih))
330 shift = tb->tb_sb->s_blocksize_bits - UNFM_P_SHIFT;
331
332 add_le_ih_k_offset(ih, tb->lbytes << shift);
333
334 put_ih_item_len(ih, new_item_len);
335 if (tb->lbytes > tb->zeroes_num) {
336 body += (tb->lbytes - tb->zeroes_num);
337 tb->zeroes_num = 0;
338 } else
339 tb->zeroes_num -= tb->lbytes;
340
341 RFALSE(ih_item_len(ih) <= 0,
342 "PAP-12085: there is nothing to insert into S[0]: "
343 "ih_item_len=%d", ih_item_len(ih));
344 } else {
345 /* new item in whole falls into L[0] */
346 /* Shift lnum[0]-1 items to L[0] */
347 ret = leaf_shift_left(tb, tb->lnum[0] - 1, tb->lbytes);
348
349 /* Insert new item into L[0] */
350 buffer_info_init_left(tb, &bi);
351 leaf_insert_into_buf(&bi, n + tb->item_pos - ret, ih, body,
352 tb->zeroes_num);
353 tb->insert_size[0] = 0;
354 tb->zeroes_num = 0;
355 }
f1f007c3
JM
356}
357
3fade937
JM
358static void balance_leaf_paste_left_shift_dirent(struct tree_balance *tb,
359 struct item_head *ih,
360 const char *body)
361{
362 int n = B_NR_ITEMS(tb->L[0]);
363 struct buffer_info bi;
364
365 RFALSE(tb->zeroes_num,
366 "PAP-12090: invalid parameter in case of a directory");
367
368 /* directory item */
369 if (tb->lbytes > tb->pos_in_item) {
370 /* new directory entry falls into L[0] */
371 struct item_head *pasted;
372 int ret, l_pos_in_item = tb->pos_in_item;
373
374 /*
375 * Shift lnum[0] - 1 items in whole.
376 * Shift lbytes - 1 entries from given directory item
377 */
378 ret = leaf_shift_left(tb, tb->lnum[0], tb->lbytes - 1);
379 if (ret && !tb->item_pos) {
380 pasted = item_head(tb->L[0], B_NR_ITEMS(tb->L[0]) - 1);
381 l_pos_in_item += ih_entry_count(pasted) -
382 (tb->lbytes - 1);
383 }
384
385 /* Append given directory entry to directory item */
386 buffer_info_init_left(tb, &bi);
387 leaf_paste_in_buffer(&bi, n + tb->item_pos - ret,
388 l_pos_in_item, tb->insert_size[0],
389 body, tb->zeroes_num);
390
391 /*
392 * previous string prepared space for pasting new entry,
393 * following string pastes this entry
394 */
395
396 /*
397 * when we have merge directory item, pos_in_item
398 * has been changed too
399 */
400
401 /* paste new directory entry. 1 is entry number */
402 leaf_paste_entries(&bi, n + tb->item_pos - ret,
403 l_pos_in_item, 1,
404 (struct reiserfs_de_head *) body,
405 body + DEH_SIZE, tb->insert_size[0]);
406 tb->insert_size[0] = 0;
407 } else {
408 /* new directory item doesn't fall into L[0] */
409 /*
410 * Shift lnum[0]-1 items in whole. Shift lbytes
411 * directory entries from directory item number lnum[0]
412 */
413 leaf_shift_left(tb, tb->lnum[0], tb->lbytes);
414 }
415
416 /* Calculate new position to append in item body */
417 tb->pos_in_item -= tb->lbytes;
418}
419
420static void balance_leaf_paste_left_shift(struct tree_balance *tb,
421 struct item_head *ih,
422 const char *body)
1da177e4 423{
bd4c625c 424 struct buffer_head *tbS0 = PATH_PLAST_BUFFER(tb->tb_path);
3fade937 425 int n = B_NR_ITEMS(tb->L[0]);
cf22df18 426 struct buffer_info bi;
3fade937
JM
427
428 if (is_direntry_le_ih(item_head(tbS0, tb->item_pos))) {
429 balance_leaf_paste_left_shift_dirent(tb, ih, body);
430 return;
431 }
432
433 RFALSE(tb->lbytes <= 0,
434 "PAP-12095: there is nothing to shift to L[0]. "
435 "lbytes=%d", tb->lbytes);
436 RFALSE(tb->pos_in_item != ih_item_len(item_head(tbS0, tb->item_pos)),
437 "PAP-12100: incorrect position to paste: "
438 "item_len=%d, pos_in_item=%d",
439 ih_item_len(item_head(tbS0, tb->item_pos)), tb->pos_in_item);
440
441 /* appended item will be in L[0] in whole */
442 if (tb->lbytes >= tb->pos_in_item) {
443 struct item_head *tbS0_pos_ih, *tbL0_ih;
444 struct item_head *tbS0_0_ih;
445 struct reiserfs_key *left_delim_key;
446 int ret, l_n, version, temp_l;
447
448 tbS0_pos_ih = item_head(tbS0, tb->item_pos);
449 tbS0_0_ih = item_head(tbS0, 0);
450
451 /*
452 * this bytes number must be appended
453 * to the last item of L[h]
454 */
455 l_n = tb->lbytes - tb->pos_in_item;
456
457 /* Calculate new insert_size[0] */
458 tb->insert_size[0] -= l_n;
459
460 RFALSE(tb->insert_size[0] <= 0,
461 "PAP-12105: there is nothing to paste into "
462 "L[0]. insert_size=%d", tb->insert_size[0]);
463
464 ret = leaf_shift_left(tb, tb->lnum[0],
465 ih_item_len(tbS0_pos_ih));
466
467 tbL0_ih = item_head(tb->L[0], n + tb->item_pos - ret);
468
469 /* Append to body of item in L[0] */
470 buffer_info_init_left(tb, &bi);
471 leaf_paste_in_buffer(&bi, n + tb->item_pos - ret,
472 ih_item_len(tbL0_ih), l_n, body,
473 min_t(int, l_n, tb->zeroes_num));
474
475 /*
476 * 0-th item in S0 can be only of DIRECT type
477 * when l_n != 0
478 */
479 temp_l = l_n;
480
481 RFALSE(ih_item_len(tbS0_0_ih),
482 "PAP-12106: item length must be 0");
483 RFALSE(comp_short_le_keys(&tbS0_0_ih->ih_key,
484 leaf_key(tb->L[0], n + tb->item_pos - ret)),
485 "PAP-12107: items must be of the same file");
486
487 if (is_indirect_le_ih(tbL0_ih)) {
488 int shift = tb->tb_sb->s_blocksize_bits - UNFM_P_SHIFT;
489 temp_l = l_n << shift;
490 }
491 /* update key of first item in S0 */
492 version = ih_version(tbS0_0_ih);
493 add_le_key_k_offset(version, &tbS0_0_ih->ih_key, temp_l);
494
495 /* update left delimiting key */
496 left_delim_key = internal_key(tb->CFL[0], tb->lkey[0]);
497 add_le_key_k_offset(version, left_delim_key, temp_l);
498
499 /*
500 * Calculate new body, position in item and
501 * insert_size[0]
502 */
503 if (l_n > tb->zeroes_num) {
504 body += (l_n - tb->zeroes_num);
505 tb->zeroes_num = 0;
506 } else
507 tb->zeroes_num -= l_n;
508 tb->pos_in_item = 0;
509
510 RFALSE(comp_short_le_keys(&tbS0_0_ih->ih_key,
511 leaf_key(tb->L[0],
512 B_NR_ITEMS(tb->L[0]) - 1)) ||
513 !op_is_left_mergeable(leaf_key(tbS0, 0), tbS0->b_size) ||
514 !op_is_left_mergeable(left_delim_key, tbS0->b_size),
515 "PAP-12120: item must be merge-able with left "
516 "neighboring item");
517 } else {
518 /* only part of the appended item will be in L[0] */
519
520 /* Calculate position in item for append in S[0] */
521 tb->pos_in_item -= tb->lbytes;
522
523 RFALSE(tb->pos_in_item <= 0,
524 "PAP-12125: no place for paste. pos_in_item=%d",
525 tb->pos_in_item);
526
527 /*
528 * Shift lnum[0] - 1 items in whole.
529 * Shift lbytes - 1 byte from item number lnum[0]
530 */
531 leaf_shift_left(tb, tb->lnum[0], tb->lbytes);
532 }
533}
534
535
536/* appended item will be in L[0] in whole */
537static void balance_leaf_paste_left_whole(struct tree_balance *tb,
538 struct item_head *ih,
539 const char *body)
540{
541 struct buffer_head *tbS0 = PATH_PLAST_BUFFER(tb->tb_path);
cf22df18 542 int n = B_NR_ITEMS(tb->L[0]);
3fade937
JM
543 struct buffer_info bi;
544 struct item_head *pasted;
545 int ret;
bd4c625c 546
3fade937
JM
547 /* if we paste into first item of S[0] and it is left mergable */
548 if (!tb->item_pos &&
549 op_is_left_mergeable(leaf_key(tbS0, 0), tbS0->b_size)) {
550 /*
551 * then increment pos_in_item by the size of the
552 * last item in L[0]
553 */
554 pasted = item_head(tb->L[0], n - 1);
555 if (is_direntry_le_ih(pasted))
556 tb->pos_in_item += ih_entry_count(pasted);
557 else
558 tb->pos_in_item += ih_item_len(pasted);
559 }
560
561 /*
562 * Shift lnum[0] - 1 items in whole.
563 * Shift lbytes - 1 byte from item number lnum[0]
564 */
565 ret = leaf_shift_left(tb, tb->lnum[0], tb->lbytes);
566
567 /* Append to body of item in L[0] */
568 buffer_info_init_left(tb, &bi);
569 leaf_paste_in_buffer(&bi, n + tb->item_pos - ret, tb->pos_in_item,
570 tb->insert_size[0], body, tb->zeroes_num);
571
572 /* if appended item is directory, paste entry */
573 pasted = item_head(tb->L[0], n + tb->item_pos - ret);
574 if (is_direntry_le_ih(pasted))
575 leaf_paste_entries(&bi, n + tb->item_pos - ret,
576 tb->pos_in_item, 1,
577 (struct reiserfs_de_head *)body,
578 body + DEH_SIZE, tb->insert_size[0]);
579
580 /*
581 * if appended item is indirect item, put unformatted node
582 * into un list
583 */
584 if (is_indirect_le_ih(pasted))
585 set_ih_free_space(pasted, 0);
cf22df18 586
3fade937
JM
587 tb->insert_size[0] = 0;
588 tb->zeroes_num = 0;
589}
590
591static void balance_leaf_paste_left(struct tree_balance *tb,
592 struct item_head *ih, const char *body)
593{
594 /* we must shift the part of the appended item */
595 if (tb->item_pos == tb->lnum[0] - 1 && tb->lbytes != -1)
596 balance_leaf_paste_left_shift(tb, ih, body);
597 else
598 balance_leaf_paste_left_whole(tb, ih, body);
cf22df18
JM
599}
600
0080e9f9
JM
601/* Shift lnum[0] items from S[0] to the left neighbor L[0] */
602static void balance_leaf_left(struct tree_balance *tb, struct item_head *ih,
603 const char *body, int flag)
604{
605 if (tb->lnum[0] <= 0)
606 return;
607
608 /* new item or it part falls to L[0], shift it too */
609 if (tb->item_pos < tb->lnum[0]) {
610 BUG_ON(flag != M_INSERT && flag != M_PASTE);
611
612 if (flag == M_INSERT)
613 balance_leaf_insert_left(tb, ih, body);
614 else /* M_PASTE */
615 balance_leaf_paste_left(tb, ih, body);
616 } else
617 /* new item doesn't fall into L[0] */
618 leaf_shift_left(tb, tb->lnum[0], tb->lbytes);
619}
620
621
e80ef3d1
JM
622static void balance_leaf_insert_right(struct tree_balance *tb,
623 struct item_head *ih, const char *body)
624{
625
626 struct buffer_head *tbS0 = PATH_PLAST_BUFFER(tb->tb_path);
627 int n = B_NR_ITEMS(tbS0);
628 struct buffer_info bi;
8dbf0d8c 629 int ret;
e80ef3d1 630
8dbf0d8c
JM
631 /* new item or part of it doesn't fall into R[0] */
632 if (n - tb->rnum[0] >= tb->item_pos) {
633 leaf_shift_right(tb, tb->rnum[0], tb->rbytes);
634 return;
635 }
636
637 /* new item or its part falls to R[0] */
638
639 /* part of new item falls into R[0] */
640 if (tb->item_pos == n - tb->rnum[0] + 1 && tb->rbytes != -1) {
641 loff_t old_key_comp, old_len, r_zeroes_number;
642 const char *r_body;
643 int version, shift;
644 loff_t offset;
e80ef3d1 645
8dbf0d8c
JM
646 leaf_shift_right(tb, tb->rnum[0] - 1, -1);
647
648 version = ih_version(ih);
649
650 /* Remember key component and item length */
651 old_key_comp = le_ih_k_offset(ih);
652 old_len = ih_item_len(ih);
653
654 /*
655 * Calculate key component and item length to insert
656 * into R[0]
657 */
658 shift = 0;
659 if (is_indirect_le_ih(ih))
660 shift = tb->tb_sb->s_blocksize_bits - UNFM_P_SHIFT;
661 offset = le_ih_k_offset(ih) + ((old_len - tb->rbytes) << shift);
662 set_le_ih_k_offset(ih, offset);
663 put_ih_item_len(ih, tb->rbytes);
664
665 /* Insert part of the item into R[0] */
666 buffer_info_init_right(tb, &bi);
667 if ((old_len - tb->rbytes) > tb->zeroes_num) {
668 r_zeroes_number = 0;
669 r_body = body + (old_len - tb->rbytes) - tb->zeroes_num;
670 } else {
671 r_body = body;
672 r_zeroes_number = tb->zeroes_num -
673 (old_len - tb->rbytes);
674 tb->zeroes_num -= r_zeroes_number;
675 }
676
677 leaf_insert_into_buf(&bi, 0, ih, r_body, r_zeroes_number);
678
679 /* Replace right delimiting key by first key in R[0] */
680 replace_key(tb, tb->CFR[0], tb->rkey[0], tb->R[0], 0);
681
682 /*
683 * Calculate key component and item length to
684 * insert into S[0]
685 */
686 set_le_ih_k_offset(ih, old_key_comp);
687 put_ih_item_len(ih, old_len - tb->rbytes);
688
689 tb->insert_size[0] -= tb->rbytes;
690
691 } else {
692 /* whole new item falls into R[0] */
693
694 /* Shift rnum[0]-1 items to R[0] */
695 ret = leaf_shift_right(tb, tb->rnum[0] - 1, tb->rbytes);
696
697 /* Insert new item into R[0] */
698 buffer_info_init_right(tb, &bi);
699 leaf_insert_into_buf(&bi, tb->item_pos - n + tb->rnum[0] - 1,
700 ih, body, tb->zeroes_num);
701
702 if (tb->item_pos - n + tb->rnum[0] - 1 == 0)
703 replace_key(tb, tb->CFR[0], tb->rkey[0], tb->R[0], 0);
704
705 tb->zeroes_num = tb->insert_size[0] = 0;
706 }
e80ef3d1
JM
707}
708
3f0eb276
JM
709static void balance_leaf_paste_right(struct tree_balance *tb,
710 struct item_head *ih, const char *body)
cf22df18
JM
711{
712 struct buffer_head *tbS0 = PATH_PLAST_BUFFER(tb->tb_path);
3f0eb276 713 int n = B_NR_ITEMS(tbS0);
cf22df18 714 struct buffer_info bi;
cf22df18
JM
715 int ret_val;
716
b49fb112
JM
717 if (n - tb->rnum[0] <= tb->item_pos) { /* pasted item or part of it falls to R[0] */
718 if (tb->item_pos == n - tb->rnum[0] && tb->rbytes != -1) { /* we must shift the part of the appended item */
719 if (is_direntry_le_ih(item_head(tbS0, tb->item_pos))) { /* we append to directory item */
bd4c625c
LT
720 int entry_count;
721
b49fb112 722 RFALSE(tb->zeroes_num,
bd4c625c 723 "PAP-12145: invalid parameter in case of a directory");
4cf5f7ad 724 entry_count = ih_entry_count(item_head
b49fb112 725 (tbS0, tb->item_pos));
bd4c625c 726 if (entry_count - tb->rbytes <
b49fb112 727 tb->pos_in_item)
bd4c625c
LT
728 /* new directory entry falls into R[0] */
729 {
730 int paste_entry_position;
731
416e2abd 732 RFALSE(tb->rbytes - 1 >= entry_count || !tb-> insert_size[0],
bd4c625c 733 "PAP-12150: no enough of entries to shift to R[0]: rbytes=%d, entry_count=%d",
416e2abd 734 tb->rbytes, entry_count);
bd4c625c 735 /* Shift rnum[0]-1 items in whole. Shift rbytes-1 directory entries from directory item number rnum[0] */
416e2abd 736 leaf_shift_right(tb, tb->rnum[0], tb->rbytes - 1);
bd4c625c 737 /* Paste given directory entry to directory item */
b49fb112 738 paste_entry_position = tb->pos_in_item - entry_count + tb->rbytes - 1;
fba4ebb5 739 buffer_info_init_right(tb, &bi);
b49fb112 740 leaf_paste_in_buffer(&bi, 0, paste_entry_position, tb->insert_size[0], body, tb->zeroes_num);
bd4c625c 741 /* paste entry */
416e2abd
DJ
742 leaf_paste_entries(&bi, 0, paste_entry_position, 1,
743 (struct reiserfs_de_head *) body,
744 body + DEH_SIZE, tb->insert_size[0]);
745
746 if (paste_entry_position == 0) {
bd4c625c 747 /* change delimiting keys */
416e2abd 748 replace_key(tb, tb->CFR[0], tb->rkey[0], tb->R[0],0);
bd4c625c
LT
749 }
750
751 tb->insert_size[0] = 0;
b49fb112 752 tb->pos_in_item++;
bd4c625c
LT
753 } else { /* new directory entry doesn't fall into R[0] */
754
416e2abd 755 leaf_shift_right(tb, tb->rnum[0], tb->rbytes);
bd4c625c
LT
756 }
757 } else { /* regular object */
758
b49fb112 759 int n_shift, n_rem, r_zeroes_number;
bd4c625c
LT
760 const char *r_body;
761
762 /* Calculate number of bytes which must be shifted from appended item */
416e2abd 763 if ((n_shift = tb->rbytes - tb->insert_size[0]) < 0)
bd4c625c
LT
764 n_shift = 0;
765
b49fb112
JM
766 RFALSE(tb->pos_in_item != ih_item_len
767 (item_head(tbS0, tb->item_pos)),
bd4c625c 768 "PAP-12155: invalid position to paste. ih_item_len=%d, pos_in_item=%d",
b49fb112
JM
769 tb->pos_in_item, ih_item_len
770 (item_head(tbS0, tb->item_pos)));
416e2abd
DJ
771
772 leaf_shift_right(tb, tb->rnum[0], n_shift);
bd4c625c 773 /* Calculate number of bytes which must remain in body after appending to R[0] */
416e2abd 774 if ((n_rem = tb->insert_size[0] - tb->rbytes) < 0)
bd4c625c
LT
775 n_rem = 0;
776
777 {
778 int version;
416e2abd
DJ
779 unsigned long temp_rem = n_rem;
780
4cf5f7ad
JM
781 version = ih_version(item_head(tb->R[0], 0));
782 if (is_indirect_le_key(version, leaf_key(tb->R[0], 0))) {
416e2abd 783 temp_rem = n_rem << (tb->tb_sb->s_blocksize_bits - UNFM_P_SHIFT);
bd4c625c 784 }
4cf5f7ad
JM
785 set_le_key_k_offset(version, leaf_key(tb->R[0], 0),
786 le_key_k_offset(version, leaf_key(tb->R[0], 0)) + temp_rem);
787 set_le_key_k_offset(version, internal_key(tb->CFR[0], tb->rkey[0]),
788 le_key_k_offset(version, internal_key(tb->CFR[0], tb->rkey[0])) + temp_rem);
bd4c625c 789 }
4cf5f7ad
JM
790/* k_offset (leaf_key(tb->R[0],0)) += n_rem;
791 k_offset (internal_key(tb->CFR[0],tb->rkey[0])) += n_rem;*/
416e2abd 792 do_balance_mark_internal_dirty(tb, tb->CFR[0], 0);
bd4c625c
LT
793
794 /* Append part of body into R[0] */
fba4ebb5 795 buffer_info_init_right(tb, &bi);
b49fb112
JM
796 if (n_rem > tb->zeroes_num) {
797 r_zeroes_number = 0;
798 r_body = body + n_rem - tb->zeroes_num;
bd4c625c
LT
799 } else {
800 r_body = body;
b49fb112
JM
801 r_zeroes_number = tb->zeroes_num - n_rem;
802 tb->zeroes_num -= r_zeroes_number;
bd4c625c
LT
803 }
804
416e2abd
DJ
805 leaf_paste_in_buffer(&bi, 0, n_shift,
806 tb->insert_size[0] - n_rem,
b49fb112 807 r_body, r_zeroes_number);
416e2abd 808
4cf5f7ad 809 if (is_indirect_le_ih(item_head(tb->R[0], 0))) {
1da177e4 810#if 0
bd4c625c
LT
811 RFALSE(n_rem,
812 "PAP-12160: paste more than one unformatted node pointer");
1da177e4 813#endif
4cf5f7ad 814 set_ih_free_space(item_head(tb->R[0], 0), 0);
bd4c625c
LT
815 }
816 tb->insert_size[0] = n_rem;
817 if (!n_rem)
b49fb112 818 tb->pos_in_item++;
bd4c625c
LT
819 }
820 } else { /* pasted item in whole falls into R[0] */
821
822 struct item_head *pasted;
823
416e2abd 824 ret_val = leaf_shift_right(tb, tb->rnum[0], tb->rbytes);
bd4c625c 825 /* append item in R[0] */
b49fb112 826 if (tb->pos_in_item >= 0) {
fba4ebb5 827 buffer_info_init_right(tb, &bi);
b49fb112
JM
828 leaf_paste_in_buffer(&bi, tb->item_pos - n + tb->rnum[0], tb->pos_in_item,
829 tb->insert_size[0], body, tb->zeroes_num);
bd4c625c
LT
830 }
831
832 /* paste new entry, if item is directory item */
b49fb112
JM
833 pasted = item_head(tb->R[0], tb->item_pos - n + tb->rnum[0]);
834 if (is_direntry_le_ih(pasted) && tb->pos_in_item >= 0) {
835 leaf_paste_entries(&bi, tb->item_pos - n + tb->rnum[0],
836 tb->pos_in_item, 1,
416e2abd
DJ
837 (struct reiserfs_de_head *) body,
838 body + DEH_SIZE, tb->insert_size[0]);
b49fb112 839 if (!tb->pos_in_item) {
bd4c625c 840
b49fb112 841 RFALSE(tb->item_pos - n + tb->rnum[0],
bd4c625c
LT
842 "PAP-12165: directory item must be first item of node when pasting is in 0th position");
843
844 /* update delimiting keys */
416e2abd 845 replace_key(tb, tb->CFR[0], tb->rkey[0], tb->R[0], 0);
bd4c625c
LT
846 }
847 }
848
849 if (is_indirect_le_ih(pasted))
850 set_ih_free_space(pasted, 0);
b49fb112 851 tb->zeroes_num = tb->insert_size[0] = 0;
bd4c625c
LT
852 }
853 } else { /* new item doesn't fall into R[0] */
1da177e4 854
bd4c625c 855 leaf_shift_right(tb, tb->rnum[0], tb->rbytes);
1da177e4 856 }
3f0eb276
JM
857
858}
859
0080e9f9
JM
860/* shift rnum[0] items from S[0] to the right neighbor R[0] */
861static void balance_leaf_right(struct tree_balance *tb, struct item_head *ih,
862 const char *body, int flag)
863{
864 if (tb->rnum[0] <= 0)
865 return;
866
867 BUG_ON(flag != M_INSERT && flag != M_PASTE);
868
869 if (flag == M_INSERT)
870 balance_leaf_insert_right(tb, ih, body);
871 else /* M_PASTE */
872 balance_leaf_paste_right(tb, ih, body);
873
874}
875
65ab18cb
JM
876static void balance_leaf_new_nodes_insert(struct tree_balance *tb,
877 struct item_head *ih,
878 const char *body,
879 struct item_head *insert_key,
880 struct buffer_head **insert_ptr,
881 int i)
882{
883 struct buffer_head *tbS0 = PATH_PLAST_BUFFER(tb->tb_path);
884 int n = B_NR_ITEMS(tbS0);
885 struct buffer_info bi;
886 if (n - tb->snum[i] < tb->item_pos) { /* new item or it's part falls to first new node S_new[i] */
887 if (tb->item_pos == n - tb->snum[i] + 1 && tb->sbytes[i] != -1) { /* part of new item falls into S_new[i] */
888 int old_key_comp, old_len, r_zeroes_number;
889 const char *r_body;
890 int version;
891
892 /* Move snum[i]-1 items from S[0] to S_new[i] */
893 leaf_move_items(LEAF_FROM_S_TO_SNEW, tb,
894 tb->snum[i] - 1, -1,
895 tb->S_new[i]);
896 /* Remember key component and item length */
897 version = ih_version(ih);
898 old_key_comp = le_ih_k_offset(ih);
899 old_len = ih_item_len(ih);
900
901 /* Calculate key component and item length to insert into S_new[i] */
902 set_le_ih_k_offset(ih, le_ih_k_offset(ih) +
903 ((old_len - tb->sbytes[i]) << (is_indirect_le_ih(ih) ? tb->tb_sb->s_blocksize_bits - UNFM_P_SHIFT : 0)));
904
905 put_ih_item_len(ih, tb->sbytes[i]);
906
907 /* Insert part of the item into S_new[i] before 0-th item */
908 buffer_info_init_bh(tb, &bi, tb->S_new[i]);
909
910 if ((old_len - tb->sbytes[i]) > tb->zeroes_num) {
911 r_zeroes_number = 0;
912 r_body = body + (old_len - tb->sbytes[i]) - tb->zeroes_num;
913 } else {
914 r_body = body;
915 r_zeroes_number = tb->zeroes_num - (old_len - tb->sbytes[i]);
916 tb->zeroes_num -= r_zeroes_number;
917 }
918
919 leaf_insert_into_buf(&bi, 0, ih, r_body, r_zeroes_number);
920
921 /* Calculate key component and item length to insert into S[i] */
922 set_le_ih_k_offset(ih, old_key_comp);
923 put_ih_item_len(ih, old_len - tb->sbytes[i]);
924 tb->insert_size[0] -= tb->sbytes[i];
925 } else { /* whole new item falls into S_new[i] */
926
927 /* Shift snum[0] - 1 items to S_new[i] (sbytes[i] of split item) */
928 leaf_move_items(LEAF_FROM_S_TO_SNEW, tb,
929 tb->snum[i] - 1, tb->sbytes[i], tb->S_new[i]);
930
931 /* Insert new item into S_new[i] */
932 buffer_info_init_bh(tb, &bi, tb->S_new[i]);
933 leaf_insert_into_buf(&bi, tb->item_pos - n + tb->snum[i] - 1,
934 ih, body, tb->zeroes_num);
935
936 tb->zeroes_num = tb->insert_size[0] = 0;
937 }
938 }
939
940 else { /* new item or it part don't falls into S_new[i] */
941
942 leaf_move_items(LEAF_FROM_S_TO_SNEW, tb,
943 tb->snum[i], tb->sbytes[i], tb->S_new[i]);
944 }
945}
946
9d496552
JM
947static void balance_leaf_new_nodes_paste(struct tree_balance *tb,
948 struct item_head *ih,
949 const char *body,
950 struct item_head *insert_key,
951 struct buffer_head **insert_ptr,
952 int i)
953{
954 struct buffer_head *tbS0 = PATH_PLAST_BUFFER(tb->tb_path);
955 int n = B_NR_ITEMS(tbS0);
956 struct buffer_info bi;
957 if (n - tb->snum[i] <= tb->item_pos) { /* pasted item or part if it falls to S_new[i] */
958 if (tb->item_pos == n - tb->snum[i] && tb->sbytes[i] != -1) { /* we must shift part of the appended item */
959 struct item_head *aux_ih;
960
961 RFALSE(ih, "PAP-12210: ih must be 0");
962
963 aux_ih = item_head(tbS0, tb->item_pos);
964 if (is_direntry_le_ih(aux_ih)) {
965 /* we append to directory item */
966
967 int entry_count;
968
969 entry_count = ih_entry_count(aux_ih);
970
971 if (entry_count - tb->sbytes[i] < tb->pos_in_item && tb->pos_in_item <= entry_count) {
972 /* new directory entry falls into S_new[i] */
973
974 RFALSE(!tb->insert_size[0], "PAP-12215: insert_size is already 0");
975 RFALSE(tb->sbytes[i] - 1 >= entry_count,
976 "PAP-12220: there are no so much entries (%d), only %d",
977 tb->sbytes[i] - 1, entry_count);
978
979 /* Shift snum[i]-1 items in whole. Shift sbytes[i] directory entries from directory item number snum[i] */
980 leaf_move_items(LEAF_FROM_S_TO_SNEW, tb, tb->snum[i], tb->sbytes[i] - 1, tb->S_new[i]);
981 /* Paste given directory entry to directory item */
982 buffer_info_init_bh(tb, &bi, tb->S_new[i]);
983 leaf_paste_in_buffer(&bi, 0, tb->pos_in_item - entry_count + tb->sbytes[i] - 1,
984 tb->insert_size[0], body, tb->zeroes_num);
985 /* paste new directory entry */
986 leaf_paste_entries(&bi, 0, tb->pos_in_item - entry_count + tb->sbytes[i] - 1, 1,
987 (struct reiserfs_de_head *) body,
988 body + DEH_SIZE, tb->insert_size[0]);
989 tb->insert_size[0] = 0;
990 tb->pos_in_item++;
991 } else { /* new directory entry doesn't fall into S_new[i] */
992 leaf_move_items(LEAF_FROM_S_TO_SNEW, tb, tb->snum[i], tb->sbytes[i], tb->S_new[i]);
993 }
994 } else { /* regular object */
995
996 int n_shift, n_rem, r_zeroes_number;
997 const char *r_body;
998
999 RFALSE(tb->pos_in_item != ih_item_len(item_head(tbS0, tb->item_pos)) || tb->insert_size[0] <= 0,
1000 "PAP-12225: item too short or insert_size <= 0");
1001
1002 /* Calculate number of bytes which must be shifted from appended item */
1003 n_shift = tb->sbytes[i] - tb->insert_size[0];
1004 if (n_shift < 0)
1005 n_shift = 0;
1006 leaf_move_items(LEAF_FROM_S_TO_SNEW, tb, tb->snum[i], n_shift, tb->S_new[i]);
1007
1008 /* Calculate number of bytes which must remain in body after append to S_new[i] */
1009 n_rem = tb->insert_size[0] - tb->sbytes[i];
1010 if (n_rem < 0)
1011 n_rem = 0;
1012 /* Append part of body into S_new[0] */
1013 buffer_info_init_bh(tb, &bi, tb->S_new[i]);
1014 if (n_rem > tb->zeroes_num) {
1015 r_zeroes_number = 0;
1016 r_body = body + n_rem - tb->zeroes_num;
1017 } else {
1018 r_body = body;
1019 r_zeroes_number = tb->zeroes_num - n_rem;
1020 tb->zeroes_num -= r_zeroes_number;
1021 }
1022
1023 leaf_paste_in_buffer(&bi, 0, n_shift,
1024 tb->insert_size[0] - n_rem,
1025 r_body, r_zeroes_number);
1026 {
1027 struct item_head *tmp;
1028
1029 tmp = item_head(tb->S_new[i], 0);
1030 if (is_indirect_le_ih
1031 (tmp)) {
1032 set_ih_free_space(tmp, 0);
1033 set_le_ih_k_offset(tmp, le_ih_k_offset(tmp) + (n_rem << (tb->tb_sb->s_blocksize_bits - UNFM_P_SHIFT)));
1034 } else {
1035 set_le_ih_k_offset(tmp, le_ih_k_offset(tmp) + n_rem);
1036 }
1037 }
1038
1039 tb->insert_size[0] = n_rem;
1040 if (!n_rem)
1041 tb->pos_in_item++;
1042 }
1043 } else
1044 /* item falls wholly into S_new[i] */
1045 {
1046 int leaf_mi;
1047 struct item_head *pasted;
1048
1049#ifdef CONFIG_REISERFS_CHECK
1050 struct item_head *ih_check = item_head(tbS0, tb->item_pos);
1051
1052 if (!is_direntry_le_ih(ih_check)
1053 && (tb->pos_in_item != ih_item_len(ih_check)
1054 || tb->insert_size[0] <= 0))
1055 reiserfs_panic(tb->tb_sb,
1056 "PAP-12235",
1057 "pos_in_item "
1058 "must be equal "
1059 "to ih_item_len");
1060#endif /* CONFIG_REISERFS_CHECK */
1061
1062 leaf_mi = leaf_move_items(LEAF_FROM_S_TO_SNEW,
1063 tb, tb->snum[i],
1064 tb->sbytes[i],
1065 tb->S_new[i]);
1066
1067 RFALSE(leaf_mi,
1068 "PAP-12240: unexpected value returned by leaf_move_items (%d)",
1069 leaf_mi);
1070
1071 /* paste into item */
1072 buffer_info_init_bh(tb, &bi, tb->S_new[i]);
1073 leaf_paste_in_buffer(&bi,
1074 tb->item_pos - n + tb->snum[i],
1075 tb->pos_in_item,
1076 tb->insert_size[0],
1077 body, tb->zeroes_num);
1078
1079 pasted = item_head(tb->S_new[i], tb->item_pos - n + tb->snum[i]);
1080 if (is_direntry_le_ih(pasted)) {
1081 leaf_paste_entries(&bi,
1082 tb->item_pos - n + tb->snum[i],
1083 tb->pos_in_item, 1,
1084 (struct reiserfs_de_head *)body,
1085 body + DEH_SIZE,
1086 tb->insert_size[0]
1087 );
1088 }
1089
1090 /* if we paste to indirect item update ih_free_space */
1091 if (is_indirect_le_ih(pasted))
1092 set_ih_free_space(pasted, 0);
1093 tb->zeroes_num = tb->insert_size[0] = 0;
1094 }
1095 }
1096
1097 else { /* pasted item doesn't fall into S_new[i] */
1098
1099 leaf_move_items(LEAF_FROM_S_TO_SNEW, tb,
1100 tb->snum[i], tb->sbytes[i], tb->S_new[i]);
1101 }
1102
1103}
1104
0080e9f9
JM
1105/* Fill new nodes that appear in place of S[0] */
1106static void balance_leaf_new_nodes(struct tree_balance *tb,
1107 struct item_head *ih,
1108 const char *body,
1109 struct item_head *insert_key,
1110 struct buffer_head **insert_ptr,
1111 int flag)
1112{
1113 int i;
1114 for (i = tb->blknum[0] - 2; i >= 0; i--) {
1115
1116 RFALSE(!tb->snum[i],
1117 "PAP-12200: snum[%d] == %d. Must be > 0", i,
1118 tb->snum[i]);
1119
1120 /* here we shift from S to S_new nodes */
1121
1122 tb->S_new[i] = get_FEB(tb);
1123
1124 /* initialized block type and tree level */
1125 set_blkh_level(B_BLK_HEAD(tb->S_new[i]), DISK_LEAF_NODE_LEVEL);
1126
1127 switch (flag) {
1128 case M_INSERT: /* insert item */
1129 balance_leaf_new_nodes_insert(tb, ih, body, insert_key,
1130 insert_ptr, i);
1131 break;
1132
1133 case M_PASTE: /* append item */
1134 balance_leaf_new_nodes_paste(tb, ih, body, insert_key,
1135 insert_ptr, i);
1136 break;
1137 default: /* cases d and t */
1138 reiserfs_panic(tb->tb_sb, "PAP-12245",
1139 "blknum > 2: unexpected mode: %s(%d)",
1140 (flag == M_DELETE) ? "DELETE" : ((flag == M_CUT) ? "CUT" : "UNKNOWN"), flag);
1141 }
1142
1143 memcpy(insert_key + i, leaf_key(tb->S_new[i], 0), KEY_SIZE);
1144 insert_ptr[i] = tb->S_new[i];
1145
1146 RFALSE(!buffer_journaled(tb->S_new[i])
1147 || buffer_journal_dirty(tb->S_new[i])
1148 || buffer_dirty(tb->S_new[i]),
1149 "PAP-12247: S_new[%d] : (%b)",
1150 i, format_bh(tb->S_new[i]));
1151 }
1152}
1153
8c480ea1
JM
1154static void balance_leaf_finish_node_insert(struct tree_balance *tb,
1155 struct item_head *ih,
1156 const char *body)
1157{
1158 struct buffer_head *tbS0 = PATH_PLAST_BUFFER(tb->tb_path);
1159 struct buffer_info bi;
1160 buffer_info_init_tbS0(tb, &bi);
1161 leaf_insert_into_buf(&bi, tb->item_pos, ih,
1162 body, tb->zeroes_num);
1163
1164 /*
1165 * If we insert the first key
1166 * change the delimiting key
1167 */
1168 if (tb->item_pos == 0) {
1169 if (tb->CFL[0]) /* can be 0 in reiserfsck */
1170 replace_key(tb, tb->CFL[0], tb->lkey[0], tbS0, 0);
1171 }
1172}
1173
7f447ba8
JM
1174static void balance_leaf_finish_node_paste(struct tree_balance *tb,
1175 struct item_head *ih,
1176 const char *body)
1177{
1178 struct buffer_head *tbS0 = PATH_PLAST_BUFFER(tb->tb_path);
1179 struct buffer_info bi;
1180 struct item_head *pasted;
1181
1182 pasted = item_head(tbS0, tb->item_pos);
1183 /* when directory, may be new entry already pasted */
1184 if (is_direntry_le_ih(pasted)) {
1185 if (tb->pos_in_item >= 0 && tb->pos_in_item <= ih_entry_count(pasted)) {
1186
1187 RFALSE(!tb->insert_size[0],
1188 "PAP-12260: insert_size is 0 already");
1189
1190 /* prepare space */
1191 buffer_info_init_tbS0(tb, &bi);
1192 leaf_paste_in_buffer(&bi, tb->item_pos, tb->pos_in_item,
1193 tb->insert_size[0], body,
1194 tb->zeroes_num);
1195
1196 /* paste entry */
1197 leaf_paste_entries(&bi, tb->item_pos, tb->pos_in_item, 1,
1198 (struct reiserfs_de_head *)body,
1199 body + DEH_SIZE,
1200 tb->insert_size[0]);
1201 if (!tb->item_pos && !tb->pos_in_item) {
1202 RFALSE(!tb->CFL[0] || !tb->L[0],
1203 "PAP-12270: CFL[0]/L[0] must be specified");
1204 if (tb->CFL[0])
1205 replace_key(tb, tb->CFL[0], tb->lkey[0], tbS0, 0);
1206 }
1207 tb->insert_size[0] = 0;
1208 }
1209 } else { /* regular object */
1210 if (tb->pos_in_item == ih_item_len(pasted)) {
1211
1212 RFALSE(tb->insert_size[0] <= 0,
1213 "PAP-12275: insert size must not be %d",
1214 tb->insert_size[0]);
1215 buffer_info_init_tbS0(tb, &bi);
1216 leaf_paste_in_buffer(&bi, tb->item_pos, tb->pos_in_item,
1217 tb->insert_size[0], body, tb->zeroes_num);
1218
1219 if (is_indirect_le_ih(pasted)) {
1220#if 0
1221 RFALSE(tb->
1222 insert_size[0] !=
1223 UNFM_P_SIZE,
1224 "PAP-12280: insert_size for indirect item must be %d, not %d",
1225 UNFM_P_SIZE,
1226 tb->
1227 insert_size[0]);
1228#endif
1229 set_ih_free_space(pasted, 0);
1230 }
1231 tb->insert_size[0] = 0;
1232 }
1233#ifdef CONFIG_REISERFS_CHECK
1234 else {
1235 if (tb->insert_size[0]) {
1236 print_cur_tb("12285");
1237 reiserfs_panic(tb->tb_sb,
1238 "PAP-12285",
1239 "insert_size "
1240 "must be 0 "
1241 "(%d)",
1242 tb->insert_size[0]);
1243 }
1244 }
1245#endif /* CONFIG_REISERFS_CHECK */
1246
1247 }
1248}
1249
0080e9f9
JM
1250/*
1251 * if the affected item was not wholly shifted then we
1252 * perform all necessary operations on that part or whole
1253 * of the affected item which remains in S
1254 */
1255static void balance_leaf_finish_node(struct tree_balance *tb,
1256 struct item_head *ih,
1257 const char *body, int flag)
1258{
1259 /* if we must insert or append into buffer S[0] */
1260 if (0 <= tb->item_pos && tb->item_pos < tb->s0num) {
1261 if (flag == M_INSERT)
1262 balance_leaf_finish_node_insert(tb, ih, body);
1263 else /* M_PASTE */
1264 balance_leaf_finish_node_paste(tb, ih, body);
1265 }
1266}
1267
3f0eb276
JM
1268/**
1269 * balance_leaf - reiserfs tree balancing algorithm
1270 * @tb: tree balance state
1271 * @ih: item header of inserted item (little endian)
1272 * @body: body of inserted item or bytes to paste
1273 * @flag: i - insert, d - delete, c - cut, p - paste (see do_balance)
1274 * passed back:
1275 * @insert_key: key to insert new nodes
1276 * @insert_ptr: array of nodes to insert at the next level
1277 *
1278 * In our processing of one level we sometimes determine what must be
1279 * inserted into the next higher level. This insertion consists of a
1280 * key or two keys and their corresponding pointers.
1281 */
1282static int balance_leaf(struct tree_balance *tb, struct item_head *ih,
1283 const char *body, int flag,
1284 struct item_head *insert_key,
1285 struct buffer_head **insert_ptr)
1286{
1287 struct buffer_head *tbS0 = PATH_PLAST_BUFFER(tb->tb_path);
3f0eb276
JM
1288
1289 PROC_INFO_INC(tb->tb_sb, balance_at[0]);
1290
1291 /* Make balance in case insert_size[0] < 0 */
1292 if (tb->insert_size[0] < 0)
1293 return balance_leaf_when_delete(tb, flag);
1294
1295 tb->item_pos = PATH_LAST_POSITION(tb->tb_path),
1296 tb->pos_in_item = tb->tb_path->pos_in_item,
1297 tb->zeroes_num = 0;
1298 if (flag == M_INSERT && !body)
1299 tb->zeroes_num = ih_item_len(ih);
1300
1301 /*
1302 * for indirect item pos_in_item is measured in unformatted node
1303 * pointers. Recalculate to bytes
1304 */
1305 if (flag != M_INSERT
1306 && is_indirect_le_ih(item_head(tbS0, tb->item_pos)))
1307 tb->pos_in_item *= UNFM_P_SIZE;
1308
0080e9f9 1309 balance_leaf_left(tb, ih, body, flag);
3f0eb276
JM
1310
1311 /* tb->lnum[0] > 0 */
1312 /* Calculate new item position */
1313 tb->item_pos -= (tb->lnum[0] - ((tb->lbytes != -1) ? 1 : 0));
1314
0080e9f9 1315 balance_leaf_right(tb, ih, body, flag);
1da177e4 1316
bd4c625c
LT
1317 /* tb->rnum[0] > 0 */
1318 RFALSE(tb->blknum[0] > 3,
416e2abd 1319 "PAP-12180: blknum can not be %d. It must be <= 3", tb->blknum[0]);
bd4c625c 1320 RFALSE(tb->blknum[0] < 0,
416e2abd 1321 "PAP-12185: blknum can not be %d. It must be >= 0", tb->blknum[0]);
bd4c625c 1322
97fd4b97
JM
1323 /*
1324 * if while adding to a node we discover that it is possible to split
1325 * it in two, and merge the left part into the left neighbor and the
1326 * right part into the right neighbor, eliminating the node
1327 */
bd4c625c
LT
1328 if (tb->blknum[0] == 0) { /* node S[0] is empty now */
1329
1330 RFALSE(!tb->lnum[0] || !tb->rnum[0],
1331 "PAP-12190: lnum and rnum must not be zero");
97fd4b97
JM
1332 /*
1333 * if insertion was done before 0-th position in R[0], right
1334 * delimiting key of the tb->L[0]'s and left delimiting key are
1335 * not set correctly
1336 */
bd4c625c
LT
1337 if (tb->CFL[0]) {
1338 if (!tb->CFR[0])
c3a9c210
JM
1339 reiserfs_panic(tb->tb_sb, "vs-12195",
1340 "CFR not initialized");
4cf5f7ad
JM
1341 copy_key(internal_key(tb->CFL[0], tb->lkey[0]),
1342 internal_key(tb->CFR[0], tb->rkey[0]));
bd4c625c
LT
1343 do_balance_mark_internal_dirty(tb, tb->CFL[0], 0);
1344 }
1da177e4 1345
bd4c625c
LT
1346 reiserfs_invalidate_buffer(tb, tbS0);
1347 return 0;
1348 }
1da177e4 1349
0080e9f9 1350 balance_leaf_new_nodes(tb, ih, body, insert_key, insert_ptr, flag);
bd4c625c 1351
0080e9f9 1352 balance_leaf_finish_node(tb, ih, body, flag);
bd4c625c 1353
1da177e4 1354#ifdef CONFIG_REISERFS_CHECK
bd4c625c
LT
1355 if (flag == M_PASTE && tb->insert_size[0]) {
1356 print_cur_tb("12290");
1357 reiserfs_panic(tb->tb_sb,
c3a9c210 1358 "PAP-12290", "insert_size is still not 0 (%d)",
bd4c625c
LT
1359 tb->insert_size[0]);
1360 }
97fd4b97
JM
1361#endif
1362
1363 /* Leaf level of the tree is balanced (end of balance_leaf) */
bd4c625c 1364 return 0;
97fd4b97 1365}
1da177e4
LT
1366
1367/* Make empty node */
bd4c625c 1368void make_empty_node(struct buffer_info *bi)
1da177e4 1369{
bd4c625c 1370 struct block_head *blkh;
1da177e4 1371
bd4c625c 1372 RFALSE(bi->bi_bh == NULL, "PAP-12295: pointer to the buffer is NULL");
1da177e4 1373
bd4c625c
LT
1374 blkh = B_BLK_HEAD(bi->bi_bh);
1375 set_blkh_nr_item(blkh, 0);
1376 set_blkh_free_space(blkh, MAX_CHILD_SIZE(bi->bi_bh));
1da177e4 1377
bd4c625c
LT
1378 if (bi->bi_parent)
1379 B_N_CHILD(bi->bi_parent, bi->bi_position)->dc_size = 0; /* Endian safe if 0 */
1da177e4
LT
1380}
1381
1da177e4 1382/* Get first empty buffer */
bd4c625c 1383struct buffer_head *get_FEB(struct tree_balance *tb)
1da177e4 1384{
bd4c625c 1385 int i;
bd4c625c 1386 struct buffer_info bi;
1da177e4 1387
bd4c625c 1388 for (i = 0; i < MAX_FEB_SIZE; i++)
9dce07f1 1389 if (tb->FEB[i] != NULL)
bd4c625c
LT
1390 break;
1391
1392 if (i == MAX_FEB_SIZE)
c3a9c210 1393 reiserfs_panic(tb->tb_sb, "vs-12300", "FEB list is empty");
bd4c625c 1394
fba4ebb5 1395 buffer_info_init_bh(tb, &bi, tb->FEB[i]);
bd4c625c 1396 make_empty_node(&bi);
fba4ebb5
JM
1397 set_buffer_uptodate(tb->FEB[i]);
1398 tb->used[i] = tb->FEB[i];
bd4c625c 1399 tb->FEB[i] = NULL;
bd4c625c 1400
fba4ebb5 1401 return tb->used[i];
bd4c625c 1402}
1da177e4 1403
098297b2 1404/* This is now used because reiserfs_free_block has to be able to schedule. */
bd4c625c 1405static void store_thrown(struct tree_balance *tb, struct buffer_head *bh)
1da177e4 1406{
bd4c625c
LT
1407 int i;
1408
1409 if (buffer_dirty(bh))
45b03d5e
JM
1410 reiserfs_warning(tb->tb_sb, "reiserfs-12320",
1411 "called with dirty buffer");
79a81aef 1412 for (i = 0; i < ARRAY_SIZE(tb->thrown); i++)
bd4c625c
LT
1413 if (!tb->thrown[i]) {
1414 tb->thrown[i] = bh;
1415 get_bh(bh); /* free_thrown puts this */
1416 return;
1417 }
45b03d5e
JM
1418 reiserfs_warning(tb->tb_sb, "reiserfs-12321",
1419 "too many thrown buffers");
1da177e4
LT
1420}
1421
bd4c625c
LT
1422static void free_thrown(struct tree_balance *tb)
1423{
1424 int i;
1425 b_blocknr_t blocknr;
79a81aef 1426 for (i = 0; i < ARRAY_SIZE(tb->thrown); i++) {
bd4c625c
LT
1427 if (tb->thrown[i]) {
1428 blocknr = tb->thrown[i]->b_blocknr;
1429 if (buffer_dirty(tb->thrown[i]))
45b03d5e
JM
1430 reiserfs_warning(tb->tb_sb, "reiserfs-12322",
1431 "called with dirty buffer %d",
bd4c625c
LT
1432 blocknr);
1433 brelse(tb->thrown[i]); /* incremented in store_thrown */
1434 reiserfs_free_block(tb->transaction_handle, NULL,
1435 blocknr, 0);
1436 }
1da177e4 1437 }
1da177e4
LT
1438}
1439
bd4c625c 1440void reiserfs_invalidate_buffer(struct tree_balance *tb, struct buffer_head *bh)
1da177e4 1441{
bd4c625c
LT
1442 struct block_head *blkh;
1443 blkh = B_BLK_HEAD(bh);
1444 set_blkh_level(blkh, FREE_LEVEL);
1445 set_blkh_nr_item(blkh, 0);
1446
1447 clear_buffer_dirty(bh);
1448 store_thrown(tb, bh);
1da177e4
LT
1449}
1450
1451/* Replace n_dest'th key in buffer dest by n_src'th key of buffer src.*/
bd4c625c
LT
1452void replace_key(struct tree_balance *tb, struct buffer_head *dest, int n_dest,
1453 struct buffer_head *src, int n_src)
1da177e4
LT
1454{
1455
bd4c625c
LT
1456 RFALSE(dest == NULL || src == NULL,
1457 "vs-12305: source or destination buffer is 0 (src=%p, dest=%p)",
1458 src, dest);
1459 RFALSE(!B_IS_KEYS_LEVEL(dest),
1460 "vs-12310: invalid level (%z) for destination buffer. dest must be leaf",
1461 dest);
1462 RFALSE(n_dest < 0 || n_src < 0,
1463 "vs-12315: src(%d) or dest(%d) key number < 0", n_src, n_dest);
1464 RFALSE(n_dest >= B_NR_ITEMS(dest) || n_src >= B_NR_ITEMS(src),
1465 "vs-12320: src(%d(%d)) or dest(%d(%d)) key number is too big",
1466 n_src, B_NR_ITEMS(src), n_dest, B_NR_ITEMS(dest));
1467
1468 if (B_IS_ITEMS_LEVEL(src))
1469 /* source buffer contains leaf node */
4cf5f7ad 1470 memcpy(internal_key(dest, n_dest), item_head(src, n_src),
bd4c625c
LT
1471 KEY_SIZE);
1472 else
4cf5f7ad 1473 memcpy(internal_key(dest, n_dest), internal_key(src, n_src),
bd4c625c
LT
1474 KEY_SIZE);
1475
1476 do_balance_mark_internal_dirty(tb, dest, 0);
1da177e4
LT
1477}
1478
bd4c625c 1479int get_left_neighbor_position(struct tree_balance *tb, int h)
1da177e4 1480{
bd4c625c 1481 int Sh_position = PATH_H_POSITION(tb->tb_path, h + 1);
1da177e4 1482
9dce07f1 1483 RFALSE(PATH_H_PPARENT(tb->tb_path, h) == NULL || tb->FL[h] == NULL,
bd4c625c
LT
1484 "vs-12325: FL[%d](%p) or F[%d](%p) does not exist",
1485 h, tb->FL[h], h, PATH_H_PPARENT(tb->tb_path, h));
1da177e4 1486
bd4c625c
LT
1487 if (Sh_position == 0)
1488 return B_NR_ITEMS(tb->FL[h]);
1489 else
1490 return Sh_position - 1;
1da177e4
LT
1491}
1492
bd4c625c 1493int get_right_neighbor_position(struct tree_balance *tb, int h)
1da177e4 1494{
bd4c625c 1495 int Sh_position = PATH_H_POSITION(tb->tb_path, h + 1);
1da177e4 1496
9dce07f1 1497 RFALSE(PATH_H_PPARENT(tb->tb_path, h) == NULL || tb->FR[h] == NULL,
bd4c625c
LT
1498 "vs-12330: F[%d](%p) or FR[%d](%p) does not exist",
1499 h, PATH_H_PPARENT(tb->tb_path, h), h, tb->FR[h]);
1da177e4 1500
bd4c625c
LT
1501 if (Sh_position == B_NR_ITEMS(PATH_H_PPARENT(tb->tb_path, h)))
1502 return 0;
1503 else
1504 return Sh_position + 1;
1da177e4
LT
1505}
1506
1da177e4
LT
1507#ifdef CONFIG_REISERFS_CHECK
1508
bd4c625c
LT
1509int is_reusable(struct super_block *s, b_blocknr_t block, int bit_value);
1510static void check_internal_node(struct super_block *s, struct buffer_head *bh,
1511 char *mes)
1da177e4 1512{
bd4c625c
LT
1513 struct disk_child *dc;
1514 int i;
1da177e4 1515
bd4c625c 1516 RFALSE(!bh, "PAP-12336: bh == 0");
1da177e4 1517
bd4c625c
LT
1518 if (!bh || !B_IS_IN_TREE(bh))
1519 return;
1da177e4 1520
bd4c625c
LT
1521 RFALSE(!buffer_dirty(bh) &&
1522 !(buffer_journaled(bh) || buffer_journal_dirty(bh)),
1523 "PAP-12337: buffer (%b) must be dirty", bh);
1524 dc = B_N_CHILD(bh, 0);
1da177e4 1525
bd4c625c
LT
1526 for (i = 0; i <= B_NR_ITEMS(bh); i++, dc++) {
1527 if (!is_reusable(s, dc_block_number(dc), 1)) {
1528 print_cur_tb(mes);
c3a9c210
JM
1529 reiserfs_panic(s, "PAP-12338",
1530 "invalid child pointer %y in %b",
bd4c625c
LT
1531 dc, bh);
1532 }
1533 }
1da177e4
LT
1534}
1535
45b03d5e
JM
1536static int locked_or_not_in_tree(struct tree_balance *tb,
1537 struct buffer_head *bh, char *which)
bd4c625c
LT
1538{
1539 if ((!buffer_journal_prepared(bh) && buffer_locked(bh)) ||
1540 !B_IS_IN_TREE(bh)) {
45b03d5e 1541 reiserfs_warning(tb->tb_sb, "vs-12339", "%s (%b)", which, bh);
bd4c625c
LT
1542 return 1;
1543 }
1544 return 0;
1545}
1da177e4 1546
bd4c625c 1547static int check_before_balancing(struct tree_balance *tb)
1da177e4 1548{
bd4c625c
LT
1549 int retval = 0;
1550
08f14fc8 1551 if (REISERFS_SB(tb->tb_sb)->cur_tb) {
c3a9c210
JM
1552 reiserfs_panic(tb->tb_sb, "vs-12335", "suspect that schedule "
1553 "occurred based on cur_tb not being null at "
1554 "this point in code. do_balance cannot properly "
08f14fc8
FW
1555 "handle concurrent tree accesses on a same "
1556 "mount point.");
1da177e4 1557 }
bd4c625c 1558
098297b2
JM
1559 /*
1560 * double check that buffers that we will modify are unlocked.
1561 * (fix_nodes should already have prepped all of these for us).
1562 */
bd4c625c 1563 if (tb->lnum[0]) {
45b03d5e
JM
1564 retval |= locked_or_not_in_tree(tb, tb->L[0], "L[0]");
1565 retval |= locked_or_not_in_tree(tb, tb->FL[0], "FL[0]");
1566 retval |= locked_or_not_in_tree(tb, tb->CFL[0], "CFL[0]");
bd4c625c 1567 check_leaf(tb->L[0]);
1da177e4 1568 }
bd4c625c 1569 if (tb->rnum[0]) {
45b03d5e
JM
1570 retval |= locked_or_not_in_tree(tb, tb->R[0], "R[0]");
1571 retval |= locked_or_not_in_tree(tb, tb->FR[0], "FR[0]");
1572 retval |= locked_or_not_in_tree(tb, tb->CFR[0], "CFR[0]");
bd4c625c
LT
1573 check_leaf(tb->R[0]);
1574 }
45b03d5e
JM
1575 retval |= locked_or_not_in_tree(tb, PATH_PLAST_BUFFER(tb->tb_path),
1576 "S[0]");
bd4c625c 1577 check_leaf(PATH_PLAST_BUFFER(tb->tb_path));
1da177e4 1578
bd4c625c
LT
1579 return retval;
1580}
1da177e4 1581
bd4c625c 1582static void check_after_balance_leaf(struct tree_balance *tb)
1da177e4 1583{
bd4c625c
LT
1584 if (tb->lnum[0]) {
1585 if (B_FREE_SPACE(tb->L[0]) !=
1586 MAX_CHILD_SIZE(tb->L[0]) -
1587 dc_size(B_N_CHILD
1588 (tb->FL[0], get_left_neighbor_position(tb, 0)))) {
1589 print_cur_tb("12221");
c3a9c210
JM
1590 reiserfs_panic(tb->tb_sb, "PAP-12355",
1591 "shift to left was incorrect");
bd4c625c
LT
1592 }
1593 }
1594 if (tb->rnum[0]) {
1595 if (B_FREE_SPACE(tb->R[0]) !=
1596 MAX_CHILD_SIZE(tb->R[0]) -
1597 dc_size(B_N_CHILD
1598 (tb->FR[0], get_right_neighbor_position(tb, 0)))) {
1599 print_cur_tb("12222");
c3a9c210
JM
1600 reiserfs_panic(tb->tb_sb, "PAP-12360",
1601 "shift to right was incorrect");
bd4c625c
LT
1602 }
1603 }
1604 if (PATH_H_PBUFFER(tb->tb_path, 1) &&
1605 (B_FREE_SPACE(PATH_H_PBUFFER(tb->tb_path, 0)) !=
1606 (MAX_CHILD_SIZE(PATH_H_PBUFFER(tb->tb_path, 0)) -
1607 dc_size(B_N_CHILD(PATH_H_PBUFFER(tb->tb_path, 1),
1608 PATH_H_POSITION(tb->tb_path, 1)))))) {
1609 int left = B_FREE_SPACE(PATH_H_PBUFFER(tb->tb_path, 0));
1610 int right = (MAX_CHILD_SIZE(PATH_H_PBUFFER(tb->tb_path, 0)) -
1611 dc_size(B_N_CHILD(PATH_H_PBUFFER(tb->tb_path, 1),
1612 PATH_H_POSITION(tb->tb_path,
1613 1))));
1614 print_cur_tb("12223");
45b03d5e 1615 reiserfs_warning(tb->tb_sb, "reiserfs-12363",
bd4c625c
LT
1616 "B_FREE_SPACE (PATH_H_PBUFFER(tb->tb_path,0)) = %d; "
1617 "MAX_CHILD_SIZE (%d) - dc_size( %y, %d ) [%d] = %d",
1618 left,
1619 MAX_CHILD_SIZE(PATH_H_PBUFFER(tb->tb_path, 0)),
1620 PATH_H_PBUFFER(tb->tb_path, 1),
1621 PATH_H_POSITION(tb->tb_path, 1),
1622 dc_size(B_N_CHILD
1623 (PATH_H_PBUFFER(tb->tb_path, 1),
1624 PATH_H_POSITION(tb->tb_path, 1))),
1625 right);
c3a9c210 1626 reiserfs_panic(tb->tb_sb, "PAP-12365", "S is incorrect");
bd4c625c 1627 }
1da177e4
LT
1628}
1629
bd4c625c 1630static void check_leaf_level(struct tree_balance *tb)
1da177e4 1631{
bd4c625c
LT
1632 check_leaf(tb->L[0]);
1633 check_leaf(tb->R[0]);
1634 check_leaf(PATH_PLAST_BUFFER(tb->tb_path));
1635}
1da177e4 1636
bd4c625c
LT
1637static void check_internal_levels(struct tree_balance *tb)
1638{
1639 int h;
1640
1641 /* check all internal nodes */
1642 for (h = 1; tb->insert_size[h]; h++) {
1643 check_internal_node(tb->tb_sb, PATH_H_PBUFFER(tb->tb_path, h),
1644 "BAD BUFFER ON PATH");
1645 if (tb->lnum[h])
1646 check_internal_node(tb->tb_sb, tb->L[h], "BAD L");
1647 if (tb->rnum[h])
1648 check_internal_node(tb->tb_sb, tb->R[h], "BAD R");
1649 }
1da177e4
LT
1650
1651}
1652
1653#endif
1654
098297b2
JM
1655/*
1656 * Now we have all of the buffers that must be used in balancing of
1657 * the tree. We rely on the assumption that schedule() will not occur
1658 * while do_balance works. ( Only interrupt handlers are acceptable.)
1659 * We balance the tree according to the analysis made before this,
1660 * using buffers already obtained. For SMP support it will someday be
1661 * necessary to add ordered locking of tb.
1662 */
1da177e4 1663
098297b2
JM
1664/*
1665 * Some interesting rules of balancing:
1666 * we delete a maximum of two nodes per level per balancing: we never
1667 * delete R, when we delete two of three nodes L, S, R then we move
1668 * them into R.
1669 *
1670 * we only delete L if we are deleting two nodes, if we delete only
1671 * one node we delete S
1672 *
1673 * if we shift leaves then we shift as much as we can: this is a
1674 * deliberate policy of extremism in node packing which results in
1675 * higher average utilization after repeated random balance operations
1676 * at the cost of more memory copies and more balancing as a result of
1677 * small insertions to full nodes.
1678 *
1679 * if we shift internal nodes we try to evenly balance the node
1680 * utilization, with consequent less balancing at the cost of lower
1681 * utilization.
1682 *
1683 * one could argue that the policy for directories in leaves should be
1684 * that of internal nodes, but we will wait until another day to
1685 * evaluate this.... It would be nice to someday measure and prove
1686 * these assumptions as to what is optimal....
1687 */
1da177e4 1688
bd4c625c 1689static inline void do_balance_starts(struct tree_balance *tb)
1da177e4 1690{
098297b2 1691 /* use print_cur_tb() to see initial state of struct tree_balance */
1da177e4 1692
bd4c625c 1693 /* store_print_tb (tb); */
1da177e4 1694
bd4c625c 1695 /* do not delete, just comment it out */
098297b2
JM
1696 /*
1697 print_tb(flag, PATH_LAST_POSITION(tb->tb_path),
1698 tb->tb_path->pos_in_item, tb, "check");
1699 */
bd4c625c 1700 RFALSE(check_before_balancing(tb), "PAP-12340: locked buffers in TB");
1da177e4 1701#ifdef CONFIG_REISERFS_CHECK
08f14fc8 1702 REISERFS_SB(tb->tb_sb)->cur_tb = tb;
1da177e4
LT
1703#endif
1704}
1705
bd4c625c 1706static inline void do_balance_completed(struct tree_balance *tb)
1da177e4 1707{
bd4c625c 1708
1da177e4 1709#ifdef CONFIG_REISERFS_CHECK
bd4c625c
LT
1710 check_leaf_level(tb);
1711 check_internal_levels(tb);
08f14fc8 1712 REISERFS_SB(tb->tb_sb)->cur_tb = NULL;
1da177e4
LT
1713#endif
1714
098297b2
JM
1715 /*
1716 * reiserfs_free_block is no longer schedule safe. So, we need to
1717 * put the buffers we want freed on the thrown list during do_balance,
1718 * and then free them now
bd4c625c 1719 */
1da177e4 1720
bd4c625c 1721 REISERFS_SB(tb->tb_sb)->s_do_balance++;
1da177e4 1722
bd4c625c
LT
1723 /* release all nodes hold to perform the balancing */
1724 unfix_nodes(tb);
1da177e4 1725
bd4c625c 1726 free_thrown(tb);
1da177e4
LT
1727}
1728
098297b2
JM
1729/*
1730 * do_balance - balance the tree
1731 *
1732 * @tb: tree_balance structure
1733 * @ih: item header of inserted item
1734 * @body: body of inserted item or bytes to paste
1735 * @flag: 'i' - insert, 'd' - delete, 'c' - cut, 'p' paste
1736 *
1737 * Cut means delete part of an item (includes removing an entry from a
1738 * directory).
1739 *
1740 * Delete means delete whole item.
1741 *
1742 * Insert means add a new item into the tree.
1743 *
1744 * Paste means to append to the end of an existing file or to
1745 * insert a directory entry.
1746 */
1747void do_balance(struct tree_balance *tb, struct item_head *ih,
1748 const char *body, int flag)
1749{
1750 int child_pos; /* position of a child node in its parent */
1751 int h; /* level of the tree being processed */
1752
1753 /*
1754 * in our processing of one level we sometimes determine what
1755 * must be inserted into the next higher level. This insertion
1756 * consists of a key or two keys and their corresponding
1757 * pointers
1758 */
1759 struct item_head insert_key[2];
1760
1761 /* inserted node-ptrs for the next level */
1762 struct buffer_head *insert_ptr[2];
bd4c625c
LT
1763
1764 tb->tb_mode = flag;
1765 tb->need_balance_dirty = 0;
1766
1767 if (FILESYSTEM_CHANGED_TB(tb)) {
c3a9c210
JM
1768 reiserfs_panic(tb->tb_sb, "clm-6000", "fs generation has "
1769 "changed");
bd4c625c
LT
1770 }
1771 /* if we have no real work to do */
1772 if (!tb->insert_size[0]) {
45b03d5e
JM
1773 reiserfs_warning(tb->tb_sb, "PAP-12350",
1774 "insert_size == 0, mode == %c", flag);
bd4c625c
LT
1775 unfix_nodes(tb);
1776 return;
1777 }
1da177e4 1778
a228bf8f 1779 atomic_inc(&fs_generation(tb->tb_sb));
bd4c625c 1780 do_balance_starts(tb);
1da177e4 1781
098297b2
JM
1782 /*
1783 * balance_leaf returns 0 except if combining L R and S into
1784 * one node. see balance_internal() for explanation of this
1785 * line of code.
1786 */
bd4c625c
LT
1787 child_pos = PATH_H_B_ITEM_ORDER(tb->tb_path, 0) +
1788 balance_leaf(tb, ih, body, flag, insert_key, insert_ptr);
1da177e4
LT
1789
1790#ifdef CONFIG_REISERFS_CHECK
bd4c625c 1791 check_after_balance_leaf(tb);
1da177e4
LT
1792#endif
1793
bd4c625c
LT
1794 /* Balance internal level of the tree. */
1795 for (h = 1; h < MAX_HEIGHT && tb->insert_size[h]; h++)
1796 child_pos =
1797 balance_internal(tb, h, child_pos, insert_key, insert_ptr);
1da177e4 1798
bd4c625c 1799 do_balance_completed(tb);
1da177e4
LT
1800
1801}
This page took 0.74699 seconds and 5 git commands to generate.