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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
  3.  */
  4. #include <linux/config.h>
  5. #include <linux/sched.h>
  6. #include <linux/fs.h>
  7. #include <linux/reiserfs_fs.h>
  8. #include <linux/string.h>
  9. #include <stdarg.h>
  10. static char error_buf[1024];
  11. static char fmt_buf[1024];
  12. static char off_buf[80];
  13. static char * reiserfs_cpu_offset (struct cpu_key * key)
  14. {
  15.   if (cpu_key_k_type(key) == TYPE_DIRENTRY)
  16.     sprintf (off_buf, "%Lu(%Lu)", 
  17.      (unsigned long long)GET_HASH_VALUE (cpu_key_k_offset (key)),
  18.      (unsigned long long)GET_GENERATION_NUMBER (cpu_key_k_offset (key)));
  19.   else
  20.     sprintf (off_buf, "0x%Lx", (unsigned long long)cpu_key_k_offset (key));
  21.   return off_buf;
  22. }
  23. static char * le_offset (struct key * key)
  24. {
  25.   int version;
  26.   version = le_key_version (key);
  27.   if (le_key_k_type (version, key) == TYPE_DIRENTRY)
  28.     sprintf (off_buf, "%Lu(%Lu)", 
  29.      (unsigned long long)GET_HASH_VALUE (le_key_k_offset (version, key)),
  30.      (unsigned long long)GET_GENERATION_NUMBER (le_key_k_offset (version, key)));
  31.   else
  32.     sprintf (off_buf, "0x%Lx", (unsigned long long)le_key_k_offset (version, key));
  33.   return off_buf;
  34. }
  35. static char * cpu_type (struct cpu_key * key)
  36. {
  37.     if (cpu_key_k_type (key) == TYPE_STAT_DATA)
  38. return "SD";
  39.     if (cpu_key_k_type (key) == TYPE_DIRENTRY)
  40. return "DIR";
  41.     if (cpu_key_k_type (key) == TYPE_DIRECT)
  42. return "DIRECT";
  43.     if (cpu_key_k_type (key) == TYPE_INDIRECT)
  44. return "IND";
  45.     return "UNKNOWN";
  46. }
  47. static char * le_type (struct key * key)
  48. {
  49.     int version;
  50.     
  51.     version = le_key_version (key);
  52.     if (le_key_k_type (version, key) == TYPE_STAT_DATA)
  53. return "SD";
  54.     if (le_key_k_type (version, key) == TYPE_DIRENTRY)
  55. return "DIR";
  56.     if (le_key_k_type (version, key) == TYPE_DIRECT)
  57. return "DIRECT";
  58.     if (le_key_k_type (version, key) == TYPE_INDIRECT)
  59. return "IND";
  60.     return "UNKNOWN";
  61. }
  62. /* %k */
  63. static void sprintf_le_key (char * buf, struct key * key)
  64. {
  65.   if (key)
  66.     sprintf (buf, "[%d %d %s %s]", le32_to_cpu (key->k_dir_id),
  67.      le32_to_cpu (key->k_objectid), le_offset (key), le_type (key));
  68.   else
  69.     sprintf (buf, "[NULL]");
  70. }
  71. /* %K */
  72. static void sprintf_cpu_key (char * buf, struct cpu_key * key)
  73. {
  74.   if (key)
  75.     sprintf (buf, "[%d %d %s %s]", key->on_disk_key.k_dir_id,
  76.      key->on_disk_key.k_objectid, reiserfs_cpu_offset (key),
  77.              cpu_type (key));
  78.   else
  79.     sprintf (buf, "[NULL]");
  80. }
  81. static void sprintf_de_head( char *buf, struct reiserfs_de_head *deh )
  82. {
  83.     if( deh )
  84.         sprintf( buf, "[offset=%d dir_id=%d objectid=%d location=%d state=%04x]", deh_offset(deh), deh_dir_id(deh),
  85.                  deh_objectid(deh), deh_location(deh), deh_state(deh) );
  86.     else
  87.         sprintf( buf, "[NULL]" );
  88. }
  89. static void sprintf_item_head (char * buf, struct item_head * ih)
  90. {
  91.     if (ih) {
  92. sprintf (buf, "%s", (ih_version (ih) == KEY_FORMAT_3_6) ? "*3.6* " : "*3.5*");
  93. sprintf_le_key (buf + strlen (buf), &(ih->ih_key));
  94. sprintf (buf + strlen (buf), ", item_len %d, item_location %d, "
  95.  "free_space(entry_count) %d",
  96.  ih_item_len(ih), ih_location(ih), ih_free_space (ih));
  97.     } else
  98. sprintf (buf, "[NULL]");
  99. }
  100. static void sprintf_direntry (char * buf, struct reiserfs_dir_entry * de)
  101. {
  102.   char name[20];
  103.   memcpy (name, de->de_name, de->de_namelen > 19 ? 19 : de->de_namelen);
  104.   name [de->de_namelen > 19 ? 19 : de->de_namelen] = 0;
  105.   sprintf (buf, ""%s"==>[%d %d]", name, de->de_dir_id, de->de_objectid);
  106. }
  107. static void sprintf_block_head (char * buf, struct buffer_head * bh)
  108. {
  109.   sprintf (buf, "level=%d, nr_items=%d, free_space=%d rdkey ",
  110.    B_LEVEL (bh), B_NR_ITEMS (bh), B_FREE_SPACE (bh));
  111. }
  112. static void sprintf_buffer_head (char * buf, struct buffer_head * bh) 
  113. {
  114.   sprintf (buf, "dev %s, size %d, blocknr %ld, count %d, list %d, state 0x%lx, page %p, (%s, %s, %s)",
  115.    kdevname (bh->b_dev), bh->b_size, bh->b_blocknr, atomic_read (&(bh->b_count)), bh->b_list,
  116.    bh->b_state, bh->b_page,
  117.    buffer_uptodate (bh) ? "UPTODATE" : "!UPTODATE",
  118.    buffer_dirty (bh) ? "DIRTY" : "CLEAN",
  119.    buffer_locked (bh) ? "LOCKED" : "UNLOCKED");
  120. }
  121. static void sprintf_disk_child (char * buf, struct disk_child * dc)
  122. {
  123.   sprintf (buf, "[dc_number=%d, dc_size=%u]", dc_block_number(dc), dc_size(dc));
  124. }
  125. static char * is_there_reiserfs_struct (char * fmt, int * what, int * skip)
  126. {
  127.   char * k = fmt;
  128.   *skip = 0;
  129.   
  130.   while ((k = strstr (k, "%")) != NULL)
  131.   {
  132.     if (k[1] == 'k' || k[1] == 'K' || k[1] == 'h' || k[1] == 't' ||
  133.       k[1] == 'z' || k[1] == 'b' || k[1] == 'y' || k[1] == 'a' ) {
  134.       *what = k[1];
  135.       break;
  136.     }
  137.     (*skip) ++;
  138.     k ++;
  139.   }
  140.   return k;
  141. }
  142. /* debugging reiserfs we used to print out a lot of different
  143.    variables, like keys, item headers, buffer heads etc. Values of
  144.    most fields matter. So it took a long time just to write
  145.    appropriative printk. With this reiserfs_warning you can use format
  146.    specification for complex structures like you used to do with
  147.    printfs for integers, doubles and pointers. For instance, to print
  148.    out key structure you have to write just: 
  149.    reiserfs_warning ("bad key %k", key); 
  150.    instead of 
  151.    printk ("bad key %lu %lu %lu %lu", key->k_dir_id, key->k_objectid, 
  152.            key->k_offset, key->k_uniqueness); 
  153. */
  154. static void
  155. prepare_error_buf( const char *fmt, va_list args )
  156. {
  157.     char * fmt1 = fmt_buf;
  158.     char * k;
  159.     char * p = error_buf;
  160.     int i, j, what, skip;
  161.     strcpy (fmt1, fmt);
  162.     while( (k = is_there_reiserfs_struct( fmt1, &what, &skip )) != NULL )
  163.     {
  164.         *k = 0;
  165.         p += vsprintf (p, fmt1, args);
  166.         for (i = 0; i < skip; i ++)
  167.             j = va_arg (args, int);
  168.         switch (what) {
  169.         case 'k':
  170.             sprintf_le_key (p, va_arg(args, struct key *));
  171.             break;
  172.         case 'K':
  173.             sprintf_cpu_key (p, va_arg(args, struct cpu_key *));
  174.             break;
  175.         case 'h':
  176.             sprintf_item_head (p, va_arg(args, struct item_head *));
  177.             break;
  178.         case 't':
  179.             sprintf_direntry (p, va_arg(args, struct reiserfs_dir_entry *));
  180.             break;
  181.         case 'y':
  182.             sprintf_disk_child (p, va_arg(args, struct disk_child *));
  183.             break;
  184.         case 'z':
  185.             sprintf_block_head (p, va_arg(args, struct buffer_head *));
  186.             break;
  187.         case 'b':
  188.             sprintf_buffer_head (p, va_arg(args, struct buffer_head *));
  189.             break;
  190.         case 'a':
  191.             sprintf_de_head (p, va_arg(args, struct reiserfs_de_head *));
  192.             break;
  193.         }
  194.         p += strlen (p);
  195.         fmt1 = k + 2;
  196.     }
  197.     vsprintf (p, fmt1, args);
  198. }
  199. /* in addition to usual conversion specifiers this accepts reiserfs
  200.    specific conversion specifiers: 
  201.    %k to print little endian key, 
  202.    %K to print cpu key, 
  203.    %h to print item_head,
  204.    %t to print directory entry 
  205.    %z to print block head (arg must be struct buffer_head *
  206.    %b to print buffer_head
  207. */
  208. #define do_reiserfs_warning(fmt)
  209. {
  210.     va_list args;
  211.     va_start( args, fmt );
  212.     prepare_error_buf( fmt, args );
  213.     va_end( args );
  214. }
  215. void reiserfs_warning (const char * fmt, ...)
  216. {
  217.   do_reiserfs_warning(fmt);
  218.   /* console_print (error_buf); */
  219.   printk (KERN_WARNING "%s", error_buf);
  220. }
  221. void reiserfs_debug (struct super_block *s, int level, const char * fmt, ...)
  222. {
  223. #ifdef CONFIG_REISERFS_CHECK
  224.   do_reiserfs_warning(fmt);
  225.   printk (KERN_DEBUG "%s", error_buf);
  226. #else
  227.   ; 
  228. #endif
  229. }
  230. /* The format:
  231.            maintainer-errorid: [function-name:] message
  232.     where errorid is unique to the maintainer and function-name is
  233.     optional, is recommended, so that anyone can easily find the bug
  234.     with a simple grep for the short to type string
  235.     maintainer-errorid.  Don't bother with reusing errorids, there are
  236.     lots of numbers out there.
  237.     Example: 
  238.     
  239.     reiserfs_panic(
  240. p_sb, "reiser-29: reiserfs_new_blocknrs: "
  241. "one of search_start or rn(%d) is equal to MAX_B_NUM,"
  242. "which means that we are optimizing location based on the bogus location of a temp buffer (%p).", 
  243. rn, bh
  244.     );
  245.     Regular panic()s sometimes clear the screen before the message can
  246.     be read, thus the need for the while loop.  
  247.     Numbering scheme for panic used by Vladimir and Anatoly( Hans completely ignores this scheme, and considers it
  248.     pointless complexity):
  249.     panics in reiserfs_fs.h have numbers from 1000 to 1999
  250.     super.c         2000 to 2999
  251.     preserve.c (unused)     3000 to 3999
  252.     bitmap.c     4000 to 4999
  253.     stree.c         5000 to 5999
  254.     prints.c     6000 to 6999
  255.     namei.c                     7000 to 7999
  256.     fix_nodes.c                 8000 to 8999
  257.     dir.c                       9000 to 9999
  258. lbalance.c 10000 to 10999
  259. ibalance.c 11000 to 11999 not ready
  260. do_balan.c 12000 to 12999
  261. inode.c 13000 to 13999
  262. file.c 14000 to 14999
  263.     objectid.c                       15000 - 15999
  264.     buffer.c                         16000 - 16999
  265.     symlink.c                        17000 - 17999
  266.    .  */
  267. #ifdef CONFIG_REISERFS_CHECK
  268. extern struct tree_balance * cur_tb;
  269. #endif
  270. void reiserfs_panic (struct super_block * sb, const char * fmt, ...)
  271. {
  272.   show_reiserfs_locks() ;
  273.   do_reiserfs_warning(fmt);
  274.   printk ( KERN_EMERG "%s", error_buf);
  275.   BUG ();
  276.   /* this is not actually called, but makes reiserfs_panic() "noreturn" */
  277.   panic ("REISERFS: panic (device %s): %sn",
  278.  sb ? kdevname(sb->s_dev) : "sb == 0", error_buf);
  279. }
  280. void print_virtual_node (struct virtual_node * vn)
  281. {
  282.     int i;
  283.     struct virtual_item * vi;
  284.     printk ("VIRTUAL NODE CONTAINS %d items, has size %d,%s,%s, ITEM_POS=%d POS_IN_ITEM=%d MODE='%c'n",
  285.     vn->vn_nr_item, vn->vn_size,
  286.     (vn->vn_vi[0].vi_type & VI_TYPE_LEFT_MERGEABLE )? "left mergeable" : "", 
  287.     (vn->vn_vi[vn->vn_nr_item - 1].vi_type & VI_TYPE_RIGHT_MERGEABLE) ? "right mergeable" : "",
  288.     vn->vn_affected_item_num, vn->vn_pos_in_item, vn->vn_mode);
  289.     
  290.     vi = vn->vn_vi;
  291.     for (i = 0; i < vn->vn_nr_item; i ++, vi ++)
  292. op_print_vi (vi);
  293. }
  294. void print_path (struct tree_balance * tb, struct path * path)
  295. {
  296.     int h = 0;
  297.     struct buffer_head * bh;
  298.     
  299.     if (tb) {
  300. while (tb->insert_size[h]) {
  301.     bh = PATH_H_PBUFFER (path, h);
  302.     printk ("block %lu (level=%d), position %dn", bh ? bh->b_blocknr : 0,
  303.     bh ? B_LEVEL (bh) : 0, PATH_H_POSITION (path, h));
  304.     h ++;
  305. }
  306.   } else {
  307.       int offset = path->path_length;
  308.       struct buffer_head * bh;
  309.       printk ("Offset    Bh     (b_blocknr, b_count) Position Nr_itemn");
  310.       while ( offset > ILLEGAL_PATH_ELEMENT_OFFSET ) {
  311.   bh = PATH_OFFSET_PBUFFER (path, offset);
  312.   printk ("%6d %10p (%9lu, %7d) %8d %7dn", offset, 
  313.   bh, bh ? bh->b_blocknr : 0, bh ? atomic_read (&(bh->b_count)) : 0,
  314.   PATH_OFFSET_POSITION (path, offset), bh ? B_NR_ITEMS (bh) : -1);
  315.   
  316.   offset --;
  317.       }
  318.   }
  319. }
  320. /* this prints internal nodes (4 keys/items in line) (dc_number,
  321.    dc_size)[k_dirid, k_objectid, k_offset, k_uniqueness](dc_number,
  322.    dc_size)...*/
  323. static int print_internal (struct buffer_head * bh, int first, int last)
  324. {
  325.     struct key * key;
  326.     struct disk_child * dc;
  327.     int i;
  328.     int from, to;
  329.     
  330.     if (!B_IS_KEYS_LEVEL (bh))
  331. return 1;
  332.     check_internal (bh);
  333.     
  334.     if (first == -1) {
  335. from = 0;
  336. to = B_NR_ITEMS (bh);
  337.     } else {
  338. from = first;
  339. to = last < B_NR_ITEMS (bh) ? last : B_NR_ITEMS (bh);
  340.     }
  341.     reiserfs_warning ("INTERNAL NODE (%ld) contains %zn",  bh->b_blocknr, bh);
  342.     
  343.     dc = B_N_CHILD (bh, from);
  344.     reiserfs_warning ("PTR %d: %y ", from, dc);
  345.     
  346.     for (i = from, key = B_N_PDELIM_KEY (bh, from), dc ++; i < to; i ++, key ++, dc ++) {
  347. reiserfs_warning ("KEY %d: %k PTR %d: %y ", i, key, i + 1, dc);
  348. if (i && i % 4 == 0)
  349.     printk ("n");
  350.     }
  351.     printk ("n");
  352.     return 0;
  353. }
  354. static int print_leaf (struct buffer_head * bh, int print_mode, int first, int last)
  355. {
  356.     struct block_head * blkh;
  357.     struct item_head * ih;
  358.     int i, nr;
  359.     int from, to;
  360.     if (!B_IS_ITEMS_LEVEL (bh))
  361. return 1;
  362.     check_leaf (bh);
  363.     blkh = B_BLK_HEAD (bh);
  364.     ih = B_N_PITEM_HEAD (bh,0);
  365.     nr = blkh_nr_item(blkh);
  366.     printk ("n===================================================================n");
  367.     reiserfs_warning ("LEAF NODE (%ld) contains %zn", bh->b_blocknr, bh);
  368.     if (!(print_mode & PRINT_LEAF_ITEMS)) {
  369. reiserfs_warning ("FIRST ITEM_KEY: %k, LAST ITEM KEY: %kn",
  370.   &(ih->ih_key), &((ih + nr - 1)->ih_key));
  371. return 0;
  372.     }
  373.     if (first < 0 || first > nr - 1) 
  374. from = 0;
  375.     else 
  376. from = first;
  377.     if (last < 0 || last > nr )
  378. to = nr;
  379.     else
  380. to = last;
  381.     ih += from;
  382.     printk ("-------------------------------------------------------------------------------n");
  383.     printk ("|##|   type    |           key           | ilen | free_space | version | loc  |n");
  384.     for (i = from; i < to; i++, ih ++) {
  385. printk ("-------------------------------------------------------------------------------n");
  386. reiserfs_warning ("|%2d| %h |n", i, ih);
  387. if (print_mode & PRINT_LEAF_ITEMS)
  388.     op_print_item (ih, B_I_PITEM (bh, ih));
  389.     }
  390.     printk ("===================================================================n");
  391.     return 0;
  392. }
  393. /* return 1 if this is not super block */
  394. static int print_super_block (struct buffer_head * bh)
  395. {
  396.     struct reiserfs_super_block * rs = (struct reiserfs_super_block *)(bh->b_data);
  397.     int skipped, data_blocks;
  398.     char *version;
  399.     
  400.     if (strncmp (rs->s_magic,  REISERFS_SUPER_MAGIC_STRING,
  401.                  strlen ( REISERFS_SUPER_MAGIC_STRING)) == 0) {
  402.         version = "3.5";
  403.     } else if( strncmp (rs->s_magic,  REISER2FS_SUPER_MAGIC_STRING,
  404.                         strlen ( REISER2FS_SUPER_MAGIC_STRING)) == 0) {
  405.         version = "3.6";
  406.     } else {
  407. return 1;
  408.     }
  409.     printk ("%s's super block in block %ldn======================n",
  410.             kdevname (bh->b_dev), bh->b_blocknr);
  411.     printk ("Reiserfs version %sn", version );
  412.     printk ("Block count %un", sb_block_count(rs));
  413.     printk ("Blocksize %dn", sb_blocksize(rs));
  414.     printk ("Free blocks %un", sb_free_blocks(rs));
  415.     // FIXME: this would be confusing if
  416.     // someone stores reiserfs super block in some data block ;)
  417. //    skipped = (bh->b_blocknr * bh->b_size) / sb_blocksize(rs);
  418.     skipped = bh->b_blocknr;
  419.     data_blocks = sb_block_count(rs) - skipped - 1 -
  420.                   sb_bmap_nr(rs) - (sb_orig_journal_size(rs) + 1) -
  421.                   sb_free_blocks(rs);
  422.     printk ("Busy blocks (skipped %d, bitmaps - %d, journal blocks - %dn"
  423.     "1 super blocks, %d data blocksn", 
  424.     skipped, sb_bmap_nr(rs), 
  425.     (sb_orig_journal_size(rs) + 1), data_blocks);
  426.     printk ("Root block %un", sb_root_block(rs));
  427.     printk ("Journal block (first) %dn", sb_journal_block(rs));
  428.     printk ("Journal dev %dn", sb_journal_dev(rs));
  429.     printk ("Journal orig size %dn", sb_orig_journal_size(rs));
  430.     printk ("Filesystem state %sn", 
  431.     (sb_state(rs) == REISERFS_VALID_FS) ? "VALID" : "ERROR");
  432.     printk ("Hash function "%s"n",
  433.             sb_hash_function_code(rs) == TEA_HASH ? "tea" :
  434.     ( sb_hash_function_code(rs) == YURA_HASH ? "rupasov" : (sb_hash_function_code(rs) == R5_HASH ? "r5" : "unknown")));
  435.     printk ("Tree height %dn", sb_tree_height(rs));
  436.     return 0;
  437. }
  438. static int print_desc_block (struct buffer_head * bh)
  439. {
  440.     struct reiserfs_journal_desc * desc;
  441.     desc = (struct reiserfs_journal_desc *)(bh->b_data);
  442.     if (memcmp(desc->j_magic, JOURNAL_DESC_MAGIC, 8))
  443. return 1;
  444.     printk ("Desc block %lu (j_trans_id %d, j_mount_id %d, j_len %d)",
  445.     bh->b_blocknr, desc->j_trans_id, desc->j_mount_id, desc->j_len);
  446.     return 0;
  447. }
  448. void print_block (struct buffer_head * bh, ...)//int print_mode, int first, int last)
  449. {
  450.     va_list args;
  451.     int mode, first, last;
  452.     va_start (args, bh);
  453.     if ( ! bh ) {
  454. printk("print_block: buffer is NULLn");
  455. return;
  456.     }
  457.     mode = va_arg (args, int);
  458.     first = va_arg (args, int);
  459.     last = va_arg (args, int);
  460.     if (print_leaf (bh, mode, first, last))
  461. if (print_internal (bh, first, last))
  462.     if (print_super_block (bh))
  463. if (print_desc_block (bh))
  464.     printk ("Block %ld contains unformatted datan", bh->b_blocknr);
  465. }
  466. char print_tb_buf[2048];
  467. /* this stores initial state of tree balance in the print_tb_buf */
  468. void store_print_tb (struct tree_balance * tb)
  469. {
  470.     int h = 0;
  471.     int i;
  472.     struct buffer_head * tbSh, * tbFh;
  473.     if (!tb)
  474. return;
  475.     sprintf (print_tb_buf, "n"
  476.      "BALANCING %dn"
  477.      "MODE=%c, ITEM_POS=%d POS_IN_ITEM=%dn" 
  478.      "=====================================================================n"
  479.      "* h *    S    *    L    *    R    *   F   *   FL  *   FR  *  CFL  *  CFR  *n",
  480.      tb->tb_sb->u.reiserfs_sb.s_do_balance,
  481.      tb->tb_mode, PATH_LAST_POSITION (tb->tb_path), tb->tb_path->pos_in_item);
  482.   
  483.     for (h = 0; h < sizeof(tb->insert_size) / sizeof (tb->insert_size[0]); h ++) {
  484. if (PATH_H_PATH_OFFSET (tb->tb_path, h) <= tb->tb_path->path_length && 
  485.     PATH_H_PATH_OFFSET (tb->tb_path, h) > ILLEGAL_PATH_ELEMENT_OFFSET) {
  486.     tbSh = PATH_H_PBUFFER (tb->tb_path, h);
  487.     tbFh = PATH_H_PPARENT (tb->tb_path, h);
  488. } else {
  489.     tbSh = 0;
  490.     tbFh = 0;
  491. }
  492. sprintf (print_tb_buf + strlen (print_tb_buf),
  493.  "* %d * %3ld(%2d) * %3ld(%2d) * %3ld(%2d) * %5ld * %5ld * %5ld * %5ld * %5ld *n",
  494.  h, 
  495.  (tbSh) ? (tbSh->b_blocknr):(-1),
  496.  (tbSh) ? atomic_read (&(tbSh->b_count)) : -1,
  497.  (tb->L[h]) ? (tb->L[h]->b_blocknr):(-1),
  498.  (tb->L[h]) ? atomic_read (&(tb->L[h]->b_count)) : -1,
  499.  (tb->R[h]) ? (tb->R[h]->b_blocknr):(-1),
  500.  (tb->R[h]) ? atomic_read (&(tb->R[h]->b_count)) : -1,
  501.  (tbFh) ? (tbFh->b_blocknr):(-1),
  502.  (tb->FL[h]) ? (tb->FL[h]->b_blocknr):(-1),
  503.  (tb->FR[h]) ? (tb->FR[h]->b_blocknr):(-1),
  504.  (tb->CFL[h]) ? (tb->CFL[h]->b_blocknr):(-1),
  505.  (tb->CFR[h]) ? (tb->CFR[h]->b_blocknr):(-1));
  506.     }
  507.     sprintf (print_tb_buf + strlen (print_tb_buf), 
  508.      "=====================================================================n"
  509.      "* h * size * ln * lb * rn * rb * blkn * s0 * s1 * s1b * s2 * s2b * curb * lk * rk *n"
  510.      "* 0 * %4d * %2d * %2d * %2d * %2d * %4d * %2d * %2d * %3d * %2d * %3d * %4d * %2d * %2d *n",
  511.      tb->insert_size[0], tb->lnum[0], tb->lbytes, tb->rnum[0],tb->rbytes, tb->blknum[0], 
  512.      tb->s0num, tb->s1num,tb->s1bytes,  tb->s2num, tb->s2bytes, tb->cur_blknum, tb->lkey[0], tb->rkey[0]);
  513.     /* this prints balance parameters for non-leaf levels */
  514.     h = 0;
  515.     do {
  516. h++;
  517. sprintf (print_tb_buf + strlen (print_tb_buf),
  518.  "* %d * %4d * %2d *    * %2d *    * %2d *n",
  519. h, tb->insert_size[h], tb->lnum[h], tb->rnum[h], tb->blknum[h]);
  520.     } while (tb->insert_size[h]);
  521.     sprintf (print_tb_buf + strlen (print_tb_buf), 
  522.      "=====================================================================n"
  523.      "FEB list: ");
  524.     /* print FEB list (list of buffers in form (bh (b_blocknr, b_count), that will be used for new nodes) */
  525.     h = 0;
  526.     for (i = 0; i < sizeof (tb->FEB) / sizeof (tb->FEB[0]); i ++)
  527. sprintf (print_tb_buf + strlen (print_tb_buf),
  528.  "%p (%lu %d)%s", tb->FEB[i], tb->FEB[i] ? tb->FEB[i]->b_blocknr : 0,
  529.  tb->FEB[i] ? atomic_read (&(tb->FEB[i]->b_count)) : 0, 
  530.  (i == sizeof (tb->FEB) / sizeof (tb->FEB[0]) - 1) ? "n" : ", ");
  531.     sprintf (print_tb_buf + strlen (print_tb_buf), 
  532.      "======================== the end ====================================n");
  533. }
  534. void print_cur_tb (char * mes)
  535. {
  536.     printk ("%sn%s", mes, print_tb_buf);
  537. }
  538. static void check_leaf_block_head (struct buffer_head * bh)
  539. {
  540.   struct block_head * blkh;
  541.   int nr;
  542.   blkh = B_BLK_HEAD (bh);
  543.   nr = blkh_nr_item(blkh);
  544.   if ( nr > (bh->b_size - BLKH_SIZE) / IH_SIZE)
  545.     reiserfs_panic (0, "vs-6010: check_leaf_block_head: invalid item number %z", bh);
  546.   if ( blkh_free_space(blkh) > 
  547.       bh->b_size - BLKH_SIZE - IH_SIZE * nr )
  548.     reiserfs_panic (0, "vs-6020: check_leaf_block_head: invalid free space %z", bh);
  549.     
  550. }
  551. static void check_internal_block_head (struct buffer_head * bh)
  552. {
  553.     struct block_head * blkh;
  554.     
  555.     blkh = B_BLK_HEAD (bh);
  556.     if (!(B_LEVEL (bh) > DISK_LEAF_NODE_LEVEL && B_LEVEL (bh) <= MAX_HEIGHT))
  557. reiserfs_panic (0, "vs-6025: check_internal_block_head: invalid level %z", bh);
  558.     if (B_NR_ITEMS (bh) > (bh->b_size - BLKH_SIZE) / IH_SIZE)
  559. reiserfs_panic (0, "vs-6030: check_internal_block_head: invalid item number %z", bh);
  560.     if (B_FREE_SPACE (bh) != 
  561. bh->b_size - BLKH_SIZE - KEY_SIZE * B_NR_ITEMS (bh) - DC_SIZE * (B_NR_ITEMS (bh) + 1))
  562. reiserfs_panic (0, "vs-6040: check_internal_block_head: invalid free space %z", bh);
  563. }
  564. void check_leaf (struct buffer_head * bh)
  565. {
  566.     int i;
  567.     struct item_head * ih;
  568.     if (!bh)
  569. return;
  570.     check_leaf_block_head (bh);
  571.     for (i = 0, ih = B_N_PITEM_HEAD (bh, 0); i < B_NR_ITEMS (bh); i ++, ih ++)
  572. op_check_item (ih, B_I_PITEM (bh, ih));
  573. }
  574. void check_internal (struct buffer_head * bh)
  575. {
  576.   if (!bh)
  577.     return;
  578.   check_internal_block_head (bh);
  579. }
  580. void print_statistics (struct super_block * s)
  581. {
  582.   /*
  583.   printk ("reiserfs_put_super: session statistics: balances %d, fix_nodes %d, 
  584. bmap with search %d, without %d, dir2ind %d, ind2dir %dn",
  585.   s->u.reiserfs_sb.s_do_balance, s->u.reiserfs_sb.s_fix_nodes,
  586.   s->u.reiserfs_sb.s_bmaps, s->u.reiserfs_sb.s_bmaps_without_search,
  587.   s->u.reiserfs_sb.s_direct2indirect, s->u.reiserfs_sb.s_indirect2direct);
  588.   */
  589. }