ibalance.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:35k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
  3.  */
  4. #include <linux/config.h>
  5. #include <asm/uaccess.h>
  6. #include <linux/string.h>
  7. #include <linux/sched.h>
  8. #include <linux/reiserfs_fs.h>
  9. /* this is one and only function that is used outside (do_balance.c) */
  10. int balance_internal (
  11.   struct tree_balance * ,
  12.   int,
  13.   int,
  14.   struct item_head * ,
  15.   struct buffer_head ** 
  16.   );
  17. /* modes of internal_shift_left, internal_shift_right and internal_insert_childs */
  18. #define INTERNAL_SHIFT_FROM_S_TO_L 0
  19. #define INTERNAL_SHIFT_FROM_R_TO_S 1
  20. #define INTERNAL_SHIFT_FROM_L_TO_S 2
  21. #define INTERNAL_SHIFT_FROM_S_TO_R 3
  22. #define INTERNAL_INSERT_TO_S 4
  23. #define INTERNAL_INSERT_TO_L 5
  24. #define INTERNAL_INSERT_TO_R 6
  25. static void internal_define_dest_src_infos (
  26. int shift_mode,
  27. struct tree_balance * tb,
  28. int h,
  29. struct buffer_info * dest_bi,
  30. struct buffer_info * src_bi,
  31. int * d_key,
  32. struct buffer_head ** cf
  33. )
  34. {
  35.     memset (dest_bi, 0, sizeof (struct buffer_info));
  36.     memset (src_bi, 0, sizeof (struct buffer_info));
  37.     /* define dest, src, dest parent, dest position */
  38.     switch (shift_mode) {
  39.     case INTERNAL_SHIFT_FROM_S_TO_L: /* used in internal_shift_left */
  40. src_bi->tb = tb;
  41. src_bi->bi_bh = PATH_H_PBUFFER (tb->tb_path, h);
  42. src_bi->bi_parent = PATH_H_PPARENT (tb->tb_path, h);
  43. src_bi->bi_position = PATH_H_POSITION (tb->tb_path, h + 1);
  44. dest_bi->tb = tb;
  45. dest_bi->bi_bh = tb->L[h];
  46. dest_bi->bi_parent = tb->FL[h];
  47. dest_bi->bi_position = get_left_neighbor_position (tb, h);
  48. *d_key = tb->lkey[h];
  49. *cf = tb->CFL[h];
  50. break;
  51.     case INTERNAL_SHIFT_FROM_L_TO_S:
  52. src_bi->tb = tb;
  53. src_bi->bi_bh = tb->L[h];
  54. src_bi->bi_parent = tb->FL[h];
  55. src_bi->bi_position = get_left_neighbor_position (tb, h);
  56. dest_bi->tb = tb;
  57. dest_bi->bi_bh = PATH_H_PBUFFER (tb->tb_path, h);
  58. dest_bi->bi_parent = PATH_H_PPARENT (tb->tb_path, h);
  59. dest_bi->bi_position = PATH_H_POSITION (tb->tb_path, h + 1); /* dest position is analog of dest->b_item_order */
  60. *d_key = tb->lkey[h];
  61. *cf = tb->CFL[h];
  62. break;
  63.       
  64.     case INTERNAL_SHIFT_FROM_R_TO_S: /* used in internal_shift_left */
  65. src_bi->tb = tb;
  66. src_bi->bi_bh = tb->R[h];
  67. src_bi->bi_parent = tb->FR[h];
  68. src_bi->bi_position = get_right_neighbor_position (tb, h);
  69. dest_bi->tb = tb;
  70. dest_bi->bi_bh = PATH_H_PBUFFER (tb->tb_path, h);
  71. dest_bi->bi_parent = PATH_H_PPARENT (tb->tb_path, h);
  72. dest_bi->bi_position = PATH_H_POSITION (tb->tb_path, h + 1);
  73. *d_key = tb->rkey[h];
  74. *cf = tb->CFR[h];
  75. break;
  76.     case INTERNAL_SHIFT_FROM_S_TO_R:
  77. src_bi->tb = tb;
  78. src_bi->bi_bh = PATH_H_PBUFFER (tb->tb_path, h);
  79. src_bi->bi_parent = PATH_H_PPARENT (tb->tb_path, h);
  80. src_bi->bi_position = PATH_H_POSITION (tb->tb_path, h + 1);
  81. dest_bi->tb = tb;
  82. dest_bi->bi_bh = tb->R[h];
  83. dest_bi->bi_parent = tb->FR[h];
  84. dest_bi->bi_position = get_right_neighbor_position (tb, h);
  85. *d_key = tb->rkey[h];
  86. *cf = tb->CFR[h];
  87. break;
  88.     case INTERNAL_INSERT_TO_L:
  89. dest_bi->tb = tb;
  90. dest_bi->bi_bh = tb->L[h];
  91. dest_bi->bi_parent = tb->FL[h];
  92. dest_bi->bi_position = get_left_neighbor_position (tb, h);
  93. break;
  94.     case INTERNAL_INSERT_TO_S:
  95. dest_bi->tb = tb;
  96. dest_bi->bi_bh = PATH_H_PBUFFER (tb->tb_path, h);
  97. dest_bi->bi_parent = PATH_H_PPARENT (tb->tb_path, h);
  98. dest_bi->bi_position = PATH_H_POSITION (tb->tb_path, h + 1);
  99. break;
  100.     case INTERNAL_INSERT_TO_R:
  101. dest_bi->tb = tb;
  102. dest_bi->bi_bh = tb->R[h];
  103. dest_bi->bi_parent = tb->FR[h];
  104. dest_bi->bi_position = get_right_neighbor_position (tb, h);
  105. break;
  106.     default:
  107. reiserfs_panic (tb->tb_sb, "internal_define_dest_src_infos: shift type is unknown (%d)", shift_mode);
  108.     }
  109. }
  110. /* Insert count node pointers into buffer cur before position to + 1.
  111.  * Insert count items into buffer cur before position to.
  112.  * Items and node pointers are specified by inserted and bh respectively.
  113.  */ 
  114. static void internal_insert_childs (struct buffer_info * cur_bi,
  115.     int to, int count,
  116.     struct item_head * inserted,
  117.     struct buffer_head ** bh
  118.     )
  119. {
  120.     struct buffer_head * cur = cur_bi->bi_bh;
  121.     struct block_head * blkh;
  122.     int nr;
  123.     struct key * ih;
  124.     struct disk_child new_dc[2];
  125.     struct disk_child * dc;
  126.     int i;
  127.     if (count <= 0)
  128. return;
  129.     blkh = B_BLK_HEAD(cur);
  130.     nr = blkh_nr_item(blkh);
  131.     RFALSE( count > 2,
  132.     "too many children (%d) are to be inserted", count);
  133.     RFALSE( B_FREE_SPACE (cur) < count * (KEY_SIZE + DC_SIZE),
  134.     "no enough free space (%d), needed %d bytes", 
  135.     B_FREE_SPACE (cur), count * (KEY_SIZE + DC_SIZE));
  136.     /* prepare space for count disk_child */
  137.     dc = B_N_CHILD(cur,to+1);
  138.     memmove (dc + count, dc, (nr+1-(to+1)) * DC_SIZE);
  139.     /* copy to_be_insert disk children */
  140.     for (i = 0; i < count; i ++) {
  141. put_dc_size( &(new_dc[i]), MAX_CHILD_SIZE(bh[i]) - B_FREE_SPACE(bh[i]));
  142. put_dc_block_number( &(new_dc[i]), bh[i]->b_blocknr );
  143.     }
  144.     memcpy (dc, new_dc, DC_SIZE * count);
  145.   
  146.     /* prepare space for count items  */
  147.     ih = B_N_PDELIM_KEY (cur, ((to == -1) ? 0 : to));
  148.     memmove (ih + count, ih, (nr - to) * KEY_SIZE + (nr + 1 + count) * DC_SIZE);
  149.     /* copy item headers (keys) */
  150.     memcpy (ih, inserted, KEY_SIZE);
  151.     if ( count > 1 )
  152. memcpy (ih + 1, inserted + 1, KEY_SIZE);
  153.     /* sizes, item number */
  154.     set_blkh_nr_item( blkh, blkh_nr_item(blkh) + count );
  155.     set_blkh_free_space( blkh,
  156.                         blkh_free_space(blkh) - count * (DC_SIZE + KEY_SIZE ) );
  157.     do_balance_mark_internal_dirty (cur_bi->tb, cur,0);
  158.     /*&&&&&&&&&&&&&&&&&&&&&&&&*/
  159.     check_internal (cur);
  160.     /*&&&&&&&&&&&&&&&&&&&&&&&&*/
  161.     if (cur_bi->bi_parent) {
  162. struct disk_child *t_dc = B_N_CHILD (cur_bi->bi_parent,cur_bi->bi_position);
  163. put_dc_size( t_dc, dc_size(t_dc) + (count * (DC_SIZE + KEY_SIZE)));
  164. do_balance_mark_internal_dirty(cur_bi->tb, cur_bi->bi_parent, 0);
  165. /*&&&&&&&&&&&&&&&&&&&&&&&&*/
  166. check_internal (cur_bi->bi_parent);
  167. /*&&&&&&&&&&&&&&&&&&&&&&&&*/   
  168.     }
  169. }
  170. /* Delete del_num items and node pointers from buffer cur starting from *
  171.  * the first_i'th item and first_p'th pointers respectively. */
  172. static void internal_delete_pointers_items (
  173. struct buffer_info * cur_bi,
  174. int first_p, 
  175. int first_i, 
  176. int del_num
  177. )
  178. {
  179.   struct buffer_head * cur = cur_bi->bi_bh;
  180.   int nr;
  181.   struct block_head * blkh;
  182.   struct key * key;
  183.   struct disk_child * dc;
  184.   RFALSE( cur == NULL, "buffer is 0");
  185.   RFALSE( del_num < 0,
  186.           "negative number of items (%d) can not be deleted", del_num);
  187.   RFALSE( first_p < 0 || first_p + del_num > B_NR_ITEMS (cur) + 1 || first_i < 0,
  188.           "first pointer order (%d) < 0 or "
  189.           "no so many pointers (%d), only (%d) or "
  190.           "first key order %d < 0", first_p, 
  191.           first_p + del_num, B_NR_ITEMS (cur) + 1, first_i);
  192.   if ( del_num == 0 )
  193.     return;
  194.   blkh = B_BLK_HEAD(cur);
  195.   nr = blkh_nr_item(blkh);
  196.   if ( first_p == 0 && del_num == nr + 1 ) {
  197.     RFALSE( first_i != 0, "1st deleted key must have order 0, not %d", first_i);
  198.     make_empty_node (cur_bi);
  199.     return;
  200.   }
  201.   RFALSE( first_i + del_num > B_NR_ITEMS (cur),
  202.           "first_i = %d del_num = %d "
  203.           "no so many keys (%d) in the node (%b)(%z)",
  204.           first_i, del_num, first_i + del_num, cur, cur);
  205.   /* deleting */
  206.   dc = B_N_CHILD (cur, first_p);
  207.   memmove (dc, dc + del_num, (nr + 1 - first_p - del_num) * DC_SIZE);
  208.   key = B_N_PDELIM_KEY (cur, first_i);
  209.   memmove (key, key + del_num, (nr - first_i - del_num) * KEY_SIZE + (nr + 1 - del_num) * DC_SIZE);
  210.   /* sizes, item number */
  211.   set_blkh_nr_item( blkh, blkh_nr_item(blkh) - del_num );
  212.   set_blkh_free_space( blkh,
  213.                     blkh_free_space(blkh) + (del_num * (KEY_SIZE + DC_SIZE) ) );
  214.   do_balance_mark_internal_dirty (cur_bi->tb, cur, 0);
  215.   /*&&&&&&&&&&&&&&&&&&&&&&&*/
  216.   check_internal (cur);
  217.   /*&&&&&&&&&&&&&&&&&&&&&&&*/
  218.  
  219.   if (cur_bi->bi_parent) {
  220.     struct disk_child *t_dc;
  221.     t_dc = B_N_CHILD (cur_bi->bi_parent, cur_bi->bi_position);
  222.     put_dc_size( t_dc, dc_size(t_dc) - (del_num * (KEY_SIZE + DC_SIZE) ) );
  223.     do_balance_mark_internal_dirty (cur_bi->tb, cur_bi->bi_parent,0);
  224.     /*&&&&&&&&&&&&&&&&&&&&&&&&*/
  225.     check_internal (cur_bi->bi_parent);
  226.     /*&&&&&&&&&&&&&&&&&&&&&&&&*/   
  227.   }
  228. }
  229. /* delete n node pointers and items starting from given position */
  230. static void  internal_delete_childs (struct buffer_info * cur_bi, 
  231.      int from, int n)
  232. {
  233.   int i_from;
  234.   i_from = (from == 0) ? from : from - 1;
  235.   /* delete n pointers starting from `from' position in CUR;
  236.      delete n keys starting from 'i_from' position in CUR;
  237.      */
  238.   internal_delete_pointers_items (cur_bi, from, i_from, n);
  239. }
  240. /* copy cpy_num node pointers and cpy_num - 1 items from buffer src to buffer dest
  241. * last_first == FIRST_TO_LAST means, that we copy first items from src to tail of dest
  242.  * last_first == LAST_TO_FIRST means, that we copy last items from src to head of dest 
  243.  */
  244. static void internal_copy_pointers_items (
  245.   struct buffer_info * dest_bi,
  246.   struct buffer_head * src,
  247.   int last_first, int cpy_num
  248.   )
  249. {
  250.   /* ATTENTION! Number of node pointers in DEST is equal to number of items in DEST *
  251.    * as delimiting key have already inserted to buffer dest.*/
  252.   struct buffer_head * dest = dest_bi->bi_bh;
  253.   int nr_dest, nr_src;
  254.   int dest_order, src_order;
  255.   struct block_head * blkh;
  256.   struct key * key;
  257.   struct disk_child * dc;
  258.   nr_src = B_NR_ITEMS (src);
  259.   RFALSE( dest == NULL || src == NULL, 
  260.   "src (%p) or dest (%p) buffer is 0", src, dest);
  261.   RFALSE( last_first != FIRST_TO_LAST && last_first != LAST_TO_FIRST,
  262.   "invalid last_first parameter (%d)", last_first);
  263.   RFALSE( nr_src < cpy_num - 1, 
  264.   "no so many items (%d) in src (%d)", cpy_num, nr_src);
  265.   RFALSE( cpy_num < 0, "cpy_num less than 0 (%d)", cpy_num);
  266.   RFALSE( cpy_num - 1 + B_NR_ITEMS(dest) > (int)MAX_NR_KEY(dest),
  267.   "cpy_num (%d) + item number in dest (%d) can not be > MAX_NR_KEY(%d)",
  268.   cpy_num, B_NR_ITEMS(dest), MAX_NR_KEY(dest));
  269.   if ( cpy_num == 0 )
  270.     return;
  271. /* coping */
  272.   blkh = B_BLK_HEAD(dest);
  273.   nr_dest = blkh_nr_item(blkh);
  274.   /*dest_order = (last_first == LAST_TO_FIRST) ? 0 : nr_dest;*/
  275.   /*src_order = (last_first == LAST_TO_FIRST) ? (nr_src - cpy_num + 1) : 0;*/
  276.   (last_first == LAST_TO_FIRST) ? (dest_order = 0, src_order = nr_src - cpy_num + 1) :
  277.     (dest_order = nr_dest, src_order = 0);
  278.   /* prepare space for cpy_num pointers */
  279.   dc = B_N_CHILD (dest, dest_order);
  280.   memmove (dc + cpy_num, dc, (nr_dest - dest_order) * DC_SIZE);
  281. /* insert pointers */
  282.   memcpy (dc, B_N_CHILD (src, src_order), DC_SIZE * cpy_num);
  283.   /* prepare space for cpy_num - 1 item headers */
  284.   key = B_N_PDELIM_KEY(dest, dest_order);
  285.   memmove (key + cpy_num - 1, key,
  286.    KEY_SIZE * (nr_dest - dest_order) + DC_SIZE * (nr_dest + cpy_num));
  287.   /* insert headers */
  288.   memcpy (key, B_N_PDELIM_KEY (src, src_order), KEY_SIZE * (cpy_num - 1));
  289.   /* sizes, item number */
  290.   set_blkh_nr_item( blkh, blkh_nr_item(blkh) + (cpy_num - 1 ) );
  291.   set_blkh_free_space( blkh,
  292.       blkh_free_space(blkh) - (KEY_SIZE * (cpy_num - 1) + DC_SIZE * cpy_num ) );
  293.   do_balance_mark_internal_dirty (dest_bi->tb, dest, 0);
  294.   /*&&&&&&&&&&&&&&&&&&&&&&&&*/
  295.   check_internal (dest);
  296.   /*&&&&&&&&&&&&&&&&&&&&&&&&*/
  297.   if (dest_bi->bi_parent) {
  298.     struct disk_child *t_dc;
  299.     t_dc = B_N_CHILD(dest_bi->bi_parent,dest_bi->bi_position);
  300.     put_dc_size( t_dc, dc_size(t_dc) + (KEY_SIZE * (cpy_num - 1) + DC_SIZE * cpy_num) );
  301.     do_balance_mark_internal_dirty (dest_bi->tb, dest_bi->bi_parent,0);
  302.     /*&&&&&&&&&&&&&&&&&&&&&&&&*/
  303.     check_internal (dest_bi->bi_parent);
  304.     /*&&&&&&&&&&&&&&&&&&&&&&&&*/   
  305.   }
  306. }
  307. /* Copy cpy_num node pointers and cpy_num - 1 items from buffer src to buffer dest.
  308.  * Delete cpy_num - del_par items and node pointers from buffer src.
  309.  * last_first == FIRST_TO_LAST means, that we copy/delete first items from src.
  310.  * last_first == LAST_TO_FIRST means, that we copy/delete last items from src.
  311.  */
  312. static void internal_move_pointers_items (struct buffer_info * dest_bi, 
  313.   struct buffer_info * src_bi, 
  314.   int last_first, int cpy_num, int del_par)
  315. {
  316.     int first_pointer;
  317.     int first_item;
  318.     
  319.     internal_copy_pointers_items (dest_bi, src_bi->bi_bh, last_first, cpy_num);
  320.     if (last_first == FIRST_TO_LAST) { /* shift_left occurs */
  321. first_pointer = 0;
  322. first_item = 0;
  323. /* delete cpy_num - del_par pointers and keys starting for pointers with first_pointer, 
  324.    for key - with first_item */
  325. internal_delete_pointers_items (src_bi, first_pointer, first_item, cpy_num - del_par);
  326.     } else { /* shift_right occurs */
  327. int i, j;
  328. i = ( cpy_num - del_par == ( j = B_NR_ITEMS(src_bi->bi_bh)) + 1 ) ? 0 : j - cpy_num + del_par;
  329. internal_delete_pointers_items (src_bi, j + 1 - cpy_num + del_par, i, cpy_num - del_par);
  330.     }
  331. }
  332. /* Insert n_src'th key of buffer src before n_dest'th key of buffer dest. */
  333. static void internal_insert_key (struct buffer_info * dest_bi, 
  334.  int dest_position_before,                 /* insert key before key with n_dest number */
  335.  struct buffer_head * src, 
  336.  int src_position)
  337. {
  338.     struct buffer_head * dest = dest_bi->bi_bh;
  339.     int nr;
  340.     struct block_head * blkh;
  341.     struct key * key;
  342.     RFALSE( dest == NULL || src == NULL,
  343.     "source(%p) or dest(%p) buffer is 0", src, dest);
  344.     RFALSE( dest_position_before < 0 || src_position < 0,
  345.     "source(%d) or dest(%d) key number less than 0", 
  346.     src_position, dest_position_before);
  347.     RFALSE( dest_position_before > B_NR_ITEMS (dest) || 
  348.     src_position >= B_NR_ITEMS(src),
  349.     "invalid position in dest (%d (key number %d)) or in src (%d (key number %d))",
  350.     dest_position_before, B_NR_ITEMS (dest), 
  351.     src_position, B_NR_ITEMS(src));
  352.     RFALSE( B_FREE_SPACE (dest) < KEY_SIZE,
  353.     "no enough free space (%d) in dest buffer", B_FREE_SPACE (dest));
  354.     blkh = B_BLK_HEAD(dest);
  355.     nr = blkh_nr_item(blkh);
  356.     /* prepare space for inserting key */
  357.     key = B_N_PDELIM_KEY (dest, dest_position_before);
  358.     memmove (key + 1, key, (nr - dest_position_before) * KEY_SIZE + (nr + 1) * DC_SIZE);
  359.     /* insert key */
  360.     memcpy (key, B_N_PDELIM_KEY(src, src_position), KEY_SIZE);
  361.     /* Change dirt, free space, item number fields. */
  362.     set_blkh_nr_item( blkh, blkh_nr_item(blkh) + 1 );
  363.     set_blkh_free_space( blkh, blkh_free_space(blkh) - KEY_SIZE );
  364.     do_balance_mark_internal_dirty (dest_bi->tb, dest, 0);
  365.     if (dest_bi->bi_parent) {
  366. struct disk_child *t_dc;
  367. t_dc = B_N_CHILD(dest_bi->bi_parent,dest_bi->bi_position);
  368. put_dc_size( t_dc, dc_size(t_dc) + KEY_SIZE );
  369. do_balance_mark_internal_dirty (dest_bi->tb, dest_bi->bi_parent,0);
  370.     }
  371. }
  372. /* Insert d_key'th (delimiting) key from buffer cfl to tail of dest. 
  373.  * Copy pointer_amount node pointers and pointer_amount - 1 items from buffer src to buffer dest.
  374.  * Replace  d_key'th key in buffer cfl.
  375.  * Delete pointer_amount items and node pointers from buffer src.
  376.  */
  377. /* this can be invoked both to shift from S to L and from R to S */
  378. static void internal_shift_left (
  379.      int mode, /* INTERNAL_FROM_S_TO_L | INTERNAL_FROM_R_TO_S */
  380.      struct tree_balance * tb,
  381.      int h,
  382.      int pointer_amount
  383.      )
  384. {
  385.   struct buffer_info dest_bi, src_bi;
  386.   struct buffer_head * cf;
  387.   int d_key_position;
  388.   internal_define_dest_src_infos (mode, tb, h, &dest_bi, &src_bi, &d_key_position, &cf);
  389.   /*printk("pointer_amount = %dn",pointer_amount);*/
  390.   if (pointer_amount) {
  391.     /* insert delimiting key from common father of dest and src to node dest into position B_NR_ITEM(dest) */
  392.     internal_insert_key (&dest_bi, B_NR_ITEMS(dest_bi.bi_bh), cf, d_key_position);
  393.     if (B_NR_ITEMS(src_bi.bi_bh) == pointer_amount - 1) {
  394.       if (src_bi.bi_position/*src->b_item_order*/ == 0)
  395. replace_key (tb, cf, d_key_position, src_bi.bi_parent/*src->b_parent*/, 0);
  396.     } else
  397.       replace_key (tb, cf, d_key_position, src_bi.bi_bh, pointer_amount - 1);
  398.   }
  399.   /* last parameter is del_parameter */
  400.   internal_move_pointers_items (&dest_bi, &src_bi, FIRST_TO_LAST, pointer_amount, 0);
  401. }
  402. /* Insert delimiting key to L[h].
  403.  * Copy n node pointers and n - 1 items from buffer S[h] to L[h].
  404.  * Delete n - 1 items and node pointers from buffer S[h].
  405.  */
  406. /* it always shifts from S[h] to L[h] */
  407. static void internal_shift1_left (
  408.       struct tree_balance * tb, 
  409.       int h, 
  410.       int pointer_amount
  411.       )
  412. {
  413.   struct buffer_info dest_bi, src_bi;
  414.   struct buffer_head * cf;
  415.   int d_key_position;
  416.   internal_define_dest_src_infos (INTERNAL_SHIFT_FROM_S_TO_L, tb, h, &dest_bi, &src_bi, &d_key_position, &cf);
  417.   if ( pointer_amount > 0 ) /* insert lkey[h]-th key  from CFL[h] to left neighbor L[h] */
  418.     internal_insert_key (&dest_bi, B_NR_ITEMS(dest_bi.bi_bh), cf, d_key_position);
  419.   /* internal_insert_key (tb->L[h], B_NR_ITEM(tb->L[h]), tb->CFL[h], tb->lkey[h]);*/
  420.   /* last parameter is del_parameter */
  421.   internal_move_pointers_items (&dest_bi, &src_bi, FIRST_TO_LAST, pointer_amount, 1);
  422.   /* internal_move_pointers_items (tb->L[h], tb->S[h], FIRST_TO_LAST, pointer_amount, 1);*/
  423. }
  424. /* Insert d_key'th (delimiting) key from buffer cfr to head of dest. 
  425.  * Copy n node pointers and n - 1 items from buffer src to buffer dest.
  426.  * Replace  d_key'th key in buffer cfr.
  427.  * Delete n items and node pointers from buffer src.
  428.  */
  429. static void internal_shift_right (
  430.   int mode, /* INTERNAL_FROM_S_TO_R | INTERNAL_FROM_L_TO_S */
  431.   struct tree_balance * tb,
  432.   int h,
  433.   int pointer_amount
  434.   )
  435. {
  436.   struct buffer_info dest_bi, src_bi;
  437.   struct buffer_head * cf;
  438.   int d_key_position;
  439.   int nr;
  440.   internal_define_dest_src_infos (mode, tb, h, &dest_bi, &src_bi, &d_key_position, &cf);
  441.   nr = B_NR_ITEMS (src_bi.bi_bh);
  442.   if (pointer_amount > 0) {
  443.     /* insert delimiting key from common father of dest and src to dest node into position 0 */
  444.     internal_insert_key (&dest_bi, 0, cf, d_key_position);
  445.     if (nr == pointer_amount - 1) {
  446.  RFALSE( src_bi.bi_bh != PATH_H_PBUFFER (tb->tb_path, h)/*tb->S[h]*/ || 
  447.  dest_bi.bi_bh != tb->R[h],
  448.  "src (%p) must be == tb->S[h](%p) when it disappears",
  449.  src_bi.bi_bh, PATH_H_PBUFFER (tb->tb_path, h));
  450.       /* when S[h] disappers replace left delemiting key as well */
  451.       if (tb->CFL[h])
  452. replace_key (tb, cf, d_key_position, tb->CFL[h], tb->lkey[h]);
  453.     } else
  454.       replace_key (tb, cf, d_key_position, src_bi.bi_bh, nr - pointer_amount);
  455.   }      
  456.   /* last parameter is del_parameter */
  457.   internal_move_pointers_items (&dest_bi, &src_bi, LAST_TO_FIRST, pointer_amount, 0);
  458. }
  459. /* Insert delimiting key to R[h].
  460.  * Copy n node pointers and n - 1 items from buffer S[h] to R[h].
  461.  * Delete n - 1 items and node pointers from buffer S[h].
  462.  */
  463. /* it always shift from S[h] to R[h] */
  464. static void internal_shift1_right (
  465.        struct tree_balance * tb, 
  466.        int h, 
  467.        int pointer_amount
  468.        )
  469. {
  470.   struct buffer_info dest_bi, src_bi;
  471.   struct buffer_head * cf;
  472.   int d_key_position;
  473.   internal_define_dest_src_infos (INTERNAL_SHIFT_FROM_S_TO_R, tb, h, &dest_bi, &src_bi, &d_key_position, &cf);
  474.   if (pointer_amount > 0) /* insert rkey from CFR[h] to right neighbor R[h] */
  475.     internal_insert_key (&dest_bi, 0, cf, d_key_position);
  476.   /* internal_insert_key (tb->R[h], 0, tb->CFR[h], tb->rkey[h]);*/
  477.   /* last parameter is del_parameter */
  478.   internal_move_pointers_items (&dest_bi, &src_bi, LAST_TO_FIRST, pointer_amount, 1);
  479.   /* internal_move_pointers_items (tb->R[h], tb->S[h], LAST_TO_FIRST, pointer_amount, 1);*/
  480. }
  481. /* Delete insert_num node pointers together with their left items
  482.  * and balance current node.*/
  483. static void balance_internal_when_delete (struct tree_balance * tb, 
  484.   int h, int child_pos)
  485. {
  486.     int insert_num;
  487.     int n;
  488.     struct buffer_head * tbSh = PATH_H_PBUFFER (tb->tb_path, h);
  489.     struct buffer_info bi;
  490.     insert_num = tb->insert_size[h] / ((int)(DC_SIZE + KEY_SIZE));
  491.   
  492.     /* delete child-node-pointer(s) together with their left item(s) */
  493.     bi.tb = tb;
  494.     bi.bi_bh = tbSh;
  495.     bi.bi_parent = PATH_H_PPARENT (tb->tb_path, h);
  496.     bi.bi_position = PATH_H_POSITION (tb->tb_path, h + 1);
  497.     internal_delete_childs (&bi, child_pos, -insert_num);
  498.     RFALSE( tb->blknum[h] > 1,
  499.     "tb->blknum[%d]=%d when insert_size < 0", h, tb->blknum[h]);
  500.     n = B_NR_ITEMS(tbSh);
  501.     if ( tb->lnum[h] == 0 && tb->rnum[h] == 0 ) {
  502. if ( tb->blknum[h] == 0 ) {
  503.     /* node S[h] (root of the tree) is empty now */
  504.     struct buffer_head *new_root;
  505.     RFALSE( n || B_FREE_SPACE (tbSh) != MAX_CHILD_SIZE(tbSh) - DC_SIZE,
  506.     "buffer must have only 0 keys (%d)", n);
  507.     RFALSE( bi.bi_parent, "root has parent (%p)", bi.bi_parent);
  508.     /* choose a new root */
  509.     if ( ! tb->L[h-1] || ! B_NR_ITEMS(tb->L[h-1]) )
  510. new_root = tb->R[h-1];
  511.     else
  512. new_root = tb->L[h-1];
  513.     /* switch super block's tree root block number to the new value */
  514.             PUT_SB_ROOT_BLOCK( tb->tb_sb, new_root->b_blocknr );
  515.     //tb->tb_sb->u.reiserfs_sb.s_rs->s_tree_height --;
  516.             PUT_SB_TREE_HEIGHT( tb->tb_sb, SB_TREE_HEIGHT(tb->tb_sb) - 1 );
  517.     do_balance_mark_sb_dirty (tb, tb->tb_sb->u.reiserfs_sb.s_sbh, 1);
  518.     /*&&&&&&&&&&&&&&&&&&&&&&*/
  519.     if (h > 1)
  520. /* use check_internal if new root is an internal node */
  521. check_internal (new_root);
  522.     /*&&&&&&&&&&&&&&&&&&&&&&*/
  523.     tb->tb_sb->s_dirt = 1;
  524.     /* do what is needed for buffer thrown from tree */
  525.     reiserfs_invalidate_buffer(tb, tbSh);
  526.     return;
  527. }
  528. return;
  529.     }
  530.     if ( tb->L[h] && tb->lnum[h] == -B_NR_ITEMS(tb->L[h]) - 1 ) { /* join S[h] with L[h] */
  531. RFALSE( tb->rnum[h] != 0,
  532. "invalid tb->rnum[%d]==%d when joining S[h] with L[h]",
  533. h, tb->rnum[h]);
  534. internal_shift_left (INTERNAL_SHIFT_FROM_S_TO_L, tb, h, n + 1);
  535. reiserfs_invalidate_buffer(tb, tbSh);
  536. return;
  537.     }
  538.     if ( tb->R[h] &&  tb->rnum[h] == -B_NR_ITEMS(tb->R[h]) - 1 ) { /* join S[h] with R[h] */
  539. RFALSE( tb->lnum[h] != 0,
  540. "invalid tb->lnum[%d]==%d when joining S[h] with R[h]",
  541. h, tb->lnum[h]);
  542. internal_shift_right (INTERNAL_SHIFT_FROM_S_TO_R, tb, h, n + 1);
  543. reiserfs_invalidate_buffer(tb,tbSh);
  544. return;
  545.     }
  546.     if ( tb->lnum[h] < 0 ) { /* borrow from left neighbor L[h] */
  547. RFALSE( tb->rnum[h] != 0,
  548. "wrong tb->rnum[%d]==%d when borrow from L[h]", h, tb->rnum[h]);
  549. /*internal_shift_right (tb, h, tb->L[h], tb->CFL[h], tb->lkey[h], tb->S[h], -tb->lnum[h]);*/
  550. internal_shift_right (INTERNAL_SHIFT_FROM_L_TO_S, tb, h, -tb->lnum[h]);
  551. return;
  552.     }
  553.     if ( tb->rnum[h] < 0 ) { /* borrow from right neighbor R[h] */
  554.  RFALSE( tb->lnum[h] != 0,
  555.  "invalid tb->lnum[%d]==%d when borrow from R[h]", 
  556.  h, tb->lnum[h]);
  557. internal_shift_left (INTERNAL_SHIFT_FROM_R_TO_S, tb, h, -tb->rnum[h]);/*tb->S[h], tb->CFR[h], tb->rkey[h], tb->R[h], -tb->rnum[h]);*/
  558. return;
  559.     }
  560.     if ( tb->lnum[h] > 0 ) { /* split S[h] into two parts and put them into neighbors */
  561. RFALSE( tb->rnum[h] == 0 || tb->lnum[h] + tb->rnum[h] != n + 1,
  562. "invalid tb->lnum[%d]==%d or tb->rnum[%d]==%d when S[h](item number == %d) is split between them",
  563. h, tb->lnum[h], h, tb->rnum[h], n);
  564. internal_shift_left (INTERNAL_SHIFT_FROM_S_TO_L, tb, h, tb->lnum[h]);/*tb->L[h], tb->CFL[h], tb->lkey[h], tb->S[h], tb->lnum[h]);*/
  565. internal_shift_right (INTERNAL_SHIFT_FROM_S_TO_R, tb, h, tb->rnum[h]);
  566. reiserfs_invalidate_buffer (tb, tbSh);
  567. return;
  568.     }
  569.     reiserfs_panic (tb->tb_sb, "balance_internal_when_delete: unexpected tb->lnum[%d]==%d or tb->rnum[%d]==%d",
  570.     h, tb->lnum[h], h, tb->rnum[h]);
  571. }
  572. /* Replace delimiting key of buffers L[h] and S[h] by the given key.*/
  573. void replace_lkey (
  574.       struct tree_balance * tb,
  575.       int h,
  576.       struct item_head * key
  577.       )
  578. {
  579.    RFALSE( tb->L[h] == NULL || tb->CFL[h] == NULL,
  580.    "L[h](%p) and CFL[h](%p) must exist in replace_lkey", 
  581.    tb->L[h], tb->CFL[h]);
  582.   if (B_NR_ITEMS(PATH_H_PBUFFER(tb->tb_path, h)) == 0)
  583.     return;
  584.   memcpy (B_N_PDELIM_KEY(tb->CFL[h],tb->lkey[h]), key, KEY_SIZE);
  585.   do_balance_mark_internal_dirty (tb, tb->CFL[h],0);
  586. }
  587. /* Replace delimiting key of buffers S[h] and R[h] by the given key.*/
  588. void replace_rkey (
  589.       struct tree_balance * tb,
  590.       int h,
  591.       struct item_head * key
  592.       )
  593. {
  594.   RFALSE( tb->R[h] == NULL || tb->CFR[h] == NULL,
  595.   "R[h](%p) and CFR[h](%p) must exist in replace_rkey", 
  596.   tb->R[h], tb->CFR[h]);
  597.   RFALSE( B_NR_ITEMS(tb->R[h]) == 0,
  598.   "R[h] can not be empty if it exists (item number=%d)", 
  599.   B_NR_ITEMS(tb->R[h]));
  600.   memcpy (B_N_PDELIM_KEY(tb->CFR[h],tb->rkey[h]), key, KEY_SIZE);
  601.   do_balance_mark_internal_dirty (tb, tb->CFR[h], 0);
  602. }
  603. int balance_internal (struct tree_balance * tb, /* tree_balance structure  */
  604.       int h, /* level of the tree  */
  605.       int child_pos,
  606.       struct item_head * insert_key, /* key for insertion on higher level    */
  607.       struct buffer_head ** insert_ptr /* node for insertion on higher level*/
  608.     )
  609.     /* if inserting/pasting
  610.        {
  611.        child_pos is the position of the node-pointer in S[h] that  *
  612.        pointed to S[h-1] before balancing of the h-1 level;  *
  613.        this means that new pointers and items must be inserted AFTER *
  614.        child_pos
  615.        }
  616.        else 
  617.        {
  618.    it is the position of the leftmost pointer that must be deleted (together with
  619.    its corresponding key to the left of the pointer)
  620.    as a result of the previous level's balancing.
  621.    }
  622. */
  623. {
  624.     struct buffer_head * tbSh = PATH_H_PBUFFER (tb->tb_path, h);
  625.     struct buffer_info bi;
  626.     int order; /* we return this: it is 0 if there is no S[h], else it is tb->S[h]->b_item_order */
  627.     int insert_num, n, k;
  628.     struct buffer_head * S_new;
  629.     struct item_head new_insert_key;
  630.     struct buffer_head * new_insert_ptr = NULL;
  631.     struct item_head * new_insert_key_addr = insert_key;
  632.     RFALSE( h < 1, "h (%d) can not be < 1 on internal level", h);
  633.     PROC_INFO_INC( tb -> tb_sb, balance_at[ h ] );
  634.     order = ( tbSh ) ? PATH_H_POSITION (tb->tb_path, h + 1)/*tb->S[h]->b_item_order*/ : 0;
  635.   /* Using insert_size[h] calculate the number insert_num of items
  636.      that must be inserted to or deleted from S[h]. */
  637.     insert_num = tb->insert_size[h]/((int)(KEY_SIZE + DC_SIZE));
  638.     /* Check whether insert_num is proper **/
  639.     RFALSE( insert_num < -2  ||  insert_num > 2,
  640.     "incorrect number of items inserted to the internal node (%d)", 
  641.     insert_num);
  642.     RFALSE( h > 1  && (insert_num > 1 || insert_num < -1),
  643.     "incorrect number of items (%d) inserted to the internal node on a level (h=%d) higher than last internal level", 
  644.     insert_num, h);
  645.     /* Make balance in case insert_num < 0 */
  646.     if ( insert_num < 0 ) {
  647. balance_internal_when_delete (tb, h, child_pos);
  648. return order;
  649.     }
  650.  
  651.     k = 0;
  652.     if ( tb->lnum[h] > 0 ) {
  653. /* shift lnum[h] items from S[h] to the left neighbor L[h].
  654.    check how many of new items fall into L[h] or CFL[h] after
  655.    shifting */
  656. n = B_NR_ITEMS (tb->L[h]); /* number of items in L[h] */
  657. if ( tb->lnum[h] <= child_pos ) {
  658.     /* new items don't fall into L[h] or CFL[h] */
  659.     internal_shift_left (INTERNAL_SHIFT_FROM_S_TO_L, tb, h, tb->lnum[h]);
  660.     /*internal_shift_left (tb->L[h],tb->CFL[h],tb->lkey[h],tbSh,tb->lnum[h]);*/
  661.     child_pos -= tb->lnum[h];
  662. } else if ( tb->lnum[h] > child_pos + insert_num ) {
  663.     /* all new items fall into L[h] */
  664.     internal_shift_left (INTERNAL_SHIFT_FROM_S_TO_L, tb, h, tb->lnum[h] - insert_num);
  665.     /* internal_shift_left(tb->L[h],tb->CFL[h],tb->lkey[h],tbSh,
  666. tb->lnum[h]-insert_num);
  667.     */
  668.     /* insert insert_num keys and node-pointers into L[h] */
  669.     bi.tb = tb;
  670.     bi.bi_bh = tb->L[h];
  671.     bi.bi_parent = tb->FL[h];
  672.     bi.bi_position = get_left_neighbor_position (tb, h);
  673.     internal_insert_childs (&bi,/*tb->L[h], tb->S[h-1]->b_next*/ n + child_pos + 1,
  674.     insert_num,insert_key,insert_ptr);
  675.     insert_num = 0; 
  676. } else {
  677.     struct disk_child * dc;
  678.     /* some items fall into L[h] or CFL[h], but some don't fall */
  679.     internal_shift1_left(tb,h,child_pos+1);
  680.     /* calculate number of new items that fall into L[h] */
  681.     k = tb->lnum[h] - child_pos - 1;
  682.     bi.tb = tb;
  683.     bi.bi_bh = tb->L[h];
  684.     bi.bi_parent = tb->FL[h];
  685.     bi.bi_position = get_left_neighbor_position (tb, h);
  686.     internal_insert_childs (&bi,/*tb->L[h], tb->S[h-1]->b_next,*/ n + child_pos + 1,k,
  687.     insert_key,insert_ptr);
  688.     replace_lkey(tb,h,insert_key + k);
  689.     /* replace the first node-ptr in S[h] by node-ptr to insert_ptr[k] */
  690.     dc = B_N_CHILD(tbSh, 0);
  691.     put_dc_size( dc, MAX_CHILD_SIZE(insert_ptr[k]) - B_FREE_SPACE (insert_ptr[k]));
  692.     put_dc_block_number( dc, insert_ptr[k]->b_blocknr );
  693.     do_balance_mark_internal_dirty (tb, tbSh, 0);
  694.     k++;
  695.     insert_key += k;
  696.     insert_ptr += k;
  697.     insert_num -= k;
  698.     child_pos = 0;
  699. }
  700.     } /* tb->lnum[h] > 0 */
  701.     if ( tb->rnum[h] > 0 ) {
  702. /*shift rnum[h] items from S[h] to the right neighbor R[h]*/
  703. /* check how many of new items fall into R or CFR after shifting */
  704. n = B_NR_ITEMS (tbSh); /* number of items in S[h] */
  705. if ( n - tb->rnum[h] >= child_pos )
  706.     /* new items fall into S[h] */
  707.     /*internal_shift_right(tb,h,tbSh,tb->CFR[h],tb->rkey[h],tb->R[h],tb->rnum[h]);*/
  708.     internal_shift_right (INTERNAL_SHIFT_FROM_S_TO_R, tb, h, tb->rnum[h]);
  709. else
  710.     if ( n + insert_num - tb->rnum[h] < child_pos )
  711.     {
  712. /* all new items fall into R[h] */
  713. /*internal_shift_right(tb,h,tbSh,tb->CFR[h],tb->rkey[h],tb->R[h],
  714.     tb->rnum[h] - insert_num);*/
  715. internal_shift_right (INTERNAL_SHIFT_FROM_S_TO_R, tb, h, tb->rnum[h] - insert_num);
  716. /* insert insert_num keys and node-pointers into R[h] */
  717. bi.tb = tb;
  718. bi.bi_bh = tb->R[h];
  719. bi.bi_parent = tb->FR[h];
  720. bi.bi_position = get_right_neighbor_position (tb, h);
  721. internal_insert_childs (&bi, /*tb->R[h],tb->S[h-1]->b_next*/ child_pos - n - insert_num + tb->rnum[h] - 1,
  722. insert_num,insert_key,insert_ptr);
  723. insert_num = 0;
  724.     }
  725.     else
  726.     {
  727. struct disk_child * dc;
  728. /* one of the items falls into CFR[h] */
  729. internal_shift1_right(tb,h,n - child_pos + 1);
  730. /* calculate number of new items that fall into R[h] */
  731. k = tb->rnum[h] - n + child_pos - 1;
  732. bi.tb = tb;
  733. bi.bi_bh = tb->R[h];
  734. bi.bi_parent = tb->FR[h];
  735. bi.bi_position = get_right_neighbor_position (tb, h);
  736. internal_insert_childs (&bi, /*tb->R[h], tb->R[h]->b_child,*/ 0, k, insert_key + 1, insert_ptr + 1);
  737. replace_rkey(tb,h,insert_key + insert_num - k - 1);
  738. /* replace the first node-ptr in R[h] by node-ptr insert_ptr[insert_num-k-1]*/
  739. dc = B_N_CHILD(tb->R[h], 0);
  740. put_dc_size( dc, MAX_CHILD_SIZE(insert_ptr[insert_num-k-1]) -
  741.          B_FREE_SPACE (insert_ptr[insert_num-k-1]));
  742. put_dc_block_number( dc, insert_ptr[insert_num-k-1]->b_blocknr );
  743. do_balance_mark_internal_dirty (tb, tb->R[h],0);
  744. insert_num -= (k + 1);
  745.     }
  746.     }
  747.     /** Fill new node that appears instead of S[h] **/
  748.     RFALSE( tb->blknum[h] > 2, "blknum can not be > 2 for internal level");
  749.     RFALSE( tb->blknum[h] < 0, "blknum can not be < 0");
  750.     if ( ! tb->blknum[h] )
  751.     { /* node S[h] is empty now */
  752. RFALSE( ! tbSh, "S[h] is equal NULL");
  753. /* do what is needed for buffer thrown from tree */
  754. reiserfs_invalidate_buffer(tb,tbSh);
  755. return order;
  756.     }
  757.     if ( ! tbSh ) {
  758. /* create new root */
  759. struct disk_child  * dc;
  760. struct buffer_head * tbSh_1 = PATH_H_PBUFFER (tb->tb_path, h - 1);
  761.         struct block_head *  blkh;
  762. if ( tb->blknum[h] != 1 )
  763.     reiserfs_panic(0, "balance_internal: One new node required for creating the new root");
  764. /* S[h] = empty buffer from the list FEB. */
  765. tbSh = get_FEB (tb);
  766.         blkh = B_BLK_HEAD(tbSh);
  767.         set_blkh_level( blkh, h + 1 );
  768. /* Put the unique node-pointer to S[h] that points to S[h-1]. */
  769. dc = B_N_CHILD(tbSh, 0);
  770. put_dc_block_number( dc, tbSh_1->b_blocknr );
  771. put_dc_size( dc, (MAX_CHILD_SIZE (tbSh_1) - B_FREE_SPACE (tbSh_1)));
  772. tb->insert_size[h] -= DC_SIZE;
  773.         set_blkh_free_space( blkh, blkh_free_space(blkh) - DC_SIZE );
  774. do_balance_mark_internal_dirty (tb, tbSh, 0);
  775. /*&&&&&&&&&&&&&&&&&&&&&&&&*/
  776. check_internal (tbSh);
  777. /*&&&&&&&&&&&&&&&&&&&&&&&&*/
  778.     
  779.     /* put new root into path structure */
  780. PATH_OFFSET_PBUFFER(tb->tb_path, ILLEGAL_PATH_ELEMENT_OFFSET) = tbSh;
  781. /* Change root in structure super block. */
  782.         PUT_SB_ROOT_BLOCK( tb->tb_sb, tbSh->b_blocknr );
  783.         PUT_SB_TREE_HEIGHT( tb->tb_sb, SB_TREE_HEIGHT(tb->tb_sb) + 1 );
  784. do_balance_mark_sb_dirty (tb, tb->tb_sb->u.reiserfs_sb.s_sbh, 1);
  785. tb->tb_sb->s_dirt = 1;
  786.     }
  787.     if ( tb->blknum[h] == 2 ) {
  788. int snum;
  789. struct buffer_info dest_bi, src_bi;
  790. /* S_new = free buffer from list FEB */
  791. S_new = get_FEB(tb);
  792.         set_blkh_level( B_BLK_HEAD(S_new), h + 1 );
  793. dest_bi.tb = tb;
  794. dest_bi.bi_bh = S_new;
  795. dest_bi.bi_parent = 0;
  796. dest_bi.bi_position = 0;
  797. src_bi.tb = tb;
  798. src_bi.bi_bh = tbSh;
  799. src_bi.bi_parent = PATH_H_PPARENT (tb->tb_path, h);
  800. src_bi.bi_position = PATH_H_POSITION (tb->tb_path, h + 1);
  801. n = B_NR_ITEMS (tbSh); /* number of items in S[h] */
  802. snum = (insert_num + n + 1)/2;
  803. if ( n - snum >= child_pos ) {
  804.     /* new items don't fall into S_new */
  805.     /* store the delimiting key for the next level */
  806.     /* new_insert_key = (n - snum)'th key in S[h] */
  807.     memcpy (&new_insert_key,B_N_PDELIM_KEY(tbSh,n - snum),
  808.     KEY_SIZE);
  809.     /* last parameter is del_par */
  810.     internal_move_pointers_items (&dest_bi, &src_bi, LAST_TO_FIRST, snum, 0);
  811.     /*            internal_move_pointers_items(S_new, tbSh, LAST_TO_FIRST, snum, 0);*/
  812. } else if ( n + insert_num - snum < child_pos ) {
  813.     /* all new items fall into S_new */
  814.     /* store the delimiting key for the next level */
  815.     /* new_insert_key = (n + insert_item - snum)'th key in S[h] */
  816.     memcpy(&new_insert_key,B_N_PDELIM_KEY(tbSh,n + insert_num - snum),
  817.    KEY_SIZE);
  818.     /* last parameter is del_par */
  819.     internal_move_pointers_items (&dest_bi, &src_bi, LAST_TO_FIRST, snum - insert_num, 0);
  820.     /* internal_move_pointers_items(S_new,tbSh,1,snum - insert_num,0);*/
  821.     /* insert insert_num keys and node-pointers into S_new */
  822.     internal_insert_childs (&dest_bi, /*S_new,tb->S[h-1]->b_next,*/child_pos - n - insert_num + snum - 1,
  823.     insert_num,insert_key,insert_ptr);
  824.     insert_num = 0;
  825. } else {
  826.     struct disk_child * dc;
  827.     /* some items fall into S_new, but some don't fall */
  828.     /* last parameter is del_par */
  829.     internal_move_pointers_items (&dest_bi, &src_bi, LAST_TO_FIRST, n - child_pos + 1, 1);
  830.     /* internal_move_pointers_items(S_new,tbSh,1,n - child_pos + 1,1);*/
  831.     /* calculate number of new items that fall into S_new */
  832.     k = snum - n + child_pos - 1;
  833.     internal_insert_childs (&dest_bi, /*S_new,*/ 0, k, insert_key + 1, insert_ptr+1);
  834.     /* new_insert_key = insert_key[insert_num - k - 1] */
  835.     memcpy(&new_insert_key,insert_key + insert_num - k - 1,
  836.    KEY_SIZE);
  837.     /* replace first node-ptr in S_new by node-ptr to insert_ptr[insert_num-k-1] */
  838.     dc = B_N_CHILD(S_new,0);
  839.     put_dc_size( dc, (MAX_CHILD_SIZE(insert_ptr[insert_num-k-1]) -
  840. B_FREE_SPACE(insert_ptr[insert_num-k-1])) );
  841.     put_dc_block_number( dc, insert_ptr[insert_num-k-1]->b_blocknr );
  842.     do_balance_mark_internal_dirty (tb, S_new,0);
  843.     insert_num -= (k + 1);
  844. }
  845. /* new_insert_ptr = node_pointer to S_new */
  846. new_insert_ptr = S_new;
  847. RFALSE(( buffer_locked(S_new) || atomic_read (&(S_new->b_count)) != 1) &&
  848.        (buffer_locked(S_new) || atomic_read(&(S_new->b_count)) > 2 ||
  849. !(buffer_journaled(S_new) || buffer_journal_dirty(S_new))),
  850.        "cm-00001: bad S_new (%b)", S_new);
  851. // S_new is released in unfix_nodes
  852.     }
  853.     n = B_NR_ITEMS (tbSh); /*number of items in S[h] */
  854. if ( 0 <= child_pos && child_pos <= n && insert_num > 0 ) {
  855.     bi.tb = tb;
  856.     bi.bi_bh = tbSh;
  857.     bi.bi_parent = PATH_H_PPARENT (tb->tb_path, h);
  858.     bi.bi_position = PATH_H_POSITION (tb->tb_path, h + 1);
  859. internal_insert_childs (
  860.     &bi,/*tbSh,*/
  861.     /* ( tb->S[h-1]->b_parent == tb->S[h] ) ? tb->S[h-1]->b_next :  tb->S[h]->b_child->b_next,*/
  862.     child_pos,insert_num,insert_key,insert_ptr
  863.     );
  864. }
  865. memcpy (new_insert_key_addr,&new_insert_key,KEY_SIZE);
  866. insert_ptr[0] = new_insert_ptr;
  867. return order;
  868.     }
  869.   
  870.