bitmap.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:29k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2000-2002 by Hans Reiser, licensing governed by reiserfs/README
  3.  */
  4.    
  5. /* Reiserfs block (de)allocator, bitmap-based. */
  6. #include <linux/config.h>
  7. #include <linux/sched.h>
  8. #include <linux/vmalloc.h>
  9. #include <linux/errno.h>
  10. #include <linux/locks.h>
  11. #include <linux/kernel.h>
  12. #include <linux/reiserfs_fs.h>
  13. #include <linux/reiserfs_fs_sb.h>
  14. #include <linux/reiserfs_fs_i.h>
  15. #define PREALLOCATION_SIZE 9
  16. #define INODE_INFO(inode) (&(inode)->u.reiserfs_i)
  17. /* different reiserfs block allocator options */
  18. #define SB_ALLOC_OPTS(s) ((s)->u.reiserfs_sb.s_alloc_options.bits)
  19. #define  _ALLOC_concentrating_formatted_nodes 0
  20. #define  _ALLOC_displacing_large_files 1
  21. #define  _ALLOC_displacing_new_packing_localities 2
  22. #define  _ALLOC_old_hashed_relocation 3
  23. #define  _ALLOC_new_hashed_relocation 4
  24. #define  _ALLOC_skip_busy 5
  25. #define  _ALLOC_displace_based_on_dirid 6
  26. #define  _ALLOC_hashed_formatted_nodes 7
  27. #define  _ALLOC_old_way 8
  28. #define  _ALLOC_hundredth_slices 9
  29. #define  concentrating_formatted_nodes(s)     test_bit(_ALLOC_concentrating_formatted_nodes, &SB_ALLOC_OPTS(s))
  30. #define  displacing_large_files(s)            test_bit(_ALLOC_displacing_large_files, &SB_ALLOC_OPTS(s))
  31. #define  displacing_new_packing_localities(s) test_bit(_ALLOC_displacing_new_packing_localities, &SB_ALLOC_OPTS(s))
  32. #define SET_OPTION(optname) 
  33.    do { 
  34.         reiserfs_warning("reiserfs: option "%s" is setn", #optname); 
  35.         set_bit(_ALLOC_ ## optname , &SB_ALLOC_OPTS(s)); 
  36.     } while(0)
  37. #define TEST_OPTION(optname, s) 
  38.     test_bit(_ALLOC_ ## optname , &SB_ALLOC_OPTS(s))
  39. /* #define LIMIT(a,b) do { if ((a) > (b)) (a) = (b); } while(0) */
  40. static inline void get_bit_address (struct super_block * s,
  41.     unsigned long block, int * bmap_nr, int * offset)
  42. {
  43.     /* It is in the bitmap block number equal to the block
  44.      * number divided by the number of bits in a block. */
  45.     *bmap_nr = block / (s->s_blocksize << 3);
  46.     /* Within that bitmap block it is located at bit offset *offset. */
  47.     *offset = block & ((s->s_blocksize << 3) - 1 );
  48.     return;
  49. }
  50. #ifdef CONFIG_REISERFS_CHECK
  51. int is_reusable (struct super_block * s, unsigned long block, int bit_value)
  52. {
  53.     int i, j;
  54.     if (block == 0 || block >= SB_BLOCK_COUNT (s)) {
  55. reiserfs_warning ("vs-4010: is_reusable: block number is out of range %lu (%u)n",
  56.   block, SB_BLOCK_COUNT (s));
  57. return 0;
  58.     }
  59.     /* it can't be one of the bitmap blocks */
  60.     for (i = 0; i < SB_BMAP_NR (s); i ++)
  61. if (block == SB_AP_BITMAP (s)[i].bh->b_blocknr) {
  62.     reiserfs_warning ("vs: 4020: is_reusable: "
  63.       "bitmap block %lu(%u) can't be freed or reusedn",
  64.       block, SB_BMAP_NR (s));
  65.     return 0;
  66. }
  67.   
  68.     get_bit_address (s, block, &i, &j);
  69.     if (i >= SB_BMAP_NR (s)) {
  70. reiserfs_warning ("vs-4030: is_reusable: there is no so many bitmap blocks: "
  71.   "block=%lu, bitmap_nr=%dn", block, i);
  72. return 0;
  73.     }
  74.     if ((bit_value == 0 && 
  75.          reiserfs_test_le_bit(j, SB_AP_BITMAP(s)[i].bh->b_data)) ||
  76. (bit_value == 1 && 
  77.  reiserfs_test_le_bit(j, SB_AP_BITMAP (s)[i].bh->b_data) == 0)) {
  78. reiserfs_warning ("vs-4040: is_reusable: corresponding bit of block %lu does not "
  79.   "match required value (i==%d, j==%d) test_bit==%dn",
  80. block, i, j, reiserfs_test_le_bit (j, SB_AP_BITMAP (s)[i].bh->b_data));
  81. return 0;
  82.     }
  83.     if (bit_value == 0 && block == SB_ROOT_BLOCK (s)) {
  84. reiserfs_warning ("vs-4050: is_reusable: this is root block (%u), "
  85.   "it must be busyn", SB_ROOT_BLOCK (s));
  86. return 0;
  87.     }
  88.     return 1;
  89. }
  90. #endif /* CONFIG_REISERFS_CHECK */
  91. /* searches in journal structures for a given block number (bmap, off). If block
  92.    is found in reiserfs journal it suggests next free block candidate to test. */
  93. static inline  int is_block_in_journal (struct super_block * s, int bmap, int off, int *next)
  94. {
  95.     unsigned int tmp;
  96.     if (reiserfs_in_journal (s, s->s_dev, bmap, off, s->s_blocksize, 1, &tmp)) {
  97. if (tmp) { /* hint supplied */
  98.     *next = tmp;
  99.     PROC_INFO_INC( s, scan_bitmap.in_journal_hint );
  100. } else {
  101.     (*next) = off + 1; /* inc offset to avoid looping. */
  102.     PROC_INFO_INC( s, scan_bitmap.in_journal_nohint );
  103. }
  104. PROC_INFO_INC( s, scan_bitmap.retry );
  105. return 1;
  106.     }
  107.     return 0;
  108. }
  109. /* it searches for a window of zero bits with given minimum and maximum lengths in one bitmap
  110.  * block; */
  111. static int scan_bitmap_block (struct reiserfs_transaction_handle *th,
  112.       int bmap_n, int *beg, int boundary, int min, int max, int unfm)
  113. {
  114.     struct super_block *s = th->t_super;
  115.     struct reiserfs_bitmap_info *bi=&SB_AP_BITMAP(s)[bmap_n];
  116.     int end, next;
  117.     int org = *beg;
  118.     RFALSE(bmap_n >= SB_BMAP_NR (s), "Bitmap %d is out of range (0..%d)n",bmap_n, SB_BMAP_NR (s) - 1);
  119.     PROC_INFO_INC( s, scan_bitmap.bmap );
  120. /* this is unclear and lacks comments, explain how journal bitmaps
  121.    work here for the reader.  Convey a sense of the design here. What
  122.    is a window? */
  123. /* - I mean `a window of zero bits' as in description of this function - Zam. */
  124.     if ( !bi ) {
  125. printk("Hey, bitmap info pointer is zero for bitmap %d!n",bmap_n);
  126. return 0;
  127.     }
  128.     if (buffer_locked (bi->bh)) {
  129.        PROC_INFO_INC( s, scan_bitmap.wait );
  130.        __wait_on_buffer (bi->bh);
  131.     }
  132.     /* If we know that first zero bit is only one or first zero bit is
  133.        closer to the end of bitmap than our start pointer */
  134.     if (bi->first_zero_hint > *beg || bi->free_count == 1)
  135. *beg = bi->first_zero_hint;
  136.     while (1) {
  137. cont:
  138. if (bi->free_count < min)
  139. return 0; // No free blocks in this bitmap
  140. /* search for a first zero bit -- beggining of a window */
  141. *beg = reiserfs_find_next_zero_le_bit
  142.         ((unsigned long*)(bi->bh->b_data), boundary, *beg);
  143. if (*beg + min > boundary) { /* search for a zero bit fails or the rest of bitmap block
  144.       * cannot contain a zero window of minimum size */
  145.     return 0;
  146. }
  147. if (unfm && is_block_in_journal(s,bmap_n, *beg, beg))
  148.     continue;
  149. /* first zero bit found; we check next bits */
  150. for (end = *beg + 1;; end ++) {
  151.     if (end >= *beg + max || end >= boundary || reiserfs_test_le_bit (end, bi->bh->b_data)) {
  152. next = end;
  153. break;
  154.     }
  155.     /* finding the other end of zero bit window requires looking into journal structures (in
  156.      * case of searching for free blocks for unformatted nodes) */
  157.     if (unfm && is_block_in_journal(s, bmap_n, end, &next))
  158. break;
  159. }
  160. /* now (*beg) points to beginning of zero bits window,
  161.  * (end) points to one bit after the window end */
  162. if (end - *beg >= min) { /* it seems we have found window of proper size */
  163.     int i;
  164.     reiserfs_prepare_for_journal (s, bi->bh, 1);
  165.     /* try to set all blocks used checking are they still free */
  166.     for (i = *beg; i < end; i++) {
  167. /* It seems that we should not check in journal again. */
  168. if (reiserfs_test_and_set_le_bit (i, bi->bh->b_data)) {
  169.     /* bit was set by another process
  170.      * while we slept in prepare_for_journal() */
  171.     PROC_INFO_INC( s, scan_bitmap.stolen );
  172.     if (i >= *beg + min) { /* we can continue with smaller set of allocated blocks,
  173.    * if length of this set is more or equal to `min' */
  174. end = i;
  175. break;
  176.     }
  177.     /* otherwise we clear all bit were set ... */
  178.     while (--i >= *beg)
  179. reiserfs_test_and_clear_le_bit (i, bi->bh->b_data);
  180.     reiserfs_restore_prepared_buffer (s, bi->bh);
  181.     *beg = max(org, (int)bi->first_zero_hint);
  182.     /* ... and search again in current block from beginning */
  183.     goto cont;
  184. }
  185.     }
  186.     bi->free_count -= (end - *beg);
  187.     /* if search started from zero_hint bit, and zero hint have not
  188.                 changed since, then we need to update first_zero_hint */
  189.     if ( bi->first_zero_hint >= *beg)
  190. /* no point in looking for free bit if there is not any */
  191. bi->first_zero_hint = (bi->free_count > 0 ) ?
  192. reiserfs_find_next_zero_le_bit
  193. ((unsigned long*)(bi->bh->b_data), s->s_blocksize << 3, end) : (s->s_blocksize << 3);
  194.     journal_mark_dirty (th, s, bi->bh);
  195.     /* free block count calculation */
  196.     reiserfs_prepare_for_journal (s, SB_BUFFER_WITH_SB(s), 1);
  197.     PUT_SB_FREE_BLOCKS(s, SB_FREE_BLOCKS(s) - (end - *beg));
  198.     journal_mark_dirty (th, s, SB_BUFFER_WITH_SB(s));
  199.     return end - (*beg);
  200. } else {
  201.     *beg = next;
  202. }
  203.     }
  204. }
  205. /* Tries to find contiguous zero bit window (given size) in given region of
  206.  * bitmap and place new blocks there. Returns number of allocated blocks. */
  207. static int scan_bitmap (struct reiserfs_transaction_handle *th,
  208. unsigned long *start, unsigned long finish,
  209. int min, int max, int unfm, unsigned long file_block)
  210. {
  211.     int nr_allocated=0;
  212.     struct super_block * s = th->t_super;
  213.     /* find every bm and bmap and bmap_nr in this file, and change them all to bitmap_blocknr
  214.      * - Hans, it is not a block number - Zam. */
  215.     int bm, off;
  216.     int end_bm, end_off;
  217.     int off_max = s->s_blocksize << 3;
  218.     PROC_INFO_INC( s, scan_bitmap.call ); 
  219.     if ( SB_FREE_BLOCKS(s) <= 0)
  220. return 0; // No point in looking for more free blocks
  221.     get_bit_address (s, *start, &bm, &off);
  222.     get_bit_address (s, finish, &end_bm, &end_off);
  223.     // With this option set first we try to find a bitmap that is at least 10%
  224.     // free, and if that fails, then we fall back to old whole bitmap scanning
  225.     if ( TEST_OPTION(skip_busy, s) && SB_FREE_BLOCKS(s) > SB_BLOCK_COUNT(s)/20 ) {
  226. for (;bm < end_bm; bm++, off = 0) {
  227.     if ( ( off && (!unfm || (file_block != 0))) || SB_AP_BITMAP(s)[bm].free_count > (s->s_blocksize << 3) / 10 )
  228. nr_allocated = scan_bitmap_block(th, bm, &off, off_max, min, max, unfm);
  229.     if (nr_allocated)
  230. goto ret;
  231.         }
  232. get_bit_address (s, *start, &bm, &off);
  233.     }
  234.     for (;bm < end_bm; bm++, off = 0) {
  235. nr_allocated = scan_bitmap_block(th, bm, &off, off_max, min, max, unfm);
  236. if (nr_allocated)
  237.     goto ret;
  238.     }
  239.     nr_allocated = scan_bitmap_block(th, bm, &off, end_off + 1, min, max, unfm);
  240.  ret:
  241.     *start = bm * off_max + off;
  242.     return nr_allocated;
  243. }
  244. static void _reiserfs_free_block (struct reiserfs_transaction_handle *th,
  245.   b_blocknr_t block)
  246. {
  247.     struct super_block * s = th->t_super;
  248.     struct reiserfs_super_block * rs;
  249.     struct buffer_head * sbh;
  250.     struct reiserfs_bitmap_info *apbi;
  251.     int nr, offset;
  252.     PROC_INFO_INC( s, free_block );
  253.     rs = SB_DISK_SUPER_BLOCK (s);
  254.     sbh = SB_BUFFER_WITH_SB (s);
  255.     apbi = SB_AP_BITMAP(s);
  256.   
  257.     get_bit_address (s, block, &nr, &offset);
  258.   
  259.     if (nr >= sb_bmap_nr (rs)) {
  260. reiserfs_warning ("vs-4075: reiserfs_free_block: "
  261.   "block %lu is out of range on %sn",
  262.   block, bdevname(s->s_dev));
  263. return;
  264.     }
  265.     reiserfs_prepare_for_journal(s, apbi[nr].bh, 1 ) ;
  266.   
  267.     /* clear bit for the given block in bit map */
  268.     if (!reiserfs_test_and_clear_le_bit (offset, apbi[nr].bh->b_data)) {
  269. reiserfs_warning ("vs-4080: reiserfs_free_block: "
  270.   "free_block (%04x:%lu)[dev:blocknr]: bit already clearedn", 
  271.   s->s_dev, block);
  272.     }
  273.     if (offset < apbi[nr].first_zero_hint) {
  274. apbi[nr].first_zero_hint = offset;
  275.     }
  276.     apbi[nr].free_count ++;
  277.     journal_mark_dirty (th, s, apbi[nr].bh);
  278.   
  279.     reiserfs_prepare_for_journal(s, sbh, 1) ;
  280.     /* update super block */
  281.     set_sb_free_blocks( rs, sb_free_blocks(rs) + 1 );
  282.   
  283.     journal_mark_dirty (th, s, sbh);
  284. }
  285. void reiserfs_free_block (struct reiserfs_transaction_handle *th,
  286.   unsigned long block) {
  287.     struct super_block * s = th->t_super;
  288.     RFALSE(!s, "vs-4061: trying to free block on nonexistent device");
  289.     RFALSE(is_reusable (s, block, 1) == 0, "vs-4071: can not free such block");
  290.     /* mark it before we clear it, just in case */
  291.     journal_mark_freed(th, s, block) ;
  292.     _reiserfs_free_block(th, block) ;
  293. }
  294. /* preallocated blocks don't need to be run through journal_mark_freed */
  295. void reiserfs_free_prealloc_block (struct reiserfs_transaction_handle *th, 
  296.                           unsigned long block) {
  297.     RFALSE(!th->t_super, "vs-4060: trying to free block on nonexistent device");
  298.     RFALSE(is_reusable (th->t_super, block, 1) == 0, "vs-4070: can not free such block");
  299.     _reiserfs_free_block(th, block) ;
  300. }
  301. static void __discard_prealloc (struct reiserfs_transaction_handle * th,
  302. struct inode * inode)
  303. {
  304.     unsigned long save = inode->u.reiserfs_i.i_prealloc_block ;
  305. #ifdef CONFIG_REISERFS_CHECK
  306.     if (inode->u.reiserfs_i.i_prealloc_count < 0)
  307. reiserfs_warning("zam-4001:%s: inode has negative prealloc blocks count.n", __FUNCTION__ );
  308. #endif  
  309.     while (inode->u.reiserfs_i.i_prealloc_count > 0) {
  310. reiserfs_free_prealloc_block(th,inode->u.reiserfs_i.i_prealloc_block);
  311. inode->u.reiserfs_i.i_prealloc_block++;
  312. inode->u.reiserfs_i.i_prealloc_count --;
  313.     }
  314.     inode->u.reiserfs_i.i_prealloc_block = save ;
  315.     list_del (&(inode->u.reiserfs_i.i_prealloc_list));
  316. }
  317. /* FIXME: It should be inline function */
  318. void reiserfs_discard_prealloc (struct reiserfs_transaction_handle *th,
  319. struct inode * inode)
  320. {
  321.     if (inode->u.reiserfs_i.i_prealloc_count) {
  322. __discard_prealloc(th, inode);
  323.     }
  324. }
  325. void reiserfs_discard_all_prealloc (struct reiserfs_transaction_handle *th)
  326. {
  327.   struct list_head * plist = &SB_JOURNAL(th->t_super)->j_prealloc_list;
  328.   struct inode * inode;
  329.   
  330.   while (!list_empty(plist)) {
  331.     inode = list_entry(plist->next, struct inode, u.reiserfs_i.i_prealloc_list);
  332. #ifdef CONFIG_REISERFS_CHECK
  333.     if (!inode->u.reiserfs_i.i_prealloc_count) {
  334.       reiserfs_warning("zam-4001:%s: inode is in prealloc list but has no preallocated blocks.n", __FUNCTION__ );
  335.     }
  336. #endif
  337.     __discard_prealloc(th, inode);
  338.   }
  339. }
  340. /* block allocator related options are parsed here */
  341. int reiserfs_parse_alloc_options(struct super_block * s, char * options)
  342. {
  343.     char * this_char, * value;
  344.     s->u.reiserfs_sb.s_alloc_options.bits = 0; /* clear default settings */
  345.     for (this_char = strtok (options, ":"); this_char != NULL; this_char = strtok (NULL, ":")) {
  346. if ((value = strchr (this_char, '=')) != NULL)
  347.     *value++ = 0;
  348. if (!strcmp(this_char, "concentrating_formatted_nodes")) {
  349.     int temp;
  350.     SET_OPTION(concentrating_formatted_nodes);
  351.     temp = (value && *value) ? simple_strtoul (value, &value, 0) : 10;
  352.     if (temp <= 0 || temp > 100) {
  353. s->u.reiserfs_sb.s_alloc_options.border = 10;
  354.     } else {
  355. s->u.reiserfs_sb.s_alloc_options.border = 100 / temp;
  356.    }
  357.     continue;
  358. }
  359. if (!strcmp(this_char, "displacing_large_files")) {
  360.     SET_OPTION(displacing_large_files);
  361.     s->u.reiserfs_sb.s_alloc_options.large_file_size =
  362. (value && *value) ? simple_strtoul (value, &value, 0) : 16;
  363.     continue;
  364. }
  365. if (!strcmp(this_char, "displacing_new_packing_localities")) {
  366.     SET_OPTION(displacing_new_packing_localities);
  367.     continue;
  368. };
  369. if (!strcmp(this_char, "old_hashed_relocation")) {
  370.     SET_OPTION(old_hashed_relocation);
  371.     continue;
  372. }
  373. if (!strcmp(this_char, "new_hashed_relocation")) {
  374.     SET_OPTION(new_hashed_relocation);
  375.     continue;
  376. }
  377. if (!strcmp(this_char, "hashed_formatted_nodes")) {
  378.     SET_OPTION(hashed_formatted_nodes);
  379.     continue;
  380. }
  381. if (!strcmp(this_char, "skip_busy")) {
  382.     SET_OPTION(skip_busy);
  383.     continue;
  384. }
  385. if (!strcmp(this_char, "hundredth_slices")) {
  386.     SET_OPTION(hundredth_slices);
  387.     continue;
  388. }
  389. if (!strcmp(this_char, "old_way")) {
  390.     SET_OPTION(old_way);
  391.     continue;
  392. }
  393. if (!strcmp(this_char, "displace_based_on_dirid")) {
  394.     SET_OPTION(displace_based_on_dirid);
  395.     continue;
  396. }
  397. if (!strcmp(this_char, "preallocmin")) {
  398.     s->u.reiserfs_sb.s_alloc_options.preallocmin =
  399. (value && *value) ? simple_strtoul (value, &value, 0) : 4;
  400.     continue;
  401. }
  402. if (!strcmp(this_char, "preallocsize")) {
  403.     s->u.reiserfs_sb.s_alloc_options.preallocsize =
  404. (value && *value) ? simple_strtoul (value, &value, 0) : PREALLOCATION_SIZE;
  405.     continue;
  406. }
  407. reiserfs_warning("zam-4001: %s : unknown option - %sn", __FUNCTION__ , this_char);
  408. return 1;
  409.     }
  410.     return 0;
  411. }
  412. static void inline new_hashed_relocation (reiserfs_blocknr_hint_t * hint)
  413. {
  414.     char * hash_in;
  415.     if (hint->formatted_node) {
  416.     hash_in = (char*)&hint->key.k_dir_id;
  417.     } else {
  418. if (!hint->inode) {
  419.     //hint->search_start = hint->beg;
  420.     hash_in = (char*)&hint->key.k_dir_id;
  421. } else 
  422.     if ( TEST_OPTION(displace_based_on_dirid, hint->th->t_super))
  423. hash_in = (char *)(&INODE_PKEY(hint->inode)->k_dir_id);
  424.     else
  425. hash_in = (char *)(&INODE_PKEY(hint->inode)->k_objectid);
  426.     }
  427.     hint->search_start = hint->beg + keyed_hash(hash_in, 4) % (hint->end - hint->beg);
  428. }
  429. static void inline get_left_neighbor(reiserfs_blocknr_hint_t *hint)
  430. {
  431.     struct path * path;
  432.     struct buffer_head * bh;
  433.     struct item_head * ih;
  434.     int pos_in_item;
  435.     __u32 * item;
  436.     if (!hint->path) /* reiserfs code can call this function w/o pointer to path
  437.  * structure supplied; then we rely on supplied search_start */
  438. return;
  439.     path = hint->path;
  440.     bh = get_last_bh(path);
  441.     RFALSE( !bh, "green-4002: Illegal path specified to get_left_neighborn");
  442.     ih = get_ih(path);
  443.     pos_in_item = path->pos_in_item;
  444.     item = get_item (path);
  445.     hint->search_start = bh->b_blocknr;
  446.     if (!hint->formatted_node && is_indirect_le_ih (ih)) {
  447. /* for indirect item: go to left and look for the first non-hole entry
  448.    in the indirect item */
  449. if (pos_in_item == I_UNFM_NUM (ih))
  450.     pos_in_item--;
  451. //     pos_in_item = I_UNFM_NUM (ih) - 1;
  452. while (pos_in_item >= 0) {
  453.     int t=get_block_num(item,pos_in_item);
  454.     if (t) {
  455. hint->search_start = t;
  456. break;
  457.     }
  458.     pos_in_item --;
  459. }
  460.     } else {
  461.     }
  462.     /* does result value fit into specified region? */
  463.     return;
  464. }
  465. /* should be, if formatted node, then try to put on first part of the device
  466.    specified as number of percent with mount option device, else try to put
  467.    on last of device.  This is not to say it is good code to do so,
  468.    but the effect should be measured.  */
  469. static void inline set_border_in_hint(struct super_block *s, reiserfs_blocknr_hint_t *hint)
  470. {
  471.     b_blocknr_t border = SB_BLOCK_COUNT(hint->th->t_super) / s->u.reiserfs_sb.s_alloc_options.border;
  472.     if (hint->formatted_node)
  473. hint->end = border - 1;
  474.     else
  475. hint->beg = border;
  476. }
  477. static void inline displace_large_file(reiserfs_blocknr_hint_t *hint)
  478. {
  479.     if ( TEST_OPTION(displace_based_on_dirid, hint->th->t_super))
  480. hint->search_start = hint->beg + keyed_hash((char *)(&INODE_PKEY(hint->inode)->k_dir_id), 4) % (hint->end - hint->beg);
  481.     else
  482. hint->search_start = hint->beg + keyed_hash((char *)(&INODE_PKEY(hint->inode)->k_objectid), 4) % (hint->end - hint->beg);
  483. }
  484. static void inline hash_formatted_node(reiserfs_blocknr_hint_t *hint)
  485. {
  486.    char * hash_in;
  487.    if (!hint->inode)
  488. hash_in = (char*)&hint->key.k_dir_id;
  489.     else if ( TEST_OPTION(displace_based_on_dirid, hint->th->t_super))
  490. hash_in = (char *)(&INODE_PKEY(hint->inode)->k_dir_id);
  491.     else
  492. hash_in = (char *)(&INODE_PKEY(hint->inode)->k_objectid);
  493. hint->search_start = hint->beg + keyed_hash(hash_in, 4) % (hint->end - hint->beg);
  494. }
  495. static int inline this_blocknr_allocation_would_make_it_a_large_file(reiserfs_blocknr_hint_t *hint)
  496. {
  497.     return hint->block == hint->th->t_super->u.reiserfs_sb.s_alloc_options.large_file_size;
  498. }
  499. #ifdef DISPLACE_NEW_PACKING_LOCALITIES
  500. static void inline displace_new_packing_locality (reiserfs_blocknr_hint_t *hint)
  501. {
  502.     struct key * key = &hint->key;
  503.     hint->th->displace_new_blocks = 0;
  504.     hint->search_start = hint->beg + keyed_hash((char*)(&key->k_objectid),4) % (hint->end - hint->beg);
  505. }
  506. #endif
  507. static int inline old_hashed_relocation (reiserfs_blocknr_hint_t * hint)
  508. {
  509.     unsigned long border;
  510.     unsigned long hash_in;
  511.     
  512.     if (hint->formatted_node || hint->inode == NULL) {
  513. return 0;
  514.     }
  515.     hash_in = le32_to_cpu((INODE_PKEY(hint->inode))->k_dir_id);
  516.     border = hint->beg + (unsigned long) keyed_hash(((char *) (&hash_in)), 4) % (hint->end - hint->beg - 1);
  517.     if (border > hint->search_start)
  518. hint->search_start = border;
  519.     return 1;
  520. }
  521. static int inline old_way (reiserfs_blocknr_hint_t * hint)
  522. {
  523.     unsigned long border;
  524.     
  525.     if (hint->formatted_node || hint->inode == NULL) {
  526. return 0;
  527.     }
  528.       border = hint->beg + le32_to_cpu(INODE_PKEY(hint->inode)->k_dir_id) % (hint->end  - hint->beg);
  529.     if (border > hint->search_start)
  530. hint->search_start = border;
  531.     return 1;
  532. }
  533. static void inline hundredth_slices (reiserfs_blocknr_hint_t * hint)
  534. {
  535.     struct key * key = &hint->key;
  536.     unsigned long slice_start;
  537.     slice_start = (keyed_hash((char*)(&key->k_dir_id),4) % 100) * (hint->end / 100);
  538.     if ( slice_start > hint->search_start || slice_start + (hint->end / 100) <= hint->search_start) {
  539. hint->search_start = slice_start;
  540.     }
  541. }
  542. static void inline determine_search_start(reiserfs_blocknr_hint_t *hint,
  543.   int amount_needed)
  544. {
  545.     struct super_block *s = hint->th->t_super;
  546.     hint->beg = 0;
  547.     hint->end = SB_BLOCK_COUNT(s) - 1;
  548.     /* This is former border algorithm. Now with tunable border offset */
  549.     if (concentrating_formatted_nodes(s))
  550. set_border_in_hint(s, hint);
  551. #ifdef DISPLACE_NEW_PACKING_LOCALITIES
  552.     /* whenever we create a new directory, we displace it.  At first we will
  553.        hash for location, later we might look for a moderately empty place for
  554.        it */
  555.     if (displacing_new_packing_localities(s)
  556. && hint->th->displace_new_blocks) {
  557. displace_new_packing_locality(hint);
  558. /* we do not continue determine_search_start,
  559.  * if new packing locality is being displaced */
  560. return;
  561.     }       
  562. #endif
  563.     /* all persons should feel encouraged to add more special cases here and
  564.      * test them */
  565.     if (displacing_large_files(s) && !hint->formatted_node
  566. && this_blocknr_allocation_would_make_it_a_large_file(hint)) {
  567. displace_large_file(hint);
  568. return;
  569.     }
  570.     /* attempt to copy a feature from old block allocator code */
  571.     if (TEST_OPTION(old_hashed_relocation, s) && !hint->formatted_node) {
  572. old_hashed_relocation(hint);
  573.     }
  574.     /* if none of our special cases is relevant, use the left neighbor in the
  575.        tree order of the new node we are allocating for */
  576.     if (hint->formatted_node && TEST_OPTION(hashed_formatted_nodes,s)) {
  577. hash_formatted_node(hint);
  578. return;
  579.     } 
  580.     get_left_neighbor(hint);
  581.     /* Mimic old block allocator behaviour, that is if VFS allowed for preallocation,
  582.        new blocks are displaced based on directory ID. Also, if suggested search_start
  583.        is less than last preallocated block, we start searching from it, assuming that
  584.        HDD dataflow is faster in forward direction */
  585.     if ( TEST_OPTION(old_way, s)) {
  586. if (!hint->formatted_node) {
  587.     if ( !reiserfs_hashed_relocation(s))
  588. old_way(hint);
  589.     else if (!reiserfs_no_unhashed_relocation(s))
  590. old_hashed_relocation(hint);
  591.     if ( hint->inode && hint->search_start < hint->inode->u.reiserfs_i.i_prealloc_block)
  592. hint->search_start = hint->inode->u.reiserfs_i.i_prealloc_block;
  593. }
  594. return;
  595.     }
  596.     /* This is an approach proposed by Hans */
  597.     if ( TEST_OPTION(hundredth_slices, s) && ! (displacing_large_files(s) && !hint->formatted_node)) {
  598. hundredth_slices(hint);
  599. return;
  600.     }
  601.     if (TEST_OPTION(old_hashed_relocation, s))
  602. old_hashed_relocation(hint);
  603.     if (TEST_OPTION(new_hashed_relocation, s))
  604. new_hashed_relocation(hint);
  605.     return;
  606. }
  607. static int determine_prealloc_size(reiserfs_blocknr_hint_t * hint)
  608. {
  609.     /* make minimum size a mount option and benchmark both ways */
  610.     /* we preallocate blocks only for regular files, specific size */
  611.     /* benchmark preallocating always and see what happens */
  612.     hint->prealloc_size = 0;
  613.     if (!hint->formatted_node && hint->preallocate) {
  614. if (S_ISREG(hint->inode->i_mode)
  615.     && hint->inode->i_size >= hint->th->t_super->u.reiserfs_sb.s_alloc_options.preallocmin * hint->inode->i_sb->s_blocksize)
  616.     hint->prealloc_size = hint->th->t_super->u.reiserfs_sb.s_alloc_options.preallocsize - 1;
  617.     }
  618.     return CARRY_ON;
  619. }
  620. /* XXX I know it could be merged with upper-level function;
  621.    but may be result function would be too complex. */
  622. static inline int allocate_without_wrapping_disk (reiserfs_blocknr_hint_t * hint,
  623.  b_blocknr_t * new_blocknrs,
  624.  b_blocknr_t start, b_blocknr_t finish,
  625.  int amount_needed, int prealloc_size)
  626. {
  627.     int rest = amount_needed;
  628.     int nr_allocated;
  629.     while (rest > 0) {
  630. nr_allocated = scan_bitmap (hint->th, &start, finish, 1,
  631.     rest + prealloc_size, !hint->formatted_node,
  632.     hint->block);
  633. if (nr_allocated == 0) /* no new blocks allocated, return */
  634.     break;
  635. /* fill free_blocknrs array first */
  636. while (rest > 0 && nr_allocated > 0) {
  637.     * new_blocknrs ++ = start ++;
  638.     rest --; nr_allocated --;
  639. }
  640. /* do we have something to fill prealloc. array also ? */
  641. if (nr_allocated > 0) {
  642.     /* it means prealloc_size was greater that 0 and we do preallocation */
  643.     list_add(&INODE_INFO(hint->inode)->i_prealloc_list,
  644.      &SB_JOURNAL(hint->th->t_super)->j_prealloc_list);
  645.     INODE_INFO(hint->inode)->i_prealloc_block = start;
  646.     INODE_INFO(hint->inode)->i_prealloc_count = nr_allocated;
  647.     break;
  648. }
  649.     }
  650.     return (amount_needed - rest);
  651. }
  652. static inline int blocknrs_and_prealloc_arrays_from_search_start
  653.     (reiserfs_blocknr_hint_t *hint, b_blocknr_t *new_blocknrs, int amount_needed)
  654. {
  655.     struct super_block *s = hint->th->t_super;
  656.     b_blocknr_t start = hint->search_start;
  657.     b_blocknr_t finish = SB_BLOCK_COUNT(s) - 1;
  658.     int second_pass = 0;
  659.     int nr_allocated = 0;
  660.     determine_prealloc_size(hint);
  661.     while((nr_allocated
  662.   += allocate_without_wrapping_disk(hint, new_blocknrs + nr_allocated, start, finish,
  663.   amount_needed - nr_allocated, hint->prealloc_size))
  664.   < amount_needed) {
  665. /* not all blocks were successfully allocated yet*/
  666. if (second_pass) { /* it was a second pass; we must free all blocks */
  667.     while (nr_allocated --)
  668. reiserfs_free_block(hint->th, new_blocknrs[nr_allocated]);
  669.     return NO_DISK_SPACE;
  670. } else { /* refine search parameters for next pass */
  671.     second_pass = 1;
  672.     finish = start;
  673.     start = 0;
  674.     continue;
  675. }
  676.     }
  677.     return CARRY_ON;
  678. }
  679. /* grab new blocknrs from preallocated list */
  680. /* return amount still needed after using them */
  681. static int use_preallocated_list_if_available (reiserfs_blocknr_hint_t *hint,
  682.        b_blocknr_t *new_blocknrs, int amount_needed)
  683. {
  684.     struct inode * inode = hint->inode;
  685.     if (INODE_INFO(inode)->i_prealloc_count > 0) {
  686. while (amount_needed) {
  687.     *new_blocknrs ++ = INODE_INFO(inode)->i_prealloc_block ++;
  688.     INODE_INFO(inode)->i_prealloc_count --;
  689.     amount_needed --;
  690.     if (INODE_INFO(inode)->i_prealloc_count <= 0) {
  691. list_del(&inode->u.reiserfs_i.i_prealloc_list);  
  692. break;
  693.     }
  694. }
  695.     }
  696.     /* return amount still needed after using preallocated blocks */
  697.     return amount_needed;
  698. }
  699. int reiserfs_allocate_blocknrs(reiserfs_blocknr_hint_t *hint,
  700.        b_blocknr_t * new_blocknrs, int amount_needed,
  701.        int reserved_by_us /* Amount of blocks we have
  702.       already reserved */)
  703. {
  704.     int initial_amount_needed = amount_needed;
  705.     int ret;
  706.     /* Check if there is enough space, taking into account reserved space */
  707.     if ( SB_FREE_BLOCKS(hint->th->t_super) - hint->th->t_super->u.reiserfs_sb.reserved_blocks <
  708.  amount_needed - reserved_by_us)
  709.         return NO_DISK_SPACE;
  710.     /* should this be if !hint->inode &&  hint->preallocate? */
  711.     /* do you mean hint->formatted_node can be removed ? - Zam */
  712.     /* hint->formatted_node cannot be removed because we try to access
  713.        inode information here, and there is often no inode assotiated with
  714.        metadata allocations - green */
  715.     if (!hint->formatted_node && hint->preallocate) {
  716. amount_needed = use_preallocated_list_if_available
  717.     (hint, new_blocknrs, amount_needed);
  718. if (amount_needed == 0) /* all blocknrs we need we got from
  719.                                    prealloc. list */
  720.     return CARRY_ON;
  721. new_blocknrs += (initial_amount_needed - amount_needed);
  722.     }
  723.     /* find search start and save it in hint structure */
  724.     determine_search_start(hint, amount_needed);
  725.     /* allocation itself; fill new_blocknrs and preallocation arrays */
  726.     ret = blocknrs_and_prealloc_arrays_from_search_start
  727. (hint, new_blocknrs, amount_needed);
  728.     /* we used prealloc. list to fill (partially) new_blocknrs array. If final allocation fails we
  729.      * need to return blocks back to prealloc. list or just free them. -- Zam (I chose second
  730.      * variant) */
  731.     if (ret != CARRY_ON) {
  732. while (amount_needed ++ < initial_amount_needed) {
  733.     reiserfs_free_block(hint->th, *(--new_blocknrs));
  734. }
  735.     }
  736.     return ret;
  737. }
  738. /* These 2 functions are here to provide blocks reservation to the rest of kernel */
  739. /* Reserve @blocks amount of blocks in fs pointed by @sb. Caller must make sure
  740.    there are actually this much blocks on the FS available */
  741. void reiserfs_claim_blocks_to_be_allocated( 
  742.       struct super_block *sb, /* super block of
  743.         filesystem where
  744. blocks should be
  745. reserved */
  746.       int blocks /* How much to reserve */
  747.   )
  748. {
  749.     /* Fast case, if reservation is zero - exit immediately. */
  750.     if ( !blocks )
  751. return;
  752.     sb->u.reiserfs_sb.reserved_blocks += blocks;
  753. }
  754. /* Unreserve @blocks amount of blocks in fs pointed by @sb */
  755. void reiserfs_release_claimed_blocks( 
  756. struct super_block *sb, /* super block of
  757.   filesystem where
  758.   blocks should be
  759.   reserved */
  760. int blocks /* How much to unreserve */
  761.   )
  762. {
  763.     /* Fast case, if unreservation is zero - exit immediately. */
  764.     if ( !blocks )
  765. return;
  766.     sb->u.reiserfs_sb.reserved_blocks -= blocks;
  767.     RFALSE( sb->u.reiserfs_sb.reserved_blocks < 0, "amount of blocks reserved became zero?");
  768. }