*/
 static int
 ext3_try_to_allocate(struct super_block *sb, handle_t *handle, int group,
-       struct buffer_head *bitmap_bh, int goal, struct ext3_reserve_window *my_rsv)
+                       struct buffer_head *bitmap_bh, int goal,
+                       unsigned long *count, struct ext3_reserve_window *my_rsv)
 {
        int group_first_block, start, end;
+       unsigned long num = 0;
 
        /* we do allocation within the reservation window if we have a window */
        if (my_rsv) {
                        goto fail_access;
                goto repeat;
        }
-       return goal;
+       num++;
+       goal++;
+       while (num < *count && goal < end
+               && ext3_test_allocatable(goal, bitmap_bh)
+               && claim_block(sb_bgl_lock(EXT3_SB(sb), group), goal, bitmap_bh)) {
+               num++;
+               goal++;
+       }
+       *count = num;
+       return goal - num;
 fail_access:
+       *count = num;
        return -1;
 }
 
 ext3_try_to_allocate_with_rsv(struct super_block *sb, handle_t *handle,
                        unsigned int group, struct buffer_head *bitmap_bh,
                        int goal, struct ext3_reserve_window_node * my_rsv,
-                       int *errp)
+                       unsigned long *count, int *errp)
 {
        unsigned long group_first_block;
        int ret = 0;
        int fatal;
+       unsigned long num = *count;
 
        *errp = 0;
 
         * or last attempt to allocate a block with reservation turned on failed
         */
        if (my_rsv == NULL ) {
-               ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh, goal, NULL);
+               ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh,
+                                               goal, count, NULL);
                goto out;
        }
        /*
                    || (my_rsv->rsv_end < group_first_block))
                        BUG();
                ret = ext3_try_to_allocate(sb, handle, group, bitmap_bh, goal,
-                                          &my_rsv->rsv_window);
+                                          &num, &my_rsv->rsv_window);
                if (ret >= 0) {
-                       my_rsv->rsv_alloc_hit++;
+                       my_rsv->rsv_alloc_hit += num;
+                       *count = num;
                        break;                          /* succeed */
                }
+               num = *count;
        }
 out:
        if (ret >= 0) {
  * bitmap, and then for any free bit if that fails.
  * This function also updates quota and i_blocks field.
  */
-int ext3_new_block(handle_t *handle, struct inode *inode,
-                       unsigned long goal, int *errp)
+int ext3_new_blocks(handle_t *handle, struct inode *inode,
+                       unsigned long goal, unsigned long *count, int *errp)
 {
        struct buffer_head *bitmap_bh = NULL;
        struct buffer_head *gdp_bh;
        static int goal_hits, goal_attempts;
 #endif
        unsigned long ngroups;
+       unsigned long num = *count;
 
        *errp = -ENOSPC;
        sb = inode->i_sb;
                if (!bitmap_bh)
                        goto io_error;
                ret_block = ext3_try_to_allocate_with_rsv(sb, handle, group_no,
-                                       bitmap_bh, ret_block, my_rsv, &fatal);
+                                       bitmap_bh, ret_block, my_rsv, &num, &fatal);
                if (fatal)
                        goto out;
                if (ret_block >= 0)
                if (!bitmap_bh)
                        goto io_error;
                ret_block = ext3_try_to_allocate_with_rsv(sb, handle, group_no,
-                                       bitmap_bh, -1, my_rsv, &fatal);
+                                       bitmap_bh, -1, my_rsv, &num, &fatal);
                if (fatal)
                        goto out;
                if (ret_block >= 0) 
 
        *errp = 0;
        brelse(bitmap_bh);
+       *count = num;
        return ret_block;
 
 io_error:
        return 0;
 }
 
+int ext3_new_block(handle_t *handle, struct inode *inode,
+                       unsigned long goal, int *errp)
+{
+       unsigned long count = 1;
+
+       return ext3_new_blocks(handle, inode, goal, &count, errp);
+}
+
 unsigned long ext3_count_free_blocks(struct super_block *sb)
 {
        unsigned long desc_count;
 
  * Define EXT3_RESERVATION to reserve data blocks for expanding files
  */
 #define EXT3_DEFAULT_RESERVE_BLOCKS     8
-#define EXT3_MAX_RESERVE_BLOCKS         1024
+/*max window size: 1024(direct blocks) + 3([t,d]indirect blocks) */
+#define EXT3_MAX_RESERVE_BLOCKS         1027
 #define EXT3_RESERVE_WINDOW_NOT_ALLOCATED 0
 /*
  * Always enable hashed directories
 extern int ext3_bg_has_super(struct super_block *sb, int group);
 extern unsigned long ext3_bg_num_gdb(struct super_block *sb, int group);
 extern int ext3_new_block (handle_t *, struct inode *, unsigned long, int *);
+extern int ext3_new_blocks (handle_t *, struct inode *, unsigned long,
+                       unsigned long *, int *);
 extern void ext3_free_blocks (handle_t *, struct inode *, unsigned long,
                              unsigned long);
 extern void ext3_free_blocks_sb (handle_t *, struct super_block *,