[CRYPTO] twofish: Merge common glue code
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / ocfs2 / suballoc.c
blob8f09f5235e3a68651ca279ab34598f2f22270cc8
1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * suballoc.c
6 * metadata alloc and free
7 * Inspired by ext3 block groups.
9 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public
13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public
22 * License along with this program; if not, write to the
23 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 * Boston, MA 021110-1307, USA.
27 #include <linux/fs.h>
28 #include <linux/types.h>
29 #include <linux/slab.h>
30 #include <linux/highmem.h>
32 #define MLOG_MASK_PREFIX ML_DISK_ALLOC
33 #include <cluster/masklog.h>
35 #include "ocfs2.h"
37 #include "alloc.h"
38 #include "dlmglue.h"
39 #include "inode.h"
40 #include "journal.h"
41 #include "localalloc.h"
42 #include "suballoc.h"
43 #include "super.h"
44 #include "sysfile.h"
45 #include "uptodate.h"
47 #include "buffer_head_io.h"
49 static inline void ocfs2_debug_bg(struct ocfs2_group_desc *bg);
50 static inline void ocfs2_debug_suballoc_inode(struct ocfs2_dinode *fe);
51 static inline u16 ocfs2_find_victim_chain(struct ocfs2_chain_list *cl);
52 static int ocfs2_block_group_fill(handle_t *handle,
53 struct inode *alloc_inode,
54 struct buffer_head *bg_bh,
55 u64 group_blkno,
56 u16 my_chain,
57 struct ocfs2_chain_list *cl);
58 static int ocfs2_block_group_alloc(struct ocfs2_super *osb,
59 struct inode *alloc_inode,
60 struct buffer_head *bh);
62 static int ocfs2_cluster_group_search(struct inode *inode,
63 struct buffer_head *group_bh,
64 u32 bits_wanted, u32 min_bits,
65 u16 *bit_off, u16 *bits_found);
66 static int ocfs2_block_group_search(struct inode *inode,
67 struct buffer_head *group_bh,
68 u32 bits_wanted, u32 min_bits,
69 u16 *bit_off, u16 *bits_found);
70 static int ocfs2_claim_suballoc_bits(struct ocfs2_super *osb,
71 struct ocfs2_alloc_context *ac,
72 handle_t *handle,
73 u32 bits_wanted,
74 u32 min_bits,
75 u16 *bit_off,
76 unsigned int *num_bits,
77 u64 *bg_blkno);
78 static int ocfs2_test_bg_bit_allocatable(struct buffer_head *bg_bh,
79 int nr);
80 static inline int ocfs2_block_group_set_bits(handle_t *handle,
81 struct inode *alloc_inode,
82 struct ocfs2_group_desc *bg,
83 struct buffer_head *group_bh,
84 unsigned int bit_off,
85 unsigned int num_bits);
86 static inline int ocfs2_block_group_clear_bits(handle_t *handle,
87 struct inode *alloc_inode,
88 struct ocfs2_group_desc *bg,
89 struct buffer_head *group_bh,
90 unsigned int bit_off,
91 unsigned int num_bits);
93 static int ocfs2_relink_block_group(handle_t *handle,
94 struct inode *alloc_inode,
95 struct buffer_head *fe_bh,
96 struct buffer_head *bg_bh,
97 struct buffer_head *prev_bg_bh,
98 u16 chain);
99 static inline int ocfs2_block_group_reasonably_empty(struct ocfs2_group_desc *bg,
100 u32 wanted);
101 static inline u32 ocfs2_desc_bitmap_to_cluster_off(struct inode *inode,
102 u64 bg_blkno,
103 u16 bg_bit_off);
104 static inline u64 ocfs2_which_cluster_group(struct inode *inode,
105 u32 cluster);
106 static inline void ocfs2_block_to_cluster_group(struct inode *inode,
107 u64 data_blkno,
108 u64 *bg_blkno,
109 u16 *bg_bit_off);
111 void ocfs2_free_alloc_context(struct ocfs2_alloc_context *ac)
113 struct inode *inode = ac->ac_inode;
115 if (inode) {
116 if (ac->ac_which != OCFS2_AC_USE_LOCAL)
117 ocfs2_meta_unlock(inode, 1);
119 mutex_unlock(&inode->i_mutex);
121 iput(inode);
123 if (ac->ac_bh)
124 brelse(ac->ac_bh);
125 kfree(ac);
128 static u32 ocfs2_bits_per_group(struct ocfs2_chain_list *cl)
130 return (u32)le16_to_cpu(cl->cl_cpg) * (u32)le16_to_cpu(cl->cl_bpc);
133 /* somewhat more expensive than our other checks, so use sparingly. */
134 static int ocfs2_check_group_descriptor(struct super_block *sb,
135 struct ocfs2_dinode *di,
136 struct ocfs2_group_desc *gd)
138 unsigned int max_bits;
140 if (!OCFS2_IS_VALID_GROUP_DESC(gd)) {
141 OCFS2_RO_ON_INVALID_GROUP_DESC(sb, gd);
142 return -EIO;
145 if (di->i_blkno != gd->bg_parent_dinode) {
146 ocfs2_error(sb, "Group descriptor # %llu has bad parent "
147 "pointer (%llu, expected %llu)",
148 (unsigned long long)le64_to_cpu(gd->bg_blkno),
149 (unsigned long long)le64_to_cpu(gd->bg_parent_dinode),
150 (unsigned long long)le64_to_cpu(di->i_blkno));
151 return -EIO;
154 max_bits = le16_to_cpu(di->id2.i_chain.cl_cpg) * le16_to_cpu(di->id2.i_chain.cl_bpc);
155 if (le16_to_cpu(gd->bg_bits) > max_bits) {
156 ocfs2_error(sb, "Group descriptor # %llu has bit count of %u",
157 (unsigned long long)le64_to_cpu(gd->bg_blkno),
158 le16_to_cpu(gd->bg_bits));
159 return -EIO;
162 if (le16_to_cpu(gd->bg_chain) >=
163 le16_to_cpu(di->id2.i_chain.cl_next_free_rec)) {
164 ocfs2_error(sb, "Group descriptor # %llu has bad chain %u",
165 (unsigned long long)le64_to_cpu(gd->bg_blkno),
166 le16_to_cpu(gd->bg_chain));
167 return -EIO;
170 if (le16_to_cpu(gd->bg_free_bits_count) > le16_to_cpu(gd->bg_bits)) {
171 ocfs2_error(sb, "Group descriptor # %llu has bit count %u but "
172 "claims that %u are free",
173 (unsigned long long)le64_to_cpu(gd->bg_blkno),
174 le16_to_cpu(gd->bg_bits),
175 le16_to_cpu(gd->bg_free_bits_count));
176 return -EIO;
179 if (le16_to_cpu(gd->bg_bits) > (8 * le16_to_cpu(gd->bg_size))) {
180 ocfs2_error(sb, "Group descriptor # %llu has bit count %u but "
181 "max bitmap bits of %u",
182 (unsigned long long)le64_to_cpu(gd->bg_blkno),
183 le16_to_cpu(gd->bg_bits),
184 8 * le16_to_cpu(gd->bg_size));
185 return -EIO;
188 return 0;
191 static int ocfs2_block_group_fill(handle_t *handle,
192 struct inode *alloc_inode,
193 struct buffer_head *bg_bh,
194 u64 group_blkno,
195 u16 my_chain,
196 struct ocfs2_chain_list *cl)
198 int status = 0;
199 struct ocfs2_group_desc *bg = (struct ocfs2_group_desc *) bg_bh->b_data;
200 struct super_block * sb = alloc_inode->i_sb;
202 mlog_entry_void();
204 if (((unsigned long long) bg_bh->b_blocknr) != group_blkno) {
205 ocfs2_error(alloc_inode->i_sb, "group block (%llu) != "
206 "b_blocknr (%llu)",
207 (unsigned long long)group_blkno,
208 (unsigned long long) bg_bh->b_blocknr);
209 status = -EIO;
210 goto bail;
213 status = ocfs2_journal_access(handle,
214 alloc_inode,
215 bg_bh,
216 OCFS2_JOURNAL_ACCESS_CREATE);
217 if (status < 0) {
218 mlog_errno(status);
219 goto bail;
222 memset(bg, 0, sb->s_blocksize);
223 strcpy(bg->bg_signature, OCFS2_GROUP_DESC_SIGNATURE);
224 bg->bg_generation = cpu_to_le32(OCFS2_SB(sb)->fs_generation);
225 bg->bg_size = cpu_to_le16(ocfs2_group_bitmap_size(sb));
226 bg->bg_bits = cpu_to_le16(ocfs2_bits_per_group(cl));
227 bg->bg_chain = cpu_to_le16(my_chain);
228 bg->bg_next_group = cl->cl_recs[my_chain].c_blkno;
229 bg->bg_parent_dinode = cpu_to_le64(OCFS2_I(alloc_inode)->ip_blkno);
230 bg->bg_blkno = cpu_to_le64(group_blkno);
231 /* set the 1st bit in the bitmap to account for the descriptor block */
232 ocfs2_set_bit(0, (unsigned long *)bg->bg_bitmap);
233 bg->bg_free_bits_count = cpu_to_le16(le16_to_cpu(bg->bg_bits) - 1);
235 status = ocfs2_journal_dirty(handle, bg_bh);
236 if (status < 0)
237 mlog_errno(status);
239 /* There is no need to zero out or otherwise initialize the
240 * other blocks in a group - All valid FS metadata in a block
241 * group stores the superblock fs_generation value at
242 * allocation time. */
244 bail:
245 mlog_exit(status);
246 return status;
249 static inline u16 ocfs2_find_smallest_chain(struct ocfs2_chain_list *cl)
251 u16 curr, best;
253 best = curr = 0;
254 while (curr < le16_to_cpu(cl->cl_count)) {
255 if (le32_to_cpu(cl->cl_recs[best].c_total) >
256 le32_to_cpu(cl->cl_recs[curr].c_total))
257 best = curr;
258 curr++;
260 return best;
264 * We expect the block group allocator to already be locked.
266 static int ocfs2_block_group_alloc(struct ocfs2_super *osb,
267 struct inode *alloc_inode,
268 struct buffer_head *bh)
270 int status, credits;
271 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) bh->b_data;
272 struct ocfs2_chain_list *cl;
273 struct ocfs2_alloc_context *ac = NULL;
274 handle_t *handle = NULL;
275 u32 bit_off, num_bits;
276 u16 alloc_rec;
277 u64 bg_blkno;
278 struct buffer_head *bg_bh = NULL;
279 struct ocfs2_group_desc *bg;
281 BUG_ON(ocfs2_is_cluster_bitmap(alloc_inode));
283 mlog_entry_void();
285 cl = &fe->id2.i_chain;
286 status = ocfs2_reserve_clusters(osb,
287 le16_to_cpu(cl->cl_cpg),
288 &ac);
289 if (status < 0) {
290 if (status != -ENOSPC)
291 mlog_errno(status);
292 goto bail;
295 credits = ocfs2_calc_group_alloc_credits(osb->sb,
296 le16_to_cpu(cl->cl_cpg));
297 handle = ocfs2_start_trans(osb, credits);
298 if (IS_ERR(handle)) {
299 status = PTR_ERR(handle);
300 handle = NULL;
301 mlog_errno(status);
302 goto bail;
305 status = ocfs2_claim_clusters(osb,
306 handle,
308 le16_to_cpu(cl->cl_cpg),
309 &bit_off,
310 &num_bits);
311 if (status < 0) {
312 if (status != -ENOSPC)
313 mlog_errno(status);
314 goto bail;
317 alloc_rec = ocfs2_find_smallest_chain(cl);
319 /* setup the group */
320 bg_blkno = ocfs2_clusters_to_blocks(osb->sb, bit_off);
321 mlog(0, "new descriptor, record %u, at block %llu\n",
322 alloc_rec, (unsigned long long)bg_blkno);
324 bg_bh = sb_getblk(osb->sb, bg_blkno);
325 if (!bg_bh) {
326 status = -EIO;
327 mlog_errno(status);
328 goto bail;
330 ocfs2_set_new_buffer_uptodate(alloc_inode, bg_bh);
332 status = ocfs2_block_group_fill(handle,
333 alloc_inode,
334 bg_bh,
335 bg_blkno,
336 alloc_rec,
337 cl);
338 if (status < 0) {
339 mlog_errno(status);
340 goto bail;
343 bg = (struct ocfs2_group_desc *) bg_bh->b_data;
345 status = ocfs2_journal_access(handle, alloc_inode,
346 bh, OCFS2_JOURNAL_ACCESS_WRITE);
347 if (status < 0) {
348 mlog_errno(status);
349 goto bail;
352 le32_add_cpu(&cl->cl_recs[alloc_rec].c_free,
353 le16_to_cpu(bg->bg_free_bits_count));
354 le32_add_cpu(&cl->cl_recs[alloc_rec].c_total, le16_to_cpu(bg->bg_bits));
355 cl->cl_recs[alloc_rec].c_blkno = cpu_to_le64(bg_blkno);
356 if (le16_to_cpu(cl->cl_next_free_rec) < le16_to_cpu(cl->cl_count))
357 le16_add_cpu(&cl->cl_next_free_rec, 1);
359 le32_add_cpu(&fe->id1.bitmap1.i_used, le16_to_cpu(bg->bg_bits) -
360 le16_to_cpu(bg->bg_free_bits_count));
361 le32_add_cpu(&fe->id1.bitmap1.i_total, le16_to_cpu(bg->bg_bits));
362 le32_add_cpu(&fe->i_clusters, le16_to_cpu(cl->cl_cpg));
364 status = ocfs2_journal_dirty(handle, bh);
365 if (status < 0) {
366 mlog_errno(status);
367 goto bail;
370 spin_lock(&OCFS2_I(alloc_inode)->ip_lock);
371 OCFS2_I(alloc_inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
372 fe->i_size = cpu_to_le64(ocfs2_clusters_to_bytes(alloc_inode->i_sb,
373 le32_to_cpu(fe->i_clusters)));
374 spin_unlock(&OCFS2_I(alloc_inode)->ip_lock);
375 i_size_write(alloc_inode, le64_to_cpu(fe->i_size));
376 alloc_inode->i_blocks = ocfs2_inode_sector_count(alloc_inode);
378 status = 0;
379 bail:
380 if (handle)
381 ocfs2_commit_trans(osb, handle);
383 if (ac)
384 ocfs2_free_alloc_context(ac);
386 if (bg_bh)
387 brelse(bg_bh);
389 mlog_exit(status);
390 return status;
393 static int ocfs2_reserve_suballoc_bits(struct ocfs2_super *osb,
394 struct ocfs2_alloc_context *ac,
395 int type,
396 u32 slot)
398 int status;
399 u32 bits_wanted = ac->ac_bits_wanted;
400 struct inode *alloc_inode;
401 struct buffer_head *bh = NULL;
402 struct ocfs2_dinode *fe;
403 u32 free_bits;
405 mlog_entry_void();
407 alloc_inode = ocfs2_get_system_file_inode(osb, type, slot);
408 if (!alloc_inode) {
409 mlog_errno(-EINVAL);
410 return -EINVAL;
413 mutex_lock(&alloc_inode->i_mutex);
415 status = ocfs2_meta_lock(alloc_inode, &bh, 1);
416 if (status < 0) {
417 mutex_unlock(&alloc_inode->i_mutex);
418 iput(alloc_inode);
420 mlog_errno(status);
421 return status;
424 ac->ac_inode = alloc_inode;
426 fe = (struct ocfs2_dinode *) bh->b_data;
427 if (!OCFS2_IS_VALID_DINODE(fe)) {
428 OCFS2_RO_ON_INVALID_DINODE(alloc_inode->i_sb, fe);
429 status = -EIO;
430 goto bail;
432 if (!(fe->i_flags & cpu_to_le32(OCFS2_CHAIN_FL))) {
433 ocfs2_error(alloc_inode->i_sb, "Invalid chain allocator %llu",
434 (unsigned long long)le64_to_cpu(fe->i_blkno));
435 status = -EIO;
436 goto bail;
439 free_bits = le32_to_cpu(fe->id1.bitmap1.i_total) -
440 le32_to_cpu(fe->id1.bitmap1.i_used);
442 if (bits_wanted > free_bits) {
443 /* cluster bitmap never grows */
444 if (ocfs2_is_cluster_bitmap(alloc_inode)) {
445 mlog(0, "Disk Full: wanted=%u, free_bits=%u\n",
446 bits_wanted, free_bits);
447 status = -ENOSPC;
448 goto bail;
451 status = ocfs2_block_group_alloc(osb, alloc_inode, bh);
452 if (status < 0) {
453 if (status != -ENOSPC)
454 mlog_errno(status);
455 goto bail;
457 atomic_inc(&osb->alloc_stats.bg_extends);
459 /* You should never ask for this much metadata */
460 BUG_ON(bits_wanted >
461 (le32_to_cpu(fe->id1.bitmap1.i_total)
462 - le32_to_cpu(fe->id1.bitmap1.i_used)));
465 get_bh(bh);
466 ac->ac_bh = bh;
467 bail:
468 if (bh)
469 brelse(bh);
471 mlog_exit(status);
472 return status;
475 int ocfs2_reserve_new_metadata(struct ocfs2_super *osb,
476 struct ocfs2_dinode *fe,
477 struct ocfs2_alloc_context **ac)
479 int status;
480 u32 slot;
482 *ac = kzalloc(sizeof(struct ocfs2_alloc_context), GFP_KERNEL);
483 if (!(*ac)) {
484 status = -ENOMEM;
485 mlog_errno(status);
486 goto bail;
489 (*ac)->ac_bits_wanted = ocfs2_extend_meta_needed(fe);
490 (*ac)->ac_which = OCFS2_AC_USE_META;
491 slot = osb->slot_num;
492 (*ac)->ac_group_search = ocfs2_block_group_search;
494 status = ocfs2_reserve_suballoc_bits(osb, (*ac),
495 EXTENT_ALLOC_SYSTEM_INODE, slot);
496 if (status < 0) {
497 if (status != -ENOSPC)
498 mlog_errno(status);
499 goto bail;
502 status = 0;
503 bail:
504 if ((status < 0) && *ac) {
505 ocfs2_free_alloc_context(*ac);
506 *ac = NULL;
509 mlog_exit(status);
510 return status;
513 int ocfs2_reserve_new_inode(struct ocfs2_super *osb,
514 struct ocfs2_alloc_context **ac)
516 int status;
518 *ac = kzalloc(sizeof(struct ocfs2_alloc_context), GFP_KERNEL);
519 if (!(*ac)) {
520 status = -ENOMEM;
521 mlog_errno(status);
522 goto bail;
525 (*ac)->ac_bits_wanted = 1;
526 (*ac)->ac_which = OCFS2_AC_USE_INODE;
528 (*ac)->ac_group_search = ocfs2_block_group_search;
530 status = ocfs2_reserve_suballoc_bits(osb, *ac,
531 INODE_ALLOC_SYSTEM_INODE,
532 osb->slot_num);
533 if (status < 0) {
534 if (status != -ENOSPC)
535 mlog_errno(status);
536 goto bail;
539 status = 0;
540 bail:
541 if ((status < 0) && *ac) {
542 ocfs2_free_alloc_context(*ac);
543 *ac = NULL;
546 mlog_exit(status);
547 return status;
550 /* local alloc code has to do the same thing, so rather than do this
551 * twice.. */
552 int ocfs2_reserve_cluster_bitmap_bits(struct ocfs2_super *osb,
553 struct ocfs2_alloc_context *ac)
555 int status;
557 ac->ac_which = OCFS2_AC_USE_MAIN;
558 ac->ac_group_search = ocfs2_cluster_group_search;
560 status = ocfs2_reserve_suballoc_bits(osb, ac,
561 GLOBAL_BITMAP_SYSTEM_INODE,
562 OCFS2_INVALID_SLOT);
563 if (status < 0 && status != -ENOSPC) {
564 mlog_errno(status);
565 goto bail;
568 bail:
569 return status;
572 /* Callers don't need to care which bitmap (local alloc or main) to
573 * use so we figure it out for them, but unfortunately this clutters
574 * things a bit. */
575 int ocfs2_reserve_clusters(struct ocfs2_super *osb,
576 u32 bits_wanted,
577 struct ocfs2_alloc_context **ac)
579 int status;
581 mlog_entry_void();
583 *ac = kzalloc(sizeof(struct ocfs2_alloc_context), GFP_KERNEL);
584 if (!(*ac)) {
585 status = -ENOMEM;
586 mlog_errno(status);
587 goto bail;
590 (*ac)->ac_bits_wanted = bits_wanted;
592 status = -ENOSPC;
593 if (ocfs2_alloc_should_use_local(osb, bits_wanted)) {
594 status = ocfs2_reserve_local_alloc_bits(osb,
595 bits_wanted,
596 *ac);
597 if ((status < 0) && (status != -ENOSPC)) {
598 mlog_errno(status);
599 goto bail;
600 } else if (status == -ENOSPC) {
601 /* reserve_local_bits will return enospc with
602 * the local alloc inode still locked, so we
603 * can change this safely here. */
604 mlog(0, "Disabling local alloc\n");
605 /* We set to OCFS2_LA_DISABLED so that umount
606 * can clean up what's left of the local
607 * allocation */
608 osb->local_alloc_state = OCFS2_LA_DISABLED;
612 if (status == -ENOSPC) {
613 status = ocfs2_reserve_cluster_bitmap_bits(osb, *ac);
614 if (status < 0) {
615 if (status != -ENOSPC)
616 mlog_errno(status);
617 goto bail;
621 status = 0;
622 bail:
623 if ((status < 0) && *ac) {
624 ocfs2_free_alloc_context(*ac);
625 *ac = NULL;
628 mlog_exit(status);
629 return status;
633 * More or less lifted from ext3. I'll leave their description below:
635 * "For ext3 allocations, we must not reuse any blocks which are
636 * allocated in the bitmap buffer's "last committed data" copy. This
637 * prevents deletes from freeing up the page for reuse until we have
638 * committed the delete transaction.
640 * If we didn't do this, then deleting something and reallocating it as
641 * data would allow the old block to be overwritten before the
642 * transaction committed (because we force data to disk before commit).
643 * This would lead to corruption if we crashed between overwriting the
644 * data and committing the delete.
646 * @@@ We may want to make this allocation behaviour conditional on
647 * data-writes at some point, and disable it for metadata allocations or
648 * sync-data inodes."
650 * Note: OCFS2 already does this differently for metadata vs data
651 * allocations, as those bitmaps are seperate and undo access is never
652 * called on a metadata group descriptor.
654 static int ocfs2_test_bg_bit_allocatable(struct buffer_head *bg_bh,
655 int nr)
657 struct ocfs2_group_desc *bg = (struct ocfs2_group_desc *) bg_bh->b_data;
659 if (ocfs2_test_bit(nr, (unsigned long *)bg->bg_bitmap))
660 return 0;
661 if (!buffer_jbd(bg_bh) || !bh2jh(bg_bh)->b_committed_data)
662 return 1;
664 bg = (struct ocfs2_group_desc *) bh2jh(bg_bh)->b_committed_data;
665 return !ocfs2_test_bit(nr, (unsigned long *)bg->bg_bitmap);
668 static int ocfs2_block_group_find_clear_bits(struct ocfs2_super *osb,
669 struct buffer_head *bg_bh,
670 unsigned int bits_wanted,
671 unsigned int total_bits,
672 u16 *bit_off,
673 u16 *bits_found)
675 void *bitmap;
676 u16 best_offset, best_size;
677 int offset, start, found, status = 0;
678 struct ocfs2_group_desc *bg = (struct ocfs2_group_desc *) bg_bh->b_data;
680 if (!OCFS2_IS_VALID_GROUP_DESC(bg)) {
681 OCFS2_RO_ON_INVALID_GROUP_DESC(osb->sb, bg);
682 return -EIO;
685 found = start = best_offset = best_size = 0;
686 bitmap = bg->bg_bitmap;
688 while((offset = ocfs2_find_next_zero_bit(bitmap, total_bits, start)) != -1) {
689 if (offset == total_bits)
690 break;
692 if (!ocfs2_test_bg_bit_allocatable(bg_bh, offset)) {
693 /* We found a zero, but we can't use it as it
694 * hasn't been put to disk yet! */
695 found = 0;
696 start = offset + 1;
697 } else if (offset == start) {
698 /* we found a zero */
699 found++;
700 /* move start to the next bit to test */
701 start++;
702 } else {
703 /* got a zero after some ones */
704 found = 1;
705 start = offset + 1;
707 if (found > best_size) {
708 best_size = found;
709 best_offset = start - found;
711 /* we got everything we needed */
712 if (found == bits_wanted) {
713 /* mlog(0, "Found it all!\n"); */
714 break;
718 /* XXX: I think the first clause is equivalent to the second
719 * - jlbec */
720 if (found == bits_wanted) {
721 *bit_off = start - found;
722 *bits_found = found;
723 } else if (best_size) {
724 *bit_off = best_offset;
725 *bits_found = best_size;
726 } else {
727 status = -ENOSPC;
728 /* No error log here -- see the comment above
729 * ocfs2_test_bg_bit_allocatable */
732 return status;
735 static inline int ocfs2_block_group_set_bits(handle_t *handle,
736 struct inode *alloc_inode,
737 struct ocfs2_group_desc *bg,
738 struct buffer_head *group_bh,
739 unsigned int bit_off,
740 unsigned int num_bits)
742 int status;
743 void *bitmap = bg->bg_bitmap;
744 int journal_type = OCFS2_JOURNAL_ACCESS_WRITE;
746 mlog_entry_void();
748 if (!OCFS2_IS_VALID_GROUP_DESC(bg)) {
749 OCFS2_RO_ON_INVALID_GROUP_DESC(alloc_inode->i_sb, bg);
750 status = -EIO;
751 goto bail;
753 BUG_ON(le16_to_cpu(bg->bg_free_bits_count) < num_bits);
755 mlog(0, "block_group_set_bits: off = %u, num = %u\n", bit_off,
756 num_bits);
758 if (ocfs2_is_cluster_bitmap(alloc_inode))
759 journal_type = OCFS2_JOURNAL_ACCESS_UNDO;
761 status = ocfs2_journal_access(handle,
762 alloc_inode,
763 group_bh,
764 journal_type);
765 if (status < 0) {
766 mlog_errno(status);
767 goto bail;
770 le16_add_cpu(&bg->bg_free_bits_count, -num_bits);
772 while(num_bits--)
773 ocfs2_set_bit(bit_off++, bitmap);
775 status = ocfs2_journal_dirty(handle,
776 group_bh);
777 if (status < 0) {
778 mlog_errno(status);
779 goto bail;
782 bail:
783 mlog_exit(status);
784 return status;
787 /* find the one with the most empty bits */
788 static inline u16 ocfs2_find_victim_chain(struct ocfs2_chain_list *cl)
790 u16 curr, best;
792 BUG_ON(!cl->cl_next_free_rec);
794 best = curr = 0;
795 while (curr < le16_to_cpu(cl->cl_next_free_rec)) {
796 if (le32_to_cpu(cl->cl_recs[curr].c_free) >
797 le32_to_cpu(cl->cl_recs[best].c_free))
798 best = curr;
799 curr++;
802 BUG_ON(best >= le16_to_cpu(cl->cl_next_free_rec));
803 return best;
806 static int ocfs2_relink_block_group(handle_t *handle,
807 struct inode *alloc_inode,
808 struct buffer_head *fe_bh,
809 struct buffer_head *bg_bh,
810 struct buffer_head *prev_bg_bh,
811 u16 chain)
813 int status;
814 /* there is a really tiny chance the journal calls could fail,
815 * but we wouldn't want inconsistent blocks in *any* case. */
816 u64 fe_ptr, bg_ptr, prev_bg_ptr;
817 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) fe_bh->b_data;
818 struct ocfs2_group_desc *bg = (struct ocfs2_group_desc *) bg_bh->b_data;
819 struct ocfs2_group_desc *prev_bg = (struct ocfs2_group_desc *) prev_bg_bh->b_data;
821 if (!OCFS2_IS_VALID_DINODE(fe)) {
822 OCFS2_RO_ON_INVALID_DINODE(alloc_inode->i_sb, fe);
823 status = -EIO;
824 goto out;
826 if (!OCFS2_IS_VALID_GROUP_DESC(bg)) {
827 OCFS2_RO_ON_INVALID_GROUP_DESC(alloc_inode->i_sb, bg);
828 status = -EIO;
829 goto out;
831 if (!OCFS2_IS_VALID_GROUP_DESC(prev_bg)) {
832 OCFS2_RO_ON_INVALID_GROUP_DESC(alloc_inode->i_sb, prev_bg);
833 status = -EIO;
834 goto out;
837 mlog(0, "Suballoc %llu, chain %u, move group %llu to top, prev = %llu\n",
838 (unsigned long long)le64_to_cpu(fe->i_blkno), chain,
839 (unsigned long long)le64_to_cpu(bg->bg_blkno),
840 (unsigned long long)le64_to_cpu(prev_bg->bg_blkno));
842 fe_ptr = le64_to_cpu(fe->id2.i_chain.cl_recs[chain].c_blkno);
843 bg_ptr = le64_to_cpu(bg->bg_next_group);
844 prev_bg_ptr = le64_to_cpu(prev_bg->bg_next_group);
846 status = ocfs2_journal_access(handle, alloc_inode, prev_bg_bh,
847 OCFS2_JOURNAL_ACCESS_WRITE);
848 if (status < 0) {
849 mlog_errno(status);
850 goto out_rollback;
853 prev_bg->bg_next_group = bg->bg_next_group;
855 status = ocfs2_journal_dirty(handle, prev_bg_bh);
856 if (status < 0) {
857 mlog_errno(status);
858 goto out_rollback;
861 status = ocfs2_journal_access(handle, alloc_inode, bg_bh,
862 OCFS2_JOURNAL_ACCESS_WRITE);
863 if (status < 0) {
864 mlog_errno(status);
865 goto out_rollback;
868 bg->bg_next_group = fe->id2.i_chain.cl_recs[chain].c_blkno;
870 status = ocfs2_journal_dirty(handle, bg_bh);
871 if (status < 0) {
872 mlog_errno(status);
873 goto out_rollback;
876 status = ocfs2_journal_access(handle, alloc_inode, fe_bh,
877 OCFS2_JOURNAL_ACCESS_WRITE);
878 if (status < 0) {
879 mlog_errno(status);
880 goto out_rollback;
883 fe->id2.i_chain.cl_recs[chain].c_blkno = bg->bg_blkno;
885 status = ocfs2_journal_dirty(handle, fe_bh);
886 if (status < 0) {
887 mlog_errno(status);
888 goto out_rollback;
891 status = 0;
892 out_rollback:
893 if (status < 0) {
894 fe->id2.i_chain.cl_recs[chain].c_blkno = cpu_to_le64(fe_ptr);
895 bg->bg_next_group = cpu_to_le64(bg_ptr);
896 prev_bg->bg_next_group = cpu_to_le64(prev_bg_ptr);
898 out:
899 mlog_exit(status);
900 return status;
903 static inline int ocfs2_block_group_reasonably_empty(struct ocfs2_group_desc *bg,
904 u32 wanted)
906 return le16_to_cpu(bg->bg_free_bits_count) > wanted;
909 /* return 0 on success, -ENOSPC to keep searching and any other < 0
910 * value on error. */
911 static int ocfs2_cluster_group_search(struct inode *inode,
912 struct buffer_head *group_bh,
913 u32 bits_wanted, u32 min_bits,
914 u16 *bit_off, u16 *bits_found)
916 int search = -ENOSPC;
917 int ret;
918 struct ocfs2_group_desc *gd = (struct ocfs2_group_desc *) group_bh->b_data;
919 u16 tmp_off, tmp_found;
920 unsigned int max_bits, gd_cluster_off;
922 BUG_ON(!ocfs2_is_cluster_bitmap(inode));
924 if (gd->bg_free_bits_count) {
925 max_bits = le16_to_cpu(gd->bg_bits);
927 /* Tail groups in cluster bitmaps which aren't cpg
928 * aligned are prone to partial extention by a failed
929 * fs resize. If the file system resize never got to
930 * update the dinode cluster count, then we don't want
931 * to trust any clusters past it, regardless of what
932 * the group descriptor says. */
933 gd_cluster_off = ocfs2_blocks_to_clusters(inode->i_sb,
934 le64_to_cpu(gd->bg_blkno));
935 if ((gd_cluster_off + max_bits) >
936 OCFS2_I(inode)->ip_clusters) {
937 max_bits = OCFS2_I(inode)->ip_clusters - gd_cluster_off;
938 mlog(0, "Desc %llu, bg_bits %u, clusters %u, use %u\n",
939 (unsigned long long)le64_to_cpu(gd->bg_blkno),
940 le16_to_cpu(gd->bg_bits),
941 OCFS2_I(inode)->ip_clusters, max_bits);
944 ret = ocfs2_block_group_find_clear_bits(OCFS2_SB(inode->i_sb),
945 group_bh, bits_wanted,
946 max_bits,
947 &tmp_off, &tmp_found);
948 if (ret)
949 return ret;
951 /* ocfs2_block_group_find_clear_bits() might
952 * return success, but we still want to return
953 * -ENOSPC unless it found the minimum number
954 * of bits. */
955 if (min_bits <= tmp_found) {
956 *bit_off = tmp_off;
957 *bits_found = tmp_found;
958 search = 0; /* success */
962 return search;
965 static int ocfs2_block_group_search(struct inode *inode,
966 struct buffer_head *group_bh,
967 u32 bits_wanted, u32 min_bits,
968 u16 *bit_off, u16 *bits_found)
970 int ret = -ENOSPC;
971 struct ocfs2_group_desc *bg = (struct ocfs2_group_desc *) group_bh->b_data;
973 BUG_ON(min_bits != 1);
974 BUG_ON(ocfs2_is_cluster_bitmap(inode));
976 if (bg->bg_free_bits_count)
977 ret = ocfs2_block_group_find_clear_bits(OCFS2_SB(inode->i_sb),
978 group_bh, bits_wanted,
979 le16_to_cpu(bg->bg_bits),
980 bit_off, bits_found);
982 return ret;
985 static int ocfs2_alloc_dinode_update_counts(struct inode *inode,
986 handle_t *handle,
987 struct buffer_head *di_bh,
988 u32 num_bits,
989 u16 chain)
991 int ret;
992 u32 tmp_used;
993 struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
994 struct ocfs2_chain_list *cl = (struct ocfs2_chain_list *) &di->id2.i_chain;
996 ret = ocfs2_journal_access(handle, inode, di_bh,
997 OCFS2_JOURNAL_ACCESS_WRITE);
998 if (ret < 0) {
999 mlog_errno(ret);
1000 goto out;
1003 tmp_used = le32_to_cpu(di->id1.bitmap1.i_used);
1004 di->id1.bitmap1.i_used = cpu_to_le32(num_bits + tmp_used);
1005 le32_add_cpu(&cl->cl_recs[chain].c_free, -num_bits);
1007 ret = ocfs2_journal_dirty(handle, di_bh);
1008 if (ret < 0)
1009 mlog_errno(ret);
1011 out:
1012 return ret;
1015 static int ocfs2_search_one_group(struct ocfs2_alloc_context *ac,
1016 handle_t *handle,
1017 u32 bits_wanted,
1018 u32 min_bits,
1019 u16 *bit_off,
1020 unsigned int *num_bits,
1021 u64 gd_blkno,
1022 u16 *bits_left)
1024 int ret;
1025 u16 found;
1026 struct buffer_head *group_bh = NULL;
1027 struct ocfs2_group_desc *gd;
1028 struct inode *alloc_inode = ac->ac_inode;
1030 ret = ocfs2_read_block(OCFS2_SB(alloc_inode->i_sb), gd_blkno,
1031 &group_bh, OCFS2_BH_CACHED, alloc_inode);
1032 if (ret < 0) {
1033 mlog_errno(ret);
1034 return ret;
1037 gd = (struct ocfs2_group_desc *) group_bh->b_data;
1038 if (!OCFS2_IS_VALID_GROUP_DESC(gd)) {
1039 OCFS2_RO_ON_INVALID_GROUP_DESC(alloc_inode->i_sb, gd);
1040 ret = -EIO;
1041 goto out;
1044 ret = ac->ac_group_search(alloc_inode, group_bh, bits_wanted, min_bits,
1045 bit_off, &found);
1046 if (ret < 0) {
1047 if (ret != -ENOSPC)
1048 mlog_errno(ret);
1049 goto out;
1052 *num_bits = found;
1054 ret = ocfs2_alloc_dinode_update_counts(alloc_inode, handle, ac->ac_bh,
1055 *num_bits,
1056 le16_to_cpu(gd->bg_chain));
1057 if (ret < 0) {
1058 mlog_errno(ret);
1059 goto out;
1062 ret = ocfs2_block_group_set_bits(handle, alloc_inode, gd, group_bh,
1063 *bit_off, *num_bits);
1064 if (ret < 0)
1065 mlog_errno(ret);
1067 *bits_left = le16_to_cpu(gd->bg_free_bits_count);
1069 out:
1070 brelse(group_bh);
1072 return ret;
1075 static int ocfs2_search_chain(struct ocfs2_alloc_context *ac,
1076 handle_t *handle,
1077 u32 bits_wanted,
1078 u32 min_bits,
1079 u16 *bit_off,
1080 unsigned int *num_bits,
1081 u64 *bg_blkno,
1082 u16 *bits_left)
1084 int status;
1085 u16 chain, tmp_bits;
1086 u32 tmp_used;
1087 u64 next_group;
1088 struct inode *alloc_inode = ac->ac_inode;
1089 struct buffer_head *group_bh = NULL;
1090 struct buffer_head *prev_group_bh = NULL;
1091 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) ac->ac_bh->b_data;
1092 struct ocfs2_chain_list *cl = (struct ocfs2_chain_list *) &fe->id2.i_chain;
1093 struct ocfs2_group_desc *bg;
1095 chain = ac->ac_chain;
1096 mlog(0, "trying to alloc %u bits from chain %u, inode %llu\n",
1097 bits_wanted, chain,
1098 (unsigned long long)OCFS2_I(alloc_inode)->ip_blkno);
1100 status = ocfs2_read_block(OCFS2_SB(alloc_inode->i_sb),
1101 le64_to_cpu(cl->cl_recs[chain].c_blkno),
1102 &group_bh, OCFS2_BH_CACHED, alloc_inode);
1103 if (status < 0) {
1104 mlog_errno(status);
1105 goto bail;
1107 bg = (struct ocfs2_group_desc *) group_bh->b_data;
1108 status = ocfs2_check_group_descriptor(alloc_inode->i_sb, fe, bg);
1109 if (status) {
1110 mlog_errno(status);
1111 goto bail;
1114 status = -ENOSPC;
1115 /* for now, the chain search is a bit simplistic. We just use
1116 * the 1st group with any empty bits. */
1117 while ((status = ac->ac_group_search(alloc_inode, group_bh,
1118 bits_wanted, min_bits, bit_off,
1119 &tmp_bits)) == -ENOSPC) {
1120 if (!bg->bg_next_group)
1121 break;
1123 if (prev_group_bh) {
1124 brelse(prev_group_bh);
1125 prev_group_bh = NULL;
1127 next_group = le64_to_cpu(bg->bg_next_group);
1128 prev_group_bh = group_bh;
1129 group_bh = NULL;
1130 status = ocfs2_read_block(OCFS2_SB(alloc_inode->i_sb),
1131 next_group, &group_bh,
1132 OCFS2_BH_CACHED, alloc_inode);
1133 if (status < 0) {
1134 mlog_errno(status);
1135 goto bail;
1137 bg = (struct ocfs2_group_desc *) group_bh->b_data;
1138 status = ocfs2_check_group_descriptor(alloc_inode->i_sb, fe, bg);
1139 if (status) {
1140 mlog_errno(status);
1141 goto bail;
1144 if (status < 0) {
1145 if (status != -ENOSPC)
1146 mlog_errno(status);
1147 goto bail;
1150 mlog(0, "alloc succeeds: we give %u bits from block group %llu\n",
1151 tmp_bits, (unsigned long long)le64_to_cpu(bg->bg_blkno));
1153 *num_bits = tmp_bits;
1155 BUG_ON(*num_bits == 0);
1158 * Keep track of previous block descriptor read. When
1159 * we find a target, if we have read more than X
1160 * number of descriptors, and the target is reasonably
1161 * empty, relink him to top of his chain.
1163 * We've read 0 extra blocks and only send one more to
1164 * the transaction, yet the next guy to search has a
1165 * much easier time.
1167 * Do this *after* figuring out how many bits we're taking out
1168 * of our target group.
1170 if (ac->ac_allow_chain_relink &&
1171 (prev_group_bh) &&
1172 (ocfs2_block_group_reasonably_empty(bg, *num_bits))) {
1173 status = ocfs2_relink_block_group(handle, alloc_inode,
1174 ac->ac_bh, group_bh,
1175 prev_group_bh, chain);
1176 if (status < 0) {
1177 mlog_errno(status);
1178 goto bail;
1182 /* Ok, claim our bits now: set the info on dinode, chainlist
1183 * and then the group */
1184 status = ocfs2_journal_access(handle,
1185 alloc_inode,
1186 ac->ac_bh,
1187 OCFS2_JOURNAL_ACCESS_WRITE);
1188 if (status < 0) {
1189 mlog_errno(status);
1190 goto bail;
1193 tmp_used = le32_to_cpu(fe->id1.bitmap1.i_used);
1194 fe->id1.bitmap1.i_used = cpu_to_le32(*num_bits + tmp_used);
1195 le32_add_cpu(&cl->cl_recs[chain].c_free, -(*num_bits));
1197 status = ocfs2_journal_dirty(handle,
1198 ac->ac_bh);
1199 if (status < 0) {
1200 mlog_errno(status);
1201 goto bail;
1204 status = ocfs2_block_group_set_bits(handle,
1205 alloc_inode,
1207 group_bh,
1208 *bit_off,
1209 *num_bits);
1210 if (status < 0) {
1211 mlog_errno(status);
1212 goto bail;
1215 mlog(0, "Allocated %u bits from suballocator %llu\n", *num_bits,
1216 (unsigned long long)le64_to_cpu(fe->i_blkno));
1218 *bg_blkno = le64_to_cpu(bg->bg_blkno);
1219 *bits_left = le16_to_cpu(bg->bg_free_bits_count);
1220 bail:
1221 if (group_bh)
1222 brelse(group_bh);
1223 if (prev_group_bh)
1224 brelse(prev_group_bh);
1226 mlog_exit(status);
1227 return status;
1230 /* will give out up to bits_wanted contiguous bits. */
1231 static int ocfs2_claim_suballoc_bits(struct ocfs2_super *osb,
1232 struct ocfs2_alloc_context *ac,
1233 handle_t *handle,
1234 u32 bits_wanted,
1235 u32 min_bits,
1236 u16 *bit_off,
1237 unsigned int *num_bits,
1238 u64 *bg_blkno)
1240 int status;
1241 u16 victim, i;
1242 u16 bits_left = 0;
1243 u64 hint_blkno = ac->ac_last_group;
1244 struct ocfs2_chain_list *cl;
1245 struct ocfs2_dinode *fe;
1247 mlog_entry_void();
1249 BUG_ON(ac->ac_bits_given >= ac->ac_bits_wanted);
1250 BUG_ON(bits_wanted > (ac->ac_bits_wanted - ac->ac_bits_given));
1251 BUG_ON(!ac->ac_bh);
1253 fe = (struct ocfs2_dinode *) ac->ac_bh->b_data;
1254 if (!OCFS2_IS_VALID_DINODE(fe)) {
1255 OCFS2_RO_ON_INVALID_DINODE(osb->sb, fe);
1256 status = -EIO;
1257 goto bail;
1259 if (le32_to_cpu(fe->id1.bitmap1.i_used) >=
1260 le32_to_cpu(fe->id1.bitmap1.i_total)) {
1261 ocfs2_error(osb->sb, "Chain allocator dinode %llu has %u used "
1262 "bits but only %u total.",
1263 (unsigned long long)le64_to_cpu(fe->i_blkno),
1264 le32_to_cpu(fe->id1.bitmap1.i_used),
1265 le32_to_cpu(fe->id1.bitmap1.i_total));
1266 status = -EIO;
1267 goto bail;
1270 if (hint_blkno) {
1271 /* Attempt to short-circuit the usual search mechanism
1272 * by jumping straight to the most recently used
1273 * allocation group. This helps us mantain some
1274 * contiguousness across allocations. */
1275 status = ocfs2_search_one_group(ac, handle, bits_wanted,
1276 min_bits, bit_off, num_bits,
1277 hint_blkno, &bits_left);
1278 if (!status) {
1279 /* Be careful to update *bg_blkno here as the
1280 * caller is expecting it to be filled in, and
1281 * ocfs2_search_one_group() won't do that for
1282 * us. */
1283 *bg_blkno = hint_blkno;
1284 goto set_hint;
1286 if (status < 0 && status != -ENOSPC) {
1287 mlog_errno(status);
1288 goto bail;
1292 cl = (struct ocfs2_chain_list *) &fe->id2.i_chain;
1294 victim = ocfs2_find_victim_chain(cl);
1295 ac->ac_chain = victim;
1296 ac->ac_allow_chain_relink = 1;
1298 status = ocfs2_search_chain(ac, handle, bits_wanted, min_bits, bit_off,
1299 num_bits, bg_blkno, &bits_left);
1300 if (!status)
1301 goto set_hint;
1302 if (status < 0 && status != -ENOSPC) {
1303 mlog_errno(status);
1304 goto bail;
1307 mlog(0, "Search of victim chain %u came up with nothing, "
1308 "trying all chains now.\n", victim);
1310 /* If we didn't pick a good victim, then just default to
1311 * searching each chain in order. Don't allow chain relinking
1312 * because we only calculate enough journal credits for one
1313 * relink per alloc. */
1314 ac->ac_allow_chain_relink = 0;
1315 for (i = 0; i < le16_to_cpu(cl->cl_next_free_rec); i ++) {
1316 if (i == victim)
1317 continue;
1318 if (!cl->cl_recs[i].c_free)
1319 continue;
1321 ac->ac_chain = i;
1322 status = ocfs2_search_chain(ac, handle, bits_wanted, min_bits,
1323 bit_off, num_bits, bg_blkno,
1324 &bits_left);
1325 if (!status)
1326 break;
1327 if (status < 0 && status != -ENOSPC) {
1328 mlog_errno(status);
1329 goto bail;
1333 set_hint:
1334 if (status != -ENOSPC) {
1335 /* If the next search of this group is not likely to
1336 * yield a suitable extent, then we reset the last
1337 * group hint so as to not waste a disk read */
1338 if (bits_left < min_bits)
1339 ac->ac_last_group = 0;
1340 else
1341 ac->ac_last_group = *bg_blkno;
1344 bail:
1345 mlog_exit(status);
1346 return status;
1349 int ocfs2_claim_metadata(struct ocfs2_super *osb,
1350 handle_t *handle,
1351 struct ocfs2_alloc_context *ac,
1352 u32 bits_wanted,
1353 u16 *suballoc_bit_start,
1354 unsigned int *num_bits,
1355 u64 *blkno_start)
1357 int status;
1358 u64 bg_blkno;
1360 BUG_ON(!ac);
1361 BUG_ON(ac->ac_bits_wanted < (ac->ac_bits_given + bits_wanted));
1362 BUG_ON(ac->ac_which != OCFS2_AC_USE_META);
1364 status = ocfs2_claim_suballoc_bits(osb,
1366 handle,
1367 bits_wanted,
1369 suballoc_bit_start,
1370 num_bits,
1371 &bg_blkno);
1372 if (status < 0) {
1373 mlog_errno(status);
1374 goto bail;
1376 atomic_inc(&osb->alloc_stats.bg_allocs);
1378 *blkno_start = bg_blkno + (u64) *suballoc_bit_start;
1379 ac->ac_bits_given += (*num_bits);
1380 status = 0;
1381 bail:
1382 mlog_exit(status);
1383 return status;
1386 int ocfs2_claim_new_inode(struct ocfs2_super *osb,
1387 handle_t *handle,
1388 struct ocfs2_alloc_context *ac,
1389 u16 *suballoc_bit,
1390 u64 *fe_blkno)
1392 int status;
1393 unsigned int num_bits;
1394 u64 bg_blkno;
1396 mlog_entry_void();
1398 BUG_ON(!ac);
1399 BUG_ON(ac->ac_bits_given != 0);
1400 BUG_ON(ac->ac_bits_wanted != 1);
1401 BUG_ON(ac->ac_which != OCFS2_AC_USE_INODE);
1403 status = ocfs2_claim_suballoc_bits(osb,
1405 handle,
1408 suballoc_bit,
1409 &num_bits,
1410 &bg_blkno);
1411 if (status < 0) {
1412 mlog_errno(status);
1413 goto bail;
1415 atomic_inc(&osb->alloc_stats.bg_allocs);
1417 BUG_ON(num_bits != 1);
1419 *fe_blkno = bg_blkno + (u64) (*suballoc_bit);
1420 ac->ac_bits_given++;
1421 status = 0;
1422 bail:
1423 mlog_exit(status);
1424 return status;
1427 /* translate a group desc. blkno and it's bitmap offset into
1428 * disk cluster offset. */
1429 static inline u32 ocfs2_desc_bitmap_to_cluster_off(struct inode *inode,
1430 u64 bg_blkno,
1431 u16 bg_bit_off)
1433 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1434 u32 cluster = 0;
1436 BUG_ON(!ocfs2_is_cluster_bitmap(inode));
1438 if (bg_blkno != osb->first_cluster_group_blkno)
1439 cluster = ocfs2_blocks_to_clusters(inode->i_sb, bg_blkno);
1440 cluster += (u32) bg_bit_off;
1441 return cluster;
1444 /* given a cluster offset, calculate which block group it belongs to
1445 * and return that block offset. */
1446 static inline u64 ocfs2_which_cluster_group(struct inode *inode,
1447 u32 cluster)
1449 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1450 u32 group_no;
1452 BUG_ON(!ocfs2_is_cluster_bitmap(inode));
1454 group_no = cluster / osb->bitmap_cpg;
1455 if (!group_no)
1456 return osb->first_cluster_group_blkno;
1457 return ocfs2_clusters_to_blocks(inode->i_sb,
1458 group_no * osb->bitmap_cpg);
1461 /* given the block number of a cluster start, calculate which cluster
1462 * group and descriptor bitmap offset that corresponds to. */
1463 static inline void ocfs2_block_to_cluster_group(struct inode *inode,
1464 u64 data_blkno,
1465 u64 *bg_blkno,
1466 u16 *bg_bit_off)
1468 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1469 u32 data_cluster = ocfs2_blocks_to_clusters(osb->sb, data_blkno);
1471 BUG_ON(!ocfs2_is_cluster_bitmap(inode));
1473 *bg_blkno = ocfs2_which_cluster_group(inode,
1474 data_cluster);
1476 if (*bg_blkno == osb->first_cluster_group_blkno)
1477 *bg_bit_off = (u16) data_cluster;
1478 else
1479 *bg_bit_off = (u16) ocfs2_blocks_to_clusters(osb->sb,
1480 data_blkno - *bg_blkno);
1484 * min_bits - minimum contiguous chunk from this total allocation we
1485 * can handle. set to what we asked for originally for a full
1486 * contig. allocation, set to '1' to indicate we can deal with extents
1487 * of any size.
1489 int __ocfs2_claim_clusters(struct ocfs2_super *osb,
1490 handle_t *handle,
1491 struct ocfs2_alloc_context *ac,
1492 u32 min_clusters,
1493 u32 max_clusters,
1494 u32 *cluster_start,
1495 u32 *num_clusters)
1497 int status;
1498 unsigned int bits_wanted = max_clusters;
1499 u64 bg_blkno = 0;
1500 u16 bg_bit_off;
1502 mlog_entry_void();
1504 BUG_ON(ac->ac_bits_given >= ac->ac_bits_wanted);
1506 BUG_ON(ac->ac_which != OCFS2_AC_USE_LOCAL
1507 && ac->ac_which != OCFS2_AC_USE_MAIN);
1509 if (ac->ac_which == OCFS2_AC_USE_LOCAL) {
1510 status = ocfs2_claim_local_alloc_bits(osb,
1511 handle,
1513 bits_wanted,
1514 cluster_start,
1515 num_clusters);
1516 if (!status)
1517 atomic_inc(&osb->alloc_stats.local_data);
1518 } else {
1519 if (min_clusters > (osb->bitmap_cpg - 1)) {
1520 /* The only paths asking for contiguousness
1521 * should know about this already. */
1522 mlog(ML_ERROR, "minimum allocation requested exceeds "
1523 "group bitmap size!");
1524 status = -ENOSPC;
1525 goto bail;
1527 /* clamp the current request down to a realistic size. */
1528 if (bits_wanted > (osb->bitmap_cpg - 1))
1529 bits_wanted = osb->bitmap_cpg - 1;
1531 status = ocfs2_claim_suballoc_bits(osb,
1533 handle,
1534 bits_wanted,
1535 min_clusters,
1536 &bg_bit_off,
1537 num_clusters,
1538 &bg_blkno);
1539 if (!status) {
1540 *cluster_start =
1541 ocfs2_desc_bitmap_to_cluster_off(ac->ac_inode,
1542 bg_blkno,
1543 bg_bit_off);
1544 atomic_inc(&osb->alloc_stats.bitmap_data);
1547 if (status < 0) {
1548 if (status != -ENOSPC)
1549 mlog_errno(status);
1550 goto bail;
1553 ac->ac_bits_given += *num_clusters;
1555 bail:
1556 mlog_exit(status);
1557 return status;
1560 int ocfs2_claim_clusters(struct ocfs2_super *osb,
1561 handle_t *handle,
1562 struct ocfs2_alloc_context *ac,
1563 u32 min_clusters,
1564 u32 *cluster_start,
1565 u32 *num_clusters)
1567 unsigned int bits_wanted = ac->ac_bits_wanted - ac->ac_bits_given;
1569 return __ocfs2_claim_clusters(osb, handle, ac, min_clusters,
1570 bits_wanted, cluster_start, num_clusters);
1573 static inline int ocfs2_block_group_clear_bits(handle_t *handle,
1574 struct inode *alloc_inode,
1575 struct ocfs2_group_desc *bg,
1576 struct buffer_head *group_bh,
1577 unsigned int bit_off,
1578 unsigned int num_bits)
1580 int status;
1581 unsigned int tmp;
1582 int journal_type = OCFS2_JOURNAL_ACCESS_WRITE;
1583 struct ocfs2_group_desc *undo_bg = NULL;
1585 mlog_entry_void();
1587 if (!OCFS2_IS_VALID_GROUP_DESC(bg)) {
1588 OCFS2_RO_ON_INVALID_GROUP_DESC(alloc_inode->i_sb, bg);
1589 status = -EIO;
1590 goto bail;
1593 mlog(0, "off = %u, num = %u\n", bit_off, num_bits);
1595 if (ocfs2_is_cluster_bitmap(alloc_inode))
1596 journal_type = OCFS2_JOURNAL_ACCESS_UNDO;
1598 status = ocfs2_journal_access(handle, alloc_inode, group_bh,
1599 journal_type);
1600 if (status < 0) {
1601 mlog_errno(status);
1602 goto bail;
1605 if (ocfs2_is_cluster_bitmap(alloc_inode))
1606 undo_bg = (struct ocfs2_group_desc *) bh2jh(group_bh)->b_committed_data;
1608 tmp = num_bits;
1609 while(tmp--) {
1610 ocfs2_clear_bit((bit_off + tmp),
1611 (unsigned long *) bg->bg_bitmap);
1612 if (ocfs2_is_cluster_bitmap(alloc_inode))
1613 ocfs2_set_bit(bit_off + tmp,
1614 (unsigned long *) undo_bg->bg_bitmap);
1616 le16_add_cpu(&bg->bg_free_bits_count, num_bits);
1618 status = ocfs2_journal_dirty(handle, group_bh);
1619 if (status < 0)
1620 mlog_errno(status);
1621 bail:
1622 return status;
1626 * expects the suballoc inode to already be locked.
1628 int ocfs2_free_suballoc_bits(handle_t *handle,
1629 struct inode *alloc_inode,
1630 struct buffer_head *alloc_bh,
1631 unsigned int start_bit,
1632 u64 bg_blkno,
1633 unsigned int count)
1635 int status = 0;
1636 u32 tmp_used;
1637 struct ocfs2_super *osb = OCFS2_SB(alloc_inode->i_sb);
1638 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) alloc_bh->b_data;
1639 struct ocfs2_chain_list *cl = &fe->id2.i_chain;
1640 struct buffer_head *group_bh = NULL;
1641 struct ocfs2_group_desc *group;
1643 mlog_entry_void();
1645 if (!OCFS2_IS_VALID_DINODE(fe)) {
1646 OCFS2_RO_ON_INVALID_DINODE(alloc_inode->i_sb, fe);
1647 status = -EIO;
1648 goto bail;
1650 BUG_ON((count + start_bit) > ocfs2_bits_per_group(cl));
1652 mlog(0, "%llu: freeing %u bits from group %llu, starting at %u\n",
1653 (unsigned long long)OCFS2_I(alloc_inode)->ip_blkno, count,
1654 (unsigned long long)bg_blkno, start_bit);
1656 status = ocfs2_read_block(osb, bg_blkno, &group_bh, OCFS2_BH_CACHED,
1657 alloc_inode);
1658 if (status < 0) {
1659 mlog_errno(status);
1660 goto bail;
1663 group = (struct ocfs2_group_desc *) group_bh->b_data;
1664 status = ocfs2_check_group_descriptor(alloc_inode->i_sb, fe, group);
1665 if (status) {
1666 mlog_errno(status);
1667 goto bail;
1669 BUG_ON((count + start_bit) > le16_to_cpu(group->bg_bits));
1671 status = ocfs2_block_group_clear_bits(handle, alloc_inode,
1672 group, group_bh,
1673 start_bit, count);
1674 if (status < 0) {
1675 mlog_errno(status);
1676 goto bail;
1679 status = ocfs2_journal_access(handle, alloc_inode, alloc_bh,
1680 OCFS2_JOURNAL_ACCESS_WRITE);
1681 if (status < 0) {
1682 mlog_errno(status);
1683 goto bail;
1686 le32_add_cpu(&cl->cl_recs[le16_to_cpu(group->bg_chain)].c_free,
1687 count);
1688 tmp_used = le32_to_cpu(fe->id1.bitmap1.i_used);
1689 fe->id1.bitmap1.i_used = cpu_to_le32(tmp_used - count);
1691 status = ocfs2_journal_dirty(handle, alloc_bh);
1692 if (status < 0) {
1693 mlog_errno(status);
1694 goto bail;
1697 bail:
1698 if (group_bh)
1699 brelse(group_bh);
1701 mlog_exit(status);
1702 return status;
1705 int ocfs2_free_dinode(handle_t *handle,
1706 struct inode *inode_alloc_inode,
1707 struct buffer_head *inode_alloc_bh,
1708 struct ocfs2_dinode *di)
1710 u64 blk = le64_to_cpu(di->i_blkno);
1711 u16 bit = le16_to_cpu(di->i_suballoc_bit);
1712 u64 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
1714 return ocfs2_free_suballoc_bits(handle, inode_alloc_inode,
1715 inode_alloc_bh, bit, bg_blkno, 1);
1718 int ocfs2_free_clusters(handle_t *handle,
1719 struct inode *bitmap_inode,
1720 struct buffer_head *bitmap_bh,
1721 u64 start_blk,
1722 unsigned int num_clusters)
1724 int status;
1725 u16 bg_start_bit;
1726 u64 bg_blkno;
1727 struct ocfs2_dinode *fe;
1729 /* You can't ever have a contiguous set of clusters
1730 * bigger than a block group bitmap so we never have to worry
1731 * about looping on them. */
1733 mlog_entry_void();
1735 /* This is expensive. We can safely remove once this stuff has
1736 * gotten tested really well. */
1737 BUG_ON(start_blk != ocfs2_clusters_to_blocks(bitmap_inode->i_sb, ocfs2_blocks_to_clusters(bitmap_inode->i_sb, start_blk)));
1739 fe = (struct ocfs2_dinode *) bitmap_bh->b_data;
1741 ocfs2_block_to_cluster_group(bitmap_inode, start_blk, &bg_blkno,
1742 &bg_start_bit);
1744 mlog(0, "want to free %u clusters starting at block %llu\n",
1745 num_clusters, (unsigned long long)start_blk);
1746 mlog(0, "bg_blkno = %llu, bg_start_bit = %u\n",
1747 (unsigned long long)bg_blkno, bg_start_bit);
1749 status = ocfs2_free_suballoc_bits(handle, bitmap_inode, bitmap_bh,
1750 bg_start_bit, bg_blkno,
1751 num_clusters);
1752 if (status < 0)
1753 mlog_errno(status);
1755 mlog_exit(status);
1756 return status;
1759 static inline void ocfs2_debug_bg(struct ocfs2_group_desc *bg)
1761 printk("Block Group:\n");
1762 printk("bg_signature: %s\n", bg->bg_signature);
1763 printk("bg_size: %u\n", bg->bg_size);
1764 printk("bg_bits: %u\n", bg->bg_bits);
1765 printk("bg_free_bits_count: %u\n", bg->bg_free_bits_count);
1766 printk("bg_chain: %u\n", bg->bg_chain);
1767 printk("bg_generation: %u\n", le32_to_cpu(bg->bg_generation));
1768 printk("bg_next_group: %llu\n",
1769 (unsigned long long)bg->bg_next_group);
1770 printk("bg_parent_dinode: %llu\n",
1771 (unsigned long long)bg->bg_parent_dinode);
1772 printk("bg_blkno: %llu\n",
1773 (unsigned long long)bg->bg_blkno);
1776 static inline void ocfs2_debug_suballoc_inode(struct ocfs2_dinode *fe)
1778 int i;
1780 printk("Suballoc Inode %llu:\n", (unsigned long long)fe->i_blkno);
1781 printk("i_signature: %s\n", fe->i_signature);
1782 printk("i_size: %llu\n",
1783 (unsigned long long)fe->i_size);
1784 printk("i_clusters: %u\n", fe->i_clusters);
1785 printk("i_generation: %u\n",
1786 le32_to_cpu(fe->i_generation));
1787 printk("id1.bitmap1.i_used: %u\n",
1788 le32_to_cpu(fe->id1.bitmap1.i_used));
1789 printk("id1.bitmap1.i_total: %u\n",
1790 le32_to_cpu(fe->id1.bitmap1.i_total));
1791 printk("id2.i_chain.cl_cpg: %u\n", fe->id2.i_chain.cl_cpg);
1792 printk("id2.i_chain.cl_bpc: %u\n", fe->id2.i_chain.cl_bpc);
1793 printk("id2.i_chain.cl_count: %u\n", fe->id2.i_chain.cl_count);
1794 printk("id2.i_chain.cl_next_free_rec: %u\n",
1795 fe->id2.i_chain.cl_next_free_rec);
1796 for(i = 0; i < fe->id2.i_chain.cl_next_free_rec; i++) {
1797 printk("fe->id2.i_chain.cl_recs[%d].c_free: %u\n", i,
1798 fe->id2.i_chain.cl_recs[i].c_free);
1799 printk("fe->id2.i_chain.cl_recs[%d].c_total: %u\n", i,
1800 fe->id2.i_chain.cl_recs[i].c_total);
1801 printk("fe->id2.i_chain.cl_recs[%d].c_blkno: %llu\n", i,
1802 (unsigned long long)fe->id2.i_chain.cl_recs[i].c_blkno);