1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Node local data allocation
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
27 #include <linux/types.h>
28 #include <linux/slab.h>
29 #include <linux/highmem.h>
30 #include <linux/bitops.h>
32 #define MLOG_MASK_PREFIX ML_DISK_ALLOC
33 #include <cluster/masklog.h>
41 #include "localalloc.h"
46 #include "buffer_head_io.h"
48 #define OCFS2_LOCAL_ALLOC(dinode) (&((dinode)->id2.i_lab))
50 static inline int ocfs2_local_alloc_window_bits(struct ocfs2_super
*osb
);
52 static u32
ocfs2_local_alloc_count_bits(struct ocfs2_dinode
*alloc
);
54 static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super
*osb
,
55 struct ocfs2_dinode
*alloc
,
58 static void ocfs2_clear_local_alloc(struct ocfs2_dinode
*alloc
);
60 static int ocfs2_sync_local_to_main(struct ocfs2_super
*osb
,
62 struct ocfs2_dinode
*alloc
,
63 struct inode
*main_bm_inode
,
64 struct buffer_head
*main_bm_bh
);
66 static int ocfs2_local_alloc_reserve_for_window(struct ocfs2_super
*osb
,
67 struct ocfs2_alloc_context
**ac
,
68 struct inode
**bitmap_inode
,
69 struct buffer_head
**bitmap_bh
);
71 static int ocfs2_local_alloc_new_window(struct ocfs2_super
*osb
,
73 struct ocfs2_alloc_context
*ac
);
75 static int ocfs2_local_alloc_slide_window(struct ocfs2_super
*osb
,
76 struct inode
*local_alloc_inode
);
78 static inline int ocfs2_local_alloc_window_bits(struct ocfs2_super
*osb
)
80 BUG_ON(osb
->s_clustersize_bits
> 20);
82 /* Size local alloc windows by the megabyte */
83 return osb
->local_alloc_size
<< (20 - osb
->s_clustersize_bits
);
87 * Tell us whether a given allocation should use the local alloc
88 * file. Otherwise, it has to go to the main bitmap.
90 int ocfs2_alloc_should_use_local(struct ocfs2_super
*osb
, u64 bits
)
92 int la_bits
= ocfs2_local_alloc_window_bits(osb
);
95 if (osb
->local_alloc_state
!= OCFS2_LA_ENABLED
)
98 /* la_bits should be at least twice the size (in clusters) of
99 * a new block group. We want to be sure block group
100 * allocations go through the local alloc, so allow an
101 * allocation to take up to half the bitmap. */
102 if (bits
> (la_bits
/ 2))
107 mlog(0, "state=%d, bits=%llu, la_bits=%d, ret=%d\n",
108 osb
->local_alloc_state
, (unsigned long long)bits
, la_bits
, ret
);
112 int ocfs2_load_local_alloc(struct ocfs2_super
*osb
)
115 struct ocfs2_dinode
*alloc
= NULL
;
116 struct buffer_head
*alloc_bh
= NULL
;
118 struct inode
*inode
= NULL
;
119 struct ocfs2_local_alloc
*la
;
123 if (osb
->local_alloc_size
== 0)
126 if (ocfs2_local_alloc_window_bits(osb
) >= osb
->bitmap_cpg
) {
127 mlog(ML_NOTICE
, "Requested local alloc window %d is larger "
128 "than max possible %u. Using defaults.\n",
129 ocfs2_local_alloc_window_bits(osb
), (osb
->bitmap_cpg
- 1));
130 osb
->local_alloc_size
= OCFS2_DEFAULT_LOCAL_ALLOC_SIZE
;
133 /* read the alloc off disk */
134 inode
= ocfs2_get_system_file_inode(osb
, LOCAL_ALLOC_SYSTEM_INODE
,
142 status
= ocfs2_read_block(osb
, OCFS2_I(inode
)->ip_blkno
,
143 &alloc_bh
, 0, inode
);
149 alloc
= (struct ocfs2_dinode
*) alloc_bh
->b_data
;
150 la
= OCFS2_LOCAL_ALLOC(alloc
);
152 if (!(le32_to_cpu(alloc
->i_flags
) &
153 (OCFS2_LOCAL_ALLOC_FL
|OCFS2_BITMAP_FL
))) {
154 mlog(ML_ERROR
, "Invalid local alloc inode, %llu\n",
155 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
160 if ((la
->la_size
== 0) ||
161 (le16_to_cpu(la
->la_size
) > ocfs2_local_alloc_size(inode
->i_sb
))) {
162 mlog(ML_ERROR
, "Local alloc size is invalid (la_size = %u)\n",
163 le16_to_cpu(la
->la_size
));
168 /* do a little verification. */
169 num_used
= ocfs2_local_alloc_count_bits(alloc
);
171 /* hopefully the local alloc has always been recovered before
174 || alloc
->id1
.bitmap1
.i_used
175 || alloc
->id1
.bitmap1
.i_total
177 mlog(ML_ERROR
, "Local alloc hasn't been recovered!\n"
178 "found = %u, set = %u, taken = %u, off = %u\n",
179 num_used
, le32_to_cpu(alloc
->id1
.bitmap1
.i_used
),
180 le32_to_cpu(alloc
->id1
.bitmap1
.i_total
),
181 OCFS2_LOCAL_ALLOC(alloc
)->la_bm_off
);
183 osb
->local_alloc_bh
= alloc_bh
;
184 osb
->local_alloc_state
= OCFS2_LA_ENABLED
;
193 mlog(0, "Local alloc window bits = %d\n",
194 ocfs2_local_alloc_window_bits(osb
));
201 * return any unused bits to the bitmap and write out a clean
204 * local_alloc_bh is optional. If not passed, we will simply use the
205 * one off osb. If you do pass it however, be warned that it *will* be
206 * returned brelse'd and NULL'd out.*/
207 void ocfs2_shutdown_local_alloc(struct ocfs2_super
*osb
)
211 struct inode
*local_alloc_inode
= NULL
;
212 struct buffer_head
*bh
= NULL
;
213 struct buffer_head
*main_bm_bh
= NULL
;
214 struct inode
*main_bm_inode
= NULL
;
215 struct ocfs2_dinode
*alloc_copy
= NULL
;
216 struct ocfs2_dinode
*alloc
= NULL
;
220 if (osb
->local_alloc_state
== OCFS2_LA_UNUSED
)
224 ocfs2_get_system_file_inode(osb
,
225 LOCAL_ALLOC_SYSTEM_INODE
,
227 if (!local_alloc_inode
) {
233 osb
->local_alloc_state
= OCFS2_LA_DISABLED
;
235 main_bm_inode
= ocfs2_get_system_file_inode(osb
,
236 GLOBAL_BITMAP_SYSTEM_INODE
,
238 if (!main_bm_inode
) {
244 mutex_lock(&main_bm_inode
->i_mutex
);
246 status
= ocfs2_inode_lock(main_bm_inode
, &main_bm_bh
, 1);
252 /* WINDOW_MOVE_CREDITS is a bit heavy... */
253 handle
= ocfs2_start_trans(osb
, OCFS2_WINDOW_MOVE_CREDITS
);
254 if (IS_ERR(handle
)) {
255 mlog_errno(PTR_ERR(handle
));
260 bh
= osb
->local_alloc_bh
;
261 alloc
= (struct ocfs2_dinode
*) bh
->b_data
;
263 alloc_copy
= kmalloc(bh
->b_size
, GFP_KERNEL
);
268 memcpy(alloc_copy
, alloc
, bh
->b_size
);
270 status
= ocfs2_journal_access(handle
, local_alloc_inode
, bh
,
271 OCFS2_JOURNAL_ACCESS_WRITE
);
277 ocfs2_clear_local_alloc(alloc
);
279 status
= ocfs2_journal_dirty(handle
, bh
);
286 osb
->local_alloc_bh
= NULL
;
287 osb
->local_alloc_state
= OCFS2_LA_UNUSED
;
289 status
= ocfs2_sync_local_to_main(osb
, handle
, alloc_copy
,
290 main_bm_inode
, main_bm_bh
);
295 ocfs2_commit_trans(osb
, handle
);
301 ocfs2_inode_unlock(main_bm_inode
, 1);
304 mutex_unlock(&main_bm_inode
->i_mutex
);
308 if (local_alloc_inode
)
309 iput(local_alloc_inode
);
318 * We want to free the bitmap bits outside of any recovery context as
319 * we'll need a cluster lock to do so, but we must clear the local
320 * alloc before giving up the recovered nodes journal. To solve this,
321 * we kmalloc a copy of the local alloc before it's change for the
322 * caller to process with ocfs2_complete_local_alloc_recovery
324 int ocfs2_begin_local_alloc_recovery(struct ocfs2_super
*osb
,
326 struct ocfs2_dinode
**alloc_copy
)
329 struct buffer_head
*alloc_bh
= NULL
;
330 struct inode
*inode
= NULL
;
331 struct ocfs2_dinode
*alloc
;
333 mlog_entry("(slot_num = %d)\n", slot_num
);
337 inode
= ocfs2_get_system_file_inode(osb
,
338 LOCAL_ALLOC_SYSTEM_INODE
,
346 mutex_lock(&inode
->i_mutex
);
348 status
= ocfs2_read_block(osb
, OCFS2_I(inode
)->ip_blkno
,
349 &alloc_bh
, 0, inode
);
355 *alloc_copy
= kmalloc(alloc_bh
->b_size
, GFP_KERNEL
);
356 if (!(*alloc_copy
)) {
360 memcpy((*alloc_copy
), alloc_bh
->b_data
, alloc_bh
->b_size
);
362 alloc
= (struct ocfs2_dinode
*) alloc_bh
->b_data
;
363 ocfs2_clear_local_alloc(alloc
);
365 status
= ocfs2_write_block(osb
, alloc_bh
, inode
);
370 if ((status
< 0) && (*alloc_copy
)) {
379 mutex_unlock(&inode
->i_mutex
);
388 * Step 2: By now, we've completed the journal recovery, we've stamped
389 * a clean local alloc on disk and dropped the node out of the
390 * recovery map. Dlm locks will no longer stall, so lets clear out the
393 int ocfs2_complete_local_alloc_recovery(struct ocfs2_super
*osb
,
394 struct ocfs2_dinode
*alloc
)
398 struct buffer_head
*main_bm_bh
= NULL
;
399 struct inode
*main_bm_inode
;
403 main_bm_inode
= ocfs2_get_system_file_inode(osb
,
404 GLOBAL_BITMAP_SYSTEM_INODE
,
406 if (!main_bm_inode
) {
412 mutex_lock(&main_bm_inode
->i_mutex
);
414 status
= ocfs2_inode_lock(main_bm_inode
, &main_bm_bh
, 1);
420 handle
= ocfs2_start_trans(osb
, OCFS2_WINDOW_MOVE_CREDITS
);
421 if (IS_ERR(handle
)) {
422 status
= PTR_ERR(handle
);
428 /* we want the bitmap change to be recorded on disk asap */
431 status
= ocfs2_sync_local_to_main(osb
, handle
, alloc
,
432 main_bm_inode
, main_bm_bh
);
436 ocfs2_commit_trans(osb
, handle
);
439 ocfs2_inode_unlock(main_bm_inode
, 1);
442 mutex_unlock(&main_bm_inode
->i_mutex
);
455 * make sure we've got at least bitswanted contiguous bits in the
456 * local alloc. You lose them when you drop i_mutex.
458 * We will add ourselves to the transaction passed in, but may start
459 * our own in order to shift windows.
461 int ocfs2_reserve_local_alloc_bits(struct ocfs2_super
*osb
,
463 struct ocfs2_alloc_context
*ac
)
466 struct ocfs2_dinode
*alloc
;
467 struct inode
*local_alloc_inode
;
468 unsigned int free_bits
;
475 ocfs2_get_system_file_inode(osb
,
476 LOCAL_ALLOC_SYSTEM_INODE
,
478 if (!local_alloc_inode
) {
484 mutex_lock(&local_alloc_inode
->i_mutex
);
486 if (osb
->local_alloc_state
!= OCFS2_LA_ENABLED
) {
491 if (bits_wanted
> ocfs2_local_alloc_window_bits(osb
)) {
492 mlog(0, "Asking for more than my max window size!\n");
497 alloc
= (struct ocfs2_dinode
*) osb
->local_alloc_bh
->b_data
;
499 #ifdef OCFS2_DEBUG_FS
500 if (le32_to_cpu(alloc
->id1
.bitmap1
.i_used
) !=
501 ocfs2_local_alloc_count_bits(alloc
)) {
502 ocfs2_error(osb
->sb
, "local alloc inode %llu says it has "
503 "%u free bits, but a count shows %u",
504 (unsigned long long)le64_to_cpu(alloc
->i_blkno
),
505 le32_to_cpu(alloc
->id1
.bitmap1
.i_used
),
506 ocfs2_local_alloc_count_bits(alloc
));
512 free_bits
= le32_to_cpu(alloc
->id1
.bitmap1
.i_total
) -
513 le32_to_cpu(alloc
->id1
.bitmap1
.i_used
);
514 if (bits_wanted
> free_bits
) {
515 /* uhoh, window change time. */
517 ocfs2_local_alloc_slide_window(osb
, local_alloc_inode
);
519 if (status
!= -ENOSPC
)
525 ac
->ac_inode
= local_alloc_inode
;
526 ac
->ac_which
= OCFS2_AC_USE_LOCAL
;
527 get_bh(osb
->local_alloc_bh
);
528 ac
->ac_bh
= osb
->local_alloc_bh
;
531 if (status
< 0 && local_alloc_inode
) {
532 mutex_unlock(&local_alloc_inode
->i_mutex
);
533 iput(local_alloc_inode
);
536 mlog(0, "bits=%d, slot=%d, ret=%d\n", bits_wanted
, osb
->slot_num
,
543 int ocfs2_claim_local_alloc_bits(struct ocfs2_super
*osb
,
545 struct ocfs2_alloc_context
*ac
,
551 struct inode
*local_alloc_inode
;
553 struct ocfs2_dinode
*alloc
;
554 struct ocfs2_local_alloc
*la
;
557 BUG_ON(ac
->ac_which
!= OCFS2_AC_USE_LOCAL
);
559 local_alloc_inode
= ac
->ac_inode
;
560 alloc
= (struct ocfs2_dinode
*) osb
->local_alloc_bh
->b_data
;
561 la
= OCFS2_LOCAL_ALLOC(alloc
);
563 start
= ocfs2_local_alloc_find_clear_bits(osb
, alloc
, bits_wanted
);
565 /* TODO: Shouldn't we just BUG here? */
571 bitmap
= la
->la_bitmap
;
572 *bit_off
= le32_to_cpu(la
->la_bm_off
) + start
;
573 /* local alloc is always contiguous by nature -- we never
574 * delete bits from it! */
575 *num_bits
= bits_wanted
;
577 status
= ocfs2_journal_access(handle
, local_alloc_inode
,
579 OCFS2_JOURNAL_ACCESS_WRITE
);
586 ocfs2_set_bit(start
++, bitmap
);
588 le32_add_cpu(&alloc
->id1
.bitmap1
.i_used
, *num_bits
);
590 status
= ocfs2_journal_dirty(handle
, osb
->local_alloc_bh
);
602 static u32
ocfs2_local_alloc_count_bits(struct ocfs2_dinode
*alloc
)
607 struct ocfs2_local_alloc
*la
= OCFS2_LOCAL_ALLOC(alloc
);
611 buffer
= la
->la_bitmap
;
612 for (i
= 0; i
< le16_to_cpu(la
->la_size
); i
++)
613 count
+= hweight8(buffer
[i
]);
619 static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super
*osb
,
620 struct ocfs2_dinode
*alloc
,
623 int numfound
, bitoff
, left
, startoff
, lastzero
;
626 mlog_entry("(numbits wanted = %u)\n", numbits
);
628 if (!alloc
->id1
.bitmap1
.i_total
) {
629 mlog(0, "No bits in my window!\n");
634 bitmap
= OCFS2_LOCAL_ALLOC(alloc
)->la_bitmap
;
636 numfound
= bitoff
= startoff
= 0;
638 left
= le32_to_cpu(alloc
->id1
.bitmap1
.i_total
);
639 while ((bitoff
= ocfs2_find_next_zero_bit(bitmap
, left
, startoff
)) != -1) {
640 if (bitoff
== left
) {
641 /* mlog(0, "bitoff (%d) == left", bitoff); */
644 /* mlog(0, "Found a zero: bitoff = %d, startoff = %d, "
645 "numfound = %d\n", bitoff, startoff, numfound);*/
647 /* Ok, we found a zero bit... is it contig. or do we
649 if (bitoff
== startoff
) {
650 /* we found a zero */
654 /* got a zero after some ones */
658 /* we got everything we needed */
659 if (numfound
== numbits
) {
660 /* mlog(0, "Found it all!\n"); */
665 mlog(0, "Exiting loop, bitoff = %d, numfound = %d\n", bitoff
,
668 if (numfound
== numbits
)
669 bitoff
= startoff
- numfound
;
678 static void ocfs2_clear_local_alloc(struct ocfs2_dinode
*alloc
)
680 struct ocfs2_local_alloc
*la
= OCFS2_LOCAL_ALLOC(alloc
);
684 alloc
->id1
.bitmap1
.i_total
= 0;
685 alloc
->id1
.bitmap1
.i_used
= 0;
687 for(i
= 0; i
< le16_to_cpu(la
->la_size
); i
++)
688 la
->la_bitmap
[i
] = 0;
694 /* turn this on and uncomment below to aid debugging window shifts. */
695 static void ocfs2_verify_zero_bits(unsigned long *bitmap
,
699 unsigned int tmp
= count
;
701 if (ocfs2_test_bit(start
+ tmp
, bitmap
)) {
702 printk("ocfs2_verify_zero_bits: start = %u, count = "
703 "%u\n", start
, count
);
704 printk("ocfs2_verify_zero_bits: bit %u is set!",
713 * sync the local alloc to main bitmap.
715 * assumes you've already locked the main bitmap -- the bitmap inode
716 * passed is used for caching.
718 static int ocfs2_sync_local_to_main(struct ocfs2_super
*osb
,
720 struct ocfs2_dinode
*alloc
,
721 struct inode
*main_bm_inode
,
722 struct buffer_head
*main_bm_bh
)
725 int bit_off
, left
, count
, start
;
729 struct ocfs2_local_alloc
*la
= OCFS2_LOCAL_ALLOC(alloc
);
731 mlog_entry("total = %u, used = %u\n",
732 le32_to_cpu(alloc
->id1
.bitmap1
.i_total
),
733 le32_to_cpu(alloc
->id1
.bitmap1
.i_used
));
735 if (!alloc
->id1
.bitmap1
.i_total
) {
736 mlog(0, "nothing to sync!\n");
740 if (le32_to_cpu(alloc
->id1
.bitmap1
.i_used
) ==
741 le32_to_cpu(alloc
->id1
.bitmap1
.i_total
)) {
742 mlog(0, "all bits were taken!\n");
746 la_start_blk
= ocfs2_clusters_to_blocks(osb
->sb
,
747 le32_to_cpu(la
->la_bm_off
));
748 bitmap
= la
->la_bitmap
;
749 start
= count
= bit_off
= 0;
750 left
= le32_to_cpu(alloc
->id1
.bitmap1
.i_total
);
752 while ((bit_off
= ocfs2_find_next_zero_bit(bitmap
, left
, start
))
754 if ((bit_off
< left
) && (bit_off
== start
)) {
760 blkno
= la_start_blk
+
761 ocfs2_clusters_to_blocks(osb
->sb
,
764 mlog(0, "freeing %u bits starting at local alloc bit "
765 "%u (la_start_blk = %llu, blkno = %llu)\n",
766 count
, start
- count
,
767 (unsigned long long)la_start_blk
,
768 (unsigned long long)blkno
);
770 status
= ocfs2_free_clusters(handle
, main_bm_inode
,
771 main_bm_bh
, blkno
, count
);
788 static int ocfs2_local_alloc_reserve_for_window(struct ocfs2_super
*osb
,
789 struct ocfs2_alloc_context
**ac
,
790 struct inode
**bitmap_inode
,
791 struct buffer_head
**bitmap_bh
)
795 *ac
= kzalloc(sizeof(struct ocfs2_alloc_context
), GFP_KERNEL
);
802 (*ac
)->ac_bits_wanted
= ocfs2_local_alloc_window_bits(osb
);
804 status
= ocfs2_reserve_cluster_bitmap_bits(osb
, *ac
);
806 if (status
!= -ENOSPC
)
811 *bitmap_inode
= (*ac
)->ac_inode
;
812 igrab(*bitmap_inode
);
813 *bitmap_bh
= (*ac
)->ac_bh
;
817 if ((status
< 0) && *ac
) {
818 ocfs2_free_alloc_context(*ac
);
827 * pass it the bitmap lock in lock_bh if you have it.
829 static int ocfs2_local_alloc_new_window(struct ocfs2_super
*osb
,
831 struct ocfs2_alloc_context
*ac
)
834 u32 cluster_off
, cluster_count
;
835 struct ocfs2_dinode
*alloc
= NULL
;
836 struct ocfs2_local_alloc
*la
;
840 alloc
= (struct ocfs2_dinode
*) osb
->local_alloc_bh
->b_data
;
841 la
= OCFS2_LOCAL_ALLOC(alloc
);
843 if (alloc
->id1
.bitmap1
.i_total
)
844 mlog(0, "asking me to alloc a new window over a non-empty "
847 mlog(0, "Allocating %u clusters for a new window.\n",
848 ocfs2_local_alloc_window_bits(osb
));
850 /* Instruct the allocation code to try the most recently used
851 * cluster group. We'll re-record the group used this pass
853 ac
->ac_last_group
= osb
->la_last_gd
;
855 /* we used the generic suballoc reserve function, but we set
856 * everything up nicely, so there's no reason why we can't use
857 * the more specific cluster api to claim bits. */
858 status
= ocfs2_claim_clusters(osb
, handle
, ac
,
859 ocfs2_local_alloc_window_bits(osb
),
860 &cluster_off
, &cluster_count
);
862 if (status
!= -ENOSPC
)
867 osb
->la_last_gd
= ac
->ac_last_group
;
869 la
->la_bm_off
= cpu_to_le32(cluster_off
);
870 alloc
->id1
.bitmap1
.i_total
= cpu_to_le32(cluster_count
);
871 /* just in case... In the future when we find space ourselves,
872 * we don't have to get all contiguous -- but we'll have to
873 * set all previously used bits in bitmap and update
874 * la_bits_set before setting the bits in the main bitmap. */
875 alloc
->id1
.bitmap1
.i_used
= 0;
876 memset(OCFS2_LOCAL_ALLOC(alloc
)->la_bitmap
, 0,
877 le16_to_cpu(la
->la_size
));
879 mlog(0, "New window allocated:\n");
880 mlog(0, "window la_bm_off = %u\n",
881 OCFS2_LOCAL_ALLOC(alloc
)->la_bm_off
);
882 mlog(0, "window bits = %u\n", le32_to_cpu(alloc
->id1
.bitmap1
.i_total
));
889 /* Note that we do *NOT* lock the local alloc inode here as
890 * it's been locked already for us. */
891 static int ocfs2_local_alloc_slide_window(struct ocfs2_super
*osb
,
892 struct inode
*local_alloc_inode
)
895 struct buffer_head
*main_bm_bh
= NULL
;
896 struct inode
*main_bm_inode
= NULL
;
897 handle_t
*handle
= NULL
;
898 struct ocfs2_dinode
*alloc
;
899 struct ocfs2_dinode
*alloc_copy
= NULL
;
900 struct ocfs2_alloc_context
*ac
= NULL
;
904 /* This will lock the main bitmap for us. */
905 status
= ocfs2_local_alloc_reserve_for_window(osb
,
910 if (status
!= -ENOSPC
)
915 handle
= ocfs2_start_trans(osb
, OCFS2_WINDOW_MOVE_CREDITS
);
916 if (IS_ERR(handle
)) {
917 status
= PTR_ERR(handle
);
923 alloc
= (struct ocfs2_dinode
*) osb
->local_alloc_bh
->b_data
;
925 /* We want to clear the local alloc before doing anything
926 * else, so that if we error later during this operation,
927 * local alloc shutdown won't try to double free main bitmap
928 * bits. Make a copy so the sync function knows which bits to
930 alloc_copy
= kmalloc(osb
->local_alloc_bh
->b_size
, GFP_KERNEL
);
936 memcpy(alloc_copy
, alloc
, osb
->local_alloc_bh
->b_size
);
938 status
= ocfs2_journal_access(handle
, local_alloc_inode
,
940 OCFS2_JOURNAL_ACCESS_WRITE
);
946 ocfs2_clear_local_alloc(alloc
);
948 status
= ocfs2_journal_dirty(handle
, osb
->local_alloc_bh
);
954 status
= ocfs2_sync_local_to_main(osb
, handle
, alloc_copy
,
955 main_bm_inode
, main_bm_bh
);
961 status
= ocfs2_local_alloc_new_window(osb
, handle
, ac
);
963 if (status
!= -ENOSPC
)
968 atomic_inc(&osb
->alloc_stats
.moves
);
973 ocfs2_commit_trans(osb
, handle
);
985 ocfs2_free_alloc_context(ac
);