blob: 6daf4c65a3c898726c72866876a43a5cdc5d8d15 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersonfe6c9912008-01-28 11:13:02 -06003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
Steven Whitehousef42faf42006-01-30 18:34:10 +000014#include <linux/fs.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050015#include <linux/gfs2_ondisk.h>
Bob Peterson1f466a42008-03-10 18:17:47 -050016#include <linux/prefetch.h>
Steven Whitehousef15ab562009-02-09 09:25:01 +000017#include <linux/blkdev.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000018
19#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include "glock.h"
22#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000023#include "lops.h"
24#include "meta_io.h"
25#include "quota.h"
26#include "rgrp.h"
27#include "super.h"
28#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050029#include "util.h"
Benjamin Marzinski172e0452007-03-23 14:51:56 -060030#include "log.h"
Steven Whitehousec8cdf472007-06-08 10:05:33 +010031#include "inode.h"
Steven Whitehouse63997772009-06-12 08:49:20 +010032#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000033
Steven Whitehouse2c1e52a2006-09-05 15:41:57 -040034#define BFITNOENT ((u32)~0)
Bob Peterson6760bdc2007-07-24 14:09:32 -050035#define NO_BLOCK ((u64)~0)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040036
Bob Peterson1f466a42008-03-10 18:17:47 -050037#if BITS_PER_LONG == 32
38#define LBITMASK (0x55555555UL)
39#define LBITSKIP55 (0x55555555UL)
40#define LBITSKIP00 (0x00000000UL)
41#else
42#define LBITMASK (0x5555555555555555UL)
43#define LBITSKIP55 (0x5555555555555555UL)
44#define LBITSKIP00 (0x0000000000000000UL)
45#endif
46
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040047/*
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
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040050 * bits. So, each byte represents GFS2_NBBY (i.e. 4) blocks.
51 *
52 * 0 = Free
53 * 1 = Used (not metadata)
54 * 2 = Unlinked (still in use) inode
55 * 3 = Used (metadata)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040056 */
57
58static const char valid_change[16] = {
59 /* current */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040060 /* n */ 0, 1, 1, 1,
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040061 /* e */ 1, 0, 0, 0,
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040062 /* w */ 0, 0, 0, 1,
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040063 1, 0, 0, 0
64};
65
Steven Whitehousec8cdf472007-06-08 10:05:33 +010066static u32 rgblk_search(struct gfs2_rgrpd *rgd, u32 goal,
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000067 unsigned char old_state, unsigned char new_state,
68 unsigned int *n);
Steven Whitehousec8cdf472007-06-08 10:05:33 +010069
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040070/**
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
76 *
77 */
78
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000079static 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)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040083{
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000084 unsigned char *byte1, *byte2, *end, cur_state;
85 const unsigned int bit = (block % GFS2_NBBY) * GFS2_BIT_SIZE;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040086
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000087 byte1 = buf1 + offset + (block / GFS2_NBBY);
88 end = buf1 + offset + buflen;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040089
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000090 BUG_ON(byte1 >= end);
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040091
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000092 cur_state = (*byte1 >> bit) & GFS2_BIT_MASK;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040093
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000094 if (unlikely(!valid_change[new_state * 4 + cur_state])) {
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040095 gfs2_consist_rgrpd(rgd);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000096 return;
97 }
98 *byte1 ^= (cur_state ^ new_state) << bit;
99
100 if (buf2) {
101 byte2 = buf2 + offset + (block / GFS2_NBBY);
102 cur_state = (*byte2 >> bit) & GFS2_BIT_MASK;
103 *byte2 ^= (cur_state ^ new_state) << bit;
104 }
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400105}
106
107/**
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
112 *
113 */
114
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000115static inline unsigned char gfs2_testbit(struct gfs2_rgrpd *rgd,
116 const unsigned char *buffer,
117 unsigned int buflen, u32 block)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400118{
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000119 const unsigned char *byte, *end;
120 unsigned char cur_state;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400121 unsigned int bit;
122
123 byte = buffer + (block / GFS2_NBBY);
124 bit = (block % GFS2_NBBY) * GFS2_BIT_SIZE;
125 end = buffer + buflen;
126
127 gfs2_assert(rgd->rd_sbd, byte < end);
128
129 cur_state = (*byte >> bit) & GFS2_BIT_MASK;
130
131 return cur_state;
132}
133
134/**
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000135 * gfs2_bit_search
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
139 *
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
146 * odd bit positions.
147 *
148 * This allows searching of a whole u64 at once (32 blocks) with a
149 * single test (on 64 bit arches).
150 */
151
152static inline u64 gfs2_bit_search(const __le64 *ptr, u64 mask, u8 state)
153{
154 u64 tmp;
155 static const u64 search[] = {
Hannes Eder075ac442009-02-21 02:11:42 +0100156 [0] = 0xffffffffffffffffULL,
157 [1] = 0xaaaaaaaaaaaaaaaaULL,
158 [2] = 0x5555555555555555ULL,
159 [3] = 0x0000000000000000ULL,
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000160 };
161 tmp = le64_to_cpu(*ptr) ^ search[state];
162 tmp &= (tmp >> 1);
163 tmp &= mask;
164 return tmp;
165}
166
167/**
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400168 * 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
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000171 * @len: the length (in bytes) of the buffer
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400172 * @goal: start search at this block's bit-pair (within @buffer)
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000173 * @state: GFS2_BLKST_XXX the state of the block we're looking for.
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400174 *
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
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000177 * 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.
180 *
181 * The size of the buffer is in bytes, but is it assumed that it is
Anand Gadiyarfd589a82009-07-16 17:13:03 +0200182 * always ok to read a complete multiple of 64 bits at the end
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000183 * of the block in case the end is no aligned to a natural boundary.
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400184 *
185 * Return: the block number (bitmap buffer scope) that was found
186 */
187
Hannes Eder02ab1722009-02-21 02:12:05 +0100188static u32 gfs2_bitfit(const u8 *buf, const unsigned int len,
189 u32 goal, u8 state)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400190{
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000191 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)));
194 u64 tmp;
Hannes Eder075ac442009-02-21 02:11:42 +0100195 u64 mask = 0x5555555555555555ULL;
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000196 u32 bit;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400197
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000198 BUG_ON(state > 3);
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400199
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000200 /* Mask off bits we don't care about at the start of the search */
201 mask <<= spoint;
202 tmp = gfs2_bit_search(ptr, mask, state);
203 ptr++;
204 while(tmp == 0 && ptr < end) {
Hannes Eder075ac442009-02-21 02:11:42 +0100205 tmp = gfs2_bit_search(ptr, 0x5555555555555555ULL, state);
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000206 ptr++;
Bob Peterson1f466a42008-03-10 18:17:47 -0500207 }
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000208 /* 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 */
212 if (tmp == 0)
213 return BFITNOENT;
214 ptr--;
Steven Whitehoused8bd5042009-04-23 08:54:02 +0100215 bit = __ffs64(tmp);
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000216 bit /= 2; /* two bits per entry in the bitmap */
217 return (((const unsigned char *)ptr - buf) * GFS2_NBBY) + bit;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400218}
219
220/**
221 * gfs2_bitcount - count the number of bits in a certain state
222 * @buffer: the buffer that holds the bitmaps
223 * @buflen: the length (in bytes) of the buffer
224 * @state: the state of the block we're looking for
225 *
226 * Returns: The number of bits
227 */
228
Steven Whitehouse110acf32008-01-29 13:30:20 +0000229static u32 gfs2_bitcount(struct gfs2_rgrpd *rgd, const u8 *buffer,
230 unsigned int buflen, u8 state)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400231{
Steven Whitehouse110acf32008-01-29 13:30:20 +0000232 const u8 *byte = buffer;
233 const u8 *end = buffer + buflen;
234 const u8 state1 = state << 2;
235 const u8 state2 = state << 4;
236 const u8 state3 = state << 6;
Steven Whitehousecd915492006-09-04 12:49:07 -0400237 u32 count = 0;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400238
239 for (; byte < end; byte++) {
240 if (((*byte) & 0x03) == state)
241 count++;
242 if (((*byte) & 0x0C) == state1)
243 count++;
244 if (((*byte) & 0x30) == state2)
245 count++;
246 if (((*byte) & 0xC0) == state3)
247 count++;
248 }
249
250 return count;
251}
252
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253/**
254 * gfs2_rgrp_verify - Verify that a resource group is consistent
255 * @sdp: the filesystem
256 * @rgd: the rgrp
257 *
258 */
259
260void gfs2_rgrp_verify(struct gfs2_rgrpd *rgd)
261{
262 struct gfs2_sbd *sdp = rgd->rd_sbd;
263 struct gfs2_bitmap *bi = NULL;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100264 u32 length = rgd->rd_length;
Steven Whitehousecd915492006-09-04 12:49:07 -0400265 u32 count[4], tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000266 int buf, x;
267
Steven Whitehousecd915492006-09-04 12:49:07 -0400268 memset(count, 0, 4 * sizeof(u32));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000269
270 /* Count # blocks in each of 4 possible allocation states */
271 for (buf = 0; buf < length; buf++) {
272 bi = rgd->rd_bits + buf;
273 for (x = 0; x < 4; x++)
274 count[x] += gfs2_bitcount(rgd,
275 bi->bi_bh->b_data +
276 bi->bi_offset,
277 bi->bi_len, x);
278 }
279
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000280 if (count[0] != rgd->rd_free) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281 if (gfs2_consist_rgrpd(rgd))
282 fs_err(sdp, "free data mismatch: %u != %u\n",
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000283 count[0], rgd->rd_free);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000284 return;
285 }
286
Steven Whitehouse73f74942008-11-04 10:32:57 +0000287 tmp = rgd->rd_data - rgd->rd_free - rgd->rd_dinodes;
Benjamin Marzinski6b946172009-07-10 18:13:26 -0500288 if (count[1] != tmp) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000289 if (gfs2_consist_rgrpd(rgd))
290 fs_err(sdp, "used data mismatch: %u != %u\n",
291 count[1], tmp);
292 return;
293 }
294
Benjamin Marzinski6b946172009-07-10 18:13:26 -0500295 if (count[2] + count[3] != rgd->rd_dinodes) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296 if (gfs2_consist_rgrpd(rgd))
297 fs_err(sdp, "used metadata mismatch: %u != %u\n",
Benjamin Marzinski6b946172009-07-10 18:13:26 -0500298 count[2] + count[3], rgd->rd_dinodes);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000299 return;
300 }
301}
302
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100303static inline int rgrp_contains_block(struct gfs2_rgrpd *rgd, u64 block)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000304{
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100305 u64 first = rgd->rd_data0;
306 u64 last = first + rgd->rd_data;
Steven Whitehouse16910422006-09-05 11:15:45 -0400307 return first <= block && block < last;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000308}
309
310/**
311 * gfs2_blk2rgrpd - Find resource group for a given data/meta block number
312 * @sdp: The GFS2 superblock
313 * @n: The data block number
314 *
315 * Returns: The resource group, or NULL if not found
316 */
317
Steven Whitehousecd915492006-09-04 12:49:07 -0400318struct gfs2_rgrpd *gfs2_blk2rgrpd(struct gfs2_sbd *sdp, u64 blk)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000319{
320 struct gfs2_rgrpd *rgd;
321
322 spin_lock(&sdp->sd_rindex_spin);
323
324 list_for_each_entry(rgd, &sdp->sd_rindex_mru_list, rd_list_mru) {
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100325 if (rgrp_contains_block(rgd, blk)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000326 list_move(&rgd->rd_list_mru, &sdp->sd_rindex_mru_list);
327 spin_unlock(&sdp->sd_rindex_spin);
328 return rgd;
329 }
330 }
331
332 spin_unlock(&sdp->sd_rindex_spin);
333
334 return NULL;
335}
336
337/**
338 * gfs2_rgrpd_get_first - get the first Resource Group in the filesystem
339 * @sdp: The GFS2 superblock
340 *
341 * Returns: The first rgrp in the filesystem
342 */
343
344struct gfs2_rgrpd *gfs2_rgrpd_get_first(struct gfs2_sbd *sdp)
345{
346 gfs2_assert(sdp, !list_empty(&sdp->sd_rindex_list));
347 return list_entry(sdp->sd_rindex_list.next, struct gfs2_rgrpd, rd_list);
348}
349
350/**
351 * gfs2_rgrpd_get_next - get the next RG
352 * @rgd: A RG
353 *
354 * Returns: The next rgrp
355 */
356
357struct gfs2_rgrpd *gfs2_rgrpd_get_next(struct gfs2_rgrpd *rgd)
358{
359 if (rgd->rd_list.next == &rgd->rd_sbd->sd_rindex_list)
360 return NULL;
361 return list_entry(rgd->rd_list.next, struct gfs2_rgrpd, rd_list);
362}
363
364static void clear_rgrpdi(struct gfs2_sbd *sdp)
365{
366 struct list_head *head;
367 struct gfs2_rgrpd *rgd;
368 struct gfs2_glock *gl;
369
370 spin_lock(&sdp->sd_rindex_spin);
371 sdp->sd_rindex_forward = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000372 spin_unlock(&sdp->sd_rindex_spin);
373
374 head = &sdp->sd_rindex_list;
375 while (!list_empty(head)) {
376 rgd = list_entry(head->next, struct gfs2_rgrpd, rd_list);
377 gl = rgd->rd_gl;
378
379 list_del(&rgd->rd_list);
380 list_del(&rgd->rd_list_mru);
381
382 if (gl) {
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500383 gl->gl_object = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000384 gfs2_glock_put(gl);
385 }
386
387 kfree(rgd->rd_bits);
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600388 kmem_cache_free(gfs2_rgrpd_cachep, rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000389 }
390}
391
392void gfs2_clear_rgrpd(struct gfs2_sbd *sdp)
393{
Steven Whitehousef55ab262006-02-21 12:51:39 +0000394 mutex_lock(&sdp->sd_rindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000395 clear_rgrpdi(sdp);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000396 mutex_unlock(&sdp->sd_rindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000397}
398
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100399static void gfs2_rindex_print(const struct gfs2_rgrpd *rgd)
400{
401 printk(KERN_INFO " ri_addr = %llu\n", (unsigned long long)rgd->rd_addr);
402 printk(KERN_INFO " ri_length = %u\n", rgd->rd_length);
403 printk(KERN_INFO " ri_data0 = %llu\n", (unsigned long long)rgd->rd_data0);
404 printk(KERN_INFO " ri_data = %u\n", rgd->rd_data);
405 printk(KERN_INFO " ri_bitbytes = %u\n", rgd->rd_bitbytes);
406}
407
David Teiglandb3b94fa2006-01-16 16:50:04 +0000408/**
409 * gfs2_compute_bitstructs - Compute the bitmap sizes
410 * @rgd: The resource group descriptor
411 *
412 * Calculates bitmap descriptors, one for each block that contains bitmap data
413 *
414 * Returns: errno
415 */
416
417static int compute_bitstructs(struct gfs2_rgrpd *rgd)
418{
419 struct gfs2_sbd *sdp = rgd->rd_sbd;
420 struct gfs2_bitmap *bi;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100421 u32 length = rgd->rd_length; /* # blocks in hdr & bitmap */
Steven Whitehousecd915492006-09-04 12:49:07 -0400422 u32 bytes_left, bytes;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000423 int x;
424
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400425 if (!length)
426 return -EINVAL;
427
Steven Whitehousedd894be2006-07-27 14:29:00 -0400428 rgd->rd_bits = kcalloc(length, sizeof(struct gfs2_bitmap), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000429 if (!rgd->rd_bits)
430 return -ENOMEM;
431
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100432 bytes_left = rgd->rd_bitbytes;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000433
434 for (x = 0; x < length; x++) {
435 bi = rgd->rd_bits + x;
436
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +0100437 bi->bi_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000438 /* small rgrp; bitmap stored completely in header block */
439 if (length == 1) {
440 bytes = bytes_left;
441 bi->bi_offset = sizeof(struct gfs2_rgrp);
442 bi->bi_start = 0;
443 bi->bi_len = bytes;
444 /* header block */
445 } else if (x == 0) {
446 bytes = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_rgrp);
447 bi->bi_offset = sizeof(struct gfs2_rgrp);
448 bi->bi_start = 0;
449 bi->bi_len = bytes;
450 /* last block */
451 } else if (x + 1 == length) {
452 bytes = bytes_left;
453 bi->bi_offset = sizeof(struct gfs2_meta_header);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100454 bi->bi_start = rgd->rd_bitbytes - bytes_left;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000455 bi->bi_len = bytes;
456 /* other blocks */
457 } else {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500458 bytes = sdp->sd_sb.sb_bsize -
459 sizeof(struct gfs2_meta_header);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000460 bi->bi_offset = sizeof(struct gfs2_meta_header);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100461 bi->bi_start = rgd->rd_bitbytes - bytes_left;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462 bi->bi_len = bytes;
463 }
464
465 bytes_left -= bytes;
466 }
467
468 if (bytes_left) {
469 gfs2_consist_rgrpd(rgd);
470 return -EIO;
471 }
472 bi = rgd->rd_bits + (length - 1);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100473 if ((bi->bi_start + bi->bi_len) * GFS2_NBBY != rgd->rd_data) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474 if (gfs2_consist_rgrpd(rgd)) {
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100475 gfs2_rindex_print(rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000476 fs_err(sdp, "start=%u len=%u offset=%u\n",
477 bi->bi_start, bi->bi_len, bi->bi_offset);
478 }
479 return -EIO;
480 }
481
482 return 0;
483}
484
485/**
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500486 * gfs2_ri_total - Total up the file system space, according to the rindex.
487 *
488 */
489u64 gfs2_ri_total(struct gfs2_sbd *sdp)
490{
491 u64 total_data = 0;
492 struct inode *inode = sdp->sd_rindex;
493 struct gfs2_inode *ip = GFS2_I(inode);
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500494 char buf[sizeof(struct gfs2_rindex)];
495 struct file_ra_state ra_state;
496 int error, rgrps;
497
498 mutex_lock(&sdp->sd_rindex_mutex);
499 file_ra_state_init(&ra_state, inode->i_mapping);
500 for (rgrps = 0;; rgrps++) {
501 loff_t pos = rgrps * sizeof(struct gfs2_rindex);
502
Steven Whitehousec9e98882008-11-04 09:47:33 +0000503 if (pos + sizeof(struct gfs2_rindex) >= ip->i_disksize)
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500504 break;
505 error = gfs2_internal_read(ip, &ra_state, buf, &pos,
506 sizeof(struct gfs2_rindex));
507 if (error != sizeof(struct gfs2_rindex))
508 break;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100509 total_data += be32_to_cpu(((struct gfs2_rindex *)buf)->ri_data);
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500510 }
511 mutex_unlock(&sdp->sd_rindex_mutex);
512 return total_data;
513}
514
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100515static void gfs2_rindex_in(struct gfs2_rgrpd *rgd, const void *buf)
516{
517 const struct gfs2_rindex *str = buf;
518
519 rgd->rd_addr = be64_to_cpu(str->ri_addr);
520 rgd->rd_length = be32_to_cpu(str->ri_length);
521 rgd->rd_data0 = be64_to_cpu(str->ri_data0);
522 rgd->rd_data = be32_to_cpu(str->ri_data);
523 rgd->rd_bitbytes = be32_to_cpu(str->ri_bitbytes);
524}
525
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500526/**
Robert Peterson6c532672007-05-10 16:54:38 -0500527 * read_rindex_entry - Pull in a new resource index entry from the disk
David Teiglandb3b94fa2006-01-16 16:50:04 +0000528 * @gl: The glock covering the rindex inode
529 *
Robert Peterson6c532672007-05-10 16:54:38 -0500530 * Returns: 0 on success, error code otherwise
531 */
532
533static int read_rindex_entry(struct gfs2_inode *ip,
534 struct file_ra_state *ra_state)
535{
536 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
537 loff_t pos = sdp->sd_rgrps * sizeof(struct gfs2_rindex);
538 char buf[sizeof(struct gfs2_rindex)];
539 int error;
540 struct gfs2_rgrpd *rgd;
541
542 error = gfs2_internal_read(ip, ra_state, buf, &pos,
543 sizeof(struct gfs2_rindex));
544 if (!error)
545 return 0;
546 if (error != sizeof(struct gfs2_rindex)) {
547 if (error > 0)
548 error = -EIO;
549 return error;
550 }
551
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600552 rgd = kmem_cache_zalloc(gfs2_rgrpd_cachep, GFP_NOFS);
Robert Peterson6c532672007-05-10 16:54:38 -0500553 error = -ENOMEM;
554 if (!rgd)
555 return error;
556
557 mutex_init(&rgd->rd_mutex);
558 lops_init_le(&rgd->rd_le, &gfs2_rg_lops);
559 rgd->rd_sbd = sdp;
560
561 list_add_tail(&rgd->rd_list, &sdp->sd_rindex_list);
562 list_add_tail(&rgd->rd_list_mru, &sdp->sd_rindex_mru_list);
563
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100564 gfs2_rindex_in(rgd, buf);
Robert Peterson6c532672007-05-10 16:54:38 -0500565 error = compute_bitstructs(rgd);
566 if (error)
567 return error;
568
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100569 error = gfs2_glock_get(sdp, rgd->rd_addr,
Robert Peterson6c532672007-05-10 16:54:38 -0500570 &gfs2_rgrp_glops, CREATE, &rgd->rd_gl);
571 if (error)
572 return error;
573
574 rgd->rd_gl->gl_object = rgd;
Bob Petersoncf45b752008-01-31 10:31:39 -0600575 rgd->rd_flags &= ~GFS2_RDF_UPTODATE;
Robert Peterson6c532672007-05-10 16:54:38 -0500576 return error;
577}
578
579/**
580 * gfs2_ri_update - Pull in a new resource index from the disk
581 * @ip: pointer to the rindex inode
582 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000583 * Returns: 0 on successful update, error code otherwise
584 */
585
586static int gfs2_ri_update(struct gfs2_inode *ip)
587{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400588 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
589 struct inode *inode = &ip->i_inode;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000590 struct file_ra_state ra_state;
Steven Whitehousec9e98882008-11-04 09:47:33 +0000591 u64 rgrp_count = ip->i_disksize;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000592 int error;
593
Steven Whitehouse7fe3ec62010-01-29 15:20:34 +0000594 do_div(rgrp_count, sizeof(struct gfs2_rindex));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000595 clear_rgrpdi(sdp);
596
Steven Whitehousef42faf42006-01-30 18:34:10 +0000597 file_ra_state_init(&ra_state, inode->i_mapping);
Robert Petersoncd81a4b2007-05-14 12:42:18 -0500598 for (sdp->sd_rgrps = 0; sdp->sd_rgrps < rgrp_count; sdp->sd_rgrps++) {
Robert Peterson6c532672007-05-10 16:54:38 -0500599 error = read_rindex_entry(ip, &ra_state);
600 if (error) {
601 clear_rgrpdi(sdp);
602 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000603 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604 }
605
Bob Petersoncf45b752008-01-31 10:31:39 -0600606 sdp->sd_rindex_uptodate = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000607 return 0;
Robert Peterson6c532672007-05-10 16:54:38 -0500608}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000609
Robert Peterson6c532672007-05-10 16:54:38 -0500610/**
611 * gfs2_ri_update_special - Pull in a new resource index from the disk
612 *
613 * This is a special version that's safe to call from gfs2_inplace_reserve_i.
614 * In this case we know that we don't have any resource groups in memory yet.
615 *
616 * @ip: pointer to the rindex inode
617 *
618 * Returns: 0 on successful update, error code otherwise
619 */
620static int gfs2_ri_update_special(struct gfs2_inode *ip)
621{
622 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
623 struct inode *inode = &ip->i_inode;
624 struct file_ra_state ra_state;
625 int error;
626
627 file_ra_state_init(&ra_state, inode->i_mapping);
628 for (sdp->sd_rgrps = 0;; sdp->sd_rgrps++) {
629 /* Ignore partials */
630 if ((sdp->sd_rgrps + 1) * sizeof(struct gfs2_rindex) >
Steven Whitehousec9e98882008-11-04 09:47:33 +0000631 ip->i_disksize)
Robert Peterson6c532672007-05-10 16:54:38 -0500632 break;
633 error = read_rindex_entry(ip, &ra_state);
634 if (error) {
635 clear_rgrpdi(sdp);
636 return error;
637 }
638 }
639
Bob Petersoncf45b752008-01-31 10:31:39 -0600640 sdp->sd_rindex_uptodate = 1;
Robert Peterson6c532672007-05-10 16:54:38 -0500641 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000642}
643
644/**
645 * gfs2_rindex_hold - Grab a lock on the rindex
646 * @sdp: The GFS2 superblock
647 * @ri_gh: the glock holder
648 *
649 * We grab a lock on the rindex inode to make sure that it doesn't
650 * change whilst we are performing an operation. We keep this lock
651 * for quite long periods of time compared to other locks. This
652 * doesn't matter, since it is shared and it is very, very rarely
653 * accessed in the exclusive mode (i.e. only when expanding the filesystem).
654 *
655 * This makes sure that we're using the latest copy of the resource index
656 * special file, which might have been updated if someone expanded the
657 * filesystem (via gfs2_grow utility), which adds new resource groups.
658 *
659 * Returns: 0 on success, error code otherwise
660 */
661
662int gfs2_rindex_hold(struct gfs2_sbd *sdp, struct gfs2_holder *ri_gh)
663{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400664 struct gfs2_inode *ip = GFS2_I(sdp->sd_rindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000665 struct gfs2_glock *gl = ip->i_gl;
666 int error;
667
668 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, 0, ri_gh);
669 if (error)
670 return error;
671
672 /* Read new copy from disk if we don't have the latest */
Bob Petersoncf45b752008-01-31 10:31:39 -0600673 if (!sdp->sd_rindex_uptodate) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000674 mutex_lock(&sdp->sd_rindex_mutex);
Bob Petersoncf45b752008-01-31 10:31:39 -0600675 if (!sdp->sd_rindex_uptodate) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000676 error = gfs2_ri_update(ip);
677 if (error)
678 gfs2_glock_dq_uninit(ri_gh);
679 }
Steven Whitehousef55ab262006-02-21 12:51:39 +0000680 mutex_unlock(&sdp->sd_rindex_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000681 }
682
683 return error;
684}
685
Bob Peterson42d52e32008-01-28 18:38:07 -0600686static void gfs2_rgrp_in(struct gfs2_rgrpd *rgd, const void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100687{
688 const struct gfs2_rgrp *str = buf;
Bob Peterson42d52e32008-01-28 18:38:07 -0600689 u32 rg_flags;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100690
Bob Peterson42d52e32008-01-28 18:38:07 -0600691 rg_flags = be32_to_cpu(str->rg_flags);
Steven Whitehouse09010972009-05-20 10:48:47 +0100692 rg_flags &= ~GFS2_RDF_MASK;
Steven Whitehouse1ce97e52009-05-21 15:18:19 +0100693 rgd->rd_flags &= GFS2_RDF_MASK;
694 rgd->rd_flags |= rg_flags;
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000695 rgd->rd_free = be32_to_cpu(str->rg_free);
Steven Whitehouse73f74942008-11-04 10:32:57 +0000696 rgd->rd_dinodes = be32_to_cpu(str->rg_dinodes);
Steven Whitehoused8b71f72008-11-04 10:19:03 +0000697 rgd->rd_igeneration = be64_to_cpu(str->rg_igeneration);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100698}
699
Bob Peterson42d52e32008-01-28 18:38:07 -0600700static void gfs2_rgrp_out(struct gfs2_rgrpd *rgd, void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100701{
702 struct gfs2_rgrp *str = buf;
703
Steven Whitehouse09010972009-05-20 10:48:47 +0100704 str->rg_flags = cpu_to_be32(rgd->rd_flags & ~GFS2_RDF_MASK);
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000705 str->rg_free = cpu_to_be32(rgd->rd_free);
Steven Whitehouse73f74942008-11-04 10:32:57 +0000706 str->rg_dinodes = cpu_to_be32(rgd->rd_dinodes);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100707 str->__pad = cpu_to_be32(0);
Steven Whitehoused8b71f72008-11-04 10:19:03 +0000708 str->rg_igeneration = cpu_to_be64(rgd->rd_igeneration);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100709 memset(&str->rg_reserved, 0, sizeof(str->rg_reserved));
710}
711
David Teiglandb3b94fa2006-01-16 16:50:04 +0000712/**
713 * gfs2_rgrp_bh_get - Read in a RG's header and bitmaps
714 * @rgd: the struct gfs2_rgrpd describing the RG to read in
715 *
716 * Read in all of a Resource Group's header and bitmap blocks.
717 * Caller must eventually call gfs2_rgrp_relse() to free the bitmaps.
718 *
719 * Returns: errno
720 */
721
722int gfs2_rgrp_bh_get(struct gfs2_rgrpd *rgd)
723{
724 struct gfs2_sbd *sdp = rgd->rd_sbd;
725 struct gfs2_glock *gl = rgd->rd_gl;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100726 unsigned int length = rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000727 struct gfs2_bitmap *bi;
728 unsigned int x, y;
729 int error;
730
Steven Whitehousef55ab262006-02-21 12:51:39 +0000731 mutex_lock(&rgd->rd_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000732
733 spin_lock(&sdp->sd_rindex_spin);
734 if (rgd->rd_bh_count) {
735 rgd->rd_bh_count++;
736 spin_unlock(&sdp->sd_rindex_spin);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000737 mutex_unlock(&rgd->rd_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000738 return 0;
739 }
740 spin_unlock(&sdp->sd_rindex_spin);
741
742 for (x = 0; x < length; x++) {
743 bi = rgd->rd_bits + x;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100744 error = gfs2_meta_read(gl, rgd->rd_addr + x, 0, &bi->bi_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000745 if (error)
746 goto fail;
747 }
748
749 for (y = length; y--;) {
750 bi = rgd->rd_bits + y;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400751 error = gfs2_meta_wait(sdp, bi->bi_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000752 if (error)
753 goto fail;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400754 if (gfs2_metatype_check(sdp, bi->bi_bh, y ? GFS2_METATYPE_RB :
David Teiglandb3b94fa2006-01-16 16:50:04 +0000755 GFS2_METATYPE_RG)) {
756 error = -EIO;
757 goto fail;
758 }
759 }
760
Bob Petersoncf45b752008-01-31 10:31:39 -0600761 if (!(rgd->rd_flags & GFS2_RDF_UPTODATE)) {
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +0100762 for (x = 0; x < length; x++)
763 clear_bit(GBF_FULL, &rgd->rd_bits[x].bi_flags);
Bob Peterson42d52e32008-01-28 18:38:07 -0600764 gfs2_rgrp_in(rgd, (rgd->rd_bits[0].bi_bh)->b_data);
Steven Whitehouse1ce97e52009-05-21 15:18:19 +0100765 rgd->rd_flags |= (GFS2_RDF_UPTODATE | GFS2_RDF_CHECK);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766 }
767
768 spin_lock(&sdp->sd_rindex_spin);
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000769 rgd->rd_free_clone = rgd->rd_free;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000770 rgd->rd_bh_count++;
771 spin_unlock(&sdp->sd_rindex_spin);
772
Steven Whitehousef55ab262006-02-21 12:51:39 +0000773 mutex_unlock(&rgd->rd_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774
775 return 0;
776
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400777fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000778 while (x--) {
779 bi = rgd->rd_bits + x;
780 brelse(bi->bi_bh);
781 bi->bi_bh = NULL;
782 gfs2_assert_warn(sdp, !bi->bi_clone);
783 }
Steven Whitehousef55ab262006-02-21 12:51:39 +0000784 mutex_unlock(&rgd->rd_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000785
786 return error;
787}
788
789void gfs2_rgrp_bh_hold(struct gfs2_rgrpd *rgd)
790{
791 struct gfs2_sbd *sdp = rgd->rd_sbd;
792
793 spin_lock(&sdp->sd_rindex_spin);
794 gfs2_assert_warn(rgd->rd_sbd, rgd->rd_bh_count);
795 rgd->rd_bh_count++;
796 spin_unlock(&sdp->sd_rindex_spin);
797}
798
799/**
800 * gfs2_rgrp_bh_put - Release RG bitmaps read in with gfs2_rgrp_bh_get()
801 * @rgd: the struct gfs2_rgrpd describing the RG to read in
802 *
803 */
804
805void gfs2_rgrp_bh_put(struct gfs2_rgrpd *rgd)
806{
807 struct gfs2_sbd *sdp = rgd->rd_sbd;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100808 int x, length = rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000809
810 spin_lock(&sdp->sd_rindex_spin);
811 gfs2_assert_warn(rgd->rd_sbd, rgd->rd_bh_count);
812 if (--rgd->rd_bh_count) {
813 spin_unlock(&sdp->sd_rindex_spin);
814 return;
815 }
816
817 for (x = 0; x < length; x++) {
818 struct gfs2_bitmap *bi = rgd->rd_bits + x;
819 kfree(bi->bi_clone);
820 bi->bi_clone = NULL;
821 brelse(bi->bi_bh);
822 bi->bi_bh = NULL;
823 }
824
825 spin_unlock(&sdp->sd_rindex_spin);
826}
827
Steven Whitehousef15ab562009-02-09 09:25:01 +0000828static void gfs2_rgrp_send_discards(struct gfs2_sbd *sdp, u64 offset,
829 const struct gfs2_bitmap *bi)
830{
831 struct super_block *sb = sdp->sd_vfs;
832 struct block_device *bdev = sb->s_bdev;
833 const unsigned int sects_per_blk = sdp->sd_sb.sb_bsize /
Martin K. Petersene1defc42009-05-22 17:17:49 -0400834 bdev_logical_block_size(sb->s_bdev);
Steven Whitehousef15ab562009-02-09 09:25:01 +0000835 u64 blk;
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000836 sector_t start = 0;
Steven Whitehousef15ab562009-02-09 09:25:01 +0000837 sector_t nr_sects = 0;
838 int rv;
839 unsigned int x;
840
841 for (x = 0; x < bi->bi_len; x++) {
842 const u8 *orig = bi->bi_bh->b_data + bi->bi_offset + x;
843 const u8 *clone = bi->bi_clone + bi->bi_offset + x;
844 u8 diff = ~(*orig | (*orig >> 1)) & (*clone | (*clone >> 1));
845 diff &= 0x55;
846 if (diff == 0)
847 continue;
848 blk = offset + ((bi->bi_start + x) * GFS2_NBBY);
849 blk *= sects_per_blk; /* convert to sectors */
850 while(diff) {
851 if (diff & 1) {
852 if (nr_sects == 0)
853 goto start_new_extent;
854 if ((start + nr_sects) != blk) {
855 rv = blkdev_issue_discard(bdev, start,
Christoph Hellwig746cd1e2009-09-12 07:35:43 +0200856 nr_sects, GFP_NOFS,
857 DISCARD_FL_BARRIER);
Steven Whitehousef15ab562009-02-09 09:25:01 +0000858 if (rv)
859 goto fail;
860 nr_sects = 0;
861start_new_extent:
862 start = blk;
863 }
864 nr_sects += sects_per_blk;
865 }
866 diff >>= 2;
867 blk += sects_per_blk;
868 }
869 }
870 if (nr_sects) {
Christoph Hellwig746cd1e2009-09-12 07:35:43 +0200871 rv = blkdev_issue_discard(bdev, start, nr_sects, GFP_NOFS,
872 DISCARD_FL_BARRIER);
Steven Whitehousef15ab562009-02-09 09:25:01 +0000873 if (rv)
874 goto fail;
875 }
876 return;
877fail:
878 fs_warn(sdp, "error %d on discard request, turning discards off for this filesystem", rv);
879 sdp->sd_args.ar_discard = 0;
880}
881
David Teiglandb3b94fa2006-01-16 16:50:04 +0000882void gfs2_rgrp_repolish_clones(struct gfs2_rgrpd *rgd)
883{
884 struct gfs2_sbd *sdp = rgd->rd_sbd;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100885 unsigned int length = rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000886 unsigned int x;
887
888 for (x = 0; x < length; x++) {
889 struct gfs2_bitmap *bi = rgd->rd_bits + x;
890 if (!bi->bi_clone)
891 continue;
Steven Whitehousef15ab562009-02-09 09:25:01 +0000892 if (sdp->sd_args.ar_discard)
893 gfs2_rgrp_send_discards(sdp, rgd->rd_data0, bi);
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +0100894 clear_bit(GBF_FULL, &bi->bi_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895 memcpy(bi->bi_clone + bi->bi_offset,
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400896 bi->bi_bh->b_data + bi->bi_offset, bi->bi_len);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000897 }
898
899 spin_lock(&sdp->sd_rindex_spin);
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000900 rgd->rd_free_clone = rgd->rd_free;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000901 spin_unlock(&sdp->sd_rindex_spin);
902}
903
904/**
905 * gfs2_alloc_get - get the struct gfs2_alloc structure for an inode
906 * @ip: the incore GFS2 inode structure
907 *
908 * Returns: the struct gfs2_alloc
909 */
910
911struct gfs2_alloc *gfs2_alloc_get(struct gfs2_inode *ip)
912{
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000913 BUG_ON(ip->i_alloc != NULL);
Steven Whitehouseea8d62d2010-01-29 15:48:57 +0000914 ip->i_alloc = kzalloc(sizeof(struct gfs2_alloc), GFP_NOFS);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000915 return ip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000916}
917
918/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919 * try_rgrp_fit - See if a given reservation will fit in a given RG
920 * @rgd: the RG data
921 * @al: the struct gfs2_alloc structure describing the reservation
922 *
923 * If there's room for the requested blocks to be allocated from the RG:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924 * Sets the $al_rgd field in @al.
925 *
926 * Returns: 1 on success (it fits), 0 on failure (it doesn't fit)
927 */
928
929static int try_rgrp_fit(struct gfs2_rgrpd *rgd, struct gfs2_alloc *al)
930{
931 struct gfs2_sbd *sdp = rgd->rd_sbd;
932 int ret = 0;
933
Steven Whitehouse09010972009-05-20 10:48:47 +0100934 if (rgd->rd_flags & (GFS2_RGF_NOALLOC | GFS2_RDF_ERROR))
Steven Whitehousea43a4902007-04-02 10:48:17 +0100935 return 0;
936
David Teiglandb3b94fa2006-01-16 16:50:04 +0000937 spin_lock(&sdp->sd_rindex_spin);
938 if (rgd->rd_free_clone >= al->al_requested) {
939 al->al_rgd = rgd;
940 ret = 1;
941 }
942 spin_unlock(&sdp->sd_rindex_spin);
943
944 return ret;
945}
946
947/**
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100948 * try_rgrp_unlink - Look for any unlinked, allocated, but unused inodes
949 * @rgd: The rgrp
950 *
Bob Peterson1a0eae82010-04-14 11:58:16 -0400951 * Returns: 0 if no error
952 * The inode, if one has been found, in inode.
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100953 */
954
Bob Petersoncc0581b2010-05-11 17:58:11 -0400955static u64 try_rgrp_unlink(struct gfs2_rgrpd *rgd, u64 *last_unlinked,
956 u64 skip)
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100957{
Bob Peterson6760bdc2007-07-24 14:09:32 -0500958 u32 goal = 0, block;
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400959 u64 no_addr;
Bob Peterson5f3eae72007-08-08 16:52:09 -0500960 struct gfs2_sbd *sdp = rgd->rd_sbd;
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000961 unsigned int n;
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100962
963 for(;;) {
Bob Peterson24c73872007-07-12 16:58:50 -0500964 if (goal >= rgd->rd_data)
965 break;
Bob Peterson5f3eae72007-08-08 16:52:09 -0500966 down_write(&sdp->sd_log_flush_lock);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000967 n = 1;
Bob Peterson6760bdc2007-07-24 14:09:32 -0500968 block = rgblk_search(rgd, goal, GFS2_BLKST_UNLINKED,
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000969 GFS2_BLKST_UNLINKED, &n);
Bob Peterson5f3eae72007-08-08 16:52:09 -0500970 up_write(&sdp->sd_log_flush_lock);
Bob Peterson6760bdc2007-07-24 14:09:32 -0500971 if (block == BFITNOENT)
Bob Peterson24c73872007-07-12 16:58:50 -0500972 break;
Bob Peterson6760bdc2007-07-24 14:09:32 -0500973 /* rgblk_search can return a block < goal, so we need to
974 keep it marching forward. */
975 no_addr = block + rgd->rd_data0;
Bob Peterson24c73872007-07-12 16:58:50 -0500976 goal++;
Bob Peterson6760bdc2007-07-24 14:09:32 -0500977 if (*last_unlinked != NO_BLOCK && no_addr <= *last_unlinked)
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100978 continue;
Steven Whitehouse1e19a192009-07-10 21:13:38 +0100979 if (no_addr == skip)
980 continue;
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400981 *last_unlinked = no_addr;
Bob Petersoncc0581b2010-05-11 17:58:11 -0400982 return no_addr;
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100983 }
984
985 rgd->rd_flags &= ~GFS2_RDF_CHECK;
Bob Peterson1a0eae82010-04-14 11:58:16 -0400986 return 0;
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100987}
988
989/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000990 * recent_rgrp_next - get next RG from "recent" list
991 * @cur_rgd: current rgrp
David Teiglandb3b94fa2006-01-16 16:50:04 +0000992 *
993 * Returns: The next rgrp in the recent list
994 */
995
Steven Whitehouse9cabcdb2008-07-10 15:54:12 +0100996static struct gfs2_rgrpd *recent_rgrp_next(struct gfs2_rgrpd *cur_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000997{
998 struct gfs2_sbd *sdp = cur_rgd->rd_sbd;
999 struct list_head *head;
1000 struct gfs2_rgrpd *rgd;
1001
1002 spin_lock(&sdp->sd_rindex_spin);
Steven Whitehouse9cabcdb2008-07-10 15:54:12 +01001003 head = &sdp->sd_rindex_mru_list;
1004 if (unlikely(cur_rgd->rd_list_mru.next == head)) {
1005 spin_unlock(&sdp->sd_rindex_spin);
1006 return NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007 }
Steven Whitehouse9cabcdb2008-07-10 15:54:12 +01001008 rgd = list_entry(cur_rgd->rd_list_mru.next, struct gfs2_rgrpd, rd_list_mru);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001009 spin_unlock(&sdp->sd_rindex_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010 return rgd;
1011}
1012
1013/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001014 * forward_rgrp_get - get an rgrp to try next from full list
1015 * @sdp: The GFS2 superblock
1016 *
1017 * Returns: The rgrp to try next
1018 */
1019
1020static struct gfs2_rgrpd *forward_rgrp_get(struct gfs2_sbd *sdp)
1021{
1022 struct gfs2_rgrpd *rgd;
1023 unsigned int journals = gfs2_jindex_size(sdp);
1024 unsigned int rg = 0, x;
1025
1026 spin_lock(&sdp->sd_rindex_spin);
1027
1028 rgd = sdp->sd_rindex_forward;
1029 if (!rgd) {
1030 if (sdp->sd_rgrps >= journals)
1031 rg = sdp->sd_rgrps * sdp->sd_jdesc->jd_jid / journals;
1032
Steven Whitehouseb8e1aab2006-08-22 16:25:50 -04001033 for (x = 0, rgd = gfs2_rgrpd_get_first(sdp); x < rg;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001034 x++, rgd = gfs2_rgrpd_get_next(rgd))
1035 /* Do Nothing */;
1036
1037 sdp->sd_rindex_forward = rgd;
1038 }
1039
1040 spin_unlock(&sdp->sd_rindex_spin);
1041
1042 return rgd;
1043}
1044
1045/**
1046 * forward_rgrp_set - set the forward rgrp pointer
1047 * @sdp: the filesystem
1048 * @rgd: The new forward rgrp
1049 *
1050 */
1051
1052static void forward_rgrp_set(struct gfs2_sbd *sdp, struct gfs2_rgrpd *rgd)
1053{
1054 spin_lock(&sdp->sd_rindex_spin);
1055 sdp->sd_rindex_forward = rgd;
1056 spin_unlock(&sdp->sd_rindex_spin);
1057}
1058
1059/**
1060 * get_local_rgrp - Choose and lock a rgrp for allocation
1061 * @ip: the inode to reserve space for
1062 * @rgp: the chosen and locked rgrp
1063 *
1064 * Try to acquire rgrp in way which avoids contending with others.
1065 *
1066 * Returns: errno
Bob Petersoncc0581b2010-05-11 17:58:11 -04001067 * unlinked: the block address of an unlinked block to be reclaimed
David Teiglandb3b94fa2006-01-16 16:50:04 +00001068 */
1069
Bob Petersoncc0581b2010-05-11 17:58:11 -04001070static int get_local_rgrp(struct gfs2_inode *ip, u64 *unlinked,
1071 u64 *last_unlinked)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001072{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001073 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001074 struct gfs2_rgrpd *rgd, *begin = NULL;
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001075 struct gfs2_alloc *al = ip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001076 int flags = LM_FLAG_TRY;
1077 int skipped = 0;
1078 int loops = 0;
Abhijith Das292c8c12007-11-29 14:13:54 -06001079 int error, rg_locked;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080
Bob Petersoncc0581b2010-05-11 17:58:11 -04001081 *unlinked = 0;
Steven Whitehouse9cabcdb2008-07-10 15:54:12 +01001082 rgd = gfs2_blk2rgrpd(sdp, ip->i_goal);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001083
1084 while (rgd) {
Abhijith Das292c8c12007-11-29 14:13:54 -06001085 rg_locked = 0;
1086
1087 if (gfs2_glock_is_locked_by_me(rgd->rd_gl)) {
1088 rg_locked = 1;
1089 error = 0;
1090 } else {
1091 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE,
1092 LM_FLAG_TRY, &al->al_rgd_gh);
1093 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094 switch (error) {
1095 case 0:
1096 if (try_rgrp_fit(rgd, al))
1097 goto out;
Bob Peterson1a0eae82010-04-14 11:58:16 -04001098 /* If the rg came in already locked, there's no
1099 way we can recover from a failed try_rgrp_unlink
1100 because that would require an iput which can only
1101 happen after the rgrp is unlocked. */
1102 if (!rg_locked && rgd->rd_flags & GFS2_RDF_CHECK)
Bob Petersoncc0581b2010-05-11 17:58:11 -04001103 *unlinked = try_rgrp_unlink(rgd, last_unlinked,
1104 ip->i_no_addr);
Abhijith Das292c8c12007-11-29 14:13:54 -06001105 if (!rg_locked)
1106 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Bob Petersoncc0581b2010-05-11 17:58:11 -04001107 if (*unlinked)
1108 return -EAGAIN;
Steven Whitehouse9cabcdb2008-07-10 15:54:12 +01001109 /* fall through */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001110 case GLR_TRYFAILED:
Steven Whitehouse9cabcdb2008-07-10 15:54:12 +01001111 rgd = recent_rgrp_next(rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112 break;
1113
1114 default:
Bob Petersoncc0581b2010-05-11 17:58:11 -04001115 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001116 }
1117 }
1118
1119 /* Go through full list of rgrps */
1120
1121 begin = rgd = forward_rgrp_get(sdp);
1122
1123 for (;;) {
Abhijith Das292c8c12007-11-29 14:13:54 -06001124 rg_locked = 0;
1125
1126 if (gfs2_glock_is_locked_by_me(rgd->rd_gl)) {
1127 rg_locked = 1;
1128 error = 0;
1129 } else {
1130 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, flags,
1131 &al->al_rgd_gh);
1132 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001133 switch (error) {
1134 case 0:
1135 if (try_rgrp_fit(rgd, al))
1136 goto out;
Bob Peterson1a0eae82010-04-14 11:58:16 -04001137 if (!rg_locked && rgd->rd_flags & GFS2_RDF_CHECK)
Bob Petersoncc0581b2010-05-11 17:58:11 -04001138 *unlinked = try_rgrp_unlink(rgd, last_unlinked,
1139 ip->i_no_addr);
Abhijith Das292c8c12007-11-29 14:13:54 -06001140 if (!rg_locked)
1141 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Bob Petersoncc0581b2010-05-11 17:58:11 -04001142 if (*unlinked)
1143 return -EAGAIN;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001144 break;
1145
1146 case GLR_TRYFAILED:
1147 skipped++;
1148 break;
1149
1150 default:
Bob Petersoncc0581b2010-05-11 17:58:11 -04001151 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001152 }
1153
1154 rgd = gfs2_rgrpd_get_next(rgd);
1155 if (!rgd)
1156 rgd = gfs2_rgrpd_get_first(sdp);
1157
1158 if (rgd == begin) {
Benjamin Marzinski172e0452007-03-23 14:51:56 -06001159 if (++loops >= 3)
Bob Petersoncc0581b2010-05-11 17:58:11 -04001160 return -ENOSPC;
Benjamin Marzinski172e0452007-03-23 14:51:56 -06001161 if (!skipped)
1162 loops++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001163 flags = 0;
Benjamin Marzinski172e0452007-03-23 14:51:56 -06001164 if (loops == 2)
1165 gfs2_log_flush(sdp, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001166 }
1167 }
1168
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001169out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001170 if (begin) {
Steven Whitehouse9cabcdb2008-07-10 15:54:12 +01001171 spin_lock(&sdp->sd_rindex_spin);
1172 list_move(&rgd->rd_list_mru, &sdp->sd_rindex_mru_list);
1173 spin_unlock(&sdp->sd_rindex_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001174 rgd = gfs2_rgrpd_get_next(rgd);
1175 if (!rgd)
1176 rgd = gfs2_rgrpd_get_first(sdp);
1177 forward_rgrp_set(sdp, rgd);
1178 }
1179
Bob Petersoncc0581b2010-05-11 17:58:11 -04001180 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001181}
1182
1183/**
1184 * gfs2_inplace_reserve_i - Reserve space in the filesystem
1185 * @ip: the inode to reserve space for
1186 *
1187 * Returns: errno
1188 */
1189
1190int gfs2_inplace_reserve_i(struct gfs2_inode *ip, char *file, unsigned int line)
1191{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001192 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001193 struct gfs2_alloc *al = ip->i_alloc;
Robert Peterson7ae8fa82007-05-09 09:37:57 -05001194 int error = 0;
Bob Petersoncc0581b2010-05-11 17:58:11 -04001195 u64 last_unlinked = NO_BLOCK, unlinked;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001196
1197 if (gfs2_assert_warn(sdp, al->al_requested))
1198 return -EINVAL;
1199
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001200try_again:
Robert Peterson7ae8fa82007-05-09 09:37:57 -05001201 /* We need to hold the rindex unless the inode we're using is
1202 the rindex itself, in which case it's already held. */
1203 if (ip != GFS2_I(sdp->sd_rindex))
1204 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
1205 else if (!sdp->sd_rgrps) /* We may not have the rindex read in, so: */
Robert Peterson6c532672007-05-10 16:54:38 -05001206 error = gfs2_ri_update_special(ip);
Robert Peterson7ae8fa82007-05-09 09:37:57 -05001207
David Teiglandb3b94fa2006-01-16 16:50:04 +00001208 if (error)
1209 return error;
1210
Bob Petersoned4878e2010-05-20 23:30:11 -04001211 /* Find an rgrp suitable for allocation. If it encounters any unlinked
1212 dinodes along the way, error will equal -EAGAIN and unlinked will
1213 contains it block address. We then need to look up that inode and
1214 try to free it, and try the allocation again. */
Bob Petersoncc0581b2010-05-11 17:58:11 -04001215 error = get_local_rgrp(ip, &unlinked, &last_unlinked);
1216 if (error) {
Robert Peterson7ae8fa82007-05-09 09:37:57 -05001217 if (ip != GFS2_I(sdp->sd_rindex))
1218 gfs2_glock_dq_uninit(&al->al_ri_gh);
Bob Petersoncc0581b2010-05-11 17:58:11 -04001219 if (error != -EAGAIN)
1220 return error;
Bob Petersoned4878e2010-05-20 23:30:11 -04001221
1222 gfs2_process_unlinked_inode(ip->i_inode.i_sb, unlinked);
1223 /* regardless of whether or not gfs2_process_unlinked_inode
1224 was successful, we don't want to repeat it again. */
1225 last_unlinked = unlinked;
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001226 gfs2_log_flush(sdp, NULL);
Bob Petersoned4878e2010-05-20 23:30:11 -04001227 error = 0;
1228
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001229 goto try_again;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001230 }
Bob Petersoned4878e2010-05-20 23:30:11 -04001231 /* no error, so we have the rgrp set in the inode's allocation. */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001232 al->al_file = file;
1233 al->al_line = line;
1234
1235 return 0;
1236}
1237
1238/**
1239 * gfs2_inplace_release - release an inplace reservation
1240 * @ip: the inode the reservation was taken out on
1241 *
1242 * Release a reservation made by gfs2_inplace_reserve().
1243 */
1244
1245void gfs2_inplace_release(struct gfs2_inode *ip)
1246{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001247 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001248 struct gfs2_alloc *al = ip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001249
1250 if (gfs2_assert_warn(sdp, al->al_alloced <= al->al_requested) == -1)
1251 fs_warn(sdp, "al_alloced = %u, al_requested = %u "
1252 "al_file = %s, al_line = %u\n",
1253 al->al_alloced, al->al_requested, al->al_file,
1254 al->al_line);
1255
1256 al->al_rgd = NULL;
Abhijith Das292c8c12007-11-29 14:13:54 -06001257 if (al->al_rgd_gh.gh_gl)
1258 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Robert Peterson7ae8fa82007-05-09 09:37:57 -05001259 if (ip != GFS2_I(sdp->sd_rindex))
1260 gfs2_glock_dq_uninit(&al->al_ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001261}
1262
1263/**
1264 * gfs2_get_block_type - Check a block in a RG is of given type
1265 * @rgd: the resource group holding the block
1266 * @block: the block number
1267 *
1268 * Returns: The block type (GFS2_BLKST_*)
1269 */
1270
Steven Whitehouseacf7e242009-09-08 18:00:30 +01001271static unsigned char gfs2_get_block_type(struct gfs2_rgrpd *rgd, u64 block)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001272{
1273 struct gfs2_bitmap *bi = NULL;
Steven Whitehousecd915492006-09-04 12:49:07 -04001274 u32 length, rgrp_block, buf_block;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001275 unsigned int buf;
1276 unsigned char type;
1277
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001278 length = rgd->rd_length;
1279 rgrp_block = block - rgd->rd_data0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280
1281 for (buf = 0; buf < length; buf++) {
1282 bi = rgd->rd_bits + buf;
1283 if (rgrp_block < (bi->bi_start + bi->bi_len) * GFS2_NBBY)
1284 break;
1285 }
1286
1287 gfs2_assert(rgd->rd_sbd, buf < length);
1288 buf_block = rgrp_block - bi->bi_start * GFS2_NBBY;
1289
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001290 type = gfs2_testbit(rgd, bi->bi_bh->b_data + bi->bi_offset,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001291 bi->bi_len, buf_block);
1292
1293 return type;
1294}
1295
1296/**
1297 * rgblk_search - find a block in @old_state, change allocation
1298 * state to @new_state
1299 * @rgd: the resource group descriptor
1300 * @goal: the goal block within the RG (start here to search for avail block)
1301 * @old_state: GFS2_BLKST_XXX the before-allocation state to find
1302 * @new_state: GFS2_BLKST_XXX the after-allocation block state
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001303 * @n: The extent length
David Teiglandb3b94fa2006-01-16 16:50:04 +00001304 *
1305 * Walk rgrp's bitmap to find bits that represent a block in @old_state.
1306 * Add the found bitmap buffer to the transaction.
1307 * Set the found bits to @new_state to change block's allocation state.
1308 *
1309 * This function never fails, because we wouldn't call it unless we
1310 * know (from reservation results, etc.) that a block is available.
1311 *
1312 * Scope of @goal and returned block is just within rgrp, not the whole
1313 * filesystem.
1314 *
1315 * Returns: the block number allocated
1316 */
1317
Steven Whitehousecd915492006-09-04 12:49:07 -04001318static u32 rgblk_search(struct gfs2_rgrpd *rgd, u32 goal,
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001319 unsigned char old_state, unsigned char new_state,
1320 unsigned int *n)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001321{
1322 struct gfs2_bitmap *bi = NULL;
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001323 const u32 length = rgd->rd_length;
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001324 u32 blk = BFITNOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001325 unsigned int buf, x;
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001326 const unsigned int elen = *n;
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001327 const u8 *buffer = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001328
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001329 *n = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001330 /* Find bitmap block that contains bits for goal block */
1331 for (buf = 0; buf < length; buf++) {
1332 bi = rgd->rd_bits + buf;
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001333 /* Convert scope of "goal" from rgrp-wide to within found bit block */
1334 if (goal < (bi->bi_start + bi->bi_len) * GFS2_NBBY) {
1335 goal -= bi->bi_start * GFS2_NBBY;
1336 goto do_search;
1337 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001338 }
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001339 buf = 0;
1340 goal = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001341
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001342do_search:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001343 /* Search (up to entire) bitmap in this rgrp for allocatable block.
1344 "x <= length", instead of "x < length", because we typically start
1345 the search in the middle of a bit block, but if we can't find an
1346 allocatable block anywhere else, we want to be able wrap around and
1347 search in the first part of our first-searched bit block. */
1348 for (x = 0; x <= length; x++) {
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001349 bi = rgd->rd_bits + buf;
1350
1351 if (test_bit(GBF_FULL, &bi->bi_flags) &&
1352 (old_state == GFS2_BLKST_FREE))
1353 goto skip;
1354
Bob Peterson5f3eae72007-08-08 16:52:09 -05001355 /* The GFS2_BLKST_UNLINKED state doesn't apply to the clone
1356 bitmaps, so we must search the originals for that. */
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001357 buffer = bi->bi_bh->b_data + bi->bi_offset;
Bob Peterson5f3eae72007-08-08 16:52:09 -05001358 if (old_state != GFS2_BLKST_UNLINKED && bi->bi_clone)
Steven Whitehouse110acf32008-01-29 13:30:20 +00001359 buffer = bi->bi_clone + bi->bi_offset;
1360
1361 blk = gfs2_bitfit(buffer, bi->bi_len, goal, old_state);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001362 if (blk != BFITNOENT)
1363 break;
1364
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001365 if ((goal == 0) && (old_state == GFS2_BLKST_FREE))
1366 set_bit(GBF_FULL, &bi->bi_flags);
1367
David Teiglandb3b94fa2006-01-16 16:50:04 +00001368 /* Try next bitmap block (wrap back to rgrp header if at end) */
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001369skip:
1370 buf++;
1371 buf %= length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001372 goal = 0;
1373 }
1374
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001375 if (blk == BFITNOENT)
1376 return blk;
1377 *n = 1;
1378 if (old_state == new_state)
1379 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001380
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001381 gfs2_trans_add_bh(rgd->rd_gl, bi->bi_bh, 1);
1382 gfs2_setbit(rgd, bi->bi_bh->b_data, bi->bi_clone, bi->bi_offset,
1383 bi->bi_len, blk, new_state);
1384 goal = blk;
1385 while (*n < elen) {
1386 goal++;
1387 if (goal >= (bi->bi_len * GFS2_NBBY))
1388 break;
1389 if (gfs2_testbit(rgd, buffer, bi->bi_len, goal) !=
1390 GFS2_BLKST_FREE)
1391 break;
1392 gfs2_setbit(rgd, bi->bi_bh->b_data, bi->bi_clone, bi->bi_offset,
1393 bi->bi_len, goal, new_state);
1394 (*n)++;
1395 }
1396out:
1397 return (bi->bi_start * GFS2_NBBY) + blk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001398}
1399
1400/**
1401 * rgblk_free - Change alloc state of given block(s)
1402 * @sdp: the filesystem
1403 * @bstart: the start of a run of blocks to free
1404 * @blen: the length of the block run (all must lie within ONE RG!)
1405 * @new_state: GFS2_BLKST_XXX the after-allocation block state
1406 *
1407 * Returns: Resource group containing the block(s)
1408 */
1409
Steven Whitehousecd915492006-09-04 12:49:07 -04001410static struct gfs2_rgrpd *rgblk_free(struct gfs2_sbd *sdp, u64 bstart,
1411 u32 blen, unsigned char new_state)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001412{
1413 struct gfs2_rgrpd *rgd;
1414 struct gfs2_bitmap *bi = NULL;
Steven Whitehousecd915492006-09-04 12:49:07 -04001415 u32 length, rgrp_blk, buf_blk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001416 unsigned int buf;
1417
1418 rgd = gfs2_blk2rgrpd(sdp, bstart);
1419 if (!rgd) {
1420 if (gfs2_consist(sdp))
Steven Whitehouse382066d2006-05-24 10:22:09 -04001421 fs_err(sdp, "block = %llu\n", (unsigned long long)bstart);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001422 return NULL;
1423 }
1424
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001425 length = rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001426
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001427 rgrp_blk = bstart - rgd->rd_data0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001428
1429 while (blen--) {
1430 for (buf = 0; buf < length; buf++) {
1431 bi = rgd->rd_bits + buf;
1432 if (rgrp_blk < (bi->bi_start + bi->bi_len) * GFS2_NBBY)
1433 break;
1434 }
1435
1436 gfs2_assert(rgd->rd_sbd, buf < length);
1437
1438 buf_blk = rgrp_blk - bi->bi_start * GFS2_NBBY;
1439 rgrp_blk++;
1440
1441 if (!bi->bi_clone) {
1442 bi->bi_clone = kmalloc(bi->bi_bh->b_size,
Steven Whitehousedd894be2006-07-27 14:29:00 -04001443 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001444 memcpy(bi->bi_clone + bi->bi_offset,
1445 bi->bi_bh->b_data + bi->bi_offset,
1446 bi->bi_len);
1447 }
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001448 gfs2_trans_add_bh(rgd->rd_gl, bi->bi_bh, 1);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001449 gfs2_setbit(rgd, bi->bi_bh->b_data, NULL, bi->bi_offset,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001450 bi->bi_len, buf_blk, new_state);
1451 }
1452
1453 return rgd;
1454}
1455
1456/**
Steven Whitehouse09010972009-05-20 10:48:47 +01001457 * gfs2_rgrp_dump - print out an rgrp
1458 * @seq: The iterator
1459 * @gl: The glock in question
David Teiglandb3b94fa2006-01-16 16:50:04 +00001460 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001461 */
1462
Steven Whitehouse09010972009-05-20 10:48:47 +01001463int gfs2_rgrp_dump(struct seq_file *seq, const struct gfs2_glock *gl)
1464{
1465 const struct gfs2_rgrpd *rgd = gl->gl_object;
1466 if (rgd == NULL)
1467 return 0;
1468 gfs2_print_dbg(seq, " R: n:%llu f:%02x b:%u/%u i:%u\n",
1469 (unsigned long long)rgd->rd_addr, rgd->rd_flags,
1470 rgd->rd_free, rgd->rd_free_clone, rgd->rd_dinodes);
1471 return 0;
1472}
1473
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01001474static void gfs2_rgrp_error(struct gfs2_rgrpd *rgd)
1475{
1476 struct gfs2_sbd *sdp = rgd->rd_sbd;
1477 fs_warn(sdp, "rgrp %llu has an error, marking it readonly until umount\n",
Steven Whitehouse86d00632009-09-14 09:50:57 +01001478 (unsigned long long)rgd->rd_addr);
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01001479 fs_warn(sdp, "umount on all nodes and run fsck.gfs2 to fix the error\n");
1480 gfs2_rgrp_dump(NULL, rgd->rd_gl);
1481 rgd->rd_flags |= GFS2_RDF_ERROR;
1482}
1483
Steven Whitehouse09010972009-05-20 10:48:47 +01001484/**
1485 * gfs2_alloc_block - Allocate one or more blocks
1486 * @ip: the inode to allocate the block for
1487 * @bn: Used to return the starting block number
1488 * @n: requested number of blocks/extent length (value/result)
1489 *
1490 * Returns: 0 or error
1491 */
1492
1493int gfs2_alloc_block(struct gfs2_inode *ip, u64 *bn, unsigned int *n)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001494{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001495 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehoused9ba7612009-04-23 08:59:41 +01001496 struct buffer_head *dibh;
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001497 struct gfs2_alloc *al = ip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001498 struct gfs2_rgrpd *rgd = al->al_rgd;
Steven Whitehousecd915492006-09-04 12:49:07 -04001499 u32 goal, blk;
1500 u64 block;
Steven Whitehoused9ba7612009-04-23 08:59:41 +01001501 int error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001502
Steven Whitehousece276b02008-02-06 09:25:45 +00001503 if (rgrp_contains_block(rgd, ip->i_goal))
1504 goal = ip->i_goal - rgd->rd_data0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001505 else
Steven Whitehouseac576cc2008-02-01 10:34:15 +00001506 goal = rgd->rd_last_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001507
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001508 blk = rgblk_search(rgd, goal, GFS2_BLKST_FREE, GFS2_BLKST_USED, n);
Steven Whitehouse09010972009-05-20 10:48:47 +01001509
1510 /* Since all blocks are reserved in advance, this shouldn't happen */
1511 if (blk == BFITNOENT)
1512 goto rgrp_error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001513
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001514 rgd->rd_last_alloc = blk;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001515 block = rgd->rd_data0 + blk;
Steven Whitehousece276b02008-02-06 09:25:45 +00001516 ip->i_goal = block;
Steven Whitehoused9ba7612009-04-23 08:59:41 +01001517 error = gfs2_meta_inode_buffer(ip, &dibh);
1518 if (error == 0) {
1519 struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data;
1520 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
1521 di->di_goal_meta = di->di_goal_data = cpu_to_be64(ip->i_goal);
1522 brelse(dibh);
1523 }
Steven Whitehouse09010972009-05-20 10:48:47 +01001524 if (rgd->rd_free < *n)
1525 goto rgrp_error;
1526
Steven Whitehousecfc8b542008-11-04 10:25:13 +00001527 rgd->rd_free -= *n;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001528
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001529 gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
Bob Peterson42d52e32008-01-28 18:38:07 -06001530 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001531
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001532 al->al_alloced += *n;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001533
Andrew Pricead99f772008-05-01 11:55:38 +01001534 gfs2_statfs_change(sdp, 0, -(s64)*n, 0);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001535 gfs2_quota_change(ip, *n, ip->i_inode.i_uid, ip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001536
1537 spin_lock(&sdp->sd_rindex_spin);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001538 rgd->rd_free_clone -= *n;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001539 spin_unlock(&sdp->sd_rindex_spin);
Steven Whitehouse63997772009-06-12 08:49:20 +01001540 trace_gfs2_block_alloc(ip, block, *n, GFS2_BLKST_USED);
Steven Whitehouse09010972009-05-20 10:48:47 +01001541 *bn = block;
1542 return 0;
1543
1544rgrp_error:
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01001545 gfs2_rgrp_error(rgd);
Steven Whitehouse09010972009-05-20 10:48:47 +01001546 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001547}
1548
1549/**
1550 * gfs2_alloc_di - Allocate a dinode
1551 * @dip: the directory that the inode is going in
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01001552 * @bn: the block number which is allocated
1553 * @generation: the generation number of the inode
David Teiglandb3b94fa2006-01-16 16:50:04 +00001554 *
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01001555 * Returns: 0 on success or error
David Teiglandb3b94fa2006-01-16 16:50:04 +00001556 */
1557
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01001558int gfs2_alloc_di(struct gfs2_inode *dip, u64 *bn, u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001559{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001560 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +00001561 struct gfs2_alloc *al = dip->i_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001562 struct gfs2_rgrpd *rgd = al->al_rgd;
Steven Whitehouse4340fe62006-07-11 09:46:33 -04001563 u32 blk;
1564 u64 block;
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001565 unsigned int n = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001566
Steven Whitehouseac576cc2008-02-01 10:34:15 +00001567 blk = rgblk_search(rgd, rgd->rd_last_alloc,
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001568 GFS2_BLKST_FREE, GFS2_BLKST_DINODE, &n);
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01001569
1570 /* Since all blocks are reserved in advance, this shouldn't happen */
1571 if (blk == BFITNOENT)
1572 goto rgrp_error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001573
Steven Whitehouseac576cc2008-02-01 10:34:15 +00001574 rgd->rd_last_alloc = blk;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001575 block = rgd->rd_data0 + blk;
Steven Whitehouse05164e52009-08-17 11:06:43 +01001576 if (rgd->rd_free == 0)
1577 goto rgrp_error;
1578
Steven Whitehousecfc8b542008-11-04 10:25:13 +00001579 rgd->rd_free--;
Steven Whitehouse73f74942008-11-04 10:32:57 +00001580 rgd->rd_dinodes++;
Steven Whitehoused8b71f72008-11-04 10:19:03 +00001581 *generation = rgd->rd_igeneration++;
Steven Whitehouse8d8291a2009-08-27 15:51:07 +01001582 if (*generation == 0)
1583 *generation = rgd->rd_igeneration++;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001584 gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
Bob Peterson42d52e32008-01-28 18:38:07 -06001585 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001586
1587 al->al_alloced++;
1588
1589 gfs2_statfs_change(sdp, 0, -1, +1);
Steven Whitehouse5731be52008-02-01 13:16:55 +00001590 gfs2_trans_add_unrevoke(sdp, block, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001591
1592 spin_lock(&sdp->sd_rindex_spin);
1593 rgd->rd_free_clone--;
1594 spin_unlock(&sdp->sd_rindex_spin);
Steven Whitehouse63997772009-06-12 08:49:20 +01001595 trace_gfs2_block_alloc(dip, block, 1, GFS2_BLKST_DINODE);
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01001596 *bn = block;
1597 return 0;
1598
1599rgrp_error:
1600 gfs2_rgrp_error(rgd);
1601 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001602}
1603
1604/**
1605 * gfs2_free_data - free a contiguous run of data block(s)
1606 * @ip: the inode these blocks are being freed from
1607 * @bstart: first block of a run of contiguous blocks
1608 * @blen: the length of the block run
1609 *
1610 */
1611
Steven Whitehousecd915492006-09-04 12:49:07 -04001612void gfs2_free_data(struct gfs2_inode *ip, u64 bstart, u32 blen)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001613{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001614 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001615 struct gfs2_rgrpd *rgd;
1616
1617 rgd = rgblk_free(sdp, bstart, blen, GFS2_BLKST_FREE);
1618 if (!rgd)
1619 return;
Steven Whitehouse63997772009-06-12 08:49:20 +01001620 trace_gfs2_block_alloc(ip, bstart, blen, GFS2_BLKST_FREE);
Steven Whitehousecfc8b542008-11-04 10:25:13 +00001621 rgd->rd_free += blen;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001622
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001623 gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
Bob Peterson42d52e32008-01-28 18:38:07 -06001624 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001625
1626 gfs2_trans_add_rg(rgd);
1627
1628 gfs2_statfs_change(sdp, 0, +blen, 0);
Steven Whitehouse2933f922006-11-01 13:23:29 -05001629 gfs2_quota_change(ip, -(s64)blen, ip->i_inode.i_uid, ip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001630}
1631
1632/**
1633 * gfs2_free_meta - free a contiguous run of data block(s)
1634 * @ip: the inode these blocks are being freed from
1635 * @bstart: first block of a run of contiguous blocks
1636 * @blen: the length of the block run
1637 *
1638 */
1639
Steven Whitehousecd915492006-09-04 12:49:07 -04001640void gfs2_free_meta(struct gfs2_inode *ip, u64 bstart, u32 blen)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001641{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001642 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001643 struct gfs2_rgrpd *rgd;
1644
1645 rgd = rgblk_free(sdp, bstart, blen, GFS2_BLKST_FREE);
1646 if (!rgd)
1647 return;
Steven Whitehouse63997772009-06-12 08:49:20 +01001648 trace_gfs2_block_alloc(ip, bstart, blen, GFS2_BLKST_FREE);
Steven Whitehousecfc8b542008-11-04 10:25:13 +00001649 rgd->rd_free += blen;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001650
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001651 gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
Bob Peterson42d52e32008-01-28 18:38:07 -06001652 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001653
1654 gfs2_trans_add_rg(rgd);
1655
1656 gfs2_statfs_change(sdp, 0, +blen, 0);
Steven Whitehouse2933f922006-11-01 13:23:29 -05001657 gfs2_quota_change(ip, -(s64)blen, ip->i_inode.i_uid, ip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001658 gfs2_meta_wipe(ip, bstart, blen);
1659}
1660
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001661void gfs2_unlink_di(struct inode *inode)
1662{
1663 struct gfs2_inode *ip = GFS2_I(inode);
1664 struct gfs2_sbd *sdp = GFS2_SB(inode);
1665 struct gfs2_rgrpd *rgd;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001666 u64 blkno = ip->i_no_addr;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001667
1668 rgd = rgblk_free(sdp, blkno, 1, GFS2_BLKST_UNLINKED);
1669 if (!rgd)
1670 return;
Steven Whitehouse63997772009-06-12 08:49:20 +01001671 trace_gfs2_block_alloc(ip, blkno, 1, GFS2_BLKST_UNLINKED);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001672 gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
Bob Peterson42d52e32008-01-28 18:38:07 -06001673 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001674 gfs2_trans_add_rg(rgd);
1675}
1676
Steven Whitehousecd915492006-09-04 12:49:07 -04001677static void gfs2_free_uninit_di(struct gfs2_rgrpd *rgd, u64 blkno)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001678{
1679 struct gfs2_sbd *sdp = rgd->rd_sbd;
1680 struct gfs2_rgrpd *tmp_rgd;
1681
1682 tmp_rgd = rgblk_free(sdp, blkno, 1, GFS2_BLKST_FREE);
1683 if (!tmp_rgd)
1684 return;
1685 gfs2_assert_withdraw(sdp, rgd == tmp_rgd);
1686
Steven Whitehouse73f74942008-11-04 10:32:57 +00001687 if (!rgd->rd_dinodes)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001688 gfs2_consist_rgrpd(rgd);
Steven Whitehouse73f74942008-11-04 10:32:57 +00001689 rgd->rd_dinodes--;
Steven Whitehousecfc8b542008-11-04 10:25:13 +00001690 rgd->rd_free++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001691
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001692 gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
Bob Peterson42d52e32008-01-28 18:38:07 -06001693 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001694
1695 gfs2_statfs_change(sdp, 0, +1, -1);
1696 gfs2_trans_add_rg(rgd);
1697}
1698
David Teiglandb3b94fa2006-01-16 16:50:04 +00001699
1700void gfs2_free_di(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip)
1701{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001702 gfs2_free_uninit_di(rgd, ip->i_no_addr);
Steven Whitehouse63997772009-06-12 08:49:20 +01001703 trace_gfs2_block_alloc(ip, ip->i_no_addr, 1, GFS2_BLKST_FREE);
Steven Whitehouse2933f922006-11-01 13:23:29 -05001704 gfs2_quota_change(ip, -1, ip->i_inode.i_uid, ip->i_inode.i_gid);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001705 gfs2_meta_wipe(ip, ip->i_no_addr, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001706}
1707
1708/**
Steven Whitehouseacf7e242009-09-08 18:00:30 +01001709 * gfs2_check_blk_type - Check the type of a block
1710 * @sdp: The superblock
1711 * @no_addr: The block number to check
1712 * @type: The block type we are looking for
1713 *
1714 * Returns: 0 if the block type matches the expected type
1715 * -ESTALE if it doesn't match
1716 * or -ve errno if something went wrong while checking
1717 */
1718
1719int gfs2_check_blk_type(struct gfs2_sbd *sdp, u64 no_addr, unsigned int type)
1720{
1721 struct gfs2_rgrpd *rgd;
1722 struct gfs2_holder ri_gh, rgd_gh;
Steven Whitehouse2c776342009-11-06 11:10:51 +00001723 struct gfs2_inode *ip = GFS2_I(sdp->sd_rindex);
1724 int ri_locked = 0;
Steven Whitehouseacf7e242009-09-08 18:00:30 +01001725 int error;
1726
Steven Whitehouse2c776342009-11-06 11:10:51 +00001727 if (!gfs2_glock_is_locked_by_me(ip->i_gl)) {
1728 error = gfs2_rindex_hold(sdp, &ri_gh);
1729 if (error)
1730 goto fail;
1731 ri_locked = 1;
1732 }
Steven Whitehouseacf7e242009-09-08 18:00:30 +01001733
1734 error = -EINVAL;
1735 rgd = gfs2_blk2rgrpd(sdp, no_addr);
1736 if (!rgd)
1737 goto fail_rindex;
1738
1739 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh);
1740 if (error)
1741 goto fail_rindex;
1742
1743 if (gfs2_get_block_type(rgd, no_addr) != type)
1744 error = -ESTALE;
1745
1746 gfs2_glock_dq_uninit(&rgd_gh);
1747fail_rindex:
Steven Whitehouse2c776342009-11-06 11:10:51 +00001748 if (ri_locked)
1749 gfs2_glock_dq_uninit(&ri_gh);
Steven Whitehouseacf7e242009-09-08 18:00:30 +01001750fail:
1751 return error;
1752}
1753
1754/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001755 * gfs2_rlist_add - add a RG to a list of RGs
1756 * @sdp: the filesystem
1757 * @rlist: the list of resource groups
1758 * @block: the block
1759 *
1760 * Figure out what RG a block belongs to and add that RG to the list
1761 *
1762 * FIXME: Don't use NOFAIL
1763 *
1764 */
1765
1766void gfs2_rlist_add(struct gfs2_sbd *sdp, struct gfs2_rgrp_list *rlist,
Steven Whitehousecd915492006-09-04 12:49:07 -04001767 u64 block)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001768{
1769 struct gfs2_rgrpd *rgd;
1770 struct gfs2_rgrpd **tmp;
1771 unsigned int new_space;
1772 unsigned int x;
1773
1774 if (gfs2_assert_warn(sdp, !rlist->rl_ghs))
1775 return;
1776
1777 rgd = gfs2_blk2rgrpd(sdp, block);
1778 if (!rgd) {
1779 if (gfs2_consist(sdp))
Steven Whitehouse382066d2006-05-24 10:22:09 -04001780 fs_err(sdp, "block = %llu\n", (unsigned long long)block);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001781 return;
1782 }
1783
1784 for (x = 0; x < rlist->rl_rgrps; x++)
1785 if (rlist->rl_rgd[x] == rgd)
1786 return;
1787
1788 if (rlist->rl_rgrps == rlist->rl_space) {
1789 new_space = rlist->rl_space + 10;
1790
1791 tmp = kcalloc(new_space, sizeof(struct gfs2_rgrpd *),
Steven Whitehousedd894be2006-07-27 14:29:00 -04001792 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001793
1794 if (rlist->rl_rgd) {
1795 memcpy(tmp, rlist->rl_rgd,
1796 rlist->rl_space * sizeof(struct gfs2_rgrpd *));
1797 kfree(rlist->rl_rgd);
1798 }
1799
1800 rlist->rl_space = new_space;
1801 rlist->rl_rgd = tmp;
1802 }
1803
1804 rlist->rl_rgd[rlist->rl_rgrps++] = rgd;
1805}
1806
1807/**
1808 * gfs2_rlist_alloc - all RGs have been added to the rlist, now allocate
1809 * and initialize an array of glock holders for them
1810 * @rlist: the list of resource groups
1811 * @state: the lock state to acquire the RG lock in
1812 * @flags: the modifier flags for the holder structures
1813 *
1814 * FIXME: Don't use NOFAIL
1815 *
1816 */
1817
Bob Petersonfe6c9912008-01-28 11:13:02 -06001818void gfs2_rlist_alloc(struct gfs2_rgrp_list *rlist, unsigned int state)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001819{
1820 unsigned int x;
1821
1822 rlist->rl_ghs = kcalloc(rlist->rl_rgrps, sizeof(struct gfs2_holder),
Steven Whitehousedd894be2006-07-27 14:29:00 -04001823 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001824 for (x = 0; x < rlist->rl_rgrps; x++)
1825 gfs2_holder_init(rlist->rl_rgd[x]->rd_gl,
Bob Petersonfe6c9912008-01-28 11:13:02 -06001826 state, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001827 &rlist->rl_ghs[x]);
1828}
1829
1830/**
1831 * gfs2_rlist_free - free a resource group list
1832 * @list: the list of resource groups
1833 *
1834 */
1835
1836void gfs2_rlist_free(struct gfs2_rgrp_list *rlist)
1837{
1838 unsigned int x;
1839
1840 kfree(rlist->rl_rgd);
1841
1842 if (rlist->rl_ghs) {
1843 for (x = 0; x < rlist->rl_rgrps; x++)
1844 gfs2_holder_uninit(&rlist->rl_ghs[x]);
1845 kfree(rlist->rl_ghs);
1846 }
1847}
1848