2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/slab.h>
11 #include <linux/spinlock.h>
12 #include <linux/completion.h>
13 #include <linux/buffer_head.h>
15 #include <linux/gfs2_ondisk.h>
16 #include <linux/prefetch.h>
17 #include <linux/blkdev.h>
32 #include "ops_address.h"
34 #define BFITNOENT ((u32)~0)
35 #define NO_BLOCK ((u64)~0)
37 #if BITS_PER_LONG == 32
38 #define LBITMASK (0x55555555UL)
39 #define LBITSKIP55 (0x55555555UL)
40 #define LBITSKIP00 (0x00000000UL)
42 #define LBITMASK (0x5555555555555555UL)
43 #define LBITSKIP55 (0x5555555555555555UL)
44 #define LBITSKIP00 (0x0000000000000000UL)
48 * These routines are used by the resource group routines (rgrp.c)
49 * to keep track of block allocation. Each block is represented by two
50 * bits. So, each byte represents GFS2_NBBY (i.e. 4) blocks.
53 * 1 = Used (not metadata)
54 * 2 = Unlinked (still in use) inode
58 static const char valid_change
[16] = {
66 static u32
rgblk_search(struct gfs2_rgrpd
*rgd
, u32 goal
,
67 unsigned char old_state
, unsigned char new_state
,
71 * gfs2_setbit - Set a bit in the bitmaps
72 * @buffer: the buffer that holds the bitmaps
73 * @buflen: the length (in bytes) of the buffer
74 * @block: the block to set
75 * @new_state: the new state of the block
79 static inline void gfs2_setbit(struct gfs2_rgrpd
*rgd
, unsigned char *buf1
,
80 unsigned char *buf2
, unsigned int offset
,
81 unsigned int buflen
, u32 block
,
82 unsigned char new_state
)
84 unsigned char *byte1
, *byte2
, *end
, cur_state
;
85 const unsigned int bit
= (block
% GFS2_NBBY
) * GFS2_BIT_SIZE
;
87 byte1
= buf1
+ offset
+ (block
/ GFS2_NBBY
);
88 end
= buf1
+ offset
+ buflen
;
92 cur_state
= (*byte1
>> bit
) & GFS2_BIT_MASK
;
94 if (unlikely(!valid_change
[new_state
* 4 + cur_state
])) {
95 gfs2_consist_rgrpd(rgd
);
98 *byte1
^= (cur_state
^ new_state
) << bit
;
101 byte2
= buf2
+ offset
+ (block
/ GFS2_NBBY
);
102 cur_state
= (*byte2
>> bit
) & GFS2_BIT_MASK
;
103 *byte2
^= (cur_state
^ new_state
) << bit
;
108 * gfs2_testbit - test a bit in the bitmaps
109 * @buffer: the buffer that holds the bitmaps
110 * @buflen: the length (in bytes) of the buffer
111 * @block: the block to read
115 static inline unsigned char gfs2_testbit(struct gfs2_rgrpd
*rgd
,
116 const unsigned char *buffer
,
117 unsigned int buflen
, u32 block
)
119 const unsigned char *byte
, *end
;
120 unsigned char cur_state
;
123 byte
= buffer
+ (block
/ GFS2_NBBY
);
124 bit
= (block
% GFS2_NBBY
) * GFS2_BIT_SIZE
;
125 end
= buffer
+ buflen
;
127 gfs2_assert(rgd
->rd_sbd
, byte
< end
);
129 cur_state
= (*byte
>> bit
) & GFS2_BIT_MASK
;
136 * @ptr: Pointer to bitmap data
137 * @mask: Mask to use (normally 0x55555.... but adjusted for search start)
138 * @state: The state we are searching for
140 * We xor the bitmap data with a patter which is the bitwise opposite
141 * of what we are looking for, this gives rise to a pattern of ones
142 * wherever there is a match. Since we have two bits per entry, we
143 * take this pattern, shift it down by one place and then and it with
144 * the original. All the even bit positions (0,2,4, etc) then represent
145 * successful matches, so we mask with 0x55555..... to remove the unwanted
148 * This allows searching of a whole u64 at once (32 blocks) with a
149 * single test (on 64 bit arches).
152 static inline u64
gfs2_bit_search(const __le64
*ptr
, u64 mask
, u8 state
)
155 static const u64 search
[] = {
156 [0] = 0xffffffffffffffffULL
,
157 [1] = 0xaaaaaaaaaaaaaaaaULL
,
158 [2] = 0x5555555555555555ULL
,
159 [3] = 0x0000000000000000ULL
,
161 tmp
= le64_to_cpu(*ptr
) ^ search
[state
];
168 * gfs2_bitfit - Search an rgrp's bitmap buffer to find a bit-pair representing
169 * a block in a given allocation state.
170 * @buffer: the buffer that holds the bitmaps
171 * @len: the length (in bytes) of the buffer
172 * @goal: start search at this block's bit-pair (within @buffer)
173 * @state: GFS2_BLKST_XXX the state of the block we're looking for.
175 * Scope of @goal and returned block number is only within this bitmap buffer,
176 * not entire rgrp or filesystem. @buffer will be offset from the actual
177 * beginning of a bitmap block buffer, skipping any header structures, but
178 * headers are always a multiple of 64 bits long so that the buffer is
179 * always aligned to a 64 bit boundary.
181 * The size of the buffer is in bytes, but is it assumed that it is
182 * always ok to to read a complete multiple of 64 bits at the end
183 * of the block in case the end is no aligned to a natural boundary.
185 * Return: the block number (bitmap buffer scope) that was found
188 static u32
gfs2_bitfit(const u8
*buf
, const unsigned int len
,
191 u32 spoint
= (goal
<< 1) & ((8*sizeof(u64
)) - 1);
192 const __le64
*ptr
= ((__le64
*)buf
) + (goal
>> 5);
193 const __le64
*end
= (__le64
*)(buf
+ ALIGN(len
, sizeof(u64
)));
195 u64 mask
= 0x5555555555555555ULL
;
200 /* Mask off bits we don't care about at the start of the search */
202 tmp
= gfs2_bit_search(ptr
, mask
, state
);
204 while(tmp
== 0 && ptr
< end
) {
205 tmp
= gfs2_bit_search(ptr
, 0x5555555555555555ULL
, state
);
208 /* Mask off any bits which are more than len bytes from the start */
209 if (ptr
== end
&& (len
& (sizeof(u64
) - 1)))
210 tmp
&= (((u64
)~0) >> (64 - 8*(len
& (sizeof(u64
) - 1))));
211 /* Didn't find anything, so return */
216 bit
--; /* fls64 always adds one to the bit count */
217 bit
/= 2; /* two bits per entry in the bitmap */
218 return (((const unsigned char *)ptr
- buf
) * GFS2_NBBY
) + bit
;
222 * gfs2_bitcount - count the number of bits in a certain state
223 * @buffer: the buffer that holds the bitmaps
224 * @buflen: the length (in bytes) of the buffer
225 * @state: the state of the block we're looking for
227 * Returns: The number of bits
230 static u32
gfs2_bitcount(struct gfs2_rgrpd
*rgd
, const u8
*buffer
,
231 unsigned int buflen
, u8 state
)
233 const u8
*byte
= buffer
;
234 const u8
*end
= buffer
+ buflen
;
235 const u8 state1
= state
<< 2;
236 const u8 state2
= state
<< 4;
237 const u8 state3
= state
<< 6;
240 for (; byte
< end
; byte
++) {
241 if (((*byte
) & 0x03) == state
)
243 if (((*byte
) & 0x0C) == state1
)
245 if (((*byte
) & 0x30) == state2
)
247 if (((*byte
) & 0xC0) == state3
)
255 * gfs2_rgrp_verify - Verify that a resource group is consistent
256 * @sdp: the filesystem
261 void gfs2_rgrp_verify(struct gfs2_rgrpd
*rgd
)
263 struct gfs2_sbd
*sdp
= rgd
->rd_sbd
;
264 struct gfs2_bitmap
*bi
= NULL
;
265 u32 length
= rgd
->rd_length
;
269 memset(count
, 0, 4 * sizeof(u32
));
271 /* Count # blocks in each of 4 possible allocation states */
272 for (buf
= 0; buf
< length
; buf
++) {
273 bi
= rgd
->rd_bits
+ buf
;
274 for (x
= 0; x
< 4; x
++)
275 count
[x
] += gfs2_bitcount(rgd
,
281 if (count
[0] != rgd
->rd_free
) {
282 if (gfs2_consist_rgrpd(rgd
))
283 fs_err(sdp
, "free data mismatch: %u != %u\n",
284 count
[0], rgd
->rd_free
);
288 tmp
= rgd
->rd_data
- rgd
->rd_free
- rgd
->rd_dinodes
;
289 if (count
[1] + count
[2] != tmp
) {
290 if (gfs2_consist_rgrpd(rgd
))
291 fs_err(sdp
, "used data mismatch: %u != %u\n",
296 if (count
[3] != rgd
->rd_dinodes
) {
297 if (gfs2_consist_rgrpd(rgd
))
298 fs_err(sdp
, "used metadata mismatch: %u != %u\n",
299 count
[3], rgd
->rd_dinodes
);
303 if (count
[2] > count
[3]) {
304 if (gfs2_consist_rgrpd(rgd
))
305 fs_err(sdp
, "unlinked inodes > inodes: %u\n",
312 static inline int rgrp_contains_block(struct gfs2_rgrpd
*rgd
, u64 block
)
314 u64 first
= rgd
->rd_data0
;
315 u64 last
= first
+ rgd
->rd_data
;
316 return first
<= block
&& block
< last
;
320 * gfs2_blk2rgrpd - Find resource group for a given data/meta block number
321 * @sdp: The GFS2 superblock
322 * @n: The data block number
324 * Returns: The resource group, or NULL if not found
327 struct gfs2_rgrpd
*gfs2_blk2rgrpd(struct gfs2_sbd
*sdp
, u64 blk
)
329 struct gfs2_rgrpd
*rgd
;
331 spin_lock(&sdp
->sd_rindex_spin
);
333 list_for_each_entry(rgd
, &sdp
->sd_rindex_mru_list
, rd_list_mru
) {
334 if (rgrp_contains_block(rgd
, blk
)) {
335 list_move(&rgd
->rd_list_mru
, &sdp
->sd_rindex_mru_list
);
336 spin_unlock(&sdp
->sd_rindex_spin
);
341 spin_unlock(&sdp
->sd_rindex_spin
);
347 * gfs2_rgrpd_get_first - get the first Resource Group in the filesystem
348 * @sdp: The GFS2 superblock
350 * Returns: The first rgrp in the filesystem
353 struct gfs2_rgrpd
*gfs2_rgrpd_get_first(struct gfs2_sbd
*sdp
)
355 gfs2_assert(sdp
, !list_empty(&sdp
->sd_rindex_list
));
356 return list_entry(sdp
->sd_rindex_list
.next
, struct gfs2_rgrpd
, rd_list
);
360 * gfs2_rgrpd_get_next - get the next RG
363 * Returns: The next rgrp
366 struct gfs2_rgrpd
*gfs2_rgrpd_get_next(struct gfs2_rgrpd
*rgd
)
368 if (rgd
->rd_list
.next
== &rgd
->rd_sbd
->sd_rindex_list
)
370 return list_entry(rgd
->rd_list
.next
, struct gfs2_rgrpd
, rd_list
);
373 static void clear_rgrpdi(struct gfs2_sbd
*sdp
)
375 struct list_head
*head
;
376 struct gfs2_rgrpd
*rgd
;
377 struct gfs2_glock
*gl
;
379 spin_lock(&sdp
->sd_rindex_spin
);
380 sdp
->sd_rindex_forward
= NULL
;
381 spin_unlock(&sdp
->sd_rindex_spin
);
383 head
= &sdp
->sd_rindex_list
;
384 while (!list_empty(head
)) {
385 rgd
= list_entry(head
->next
, struct gfs2_rgrpd
, rd_list
);
388 list_del(&rgd
->rd_list
);
389 list_del(&rgd
->rd_list_mru
);
392 gl
->gl_object
= NULL
;
397 kmem_cache_free(gfs2_rgrpd_cachep
, rgd
);
401 void gfs2_clear_rgrpd(struct gfs2_sbd
*sdp
)
403 mutex_lock(&sdp
->sd_rindex_mutex
);
405 mutex_unlock(&sdp
->sd_rindex_mutex
);
408 static void gfs2_rindex_print(const struct gfs2_rgrpd
*rgd
)
410 printk(KERN_INFO
" ri_addr = %llu\n", (unsigned long long)rgd
->rd_addr
);
411 printk(KERN_INFO
" ri_length = %u\n", rgd
->rd_length
);
412 printk(KERN_INFO
" ri_data0 = %llu\n", (unsigned long long)rgd
->rd_data0
);
413 printk(KERN_INFO
" ri_data = %u\n", rgd
->rd_data
);
414 printk(KERN_INFO
" ri_bitbytes = %u\n", rgd
->rd_bitbytes
);
418 * gfs2_compute_bitstructs - Compute the bitmap sizes
419 * @rgd: The resource group descriptor
421 * Calculates bitmap descriptors, one for each block that contains bitmap data
426 static int compute_bitstructs(struct gfs2_rgrpd
*rgd
)
428 struct gfs2_sbd
*sdp
= rgd
->rd_sbd
;
429 struct gfs2_bitmap
*bi
;
430 u32 length
= rgd
->rd_length
; /* # blocks in hdr & bitmap */
431 u32 bytes_left
, bytes
;
437 rgd
->rd_bits
= kcalloc(length
, sizeof(struct gfs2_bitmap
), GFP_NOFS
);
441 bytes_left
= rgd
->rd_bitbytes
;
443 for (x
= 0; x
< length
; x
++) {
444 bi
= rgd
->rd_bits
+ x
;
446 /* small rgrp; bitmap stored completely in header block */
449 bi
->bi_offset
= sizeof(struct gfs2_rgrp
);
454 bytes
= sdp
->sd_sb
.sb_bsize
- sizeof(struct gfs2_rgrp
);
455 bi
->bi_offset
= sizeof(struct gfs2_rgrp
);
459 } else if (x
+ 1 == length
) {
461 bi
->bi_offset
= sizeof(struct gfs2_meta_header
);
462 bi
->bi_start
= rgd
->rd_bitbytes
- bytes_left
;
466 bytes
= sdp
->sd_sb
.sb_bsize
-
467 sizeof(struct gfs2_meta_header
);
468 bi
->bi_offset
= sizeof(struct gfs2_meta_header
);
469 bi
->bi_start
= rgd
->rd_bitbytes
- bytes_left
;
477 gfs2_consist_rgrpd(rgd
);
480 bi
= rgd
->rd_bits
+ (length
- 1);
481 if ((bi
->bi_start
+ bi
->bi_len
) * GFS2_NBBY
!= rgd
->rd_data
) {
482 if (gfs2_consist_rgrpd(rgd
)) {
483 gfs2_rindex_print(rgd
);
484 fs_err(sdp
, "start=%u len=%u offset=%u\n",
485 bi
->bi_start
, bi
->bi_len
, bi
->bi_offset
);
494 * gfs2_ri_total - Total up the file system space, according to the rindex.
497 u64
gfs2_ri_total(struct gfs2_sbd
*sdp
)
500 struct inode
*inode
= sdp
->sd_rindex
;
501 struct gfs2_inode
*ip
= GFS2_I(inode
);
502 char buf
[sizeof(struct gfs2_rindex
)];
503 struct file_ra_state ra_state
;
506 mutex_lock(&sdp
->sd_rindex_mutex
);
507 file_ra_state_init(&ra_state
, inode
->i_mapping
);
508 for (rgrps
= 0;; rgrps
++) {
509 loff_t pos
= rgrps
* sizeof(struct gfs2_rindex
);
511 if (pos
+ sizeof(struct gfs2_rindex
) >= ip
->i_disksize
)
513 error
= gfs2_internal_read(ip
, &ra_state
, buf
, &pos
,
514 sizeof(struct gfs2_rindex
));
515 if (error
!= sizeof(struct gfs2_rindex
))
517 total_data
+= be32_to_cpu(((struct gfs2_rindex
*)buf
)->ri_data
);
519 mutex_unlock(&sdp
->sd_rindex_mutex
);
523 static void gfs2_rindex_in(struct gfs2_rgrpd
*rgd
, const void *buf
)
525 const struct gfs2_rindex
*str
= buf
;
527 rgd
->rd_addr
= be64_to_cpu(str
->ri_addr
);
528 rgd
->rd_length
= be32_to_cpu(str
->ri_length
);
529 rgd
->rd_data0
= be64_to_cpu(str
->ri_data0
);
530 rgd
->rd_data
= be32_to_cpu(str
->ri_data
);
531 rgd
->rd_bitbytes
= be32_to_cpu(str
->ri_bitbytes
);
535 * read_rindex_entry - Pull in a new resource index entry from the disk
536 * @gl: The glock covering the rindex inode
538 * Returns: 0 on success, error code otherwise
541 static int read_rindex_entry(struct gfs2_inode
*ip
,
542 struct file_ra_state
*ra_state
)
544 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
545 loff_t pos
= sdp
->sd_rgrps
* sizeof(struct gfs2_rindex
);
546 char buf
[sizeof(struct gfs2_rindex
)];
548 struct gfs2_rgrpd
*rgd
;
550 error
= gfs2_internal_read(ip
, ra_state
, buf
, &pos
,
551 sizeof(struct gfs2_rindex
));
554 if (error
!= sizeof(struct gfs2_rindex
)) {
560 rgd
= kmem_cache_zalloc(gfs2_rgrpd_cachep
, GFP_NOFS
);
565 mutex_init(&rgd
->rd_mutex
);
566 lops_init_le(&rgd
->rd_le
, &gfs2_rg_lops
);
569 list_add_tail(&rgd
->rd_list
, &sdp
->sd_rindex_list
);
570 list_add_tail(&rgd
->rd_list_mru
, &sdp
->sd_rindex_mru_list
);
572 gfs2_rindex_in(rgd
, buf
);
573 error
= compute_bitstructs(rgd
);
577 error
= gfs2_glock_get(sdp
, rgd
->rd_addr
,
578 &gfs2_rgrp_glops
, CREATE
, &rgd
->rd_gl
);
582 rgd
->rd_gl
->gl_object
= rgd
;
583 rgd
->rd_flags
&= ~GFS2_RDF_UPTODATE
;
584 rgd
->rd_flags
|= GFS2_RDF_CHECK
;
589 * gfs2_ri_update - Pull in a new resource index from the disk
590 * @ip: pointer to the rindex inode
592 * Returns: 0 on successful update, error code otherwise
595 static int gfs2_ri_update(struct gfs2_inode
*ip
)
597 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
598 struct inode
*inode
= &ip
->i_inode
;
599 struct file_ra_state ra_state
;
600 u64 rgrp_count
= ip
->i_disksize
;
603 if (do_div(rgrp_count
, sizeof(struct gfs2_rindex
))) {
604 gfs2_consist_inode(ip
);
610 file_ra_state_init(&ra_state
, inode
->i_mapping
);
611 for (sdp
->sd_rgrps
= 0; sdp
->sd_rgrps
< rgrp_count
; sdp
->sd_rgrps
++) {
612 error
= read_rindex_entry(ip
, &ra_state
);
619 sdp
->sd_rindex_uptodate
= 1;
624 * gfs2_ri_update_special - Pull in a new resource index from the disk
626 * This is a special version that's safe to call from gfs2_inplace_reserve_i.
627 * In this case we know that we don't have any resource groups in memory yet.
629 * @ip: pointer to the rindex inode
631 * Returns: 0 on successful update, error code otherwise
633 static int gfs2_ri_update_special(struct gfs2_inode
*ip
)
635 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
636 struct inode
*inode
= &ip
->i_inode
;
637 struct file_ra_state ra_state
;
640 file_ra_state_init(&ra_state
, inode
->i_mapping
);
641 for (sdp
->sd_rgrps
= 0;; sdp
->sd_rgrps
++) {
642 /* Ignore partials */
643 if ((sdp
->sd_rgrps
+ 1) * sizeof(struct gfs2_rindex
) >
646 error
= read_rindex_entry(ip
, &ra_state
);
653 sdp
->sd_rindex_uptodate
= 1;
658 * gfs2_rindex_hold - Grab a lock on the rindex
659 * @sdp: The GFS2 superblock
660 * @ri_gh: the glock holder
662 * We grab a lock on the rindex inode to make sure that it doesn't
663 * change whilst we are performing an operation. We keep this lock
664 * for quite long periods of time compared to other locks. This
665 * doesn't matter, since it is shared and it is very, very rarely
666 * accessed in the exclusive mode (i.e. only when expanding the filesystem).
668 * This makes sure that we're using the latest copy of the resource index
669 * special file, which might have been updated if someone expanded the
670 * filesystem (via gfs2_grow utility), which adds new resource groups.
672 * Returns: 0 on success, error code otherwise
675 int gfs2_rindex_hold(struct gfs2_sbd
*sdp
, struct gfs2_holder
*ri_gh
)
677 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_rindex
);
678 struct gfs2_glock
*gl
= ip
->i_gl
;
681 error
= gfs2_glock_nq_init(gl
, LM_ST_SHARED
, 0, ri_gh
);
685 /* Read new copy from disk if we don't have the latest */
686 if (!sdp
->sd_rindex_uptodate
) {
687 mutex_lock(&sdp
->sd_rindex_mutex
);
688 if (!sdp
->sd_rindex_uptodate
) {
689 error
= gfs2_ri_update(ip
);
691 gfs2_glock_dq_uninit(ri_gh
);
693 mutex_unlock(&sdp
->sd_rindex_mutex
);
699 static void gfs2_rgrp_in(struct gfs2_rgrpd
*rgd
, const void *buf
)
701 const struct gfs2_rgrp
*str
= buf
;
704 rg_flags
= be32_to_cpu(str
->rg_flags
);
705 if (rg_flags
& GFS2_RGF_NOALLOC
)
706 rgd
->rd_flags
|= GFS2_RDF_NOALLOC
;
708 rgd
->rd_flags
&= ~GFS2_RDF_NOALLOC
;
709 rgd
->rd_free
= be32_to_cpu(str
->rg_free
);
710 rgd
->rd_dinodes
= be32_to_cpu(str
->rg_dinodes
);
711 rgd
->rd_igeneration
= be64_to_cpu(str
->rg_igeneration
);
714 static void gfs2_rgrp_out(struct gfs2_rgrpd
*rgd
, void *buf
)
716 struct gfs2_rgrp
*str
= buf
;
719 if (rgd
->rd_flags
& GFS2_RDF_NOALLOC
)
720 rg_flags
|= GFS2_RGF_NOALLOC
;
721 str
->rg_flags
= cpu_to_be32(rg_flags
);
722 str
->rg_free
= cpu_to_be32(rgd
->rd_free
);
723 str
->rg_dinodes
= cpu_to_be32(rgd
->rd_dinodes
);
724 str
->__pad
= cpu_to_be32(0);
725 str
->rg_igeneration
= cpu_to_be64(rgd
->rd_igeneration
);
726 memset(&str
->rg_reserved
, 0, sizeof(str
->rg_reserved
));
730 * gfs2_rgrp_bh_get - Read in a RG's header and bitmaps
731 * @rgd: the struct gfs2_rgrpd describing the RG to read in
733 * Read in all of a Resource Group's header and bitmap blocks.
734 * Caller must eventually call gfs2_rgrp_relse() to free the bitmaps.
739 int gfs2_rgrp_bh_get(struct gfs2_rgrpd
*rgd
)
741 struct gfs2_sbd
*sdp
= rgd
->rd_sbd
;
742 struct gfs2_glock
*gl
= rgd
->rd_gl
;
743 unsigned int length
= rgd
->rd_length
;
744 struct gfs2_bitmap
*bi
;
748 mutex_lock(&rgd
->rd_mutex
);
750 spin_lock(&sdp
->sd_rindex_spin
);
751 if (rgd
->rd_bh_count
) {
753 spin_unlock(&sdp
->sd_rindex_spin
);
754 mutex_unlock(&rgd
->rd_mutex
);
757 spin_unlock(&sdp
->sd_rindex_spin
);
759 for (x
= 0; x
< length
; x
++) {
760 bi
= rgd
->rd_bits
+ x
;
761 error
= gfs2_meta_read(gl
, rgd
->rd_addr
+ x
, 0, &bi
->bi_bh
);
766 for (y
= length
; y
--;) {
767 bi
= rgd
->rd_bits
+ y
;
768 error
= gfs2_meta_wait(sdp
, bi
->bi_bh
);
771 if (gfs2_metatype_check(sdp
, bi
->bi_bh
, y
? GFS2_METATYPE_RB
:
778 if (!(rgd
->rd_flags
& GFS2_RDF_UPTODATE
)) {
779 gfs2_rgrp_in(rgd
, (rgd
->rd_bits
[0].bi_bh
)->b_data
);
780 rgd
->rd_flags
|= GFS2_RDF_UPTODATE
;
783 spin_lock(&sdp
->sd_rindex_spin
);
784 rgd
->rd_free_clone
= rgd
->rd_free
;
786 spin_unlock(&sdp
->sd_rindex_spin
);
788 mutex_unlock(&rgd
->rd_mutex
);
794 bi
= rgd
->rd_bits
+ x
;
797 gfs2_assert_warn(sdp
, !bi
->bi_clone
);
799 mutex_unlock(&rgd
->rd_mutex
);
804 void gfs2_rgrp_bh_hold(struct gfs2_rgrpd
*rgd
)
806 struct gfs2_sbd
*sdp
= rgd
->rd_sbd
;
808 spin_lock(&sdp
->sd_rindex_spin
);
809 gfs2_assert_warn(rgd
->rd_sbd
, rgd
->rd_bh_count
);
811 spin_unlock(&sdp
->sd_rindex_spin
);
815 * gfs2_rgrp_bh_put - Release RG bitmaps read in with gfs2_rgrp_bh_get()
816 * @rgd: the struct gfs2_rgrpd describing the RG to read in
820 void gfs2_rgrp_bh_put(struct gfs2_rgrpd
*rgd
)
822 struct gfs2_sbd
*sdp
= rgd
->rd_sbd
;
823 int x
, length
= rgd
->rd_length
;
825 spin_lock(&sdp
->sd_rindex_spin
);
826 gfs2_assert_warn(rgd
->rd_sbd
, rgd
->rd_bh_count
);
827 if (--rgd
->rd_bh_count
) {
828 spin_unlock(&sdp
->sd_rindex_spin
);
832 for (x
= 0; x
< length
; x
++) {
833 struct gfs2_bitmap
*bi
= rgd
->rd_bits
+ x
;
840 spin_unlock(&sdp
->sd_rindex_spin
);
843 static void gfs2_rgrp_send_discards(struct gfs2_sbd
*sdp
, u64 offset
,
844 const struct gfs2_bitmap
*bi
)
846 struct super_block
*sb
= sdp
->sd_vfs
;
847 struct block_device
*bdev
= sb
->s_bdev
;
848 const unsigned int sects_per_blk
= sdp
->sd_sb
.sb_bsize
/
849 bdev_hardsect_size(sb
->s_bdev
);
852 sector_t nr_sects
= 0;
856 for (x
= 0; x
< bi
->bi_len
; x
++) {
857 const u8
*orig
= bi
->bi_bh
->b_data
+ bi
->bi_offset
+ x
;
858 const u8
*clone
= bi
->bi_clone
+ bi
->bi_offset
+ x
;
859 u8 diff
= ~(*orig
| (*orig
>> 1)) & (*clone
| (*clone
>> 1));
863 blk
= offset
+ ((bi
->bi_start
+ x
) * GFS2_NBBY
);
864 blk
*= sects_per_blk
; /* convert to sectors */
868 goto start_new_extent
;
869 if ((start
+ nr_sects
) != blk
) {
870 rv
= blkdev_issue_discard(bdev
, start
,
878 nr_sects
+= sects_per_blk
;
881 blk
+= sects_per_blk
;
885 rv
= blkdev_issue_discard(bdev
, start
, nr_sects
, GFP_NOFS
);
891 fs_warn(sdp
, "error %d on discard request, turning discards off for this filesystem", rv
);
892 sdp
->sd_args
.ar_discard
= 0;
895 void gfs2_rgrp_repolish_clones(struct gfs2_rgrpd
*rgd
)
897 struct gfs2_sbd
*sdp
= rgd
->rd_sbd
;
898 unsigned int length
= rgd
->rd_length
;
901 for (x
= 0; x
< length
; x
++) {
902 struct gfs2_bitmap
*bi
= rgd
->rd_bits
+ x
;
905 if (sdp
->sd_args
.ar_discard
)
906 gfs2_rgrp_send_discards(sdp
, rgd
->rd_data0
, bi
);
907 memcpy(bi
->bi_clone
+ bi
->bi_offset
,
908 bi
->bi_bh
->b_data
+ bi
->bi_offset
, bi
->bi_len
);
911 spin_lock(&sdp
->sd_rindex_spin
);
912 rgd
->rd_free_clone
= rgd
->rd_free
;
913 spin_unlock(&sdp
->sd_rindex_spin
);
917 * gfs2_alloc_get - get the struct gfs2_alloc structure for an inode
918 * @ip: the incore GFS2 inode structure
920 * Returns: the struct gfs2_alloc
923 struct gfs2_alloc
*gfs2_alloc_get(struct gfs2_inode
*ip
)
925 BUG_ON(ip
->i_alloc
!= NULL
);
926 ip
->i_alloc
= kzalloc(sizeof(struct gfs2_alloc
), GFP_KERNEL
);
931 * try_rgrp_fit - See if a given reservation will fit in a given RG
933 * @al: the struct gfs2_alloc structure describing the reservation
935 * If there's room for the requested blocks to be allocated from the RG:
936 * Sets the $al_rgd field in @al.
938 * Returns: 1 on success (it fits), 0 on failure (it doesn't fit)
941 static int try_rgrp_fit(struct gfs2_rgrpd
*rgd
, struct gfs2_alloc
*al
)
943 struct gfs2_sbd
*sdp
= rgd
->rd_sbd
;
946 if (rgd
->rd_flags
& GFS2_RDF_NOALLOC
)
949 spin_lock(&sdp
->sd_rindex_spin
);
950 if (rgd
->rd_free_clone
>= al
->al_requested
) {
954 spin_unlock(&sdp
->sd_rindex_spin
);
960 * try_rgrp_unlink - Look for any unlinked, allocated, but unused inodes
963 * Returns: The inode, if one has been found
966 static struct inode
*try_rgrp_unlink(struct gfs2_rgrpd
*rgd
, u64
*last_unlinked
)
971 struct gfs2_sbd
*sdp
= rgd
->rd_sbd
;
975 if (goal
>= rgd
->rd_data
)
977 down_write(&sdp
->sd_log_flush_lock
);
979 block
= rgblk_search(rgd
, goal
, GFS2_BLKST_UNLINKED
,
980 GFS2_BLKST_UNLINKED
, &n
);
981 up_write(&sdp
->sd_log_flush_lock
);
982 if (block
== BFITNOENT
)
984 /* rgblk_search can return a block < goal, so we need to
985 keep it marching forward. */
986 no_addr
= block
+ rgd
->rd_data0
;
988 if (*last_unlinked
!= NO_BLOCK
&& no_addr
<= *last_unlinked
)
990 *last_unlinked
= no_addr
;
991 inode
= gfs2_inode_lookup(rgd
->rd_sbd
->sd_vfs
, DT_UNKNOWN
,
997 rgd
->rd_flags
&= ~GFS2_RDF_CHECK
;
1002 * recent_rgrp_next - get next RG from "recent" list
1003 * @cur_rgd: current rgrp
1005 * Returns: The next rgrp in the recent list
1008 static struct gfs2_rgrpd
*recent_rgrp_next(struct gfs2_rgrpd
*cur_rgd
)
1010 struct gfs2_sbd
*sdp
= cur_rgd
->rd_sbd
;
1011 struct list_head
*head
;
1012 struct gfs2_rgrpd
*rgd
;
1014 spin_lock(&sdp
->sd_rindex_spin
);
1015 head
= &sdp
->sd_rindex_mru_list
;
1016 if (unlikely(cur_rgd
->rd_list_mru
.next
== head
)) {
1017 spin_unlock(&sdp
->sd_rindex_spin
);
1020 rgd
= list_entry(cur_rgd
->rd_list_mru
.next
, struct gfs2_rgrpd
, rd_list_mru
);
1021 spin_unlock(&sdp
->sd_rindex_spin
);
1026 * forward_rgrp_get - get an rgrp to try next from full list
1027 * @sdp: The GFS2 superblock
1029 * Returns: The rgrp to try next
1032 static struct gfs2_rgrpd
*forward_rgrp_get(struct gfs2_sbd
*sdp
)
1034 struct gfs2_rgrpd
*rgd
;
1035 unsigned int journals
= gfs2_jindex_size(sdp
);
1036 unsigned int rg
= 0, x
;
1038 spin_lock(&sdp
->sd_rindex_spin
);
1040 rgd
= sdp
->sd_rindex_forward
;
1042 if (sdp
->sd_rgrps
>= journals
)
1043 rg
= sdp
->sd_rgrps
* sdp
->sd_jdesc
->jd_jid
/ journals
;
1045 for (x
= 0, rgd
= gfs2_rgrpd_get_first(sdp
); x
< rg
;
1046 x
++, rgd
= gfs2_rgrpd_get_next(rgd
))
1049 sdp
->sd_rindex_forward
= rgd
;
1052 spin_unlock(&sdp
->sd_rindex_spin
);
1058 * forward_rgrp_set - set the forward rgrp pointer
1059 * @sdp: the filesystem
1060 * @rgd: The new forward rgrp
1064 static void forward_rgrp_set(struct gfs2_sbd
*sdp
, struct gfs2_rgrpd
*rgd
)
1066 spin_lock(&sdp
->sd_rindex_spin
);
1067 sdp
->sd_rindex_forward
= rgd
;
1068 spin_unlock(&sdp
->sd_rindex_spin
);
1072 * get_local_rgrp - Choose and lock a rgrp for allocation
1073 * @ip: the inode to reserve space for
1074 * @rgp: the chosen and locked rgrp
1076 * Try to acquire rgrp in way which avoids contending with others.
1081 static struct inode
*get_local_rgrp(struct gfs2_inode
*ip
, u64
*last_unlinked
)
1083 struct inode
*inode
= NULL
;
1084 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1085 struct gfs2_rgrpd
*rgd
, *begin
= NULL
;
1086 struct gfs2_alloc
*al
= ip
->i_alloc
;
1087 int flags
= LM_FLAG_TRY
;
1090 int error
, rg_locked
;
1092 rgd
= gfs2_blk2rgrpd(sdp
, ip
->i_goal
);
1097 if (gfs2_glock_is_locked_by_me(rgd
->rd_gl
)) {
1101 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
,
1102 LM_FLAG_TRY
, &al
->al_rgd_gh
);
1106 if (try_rgrp_fit(rgd
, al
))
1108 if (rgd
->rd_flags
& GFS2_RDF_CHECK
)
1109 inode
= try_rgrp_unlink(rgd
, last_unlinked
);
1111 gfs2_glock_dq_uninit(&al
->al_rgd_gh
);
1116 rgd
= recent_rgrp_next(rgd
);
1120 return ERR_PTR(error
);
1124 /* Go through full list of rgrps */
1126 begin
= rgd
= forward_rgrp_get(sdp
);
1131 if (gfs2_glock_is_locked_by_me(rgd
->rd_gl
)) {
1135 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, flags
,
1140 if (try_rgrp_fit(rgd
, al
))
1142 if (rgd
->rd_flags
& GFS2_RDF_CHECK
)
1143 inode
= try_rgrp_unlink(rgd
, last_unlinked
);
1145 gfs2_glock_dq_uninit(&al
->al_rgd_gh
);
1155 return ERR_PTR(error
);
1158 rgd
= gfs2_rgrpd_get_next(rgd
);
1160 rgd
= gfs2_rgrpd_get_first(sdp
);
1164 return ERR_PTR(-ENOSPC
);
1169 gfs2_log_flush(sdp
, NULL
);
1175 spin_lock(&sdp
->sd_rindex_spin
);
1176 list_move(&rgd
->rd_list_mru
, &sdp
->sd_rindex_mru_list
);
1177 spin_unlock(&sdp
->sd_rindex_spin
);
1178 rgd
= gfs2_rgrpd_get_next(rgd
);
1180 rgd
= gfs2_rgrpd_get_first(sdp
);
1181 forward_rgrp_set(sdp
, rgd
);
1188 * gfs2_inplace_reserve_i - Reserve space in the filesystem
1189 * @ip: the inode to reserve space for
1194 int gfs2_inplace_reserve_i(struct gfs2_inode
*ip
, char *file
, unsigned int line
)
1196 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1197 struct gfs2_alloc
*al
= ip
->i_alloc
;
1198 struct inode
*inode
;
1200 u64 last_unlinked
= NO_BLOCK
;
1202 if (gfs2_assert_warn(sdp
, al
->al_requested
))
1206 /* We need to hold the rindex unless the inode we're using is
1207 the rindex itself, in which case it's already held. */
1208 if (ip
!= GFS2_I(sdp
->sd_rindex
))
1209 error
= gfs2_rindex_hold(sdp
, &al
->al_ri_gh
);
1210 else if (!sdp
->sd_rgrps
) /* We may not have the rindex read in, so: */
1211 error
= gfs2_ri_update_special(ip
);
1216 inode
= get_local_rgrp(ip
, &last_unlinked
);
1218 if (ip
!= GFS2_I(sdp
->sd_rindex
))
1219 gfs2_glock_dq_uninit(&al
->al_ri_gh
);
1221 return PTR_ERR(inode
);
1223 gfs2_log_flush(sdp
, NULL
);
1234 * gfs2_inplace_release - release an inplace reservation
1235 * @ip: the inode the reservation was taken out on
1237 * Release a reservation made by gfs2_inplace_reserve().
1240 void gfs2_inplace_release(struct gfs2_inode
*ip
)
1242 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1243 struct gfs2_alloc
*al
= ip
->i_alloc
;
1245 if (gfs2_assert_warn(sdp
, al
->al_alloced
<= al
->al_requested
) == -1)
1246 fs_warn(sdp
, "al_alloced = %u, al_requested = %u "
1247 "al_file = %s, al_line = %u\n",
1248 al
->al_alloced
, al
->al_requested
, al
->al_file
,
1252 if (al
->al_rgd_gh
.gh_gl
)
1253 gfs2_glock_dq_uninit(&al
->al_rgd_gh
);
1254 if (ip
!= GFS2_I(sdp
->sd_rindex
))
1255 gfs2_glock_dq_uninit(&al
->al_ri_gh
);
1259 * gfs2_get_block_type - Check a block in a RG is of given type
1260 * @rgd: the resource group holding the block
1261 * @block: the block number
1263 * Returns: The block type (GFS2_BLKST_*)
1266 unsigned char gfs2_get_block_type(struct gfs2_rgrpd
*rgd
, u64 block
)
1268 struct gfs2_bitmap
*bi
= NULL
;
1269 u32 length
, rgrp_block
, buf_block
;
1273 length
= rgd
->rd_length
;
1274 rgrp_block
= block
- rgd
->rd_data0
;
1276 for (buf
= 0; buf
< length
; buf
++) {
1277 bi
= rgd
->rd_bits
+ buf
;
1278 if (rgrp_block
< (bi
->bi_start
+ bi
->bi_len
) * GFS2_NBBY
)
1282 gfs2_assert(rgd
->rd_sbd
, buf
< length
);
1283 buf_block
= rgrp_block
- bi
->bi_start
* GFS2_NBBY
;
1285 type
= gfs2_testbit(rgd
, bi
->bi_bh
->b_data
+ bi
->bi_offset
,
1286 bi
->bi_len
, buf_block
);
1292 * rgblk_search - find a block in @old_state, change allocation
1293 * state to @new_state
1294 * @rgd: the resource group descriptor
1295 * @goal: the goal block within the RG (start here to search for avail block)
1296 * @old_state: GFS2_BLKST_XXX the before-allocation state to find
1297 * @new_state: GFS2_BLKST_XXX the after-allocation block state
1298 * @n: The extent length
1300 * Walk rgrp's bitmap to find bits that represent a block in @old_state.
1301 * Add the found bitmap buffer to the transaction.
1302 * Set the found bits to @new_state to change block's allocation state.
1304 * This function never fails, because we wouldn't call it unless we
1305 * know (from reservation results, etc.) that a block is available.
1307 * Scope of @goal and returned block is just within rgrp, not the whole
1310 * Returns: the block number allocated
1313 static u32
rgblk_search(struct gfs2_rgrpd
*rgd
, u32 goal
,
1314 unsigned char old_state
, unsigned char new_state
,
1317 struct gfs2_bitmap
*bi
= NULL
;
1318 const u32 length
= rgd
->rd_length
;
1320 unsigned int buf
, x
;
1321 const unsigned int elen
= *n
;
1325 /* Find bitmap block that contains bits for goal block */
1326 for (buf
= 0; buf
< length
; buf
++) {
1327 bi
= rgd
->rd_bits
+ buf
;
1328 if (goal
< (bi
->bi_start
+ bi
->bi_len
) * GFS2_NBBY
)
1332 gfs2_assert(rgd
->rd_sbd
, buf
< length
);
1334 /* Convert scope of "goal" from rgrp-wide to within found bit block */
1335 goal
-= bi
->bi_start
* GFS2_NBBY
;
1337 /* Search (up to entire) bitmap in this rgrp for allocatable block.
1338 "x <= length", instead of "x < length", because we typically start
1339 the search in the middle of a bit block, but if we can't find an
1340 allocatable block anywhere else, we want to be able wrap around and
1341 search in the first part of our first-searched bit block. */
1342 for (x
= 0; x
<= length
; x
++) {
1343 /* The GFS2_BLKST_UNLINKED state doesn't apply to the clone
1344 bitmaps, so we must search the originals for that. */
1345 buffer
= bi
->bi_bh
->b_data
+ bi
->bi_offset
;
1346 if (old_state
!= GFS2_BLKST_UNLINKED
&& bi
->bi_clone
)
1347 buffer
= bi
->bi_clone
+ bi
->bi_offset
;
1349 blk
= gfs2_bitfit(buffer
, bi
->bi_len
, goal
, old_state
);
1350 if (blk
!= BFITNOENT
)
1353 /* Try next bitmap block (wrap back to rgrp header if at end) */
1354 buf
= (buf
+ 1) % length
;
1355 bi
= rgd
->rd_bits
+ buf
;
1359 if (blk
!= BFITNOENT
&& old_state
!= new_state
) {
1361 gfs2_trans_add_bh(rgd
->rd_gl
, bi
->bi_bh
, 1);
1362 gfs2_setbit(rgd
, bi
->bi_bh
->b_data
, bi
->bi_clone
, bi
->bi_offset
,
1363 bi
->bi_len
, blk
, new_state
);
1367 if (goal
>= (bi
->bi_len
* GFS2_NBBY
))
1369 if (gfs2_testbit(rgd
, buffer
, bi
->bi_len
, goal
) !=
1372 gfs2_setbit(rgd
, bi
->bi_bh
->b_data
, bi
->bi_clone
,
1373 bi
->bi_offset
, bi
->bi_len
, goal
,
1379 return (blk
== BFITNOENT
) ? blk
: (bi
->bi_start
* GFS2_NBBY
) + blk
;
1383 * rgblk_free - Change alloc state of given block(s)
1384 * @sdp: the filesystem
1385 * @bstart: the start of a run of blocks to free
1386 * @blen: the length of the block run (all must lie within ONE RG!)
1387 * @new_state: GFS2_BLKST_XXX the after-allocation block state
1389 * Returns: Resource group containing the block(s)
1392 static struct gfs2_rgrpd
*rgblk_free(struct gfs2_sbd
*sdp
, u64 bstart
,
1393 u32 blen
, unsigned char new_state
)
1395 struct gfs2_rgrpd
*rgd
;
1396 struct gfs2_bitmap
*bi
= NULL
;
1397 u32 length
, rgrp_blk
, buf_blk
;
1400 rgd
= gfs2_blk2rgrpd(sdp
, bstart
);
1402 if (gfs2_consist(sdp
))
1403 fs_err(sdp
, "block = %llu\n", (unsigned long long)bstart
);
1407 length
= rgd
->rd_length
;
1409 rgrp_blk
= bstart
- rgd
->rd_data0
;
1412 for (buf
= 0; buf
< length
; buf
++) {
1413 bi
= rgd
->rd_bits
+ buf
;
1414 if (rgrp_blk
< (bi
->bi_start
+ bi
->bi_len
) * GFS2_NBBY
)
1418 gfs2_assert(rgd
->rd_sbd
, buf
< length
);
1420 buf_blk
= rgrp_blk
- bi
->bi_start
* GFS2_NBBY
;
1423 if (!bi
->bi_clone
) {
1424 bi
->bi_clone
= kmalloc(bi
->bi_bh
->b_size
,
1425 GFP_NOFS
| __GFP_NOFAIL
);
1426 memcpy(bi
->bi_clone
+ bi
->bi_offset
,
1427 bi
->bi_bh
->b_data
+ bi
->bi_offset
,
1430 gfs2_trans_add_bh(rgd
->rd_gl
, bi
->bi_bh
, 1);
1431 gfs2_setbit(rgd
, bi
->bi_bh
->b_data
, NULL
, bi
->bi_offset
,
1432 bi
->bi_len
, buf_blk
, new_state
);
1439 * gfs2_alloc_block - Allocate a block
1440 * @ip: the inode to allocate the block for
1442 * Returns: the allocated block
1445 u64
gfs2_alloc_block(struct gfs2_inode
*ip
, unsigned int *n
)
1447 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1448 struct gfs2_alloc
*al
= ip
->i_alloc
;
1449 struct gfs2_rgrpd
*rgd
= al
->al_rgd
;
1453 if (rgrp_contains_block(rgd
, ip
->i_goal
))
1454 goal
= ip
->i_goal
- rgd
->rd_data0
;
1456 goal
= rgd
->rd_last_alloc
;
1458 blk
= rgblk_search(rgd
, goal
, GFS2_BLKST_FREE
, GFS2_BLKST_USED
, n
);
1459 BUG_ON(blk
== BFITNOENT
);
1461 rgd
->rd_last_alloc
= blk
;
1462 block
= rgd
->rd_data0
+ blk
;
1465 gfs2_assert_withdraw(sdp
, rgd
->rd_free
>= *n
);
1468 gfs2_trans_add_bh(rgd
->rd_gl
, rgd
->rd_bits
[0].bi_bh
, 1);
1469 gfs2_rgrp_out(rgd
, rgd
->rd_bits
[0].bi_bh
->b_data
);
1471 al
->al_alloced
+= *n
;
1473 gfs2_statfs_change(sdp
, 0, -(s64
)*n
, 0);
1474 gfs2_quota_change(ip
, *n
, ip
->i_inode
.i_uid
, ip
->i_inode
.i_gid
);
1476 spin_lock(&sdp
->sd_rindex_spin
);
1477 rgd
->rd_free_clone
-= *n
;
1478 spin_unlock(&sdp
->sd_rindex_spin
);
1484 * gfs2_alloc_di - Allocate a dinode
1485 * @dip: the directory that the inode is going in
1487 * Returns: the block allocated
1490 u64
gfs2_alloc_di(struct gfs2_inode
*dip
, u64
*generation
)
1492 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
1493 struct gfs2_alloc
*al
= dip
->i_alloc
;
1494 struct gfs2_rgrpd
*rgd
= al
->al_rgd
;
1499 blk
= rgblk_search(rgd
, rgd
->rd_last_alloc
,
1500 GFS2_BLKST_FREE
, GFS2_BLKST_DINODE
, &n
);
1501 BUG_ON(blk
== BFITNOENT
);
1503 rgd
->rd_last_alloc
= blk
;
1505 block
= rgd
->rd_data0
+ blk
;
1507 gfs2_assert_withdraw(sdp
, rgd
->rd_free
);
1510 *generation
= rgd
->rd_igeneration
++;
1511 gfs2_trans_add_bh(rgd
->rd_gl
, rgd
->rd_bits
[0].bi_bh
, 1);
1512 gfs2_rgrp_out(rgd
, rgd
->rd_bits
[0].bi_bh
->b_data
);
1516 gfs2_statfs_change(sdp
, 0, -1, +1);
1517 gfs2_trans_add_unrevoke(sdp
, block
, 1);
1519 spin_lock(&sdp
->sd_rindex_spin
);
1520 rgd
->rd_free_clone
--;
1521 spin_unlock(&sdp
->sd_rindex_spin
);
1527 * gfs2_free_data - free a contiguous run of data block(s)
1528 * @ip: the inode these blocks are being freed from
1529 * @bstart: first block of a run of contiguous blocks
1530 * @blen: the length of the block run
1534 void gfs2_free_data(struct gfs2_inode
*ip
, u64 bstart
, u32 blen
)
1536 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1537 struct gfs2_rgrpd
*rgd
;
1539 rgd
= rgblk_free(sdp
, bstart
, blen
, GFS2_BLKST_FREE
);
1543 rgd
->rd_free
+= blen
;
1545 gfs2_trans_add_bh(rgd
->rd_gl
, rgd
->rd_bits
[0].bi_bh
, 1);
1546 gfs2_rgrp_out(rgd
, rgd
->rd_bits
[0].bi_bh
->b_data
);
1548 gfs2_trans_add_rg(rgd
);
1550 gfs2_statfs_change(sdp
, 0, +blen
, 0);
1551 gfs2_quota_change(ip
, -(s64
)blen
, ip
->i_inode
.i_uid
, ip
->i_inode
.i_gid
);
1555 * gfs2_free_meta - free a contiguous run of data block(s)
1556 * @ip: the inode these blocks are being freed from
1557 * @bstart: first block of a run of contiguous blocks
1558 * @blen: the length of the block run
1562 void gfs2_free_meta(struct gfs2_inode
*ip
, u64 bstart
, u32 blen
)
1564 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1565 struct gfs2_rgrpd
*rgd
;
1567 rgd
= rgblk_free(sdp
, bstart
, blen
, GFS2_BLKST_FREE
);
1571 rgd
->rd_free
+= blen
;
1573 gfs2_trans_add_bh(rgd
->rd_gl
, rgd
->rd_bits
[0].bi_bh
, 1);
1574 gfs2_rgrp_out(rgd
, rgd
->rd_bits
[0].bi_bh
->b_data
);
1576 gfs2_trans_add_rg(rgd
);
1578 gfs2_statfs_change(sdp
, 0, +blen
, 0);
1579 gfs2_quota_change(ip
, -(s64
)blen
, ip
->i_inode
.i_uid
, ip
->i_inode
.i_gid
);
1580 gfs2_meta_wipe(ip
, bstart
, blen
);
1583 void gfs2_unlink_di(struct inode
*inode
)
1585 struct gfs2_inode
*ip
= GFS2_I(inode
);
1586 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
1587 struct gfs2_rgrpd
*rgd
;
1588 u64 blkno
= ip
->i_no_addr
;
1590 rgd
= rgblk_free(sdp
, blkno
, 1, GFS2_BLKST_UNLINKED
);
1593 gfs2_trans_add_bh(rgd
->rd_gl
, rgd
->rd_bits
[0].bi_bh
, 1);
1594 gfs2_rgrp_out(rgd
, rgd
->rd_bits
[0].bi_bh
->b_data
);
1595 gfs2_trans_add_rg(rgd
);
1598 static void gfs2_free_uninit_di(struct gfs2_rgrpd
*rgd
, u64 blkno
)
1600 struct gfs2_sbd
*sdp
= rgd
->rd_sbd
;
1601 struct gfs2_rgrpd
*tmp_rgd
;
1603 tmp_rgd
= rgblk_free(sdp
, blkno
, 1, GFS2_BLKST_FREE
);
1606 gfs2_assert_withdraw(sdp
, rgd
== tmp_rgd
);
1608 if (!rgd
->rd_dinodes
)
1609 gfs2_consist_rgrpd(rgd
);
1613 gfs2_trans_add_bh(rgd
->rd_gl
, rgd
->rd_bits
[0].bi_bh
, 1);
1614 gfs2_rgrp_out(rgd
, rgd
->rd_bits
[0].bi_bh
->b_data
);
1616 gfs2_statfs_change(sdp
, 0, +1, -1);
1617 gfs2_trans_add_rg(rgd
);
1621 void gfs2_free_di(struct gfs2_rgrpd
*rgd
, struct gfs2_inode
*ip
)
1623 gfs2_free_uninit_di(rgd
, ip
->i_no_addr
);
1624 gfs2_quota_change(ip
, -1, ip
->i_inode
.i_uid
, ip
->i_inode
.i_gid
);
1625 gfs2_meta_wipe(ip
, ip
->i_no_addr
, 1);
1629 * gfs2_rlist_add - add a RG to a list of RGs
1630 * @sdp: the filesystem
1631 * @rlist: the list of resource groups
1634 * Figure out what RG a block belongs to and add that RG to the list
1636 * FIXME: Don't use NOFAIL
1640 void gfs2_rlist_add(struct gfs2_sbd
*sdp
, struct gfs2_rgrp_list
*rlist
,
1643 struct gfs2_rgrpd
*rgd
;
1644 struct gfs2_rgrpd
**tmp
;
1645 unsigned int new_space
;
1648 if (gfs2_assert_warn(sdp
, !rlist
->rl_ghs
))
1651 rgd
= gfs2_blk2rgrpd(sdp
, block
);
1653 if (gfs2_consist(sdp
))
1654 fs_err(sdp
, "block = %llu\n", (unsigned long long)block
);
1658 for (x
= 0; x
< rlist
->rl_rgrps
; x
++)
1659 if (rlist
->rl_rgd
[x
] == rgd
)
1662 if (rlist
->rl_rgrps
== rlist
->rl_space
) {
1663 new_space
= rlist
->rl_space
+ 10;
1665 tmp
= kcalloc(new_space
, sizeof(struct gfs2_rgrpd
*),
1666 GFP_NOFS
| __GFP_NOFAIL
);
1668 if (rlist
->rl_rgd
) {
1669 memcpy(tmp
, rlist
->rl_rgd
,
1670 rlist
->rl_space
* sizeof(struct gfs2_rgrpd
*));
1671 kfree(rlist
->rl_rgd
);
1674 rlist
->rl_space
= new_space
;
1675 rlist
->rl_rgd
= tmp
;
1678 rlist
->rl_rgd
[rlist
->rl_rgrps
++] = rgd
;
1682 * gfs2_rlist_alloc - all RGs have been added to the rlist, now allocate
1683 * and initialize an array of glock holders for them
1684 * @rlist: the list of resource groups
1685 * @state: the lock state to acquire the RG lock in
1686 * @flags: the modifier flags for the holder structures
1688 * FIXME: Don't use NOFAIL
1692 void gfs2_rlist_alloc(struct gfs2_rgrp_list
*rlist
, unsigned int state
)
1696 rlist
->rl_ghs
= kcalloc(rlist
->rl_rgrps
, sizeof(struct gfs2_holder
),
1697 GFP_NOFS
| __GFP_NOFAIL
);
1698 for (x
= 0; x
< rlist
->rl_rgrps
; x
++)
1699 gfs2_holder_init(rlist
->rl_rgd
[x
]->rd_gl
,
1705 * gfs2_rlist_free - free a resource group list
1706 * @list: the list of resource groups
1710 void gfs2_rlist_free(struct gfs2_rgrp_list
*rlist
)
1714 kfree(rlist
->rl_rgd
);
1716 if (rlist
->rl_ghs
) {
1717 for (x
= 0; x
< rlist
->rl_rgrps
; x
++)
1718 gfs2_holder_uninit(&rlist
->rl_ghs
[x
]);
1719 kfree(rlist
->rl_ghs
);