blob: 4d34887a601d966660549b0d0a27517353c1ed5e [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>
Bob Peterson7c9ca622011-08-31 09:53:19 +010018#include <linux/rbtree.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000019
20#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050021#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include "glock.h"
23#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "lops.h"
25#include "meta_io.h"
26#include "quota.h"
27#include "rgrp.h"
28#include "super.h"
29#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050030#include "util.h"
Benjamin Marzinski172e0452007-03-23 14:51:56 -060031#include "log.h"
Steven Whitehousec8cdf472007-06-08 10:05:33 +010032#include "inode.h"
Steven Whitehouse63997772009-06-12 08:49:20 +010033#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000034
Steven Whitehouse2c1e52a2006-09-05 15:41:57 -040035#define BFITNOENT ((u32)~0)
Bob Peterson6760bdc2007-07-24 14:09:32 -050036#define NO_BLOCK ((u64)~0)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040037
Bob Peterson8e2e0042012-07-19 08:12:40 -040038#define RSRV_CONTENTION_FACTOR 4
39#define RGRP_RSRV_MAX_CONTENDERS 2
40
Bob Peterson1f466a42008-03-10 18:17:47 -050041#if BITS_PER_LONG == 32
42#define LBITMASK (0x55555555UL)
43#define LBITSKIP55 (0x55555555UL)
44#define LBITSKIP00 (0x00000000UL)
45#else
46#define LBITMASK (0x5555555555555555UL)
47#define LBITSKIP55 (0x5555555555555555UL)
48#define LBITSKIP00 (0x0000000000000000UL)
49#endif
50
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040051/*
52 * These routines are used by the resource group routines (rgrp.c)
53 * to keep track of block allocation. Each block is represented by two
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040054 * bits. So, each byte represents GFS2_NBBY (i.e. 4) blocks.
55 *
56 * 0 = Free
57 * 1 = Used (not metadata)
58 * 2 = Unlinked (still in use) inode
59 * 3 = Used (metadata)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040060 */
61
62static const char valid_change[16] = {
63 /* current */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040064 /* n */ 0, 1, 1, 1,
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040065 /* e */ 1, 0, 0, 0,
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040066 /* w */ 0, 0, 0, 1,
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040067 1, 0, 0, 0
68};
69
Steven Whitehousec8cdf472007-06-08 10:05:33 +010070static u32 rgblk_search(struct gfs2_rgrpd *rgd, u32 goal,
Steven Whitehouse6a8099e2011-11-22 12:18:51 +000071 unsigned char old_state,
Bob Petersonb3e47ca2011-11-21 11:47:08 -050072 struct gfs2_bitmap **rbi);
Steven Whitehousec8cdf472007-06-08 10:05:33 +010073
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040074/**
75 * gfs2_setbit - Set a bit in the bitmaps
Bob Peterson29c578f2012-04-11 13:01:07 -040076 * @rgd: the resource group descriptor
Bob Peterson29c578f2012-04-11 13:01:07 -040077 * @buf2: the clone buffer that holds the bitmaps
78 * @bi: the bitmap structure
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040079 * @block: the block to set
80 * @new_state: the new state of the block
81 *
82 */
83
Bob Peterson06344b92012-04-26 12:44:35 -040084static inline void gfs2_setbit(struct gfs2_rgrpd *rgd, unsigned char *buf2,
85 struct gfs2_bitmap *bi, u32 block,
86 unsigned char new_state)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040087{
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000088 unsigned char *byte1, *byte2, *end, cur_state;
Bob Peterson95c8e172011-03-22 10:49:12 -040089 unsigned int buflen = bi->bi_len;
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000090 const unsigned int bit = (block % GFS2_NBBY) * GFS2_BIT_SIZE;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040091
Bob Peterson06344b92012-04-26 12:44:35 -040092 byte1 = bi->bi_bh->b_data + bi->bi_offset + (block / GFS2_NBBY);
93 end = bi->bi_bh->b_data + bi->bi_offset + buflen;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040094
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000095 BUG_ON(byte1 >= end);
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040096
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000097 cur_state = (*byte1 >> bit) & GFS2_BIT_MASK;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040098
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000099 if (unlikely(!valid_change[new_state * 4 + cur_state])) {
Bob Peterson95c8e172011-03-22 10:49:12 -0400100 printk(KERN_WARNING "GFS2: buf_blk = 0x%llx old_state=%d, "
101 "new_state=%d\n",
102 (unsigned long long)block, cur_state, new_state);
103 printk(KERN_WARNING "GFS2: rgrp=0x%llx bi_start=0x%lx\n",
104 (unsigned long long)rgd->rd_addr,
105 (unsigned long)bi->bi_start);
106 printk(KERN_WARNING "GFS2: bi_offset=0x%lx bi_len=0x%lx\n",
107 (unsigned long)bi->bi_offset,
108 (unsigned long)bi->bi_len);
109 dump_stack();
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400110 gfs2_consist_rgrpd(rgd);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000111 return;
112 }
113 *byte1 ^= (cur_state ^ new_state) << bit;
114
115 if (buf2) {
Bob Peterson29c578f2012-04-11 13:01:07 -0400116 byte2 = buf2 + bi->bi_offset + (block / GFS2_NBBY);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000117 cur_state = (*byte2 >> bit) & GFS2_BIT_MASK;
118 *byte2 ^= (cur_state ^ new_state) << bit;
119 }
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400120}
121
122/**
123 * gfs2_testbit - test a bit in the bitmaps
Bob Peterson886b1412012-04-11 13:03:52 -0400124 * @rgd: the resource group descriptor
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400125 * @buffer: the buffer that holds the bitmaps
126 * @buflen: the length (in bytes) of the buffer
127 * @block: the block to read
128 *
129 */
130
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000131static inline unsigned char gfs2_testbit(struct gfs2_rgrpd *rgd,
132 const unsigned char *buffer,
133 unsigned int buflen, u32 block)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400134{
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000135 const unsigned char *byte, *end;
136 unsigned char cur_state;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400137 unsigned int bit;
138
139 byte = buffer + (block / GFS2_NBBY);
140 bit = (block % GFS2_NBBY) * GFS2_BIT_SIZE;
141 end = buffer + buflen;
142
143 gfs2_assert(rgd->rd_sbd, byte < end);
144
145 cur_state = (*byte >> bit) & GFS2_BIT_MASK;
146
147 return cur_state;
148}
149
150/**
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000151 * gfs2_bit_search
152 * @ptr: Pointer to bitmap data
153 * @mask: Mask to use (normally 0x55555.... but adjusted for search start)
154 * @state: The state we are searching for
155 *
156 * We xor the bitmap data with a patter which is the bitwise opposite
157 * of what we are looking for, this gives rise to a pattern of ones
158 * wherever there is a match. Since we have two bits per entry, we
159 * take this pattern, shift it down by one place and then and it with
160 * the original. All the even bit positions (0,2,4, etc) then represent
161 * successful matches, so we mask with 0x55555..... to remove the unwanted
162 * odd bit positions.
163 *
164 * This allows searching of a whole u64 at once (32 blocks) with a
165 * single test (on 64 bit arches).
166 */
167
168static inline u64 gfs2_bit_search(const __le64 *ptr, u64 mask, u8 state)
169{
170 u64 tmp;
171 static const u64 search[] = {
Hannes Eder075ac442009-02-21 02:11:42 +0100172 [0] = 0xffffffffffffffffULL,
173 [1] = 0xaaaaaaaaaaaaaaaaULL,
174 [2] = 0x5555555555555555ULL,
175 [3] = 0x0000000000000000ULL,
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000176 };
177 tmp = le64_to_cpu(*ptr) ^ search[state];
178 tmp &= (tmp >> 1);
179 tmp &= mask;
180 return tmp;
181}
182
183/**
Bob Peterson8e2e0042012-07-19 08:12:40 -0400184 * rs_cmp - multi-block reservation range compare
185 * @blk: absolute file system block number of the new reservation
186 * @len: number of blocks in the new reservation
187 * @rs: existing reservation to compare against
188 *
189 * returns: 1 if the block range is beyond the reach of the reservation
190 * -1 if the block range is before the start of the reservation
191 * 0 if the block range overlaps with the reservation
192 */
193static inline int rs_cmp(u64 blk, u32 len, struct gfs2_blkreserv *rs)
194{
195 u64 startblk = gfs2_rs_startblk(rs);
196
197 if (blk >= startblk + rs->rs_free)
198 return 1;
199 if (blk + len - 1 < startblk)
200 return -1;
201 return 0;
202}
203
204/**
205 * rs_find - Find a rgrp multi-block reservation that contains a given block
206 * @rgd: The rgrp
207 * @rgblk: The block we're looking for, relative to the rgrp
208 */
209static struct gfs2_blkreserv *rs_find(struct gfs2_rgrpd *rgd, u32 rgblk)
210{
211 struct rb_node **newn;
212 int rc;
213 u64 fsblk = rgblk + rgd->rd_data0;
214
215 spin_lock(&rgd->rd_rsspin);
216 newn = &rgd->rd_rstree.rb_node;
217 while (*newn) {
218 struct gfs2_blkreserv *cur =
219 rb_entry(*newn, struct gfs2_blkreserv, rs_node);
220 rc = rs_cmp(fsblk, 1, cur);
221 if (rc < 0)
222 newn = &((*newn)->rb_left);
223 else if (rc > 0)
224 newn = &((*newn)->rb_right);
225 else {
226 spin_unlock(&rgd->rd_rsspin);
227 return cur;
228 }
229 }
230 spin_unlock(&rgd->rd_rsspin);
231 return NULL;
232}
233
234/**
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400235 * gfs2_bitfit - Search an rgrp's bitmap buffer to find a bit-pair representing
236 * a block in a given allocation state.
Bob Peterson886b1412012-04-11 13:03:52 -0400237 * @buf: the buffer that holds the bitmaps
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000238 * @len: the length (in bytes) of the buffer
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400239 * @goal: start search at this block's bit-pair (within @buffer)
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000240 * @state: GFS2_BLKST_XXX the state of the block we're looking for.
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400241 *
242 * Scope of @goal and returned block number is only within this bitmap buffer,
243 * not entire rgrp or filesystem. @buffer will be offset from the actual
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000244 * beginning of a bitmap block buffer, skipping any header structures, but
245 * headers are always a multiple of 64 bits long so that the buffer is
246 * always aligned to a 64 bit boundary.
247 *
248 * The size of the buffer is in bytes, but is it assumed that it is
Anand Gadiyarfd589a82009-07-16 17:13:03 +0200249 * always ok to read a complete multiple of 64 bits at the end
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000250 * of the block in case the end is no aligned to a natural boundary.
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400251 *
252 * Return: the block number (bitmap buffer scope) that was found
253 */
254
Hannes Eder02ab1722009-02-21 02:12:05 +0100255static u32 gfs2_bitfit(const u8 *buf, const unsigned int len,
256 u32 goal, u8 state)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400257{
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000258 u32 spoint = (goal << 1) & ((8*sizeof(u64)) - 1);
259 const __le64 *ptr = ((__le64 *)buf) + (goal >> 5);
260 const __le64 *end = (__le64 *)(buf + ALIGN(len, sizeof(u64)));
261 u64 tmp;
Hannes Eder075ac442009-02-21 02:11:42 +0100262 u64 mask = 0x5555555555555555ULL;
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000263 u32 bit;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400264
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000265 BUG_ON(state > 3);
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400266
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000267 /* Mask off bits we don't care about at the start of the search */
268 mask <<= spoint;
269 tmp = gfs2_bit_search(ptr, mask, state);
270 ptr++;
271 while(tmp == 0 && ptr < end) {
Hannes Eder075ac442009-02-21 02:11:42 +0100272 tmp = gfs2_bit_search(ptr, 0x5555555555555555ULL, state);
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000273 ptr++;
Bob Peterson1f466a42008-03-10 18:17:47 -0500274 }
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000275 /* Mask off any bits which are more than len bytes from the start */
276 if (ptr == end && (len & (sizeof(u64) - 1)))
277 tmp &= (((u64)~0) >> (64 - 8*(len & (sizeof(u64) - 1))));
278 /* Didn't find anything, so return */
279 if (tmp == 0)
280 return BFITNOENT;
281 ptr--;
Steven Whitehoused8bd5042009-04-23 08:54:02 +0100282 bit = __ffs64(tmp);
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000283 bit /= 2; /* two bits per entry in the bitmap */
284 return (((const unsigned char *)ptr - buf) * GFS2_NBBY) + bit;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400285}
286
287/**
288 * gfs2_bitcount - count the number of bits in a certain state
Bob Peterson886b1412012-04-11 13:03:52 -0400289 * @rgd: the resource group descriptor
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400290 * @buffer: the buffer that holds the bitmaps
291 * @buflen: the length (in bytes) of the buffer
292 * @state: the state of the block we're looking for
293 *
294 * Returns: The number of bits
295 */
296
Steven Whitehouse110acf32008-01-29 13:30:20 +0000297static u32 gfs2_bitcount(struct gfs2_rgrpd *rgd, const u8 *buffer,
298 unsigned int buflen, u8 state)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400299{
Steven Whitehouse110acf32008-01-29 13:30:20 +0000300 const u8 *byte = buffer;
301 const u8 *end = buffer + buflen;
302 const u8 state1 = state << 2;
303 const u8 state2 = state << 4;
304 const u8 state3 = state << 6;
Steven Whitehousecd915492006-09-04 12:49:07 -0400305 u32 count = 0;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400306
307 for (; byte < end; byte++) {
308 if (((*byte) & 0x03) == state)
309 count++;
310 if (((*byte) & 0x0C) == state1)
311 count++;
312 if (((*byte) & 0x30) == state2)
313 count++;
314 if (((*byte) & 0xC0) == state3)
315 count++;
316 }
317
318 return count;
319}
320
David Teiglandb3b94fa2006-01-16 16:50:04 +0000321/**
322 * gfs2_rgrp_verify - Verify that a resource group is consistent
David Teiglandb3b94fa2006-01-16 16:50:04 +0000323 * @rgd: the rgrp
324 *
325 */
326
327void gfs2_rgrp_verify(struct gfs2_rgrpd *rgd)
328{
329 struct gfs2_sbd *sdp = rgd->rd_sbd;
330 struct gfs2_bitmap *bi = NULL;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100331 u32 length = rgd->rd_length;
Steven Whitehousecd915492006-09-04 12:49:07 -0400332 u32 count[4], tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000333 int buf, x;
334
Steven Whitehousecd915492006-09-04 12:49:07 -0400335 memset(count, 0, 4 * sizeof(u32));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000336
337 /* Count # blocks in each of 4 possible allocation states */
338 for (buf = 0; buf < length; buf++) {
339 bi = rgd->rd_bits + buf;
340 for (x = 0; x < 4; x++)
341 count[x] += gfs2_bitcount(rgd,
342 bi->bi_bh->b_data +
343 bi->bi_offset,
344 bi->bi_len, x);
345 }
346
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000347 if (count[0] != rgd->rd_free) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000348 if (gfs2_consist_rgrpd(rgd))
349 fs_err(sdp, "free data mismatch: %u != %u\n",
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000350 count[0], rgd->rd_free);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000351 return;
352 }
353
Steven Whitehouse73f74942008-11-04 10:32:57 +0000354 tmp = rgd->rd_data - rgd->rd_free - rgd->rd_dinodes;
Benjamin Marzinski6b946172009-07-10 18:13:26 -0500355 if (count[1] != tmp) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000356 if (gfs2_consist_rgrpd(rgd))
357 fs_err(sdp, "used data mismatch: %u != %u\n",
358 count[1], tmp);
359 return;
360 }
361
Benjamin Marzinski6b946172009-07-10 18:13:26 -0500362 if (count[2] + count[3] != rgd->rd_dinodes) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000363 if (gfs2_consist_rgrpd(rgd))
364 fs_err(sdp, "used metadata mismatch: %u != %u\n",
Benjamin Marzinski6b946172009-07-10 18:13:26 -0500365 count[2] + count[3], rgd->rd_dinodes);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000366 return;
367 }
368}
369
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100370static inline int rgrp_contains_block(struct gfs2_rgrpd *rgd, u64 block)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000371{
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100372 u64 first = rgd->rd_data0;
373 u64 last = first + rgd->rd_data;
Steven Whitehouse16910422006-09-05 11:15:45 -0400374 return first <= block && block < last;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000375}
376
377/**
378 * gfs2_blk2rgrpd - Find resource group for a given data/meta block number
379 * @sdp: The GFS2 superblock
Bob Peterson886b1412012-04-11 13:03:52 -0400380 * @blk: The data block number
381 * @exact: True if this needs to be an exact match
David Teiglandb3b94fa2006-01-16 16:50:04 +0000382 *
383 * Returns: The resource group, or NULL if not found
384 */
385
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000386struct gfs2_rgrpd *gfs2_blk2rgrpd(struct gfs2_sbd *sdp, u64 blk, bool exact)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000387{
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000388 struct rb_node *n, *next;
Steven Whitehousef75bbfb2011-09-08 10:21:13 +0100389 struct gfs2_rgrpd *cur;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000390
391 spin_lock(&sdp->sd_rindex_spin);
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000392 n = sdp->sd_rindex_tree.rb_node;
393 while (n) {
394 cur = rb_entry(n, struct gfs2_rgrpd, rd_node);
395 next = NULL;
Bob Peterson7c9ca622011-08-31 09:53:19 +0100396 if (blk < cur->rd_addr)
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000397 next = n->rb_left;
Steven Whitehousef75bbfb2011-09-08 10:21:13 +0100398 else if (blk >= cur->rd_data0 + cur->rd_data)
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000399 next = n->rb_right;
400 if (next == NULL) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000401 spin_unlock(&sdp->sd_rindex_spin);
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000402 if (exact) {
403 if (blk < cur->rd_addr)
404 return NULL;
405 if (blk >= cur->rd_data0 + cur->rd_data)
406 return NULL;
407 }
Bob Peterson7c9ca622011-08-31 09:53:19 +0100408 return cur;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000409 }
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000410 n = next;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000411 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000412 spin_unlock(&sdp->sd_rindex_spin);
413
414 return NULL;
415}
416
417/**
418 * gfs2_rgrpd_get_first - get the first Resource Group in the filesystem
419 * @sdp: The GFS2 superblock
420 *
421 * Returns: The first rgrp in the filesystem
422 */
423
424struct gfs2_rgrpd *gfs2_rgrpd_get_first(struct gfs2_sbd *sdp)
425{
Bob Peterson7c9ca622011-08-31 09:53:19 +0100426 const struct rb_node *n;
427 struct gfs2_rgrpd *rgd;
428
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100429 spin_lock(&sdp->sd_rindex_spin);
Bob Peterson7c9ca622011-08-31 09:53:19 +0100430 n = rb_first(&sdp->sd_rindex_tree);
431 rgd = rb_entry(n, struct gfs2_rgrpd, rd_node);
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100432 spin_unlock(&sdp->sd_rindex_spin);
Bob Peterson7c9ca622011-08-31 09:53:19 +0100433
434 return rgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000435}
436
437/**
438 * gfs2_rgrpd_get_next - get the next RG
Bob Peterson886b1412012-04-11 13:03:52 -0400439 * @rgd: the resource group descriptor
David Teiglandb3b94fa2006-01-16 16:50:04 +0000440 *
441 * Returns: The next rgrp
442 */
443
444struct gfs2_rgrpd *gfs2_rgrpd_get_next(struct gfs2_rgrpd *rgd)
445{
Bob Peterson7c9ca622011-08-31 09:53:19 +0100446 struct gfs2_sbd *sdp = rgd->rd_sbd;
447 const struct rb_node *n;
448
449 spin_lock(&sdp->sd_rindex_spin);
450 n = rb_next(&rgd->rd_node);
451 if (n == NULL)
452 n = rb_first(&sdp->sd_rindex_tree);
453
454 if (unlikely(&rgd->rd_node == n)) {
455 spin_unlock(&sdp->sd_rindex_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000456 return NULL;
Bob Peterson7c9ca622011-08-31 09:53:19 +0100457 }
458 rgd = rb_entry(n, struct gfs2_rgrpd, rd_node);
459 spin_unlock(&sdp->sd_rindex_spin);
460 return rgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000461}
462
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100463void gfs2_free_clones(struct gfs2_rgrpd *rgd)
464{
465 int x;
466
467 for (x = 0; x < rgd->rd_length; x++) {
468 struct gfs2_bitmap *bi = rgd->rd_bits + x;
469 kfree(bi->bi_clone);
470 bi->bi_clone = NULL;
471 }
472}
473
Bob Peterson0a305e42012-06-06 11:17:59 +0100474/**
475 * gfs2_rs_alloc - make sure we have a reservation assigned to the inode
476 * @ip: the inode for this reservation
477 */
478int gfs2_rs_alloc(struct gfs2_inode *ip)
479{
480 int error = 0;
Bob Peterson8e2e0042012-07-19 08:12:40 -0400481 struct gfs2_blkreserv *res;
482
483 if (ip->i_res)
484 return 0;
485
486 res = kmem_cache_zalloc(gfs2_rsrv_cachep, GFP_NOFS);
487 if (!res)
488 error = -ENOMEM;
Bob Peterson0a305e42012-06-06 11:17:59 +0100489
490 down_write(&ip->i_rw_mutex);
Bob Peterson8e2e0042012-07-19 08:12:40 -0400491 if (ip->i_res)
492 kmem_cache_free(gfs2_rsrv_cachep, res);
493 else
494 ip->i_res = res;
Bob Peterson0a305e42012-06-06 11:17:59 +0100495 up_write(&ip->i_rw_mutex);
496 return error;
497}
498
Bob Peterson8e2e0042012-07-19 08:12:40 -0400499static void dump_rs(struct seq_file *seq, struct gfs2_blkreserv *rs)
500{
501 gfs2_print_dbg(seq, " r: %llu s:%llu b:%u f:%u\n",
502 rs->rs_rgd->rd_addr, gfs2_rs_startblk(rs), rs->rs_biblk,
503 rs->rs_free);
504}
505
Bob Peterson0a305e42012-06-06 11:17:59 +0100506/**
Bob Peterson8e2e0042012-07-19 08:12:40 -0400507 * __rs_deltree - remove a multi-block reservation from the rgd tree
508 * @rs: The reservation to remove
509 *
510 */
511static void __rs_deltree(struct gfs2_blkreserv *rs)
512{
513 struct gfs2_rgrpd *rgd;
514
515 if (!gfs2_rs_active(rs))
516 return;
517
518 rgd = rs->rs_rgd;
519 /* We can't do this: The reason is that when the rgrp is invalidated,
520 it's in the "middle" of acquiring the glock, but the HOLDER bit
521 isn't set yet:
522 BUG_ON(!gfs2_glock_is_locked_by_me(rs->rs_rgd->rd_gl));*/
523 trace_gfs2_rs(NULL, rs, TRACE_RS_TREEDEL);
524
525 if (!RB_EMPTY_ROOT(&rgd->rd_rstree))
526 rb_erase(&rs->rs_node, &rgd->rd_rstree);
527 BUG_ON(!rgd->rd_rs_cnt);
528 rgd->rd_rs_cnt--;
529
530 if (rs->rs_free) {
531 /* return reserved blocks to the rgrp and the ip */
532 BUG_ON(rs->rs_rgd->rd_reserved < rs->rs_free);
533 rs->rs_rgd->rd_reserved -= rs->rs_free;
534 rs->rs_free = 0;
535 clear_bit(GBF_FULL, &rs->rs_bi->bi_flags);
536 smp_mb__after_clear_bit();
537 }
538 /* We can't change any of the step 1 or step 2 components of the rs.
539 E.g. We can't set rs_rgd to NULL because the rgd glock is held and
540 dequeued through this pointer.
541 Can't: atomic_set(&rs->rs_sizehint, 0);
542 Can't: rs->rs_requested = 0;
543 Can't: rs->rs_rgd = NULL;*/
544 rs->rs_bi = NULL;
545 rs->rs_biblk = 0;
546}
547
548/**
549 * gfs2_rs_deltree - remove a multi-block reservation from the rgd tree
550 * @rs: The reservation to remove
551 *
552 */
553void gfs2_rs_deltree(struct gfs2_blkreserv *rs)
554{
555 struct gfs2_rgrpd *rgd;
556
557 if (!gfs2_rs_active(rs))
558 return;
559
560 rgd = rs->rs_rgd;
561 spin_lock(&rgd->rd_rsspin);
562 __rs_deltree(rs);
563 spin_unlock(&rgd->rd_rsspin);
564}
565
566/**
567 * gfs2_rs_delete - delete a multi-block reservation
Bob Peterson0a305e42012-06-06 11:17:59 +0100568 * @ip: The inode for this reservation
569 *
570 */
571void gfs2_rs_delete(struct gfs2_inode *ip)
572{
573 down_write(&ip->i_rw_mutex);
574 if (ip->i_res) {
Bob Peterson8e2e0042012-07-19 08:12:40 -0400575 gfs2_rs_deltree(ip->i_res);
576 trace_gfs2_rs(ip, ip->i_res, TRACE_RS_DELETE);
577 BUG_ON(ip->i_res->rs_free);
Bob Peterson0a305e42012-06-06 11:17:59 +0100578 kmem_cache_free(gfs2_rsrv_cachep, ip->i_res);
579 ip->i_res = NULL;
580 }
581 up_write(&ip->i_rw_mutex);
582}
583
Bob Peterson8e2e0042012-07-19 08:12:40 -0400584/**
585 * return_all_reservations - return all reserved blocks back to the rgrp.
586 * @rgd: the rgrp that needs its space back
587 *
588 * We previously reserved a bunch of blocks for allocation. Now we need to
589 * give them back. This leave the reservation structures in tact, but removes
590 * all of their corresponding "no-fly zones".
591 */
592static void return_all_reservations(struct gfs2_rgrpd *rgd)
593{
594 struct rb_node *n;
595 struct gfs2_blkreserv *rs;
596
597 spin_lock(&rgd->rd_rsspin);
598 while ((n = rb_first(&rgd->rd_rstree))) {
599 rs = rb_entry(n, struct gfs2_blkreserv, rs_node);
600 __rs_deltree(rs);
601 }
602 spin_unlock(&rgd->rd_rsspin);
603}
604
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100605void gfs2_clear_rgrpd(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000606{
Bob Peterson7c9ca622011-08-31 09:53:19 +0100607 struct rb_node *n;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000608 struct gfs2_rgrpd *rgd;
609 struct gfs2_glock *gl;
610
Bob Peterson7c9ca622011-08-31 09:53:19 +0100611 while ((n = rb_first(&sdp->sd_rindex_tree))) {
612 rgd = rb_entry(n, struct gfs2_rgrpd, rd_node);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000613 gl = rgd->rd_gl;
614
Bob Peterson7c9ca622011-08-31 09:53:19 +0100615 rb_erase(n, &sdp->sd_rindex_tree);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000616
617 if (gl) {
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100618 spin_lock(&gl->gl_spin);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500619 gl->gl_object = NULL;
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100620 spin_unlock(&gl->gl_spin);
Steven Whitehouse29687a22011-03-30 16:33:25 +0100621 gfs2_glock_add_to_lru(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000622 gfs2_glock_put(gl);
623 }
624
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100625 gfs2_free_clones(rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000626 kfree(rgd->rd_bits);
Bob Peterson8e2e0042012-07-19 08:12:40 -0400627 return_all_reservations(rgd);
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600628 kmem_cache_free(gfs2_rgrpd_cachep, rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629 }
630}
631
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100632static void gfs2_rindex_print(const struct gfs2_rgrpd *rgd)
633{
634 printk(KERN_INFO " ri_addr = %llu\n", (unsigned long long)rgd->rd_addr);
635 printk(KERN_INFO " ri_length = %u\n", rgd->rd_length);
636 printk(KERN_INFO " ri_data0 = %llu\n", (unsigned long long)rgd->rd_data0);
637 printk(KERN_INFO " ri_data = %u\n", rgd->rd_data);
638 printk(KERN_INFO " ri_bitbytes = %u\n", rgd->rd_bitbytes);
639}
640
David Teiglandb3b94fa2006-01-16 16:50:04 +0000641/**
642 * gfs2_compute_bitstructs - Compute the bitmap sizes
643 * @rgd: The resource group descriptor
644 *
645 * Calculates bitmap descriptors, one for each block that contains bitmap data
646 *
647 * Returns: errno
648 */
649
650static int compute_bitstructs(struct gfs2_rgrpd *rgd)
651{
652 struct gfs2_sbd *sdp = rgd->rd_sbd;
653 struct gfs2_bitmap *bi;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100654 u32 length = rgd->rd_length; /* # blocks in hdr & bitmap */
Steven Whitehousecd915492006-09-04 12:49:07 -0400655 u32 bytes_left, bytes;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656 int x;
657
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400658 if (!length)
659 return -EINVAL;
660
Steven Whitehousedd894be2006-07-27 14:29:00 -0400661 rgd->rd_bits = kcalloc(length, sizeof(struct gfs2_bitmap), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 if (!rgd->rd_bits)
663 return -ENOMEM;
664
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100665 bytes_left = rgd->rd_bitbytes;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666
667 for (x = 0; x < length; x++) {
668 bi = rgd->rd_bits + x;
669
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +0100670 bi->bi_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000671 /* small rgrp; bitmap stored completely in header block */
672 if (length == 1) {
673 bytes = bytes_left;
674 bi->bi_offset = sizeof(struct gfs2_rgrp);
675 bi->bi_start = 0;
676 bi->bi_len = bytes;
677 /* header block */
678 } else if (x == 0) {
679 bytes = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_rgrp);
680 bi->bi_offset = sizeof(struct gfs2_rgrp);
681 bi->bi_start = 0;
682 bi->bi_len = bytes;
683 /* last block */
684 } else if (x + 1 == length) {
685 bytes = bytes_left;
686 bi->bi_offset = sizeof(struct gfs2_meta_header);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100687 bi->bi_start = rgd->rd_bitbytes - bytes_left;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000688 bi->bi_len = bytes;
689 /* other blocks */
690 } else {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500691 bytes = sdp->sd_sb.sb_bsize -
692 sizeof(struct gfs2_meta_header);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693 bi->bi_offset = sizeof(struct gfs2_meta_header);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100694 bi->bi_start = rgd->rd_bitbytes - bytes_left;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000695 bi->bi_len = bytes;
696 }
697
698 bytes_left -= bytes;
699 }
700
701 if (bytes_left) {
702 gfs2_consist_rgrpd(rgd);
703 return -EIO;
704 }
705 bi = rgd->rd_bits + (length - 1);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100706 if ((bi->bi_start + bi->bi_len) * GFS2_NBBY != rgd->rd_data) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000707 if (gfs2_consist_rgrpd(rgd)) {
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100708 gfs2_rindex_print(rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000709 fs_err(sdp, "start=%u len=%u offset=%u\n",
710 bi->bi_start, bi->bi_len, bi->bi_offset);
711 }
712 return -EIO;
713 }
714
715 return 0;
716}
717
718/**
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500719 * gfs2_ri_total - Total up the file system space, according to the rindex.
Bob Peterson886b1412012-04-11 13:03:52 -0400720 * @sdp: the filesystem
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500721 *
722 */
723u64 gfs2_ri_total(struct gfs2_sbd *sdp)
724{
725 u64 total_data = 0;
726 struct inode *inode = sdp->sd_rindex;
727 struct gfs2_inode *ip = GFS2_I(inode);
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500728 char buf[sizeof(struct gfs2_rindex)];
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500729 int error, rgrps;
730
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500731 for (rgrps = 0;; rgrps++) {
732 loff_t pos = rgrps * sizeof(struct gfs2_rindex);
733
Bob Petersonbcd72782010-12-07 13:58:56 -0500734 if (pos + sizeof(struct gfs2_rindex) > i_size_read(inode))
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500735 break;
Andrew Price43066292012-04-16 16:40:55 +0100736 error = gfs2_internal_read(ip, buf, &pos,
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500737 sizeof(struct gfs2_rindex));
738 if (error != sizeof(struct gfs2_rindex))
739 break;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100740 total_data += be32_to_cpu(((struct gfs2_rindex *)buf)->ri_data);
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500741 }
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500742 return total_data;
743}
744
Bob Peterson6aad1c32012-03-05 09:20:59 -0500745static int rgd_insert(struct gfs2_rgrpd *rgd)
Bob Peterson7c9ca622011-08-31 09:53:19 +0100746{
747 struct gfs2_sbd *sdp = rgd->rd_sbd;
748 struct rb_node **newn = &sdp->sd_rindex_tree.rb_node, *parent = NULL;
749
750 /* Figure out where to put new node */
751 while (*newn) {
752 struct gfs2_rgrpd *cur = rb_entry(*newn, struct gfs2_rgrpd,
753 rd_node);
754
755 parent = *newn;
756 if (rgd->rd_addr < cur->rd_addr)
757 newn = &((*newn)->rb_left);
758 else if (rgd->rd_addr > cur->rd_addr)
759 newn = &((*newn)->rb_right);
760 else
Bob Peterson6aad1c32012-03-05 09:20:59 -0500761 return -EEXIST;
Bob Peterson7c9ca622011-08-31 09:53:19 +0100762 }
763
764 rb_link_node(&rgd->rd_node, parent, newn);
765 rb_insert_color(&rgd->rd_node, &sdp->sd_rindex_tree);
Bob Peterson6aad1c32012-03-05 09:20:59 -0500766 sdp->sd_rgrps++;
767 return 0;
Bob Peterson7c9ca622011-08-31 09:53:19 +0100768}
769
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500770/**
Robert Peterson6c532672007-05-10 16:54:38 -0500771 * read_rindex_entry - Pull in a new resource index entry from the disk
Andrew Price43066292012-04-16 16:40:55 +0100772 * @ip: Pointer to the rindex inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000773 *
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100774 * Returns: 0 on success, > 0 on EOF, error code otherwise
Robert Peterson6c532672007-05-10 16:54:38 -0500775 */
776
Andrew Price43066292012-04-16 16:40:55 +0100777static int read_rindex_entry(struct gfs2_inode *ip)
Robert Peterson6c532672007-05-10 16:54:38 -0500778{
779 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
780 loff_t pos = sdp->sd_rgrps * sizeof(struct gfs2_rindex);
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100781 struct gfs2_rindex buf;
Robert Peterson6c532672007-05-10 16:54:38 -0500782 int error;
783 struct gfs2_rgrpd *rgd;
784
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100785 if (pos >= i_size_read(&ip->i_inode))
786 return 1;
787
Andrew Price43066292012-04-16 16:40:55 +0100788 error = gfs2_internal_read(ip, (char *)&buf, &pos,
Robert Peterson6c532672007-05-10 16:54:38 -0500789 sizeof(struct gfs2_rindex));
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100790
791 if (error != sizeof(struct gfs2_rindex))
792 return (error == 0) ? 1 : error;
Robert Peterson6c532672007-05-10 16:54:38 -0500793
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600794 rgd = kmem_cache_zalloc(gfs2_rgrpd_cachep, GFP_NOFS);
Robert Peterson6c532672007-05-10 16:54:38 -0500795 error = -ENOMEM;
796 if (!rgd)
797 return error;
798
Robert Peterson6c532672007-05-10 16:54:38 -0500799 rgd->rd_sbd = sdp;
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100800 rgd->rd_addr = be64_to_cpu(buf.ri_addr);
801 rgd->rd_length = be32_to_cpu(buf.ri_length);
802 rgd->rd_data0 = be64_to_cpu(buf.ri_data0);
803 rgd->rd_data = be32_to_cpu(buf.ri_data);
804 rgd->rd_bitbytes = be32_to_cpu(buf.ri_bitbytes);
Bob Peterson8e2e0042012-07-19 08:12:40 -0400805 spin_lock_init(&rgd->rd_rsspin);
Bob Peterson7c9ca622011-08-31 09:53:19 +0100806
Robert Peterson6c532672007-05-10 16:54:38 -0500807 error = compute_bitstructs(rgd);
808 if (error)
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100809 goto fail;
Robert Peterson6c532672007-05-10 16:54:38 -0500810
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100811 error = gfs2_glock_get(sdp, rgd->rd_addr,
Robert Peterson6c532672007-05-10 16:54:38 -0500812 &gfs2_rgrp_glops, CREATE, &rgd->rd_gl);
813 if (error)
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100814 goto fail;
Robert Peterson6c532672007-05-10 16:54:38 -0500815
816 rgd->rd_gl->gl_object = rgd;
Benjamin Marzinski90306c42012-05-29 23:01:09 -0500817 rgd->rd_rgl = (struct gfs2_rgrp_lvb *)rgd->rd_gl->gl_lvb;
Bob Petersoncf45b752008-01-31 10:31:39 -0600818 rgd->rd_flags &= ~GFS2_RDF_UPTODATE;
Bob Peterson7c9ca622011-08-31 09:53:19 +0100819 if (rgd->rd_data > sdp->sd_max_rg_data)
820 sdp->sd_max_rg_data = rgd->rd_data;
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100821 spin_lock(&sdp->sd_rindex_spin);
Bob Peterson6aad1c32012-03-05 09:20:59 -0500822 error = rgd_insert(rgd);
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100823 spin_unlock(&sdp->sd_rindex_spin);
Bob Peterson6aad1c32012-03-05 09:20:59 -0500824 if (!error)
825 return 0;
826
827 error = 0; /* someone else read in the rgrp; free it and ignore it */
Bob Petersonc1ac5392012-03-22 08:58:30 -0400828 gfs2_glock_put(rgd->rd_gl);
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100829
830fail:
831 kfree(rgd->rd_bits);
832 kmem_cache_free(gfs2_rgrpd_cachep, rgd);
Robert Peterson6c532672007-05-10 16:54:38 -0500833 return error;
834}
835
836/**
837 * gfs2_ri_update - Pull in a new resource index from the disk
838 * @ip: pointer to the rindex inode
839 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000840 * Returns: 0 on successful update, error code otherwise
841 */
842
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100843static int gfs2_ri_update(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000844{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400845 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846 int error;
847
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100848 do {
Andrew Price43066292012-04-16 16:40:55 +0100849 error = read_rindex_entry(ip);
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100850 } while (error == 0);
851
852 if (error < 0)
853 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000854
Bob Petersoncf45b752008-01-31 10:31:39 -0600855 sdp->sd_rindex_uptodate = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000856 return 0;
Robert Peterson6c532672007-05-10 16:54:38 -0500857}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000858
Robert Peterson6c532672007-05-10 16:54:38 -0500859/**
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100860 * gfs2_rindex_update - Update the rindex if required
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861 * @sdp: The GFS2 superblock
David Teiglandb3b94fa2006-01-16 16:50:04 +0000862 *
863 * We grab a lock on the rindex inode to make sure that it doesn't
864 * change whilst we are performing an operation. We keep this lock
865 * for quite long periods of time compared to other locks. This
866 * doesn't matter, since it is shared and it is very, very rarely
867 * accessed in the exclusive mode (i.e. only when expanding the filesystem).
868 *
869 * This makes sure that we're using the latest copy of the resource index
870 * special file, which might have been updated if someone expanded the
871 * filesystem (via gfs2_grow utility), which adds new resource groups.
872 *
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100873 * Returns: 0 on succeess, error code otherwise
David Teiglandb3b94fa2006-01-16 16:50:04 +0000874 */
875
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100876int gfs2_rindex_update(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000877{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400878 struct gfs2_inode *ip = GFS2_I(sdp->sd_rindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879 struct gfs2_glock *gl = ip->i_gl;
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100880 struct gfs2_holder ri_gh;
881 int error = 0;
Steven Whitehousea365fbf2012-02-24 15:09:14 +0000882 int unlock_required = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000883
884 /* Read new copy from disk if we don't have the latest */
Bob Petersoncf45b752008-01-31 10:31:39 -0600885 if (!sdp->sd_rindex_uptodate) {
Steven Whitehousea365fbf2012-02-24 15:09:14 +0000886 if (!gfs2_glock_is_locked_by_me(gl)) {
887 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, 0, &ri_gh);
888 if (error)
Bob Peterson6aad1c32012-03-05 09:20:59 -0500889 return error;
Steven Whitehousea365fbf2012-02-24 15:09:14 +0000890 unlock_required = 1;
891 }
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100892 if (!sdp->sd_rindex_uptodate)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000893 error = gfs2_ri_update(ip);
Steven Whitehousea365fbf2012-02-24 15:09:14 +0000894 if (unlock_required)
895 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000896 }
897
898 return error;
899}
900
Bob Peterson42d52e32008-01-28 18:38:07 -0600901static void gfs2_rgrp_in(struct gfs2_rgrpd *rgd, const void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100902{
903 const struct gfs2_rgrp *str = buf;
Bob Peterson42d52e32008-01-28 18:38:07 -0600904 u32 rg_flags;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100905
Bob Peterson42d52e32008-01-28 18:38:07 -0600906 rg_flags = be32_to_cpu(str->rg_flags);
Steven Whitehouse09010972009-05-20 10:48:47 +0100907 rg_flags &= ~GFS2_RDF_MASK;
Steven Whitehouse1ce97e52009-05-21 15:18:19 +0100908 rgd->rd_flags &= GFS2_RDF_MASK;
909 rgd->rd_flags |= rg_flags;
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000910 rgd->rd_free = be32_to_cpu(str->rg_free);
Steven Whitehouse73f74942008-11-04 10:32:57 +0000911 rgd->rd_dinodes = be32_to_cpu(str->rg_dinodes);
Steven Whitehoused8b71f72008-11-04 10:19:03 +0000912 rgd->rd_igeneration = be64_to_cpu(str->rg_igeneration);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100913}
914
Bob Peterson42d52e32008-01-28 18:38:07 -0600915static void gfs2_rgrp_out(struct gfs2_rgrpd *rgd, void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100916{
917 struct gfs2_rgrp *str = buf;
918
Steven Whitehouse09010972009-05-20 10:48:47 +0100919 str->rg_flags = cpu_to_be32(rgd->rd_flags & ~GFS2_RDF_MASK);
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000920 str->rg_free = cpu_to_be32(rgd->rd_free);
Steven Whitehouse73f74942008-11-04 10:32:57 +0000921 str->rg_dinodes = cpu_to_be32(rgd->rd_dinodes);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100922 str->__pad = cpu_to_be32(0);
Steven Whitehoused8b71f72008-11-04 10:19:03 +0000923 str->rg_igeneration = cpu_to_be64(rgd->rd_igeneration);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100924 memset(&str->rg_reserved, 0, sizeof(str->rg_reserved));
925}
926
Benjamin Marzinski90306c42012-05-29 23:01:09 -0500927static int gfs2_rgrp_lvb_valid(struct gfs2_rgrpd *rgd)
928{
929 struct gfs2_rgrp_lvb *rgl = rgd->rd_rgl;
930 struct gfs2_rgrp *str = (struct gfs2_rgrp *)rgd->rd_bits[0].bi_bh->b_data;
931
932 if (rgl->rl_flags != str->rg_flags || rgl->rl_free != str->rg_free ||
933 rgl->rl_dinodes != str->rg_dinodes ||
934 rgl->rl_igeneration != str->rg_igeneration)
935 return 0;
936 return 1;
937}
938
939static void gfs2_rgrp_ondisk2lvb(struct gfs2_rgrp_lvb *rgl, const void *buf)
940{
941 const struct gfs2_rgrp *str = buf;
942
943 rgl->rl_magic = cpu_to_be32(GFS2_MAGIC);
944 rgl->rl_flags = str->rg_flags;
945 rgl->rl_free = str->rg_free;
946 rgl->rl_dinodes = str->rg_dinodes;
947 rgl->rl_igeneration = str->rg_igeneration;
948 rgl->__pad = 0UL;
949}
950
951static void update_rgrp_lvb_unlinked(struct gfs2_rgrpd *rgd, u32 change)
952{
953 struct gfs2_rgrp_lvb *rgl = rgd->rd_rgl;
954 u32 unlinked = be32_to_cpu(rgl->rl_unlinked) + change;
955 rgl->rl_unlinked = cpu_to_be32(unlinked);
956}
957
958static u32 count_unlinked(struct gfs2_rgrpd *rgd)
959{
960 struct gfs2_bitmap *bi;
961 const u32 length = rgd->rd_length;
962 const u8 *buffer = NULL;
963 u32 i, goal, count = 0;
964
965 for (i = 0, bi = rgd->rd_bits; i < length; i++, bi++) {
966 goal = 0;
967 buffer = bi->bi_bh->b_data + bi->bi_offset;
968 WARN_ON(!buffer_uptodate(bi->bi_bh));
969 while (goal < bi->bi_len * GFS2_NBBY) {
970 goal = gfs2_bitfit(buffer, bi->bi_len, goal,
971 GFS2_BLKST_UNLINKED);
972 if (goal == BFITNOENT)
973 break;
974 count++;
975 goal++;
976 }
977 }
978
979 return count;
980}
981
982
David Teiglandb3b94fa2006-01-16 16:50:04 +0000983/**
Benjamin Marzinski90306c42012-05-29 23:01:09 -0500984 * gfs2_rgrp_bh_get - Read in a RG's header and bitmaps
985 * @rgd: the struct gfs2_rgrpd describing the RG to read in
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986 *
987 * Read in all of a Resource Group's header and bitmap blocks.
988 * Caller must eventually call gfs2_rgrp_relse() to free the bitmaps.
989 *
990 * Returns: errno
991 */
992
Benjamin Marzinski90306c42012-05-29 23:01:09 -0500993int gfs2_rgrp_bh_get(struct gfs2_rgrpd *rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000994{
995 struct gfs2_sbd *sdp = rgd->rd_sbd;
996 struct gfs2_glock *gl = rgd->rd_gl;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100997 unsigned int length = rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000998 struct gfs2_bitmap *bi;
999 unsigned int x, y;
1000 int error;
1001
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001002 if (rgd->rd_bits[0].bi_bh != NULL)
1003 return 0;
1004
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005 for (x = 0; x < length; x++) {
1006 bi = rgd->rd_bits + x;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001007 error = gfs2_meta_read(gl, rgd->rd_addr + x, 0, &bi->bi_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001008 if (error)
1009 goto fail;
1010 }
1011
1012 for (y = length; y--;) {
1013 bi = rgd->rd_bits + y;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001014 error = gfs2_meta_wait(sdp, bi->bi_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001015 if (error)
1016 goto fail;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001017 if (gfs2_metatype_check(sdp, bi->bi_bh, y ? GFS2_METATYPE_RB :
David Teiglandb3b94fa2006-01-16 16:50:04 +00001018 GFS2_METATYPE_RG)) {
1019 error = -EIO;
1020 goto fail;
1021 }
1022 }
1023
Bob Petersoncf45b752008-01-31 10:31:39 -06001024 if (!(rgd->rd_flags & GFS2_RDF_UPTODATE)) {
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001025 for (x = 0; x < length; x++)
1026 clear_bit(GBF_FULL, &rgd->rd_bits[x].bi_flags);
Bob Peterson42d52e32008-01-28 18:38:07 -06001027 gfs2_rgrp_in(rgd, (rgd->rd_bits[0].bi_bh)->b_data);
Steven Whitehouse1ce97e52009-05-21 15:18:19 +01001028 rgd->rd_flags |= (GFS2_RDF_UPTODATE | GFS2_RDF_CHECK);
Bob Peterson7c9ca622011-08-31 09:53:19 +01001029 rgd->rd_free_clone = rgd->rd_free;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001030 }
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001031 if (be32_to_cpu(GFS2_MAGIC) != rgd->rd_rgl->rl_magic) {
1032 rgd->rd_rgl->rl_unlinked = cpu_to_be32(count_unlinked(rgd));
1033 gfs2_rgrp_ondisk2lvb(rgd->rd_rgl,
1034 rgd->rd_bits[0].bi_bh->b_data);
1035 }
1036 else if (sdp->sd_args.ar_rgrplvb) {
1037 if (!gfs2_rgrp_lvb_valid(rgd)){
1038 gfs2_consist_rgrpd(rgd);
1039 error = -EIO;
1040 goto fail;
1041 }
1042 if (rgd->rd_rgl->rl_unlinked == 0)
1043 rgd->rd_flags &= ~GFS2_RDF_CHECK;
1044 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001045 return 0;
1046
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001047fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048 while (x--) {
1049 bi = rgd->rd_bits + x;
1050 brelse(bi->bi_bh);
1051 bi->bi_bh = NULL;
1052 gfs2_assert_warn(sdp, !bi->bi_clone);
1053 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001054
1055 return error;
1056}
1057
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001058int update_rgrp_lvb(struct gfs2_rgrpd *rgd)
1059{
1060 u32 rl_flags;
1061
1062 if (rgd->rd_flags & GFS2_RDF_UPTODATE)
1063 return 0;
1064
1065 if (be32_to_cpu(GFS2_MAGIC) != rgd->rd_rgl->rl_magic)
1066 return gfs2_rgrp_bh_get(rgd);
1067
1068 rl_flags = be32_to_cpu(rgd->rd_rgl->rl_flags);
1069 rl_flags &= ~GFS2_RDF_MASK;
1070 rgd->rd_flags &= GFS2_RDF_MASK;
1071 rgd->rd_flags |= (rl_flags | GFS2_RDF_UPTODATE | GFS2_RDF_CHECK);
1072 if (rgd->rd_rgl->rl_unlinked == 0)
1073 rgd->rd_flags &= ~GFS2_RDF_CHECK;
1074 rgd->rd_free = be32_to_cpu(rgd->rd_rgl->rl_free);
1075 rgd->rd_free_clone = rgd->rd_free;
1076 rgd->rd_dinodes = be32_to_cpu(rgd->rd_rgl->rl_dinodes);
1077 rgd->rd_igeneration = be64_to_cpu(rgd->rd_rgl->rl_igeneration);
1078 return 0;
1079}
1080
1081int gfs2_rgrp_go_lock(struct gfs2_holder *gh)
1082{
1083 struct gfs2_rgrpd *rgd = gh->gh_gl->gl_object;
1084 struct gfs2_sbd *sdp = rgd->rd_sbd;
1085
1086 if (gh->gh_flags & GL_SKIP && sdp->sd_args.ar_rgrplvb)
1087 return 0;
1088 return gfs2_rgrp_bh_get((struct gfs2_rgrpd *)gh->gh_gl->gl_object);
1089}
1090
David Teiglandb3b94fa2006-01-16 16:50:04 +00001091/**
Bob Peterson7c9ca622011-08-31 09:53:19 +01001092 * gfs2_rgrp_go_unlock - Release RG bitmaps read in with gfs2_rgrp_bh_get()
Bob Peterson886b1412012-04-11 13:03:52 -04001093 * @gh: The glock holder for the resource group
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094 *
1095 */
1096
Bob Peterson7c9ca622011-08-31 09:53:19 +01001097void gfs2_rgrp_go_unlock(struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001098{
Bob Peterson7c9ca622011-08-31 09:53:19 +01001099 struct gfs2_rgrpd *rgd = gh->gh_gl->gl_object;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001100 int x, length = rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001101
David Teiglandb3b94fa2006-01-16 16:50:04 +00001102 for (x = 0; x < length; x++) {
1103 struct gfs2_bitmap *bi = rgd->rd_bits + x;
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001104 if (bi->bi_bh) {
1105 brelse(bi->bi_bh);
1106 bi->bi_bh = NULL;
1107 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001108 }
1109
David Teiglandb3b94fa2006-01-16 16:50:04 +00001110}
1111
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001112int gfs2_rgrp_send_discards(struct gfs2_sbd *sdp, u64 offset,
Bob Peterson7c9ca622011-08-31 09:53:19 +01001113 struct buffer_head *bh,
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001114 const struct gfs2_bitmap *bi, unsigned minlen, u64 *ptrimmed)
Steven Whitehousef15ab562009-02-09 09:25:01 +00001115{
1116 struct super_block *sb = sdp->sd_vfs;
1117 struct block_device *bdev = sb->s_bdev;
1118 const unsigned int sects_per_blk = sdp->sd_sb.sb_bsize /
Martin K. Petersene1defc42009-05-22 17:17:49 -04001119 bdev_logical_block_size(sb->s_bdev);
Steven Whitehousef15ab562009-02-09 09:25:01 +00001120 u64 blk;
Steven Whitehouse64d576b2009-02-12 13:31:58 +00001121 sector_t start = 0;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001122 sector_t nr_sects = 0;
1123 int rv;
1124 unsigned int x;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001125 u32 trimmed = 0;
1126 u8 diff;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001127
1128 for (x = 0; x < bi->bi_len; x++) {
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001129 const u8 *clone = bi->bi_clone ? bi->bi_clone : bi->bi_bh->b_data;
1130 clone += bi->bi_offset;
1131 clone += x;
1132 if (bh) {
1133 const u8 *orig = bh->b_data + bi->bi_offset + x;
1134 diff = ~(*orig | (*orig >> 1)) & (*clone | (*clone >> 1));
1135 } else {
1136 diff = ~(*clone | (*clone >> 1));
1137 }
Steven Whitehousef15ab562009-02-09 09:25:01 +00001138 diff &= 0x55;
1139 if (diff == 0)
1140 continue;
1141 blk = offset + ((bi->bi_start + x) * GFS2_NBBY);
1142 blk *= sects_per_blk; /* convert to sectors */
1143 while(diff) {
1144 if (diff & 1) {
1145 if (nr_sects == 0)
1146 goto start_new_extent;
1147 if ((start + nr_sects) != blk) {
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001148 if (nr_sects >= minlen) {
1149 rv = blkdev_issue_discard(bdev,
1150 start, nr_sects,
1151 GFP_NOFS, 0);
1152 if (rv)
1153 goto fail;
1154 trimmed += nr_sects;
1155 }
Steven Whitehousef15ab562009-02-09 09:25:01 +00001156 nr_sects = 0;
1157start_new_extent:
1158 start = blk;
1159 }
1160 nr_sects += sects_per_blk;
1161 }
1162 diff >>= 2;
1163 blk += sects_per_blk;
1164 }
1165 }
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001166 if (nr_sects >= minlen) {
Christoph Hellwigdd3932e2010-09-16 20:51:46 +02001167 rv = blkdev_issue_discard(bdev, start, nr_sects, GFP_NOFS, 0);
Steven Whitehousef15ab562009-02-09 09:25:01 +00001168 if (rv)
1169 goto fail;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001170 trimmed += nr_sects;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001171 }
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001172 if (ptrimmed)
1173 *ptrimmed = trimmed;
1174 return 0;
1175
Steven Whitehousef15ab562009-02-09 09:25:01 +00001176fail:
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001177 if (sdp->sd_args.ar_discard)
1178 fs_warn(sdp, "error %d on discard request, turning discards off for this filesystem", rv);
Steven Whitehousef15ab562009-02-09 09:25:01 +00001179 sdp->sd_args.ar_discard = 0;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001180 return -EIO;
1181}
1182
1183/**
1184 * gfs2_fitrim - Generate discard requests for unused bits of the filesystem
1185 * @filp: Any file on the filesystem
1186 * @argp: Pointer to the arguments (also used to pass result)
1187 *
1188 * Returns: 0 on success, otherwise error code
1189 */
1190
1191int gfs2_fitrim(struct file *filp, void __user *argp)
1192{
1193 struct inode *inode = filp->f_dentry->d_inode;
1194 struct gfs2_sbd *sdp = GFS2_SB(inode);
1195 struct request_queue *q = bdev_get_queue(sdp->sd_vfs->s_bdev);
1196 struct buffer_head *bh;
1197 struct gfs2_rgrpd *rgd;
1198 struct gfs2_rgrpd *rgd_end;
1199 struct gfs2_holder gh;
1200 struct fstrim_range r;
1201 int ret = 0;
1202 u64 amt;
1203 u64 trimmed = 0;
1204 unsigned int x;
1205
1206 if (!capable(CAP_SYS_ADMIN))
1207 return -EPERM;
1208
1209 if (!blk_queue_discard(q))
1210 return -EOPNOTSUPP;
1211
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001212 if (argp == NULL) {
1213 r.start = 0;
1214 r.len = ULLONG_MAX;
1215 r.minlen = 0;
1216 } else if (copy_from_user(&r, argp, sizeof(r)))
1217 return -EFAULT;
1218
Bob Peterson5e2f7d62012-04-04 22:11:16 -04001219 ret = gfs2_rindex_update(sdp);
1220 if (ret)
1221 return ret;
1222
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001223 rgd = gfs2_blk2rgrpd(sdp, r.start, 0);
1224 rgd_end = gfs2_blk2rgrpd(sdp, r.start + r.len, 0);
1225
1226 while (1) {
1227
1228 ret = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &gh);
1229 if (ret)
1230 goto out;
1231
1232 if (!(rgd->rd_flags & GFS2_RGF_TRIMMED)) {
1233 /* Trim each bitmap in the rgrp */
1234 for (x = 0; x < rgd->rd_length; x++) {
1235 struct gfs2_bitmap *bi = rgd->rd_bits + x;
1236 ret = gfs2_rgrp_send_discards(sdp, rgd->rd_data0, NULL, bi, r.minlen, &amt);
1237 if (ret) {
1238 gfs2_glock_dq_uninit(&gh);
1239 goto out;
1240 }
1241 trimmed += amt;
1242 }
1243
1244 /* Mark rgrp as having been trimmed */
1245 ret = gfs2_trans_begin(sdp, RES_RG_HDR, 0);
1246 if (ret == 0) {
1247 bh = rgd->rd_bits[0].bi_bh;
1248 rgd->rd_flags |= GFS2_RGF_TRIMMED;
1249 gfs2_trans_add_bh(rgd->rd_gl, bh, 1);
1250 gfs2_rgrp_out(rgd, bh->b_data);
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001251 gfs2_rgrp_ondisk2lvb(rgd->rd_rgl, bh->b_data);
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001252 gfs2_trans_end(sdp);
1253 }
1254 }
1255 gfs2_glock_dq_uninit(&gh);
1256
1257 if (rgd == rgd_end)
1258 break;
1259
1260 rgd = gfs2_rgrpd_get_next(rgd);
1261 }
1262
1263out:
1264 r.len = trimmed << 9;
1265 if (argp && copy_to_user(argp, &r, sizeof(r)))
1266 return -EFAULT;
1267
1268 return ret;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001269}
1270
David Teiglandb3b94fa2006-01-16 16:50:04 +00001271/**
Bob Peterson8e2e0042012-07-19 08:12:40 -04001272 * rs_insert - insert a new multi-block reservation into the rgrp's rb_tree
1273 * @bi: the bitmap with the blocks
1274 * @ip: the inode structure
1275 * @biblk: the 32-bit block number relative to the start of the bitmap
1276 * @amount: the number of blocks to reserve
1277 *
1278 * Returns: NULL - reservation was already taken, so not inserted
1279 * pointer to the inserted reservation
1280 */
1281static struct gfs2_blkreserv *rs_insert(struct gfs2_bitmap *bi,
1282 struct gfs2_inode *ip, u32 biblk,
1283 int amount)
1284{
1285 struct rb_node **newn, *parent = NULL;
1286 int rc;
1287 struct gfs2_blkreserv *rs = ip->i_res;
1288 struct gfs2_rgrpd *rgd = rs->rs_rgd;
1289 u64 fsblock = gfs2_bi2rgd_blk(bi, biblk) + rgd->rd_data0;
1290
1291 spin_lock(&rgd->rd_rsspin);
1292 newn = &rgd->rd_rstree.rb_node;
1293 BUG_ON(!ip->i_res);
1294 BUG_ON(gfs2_rs_active(rs));
1295 /* Figure out where to put new node */
1296 /*BUG_ON(!gfs2_glock_is_locked_by_me(rgd->rd_gl));*/
1297 while (*newn) {
1298 struct gfs2_blkreserv *cur =
1299 rb_entry(*newn, struct gfs2_blkreserv, rs_node);
1300
1301 parent = *newn;
1302 rc = rs_cmp(fsblock, amount, cur);
1303 if (rc > 0)
1304 newn = &((*newn)->rb_right);
1305 else if (rc < 0)
1306 newn = &((*newn)->rb_left);
1307 else {
1308 spin_unlock(&rgd->rd_rsspin);
1309 return NULL; /* reservation already in use */
1310 }
1311 }
1312
1313 /* Do our reservation work */
1314 rs = ip->i_res;
1315 rs->rs_free = amount;
1316 rs->rs_biblk = biblk;
1317 rs->rs_bi = bi;
1318 rb_link_node(&rs->rs_node, parent, newn);
1319 rb_insert_color(&rs->rs_node, &rgd->rd_rstree);
1320
1321 /* Do our inode accounting for the reservation */
1322 /*BUG_ON(!gfs2_glock_is_locked_by_me(ip->i_gl));*/
1323
1324 /* Do our rgrp accounting for the reservation */
1325 rgd->rd_reserved += amount; /* blocks reserved */
1326 rgd->rd_rs_cnt++; /* number of in-tree reservations */
1327 spin_unlock(&rgd->rd_rsspin);
1328 trace_gfs2_rs(ip, rs, TRACE_RS_INSERT);
1329 return rs;
1330}
1331
1332/**
1333 * unclaimed_blocks - return number of blocks that aren't spoken for
1334 */
1335static u32 unclaimed_blocks(struct gfs2_rgrpd *rgd)
1336{
1337 return rgd->rd_free_clone - rgd->rd_reserved;
1338}
1339
1340/**
1341 * rg_mblk_search - find a group of multiple free blocks
1342 * @rgd: the resource group descriptor
1343 * @rs: the block reservation
1344 * @ip: pointer to the inode for which we're reserving blocks
1345 *
1346 * This is very similar to rgblk_search, except we're looking for whole
1347 * 64-bit words that represent a chunk of 32 free blocks. I'm only focusing
1348 * on aligned dwords for speed's sake.
1349 *
1350 * Returns: 0 if successful or BFITNOENT if there isn't enough free space
1351 */
1352
1353static int rg_mblk_search(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip)
1354{
1355 struct gfs2_bitmap *bi = rgd->rd_bits;
1356 const u32 length = rgd->rd_length;
1357 u32 blk;
1358 unsigned int buf, x, search_bytes;
1359 u8 *buffer = NULL;
1360 u8 *ptr, *end, *nonzero;
1361 u32 goal, rsv_bytes;
1362 struct gfs2_blkreserv *rs;
1363 u32 best_rs_bytes, unclaimed;
1364 int best_rs_blocks;
1365
1366 /* Find bitmap block that contains bits for goal block */
1367 if (rgrp_contains_block(rgd, ip->i_goal))
1368 goal = ip->i_goal - rgd->rd_data0;
1369 else
1370 goal = rgd->rd_last_alloc;
1371 for (buf = 0; buf < length; buf++) {
1372 bi = rgd->rd_bits + buf;
1373 /* Convert scope of "goal" from rgrp-wide to within
1374 found bit block */
1375 if (goal < (bi->bi_start + bi->bi_len) * GFS2_NBBY) {
1376 goal -= bi->bi_start * GFS2_NBBY;
1377 goto do_search;
1378 }
1379 }
1380 buf = 0;
1381 goal = 0;
1382
1383do_search:
1384 best_rs_blocks = max_t(int, atomic_read(&ip->i_res->rs_sizehint),
1385 (RGRP_RSRV_MINBLKS * rgd->rd_length));
1386 best_rs_bytes = (best_rs_blocks *
1387 (1 + (RSRV_CONTENTION_FACTOR * rgd->rd_rs_cnt))) /
1388 GFS2_NBBY; /* 1 + is for our not-yet-created reservation */
1389 best_rs_bytes = ALIGN(best_rs_bytes, sizeof(u64));
1390 unclaimed = unclaimed_blocks(rgd);
1391 if (best_rs_bytes * GFS2_NBBY > unclaimed)
1392 best_rs_bytes = unclaimed >> GFS2_BIT_SIZE;
1393
1394 for (x = 0; x <= length; x++) {
1395 bi = rgd->rd_bits + buf;
1396
1397 if (test_bit(GBF_FULL, &bi->bi_flags))
1398 goto skip;
1399
1400 WARN_ON(!buffer_uptodate(bi->bi_bh));
1401 if (bi->bi_clone)
1402 buffer = bi->bi_clone + bi->bi_offset;
1403 else
1404 buffer = bi->bi_bh->b_data + bi->bi_offset;
1405
1406 /* We have to keep the reservations aligned on u64 boundaries
1407 otherwise we could get situations where a byte can't be
1408 used because it's after a reservation, but a free bit still
1409 is within the reservation's area. */
1410 ptr = buffer + ALIGN(goal >> GFS2_BIT_SIZE, sizeof(u64));
1411 end = (buffer + bi->bi_len);
1412 while (ptr < end) {
1413 rsv_bytes = 0;
1414 if ((ptr + best_rs_bytes) <= end)
1415 search_bytes = best_rs_bytes;
1416 else
1417 search_bytes = end - ptr;
1418 BUG_ON(!search_bytes);
1419 nonzero = memchr_inv(ptr, 0, search_bytes);
1420 /* If the lot is all zeroes, reserve the whole size. If
1421 there's enough zeroes to satisfy the request, use
1422 what we can. If there's not enough, keep looking. */
1423 if (nonzero == NULL)
1424 rsv_bytes = search_bytes;
1425 else if ((nonzero - ptr) * GFS2_NBBY >=
1426 ip->i_res->rs_requested)
1427 rsv_bytes = (nonzero - ptr);
1428
1429 if (rsv_bytes) {
1430 blk = ((ptr - buffer) * GFS2_NBBY);
1431 BUG_ON(blk >= bi->bi_len * GFS2_NBBY);
1432 rs = rs_insert(bi, ip, blk,
1433 rsv_bytes * GFS2_NBBY);
1434 if (IS_ERR(rs))
1435 return PTR_ERR(rs);
1436 if (rs)
1437 return 0;
1438 }
1439 ptr += ALIGN(search_bytes, sizeof(u64));
1440 }
1441skip:
1442 /* Try next bitmap block (wrap back to rgrp header
1443 if at end) */
1444 buf++;
1445 buf %= length;
1446 goal = 0;
1447 }
1448
1449 return BFITNOENT;
1450}
1451
1452/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001453 * try_rgrp_fit - See if a given reservation will fit in a given RG
1454 * @rgd: the RG data
Steven Whitehouse54335b12011-09-01 13:31:59 +01001455 * @ip: the inode
David Teiglandb3b94fa2006-01-16 16:50:04 +00001456 *
1457 * If there's room for the requested blocks to be allocated from the RG:
Bob Peterson8e2e0042012-07-19 08:12:40 -04001458 * This will try to get a multi-block reservation first, and if that doesn't
1459 * fit, it will take what it can.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001460 *
1461 * Returns: 1 on success (it fits), 0 on failure (it doesn't fit)
1462 */
1463
Bob Peterson8e2e0042012-07-19 08:12:40 -04001464static int try_rgrp_fit(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001465{
Bob Peterson8e2e0042012-07-19 08:12:40 -04001466 struct gfs2_blkreserv *rs = ip->i_res;
Steven Whitehouse54335b12011-09-01 13:31:59 +01001467
Steven Whitehouse09010972009-05-20 10:48:47 +01001468 if (rgd->rd_flags & (GFS2_RGF_NOALLOC | GFS2_RDF_ERROR))
Steven Whitehousea43a4902007-04-02 10:48:17 +01001469 return 0;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001470 /* Look for a multi-block reservation. */
1471 if (unclaimed_blocks(rgd) >= RGRP_RSRV_MINBLKS &&
1472 rg_mblk_search(rgd, ip) != BFITNOENT)
Bob Peterson7c9ca622011-08-31 09:53:19 +01001473 return 1;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001474 if (unclaimed_blocks(rgd) >= rs->rs_requested)
1475 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001476
Bob Peterson8e2e0042012-07-19 08:12:40 -04001477 return 0;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001478}
1479
David Teiglandb3b94fa2006-01-16 16:50:04 +00001480/**
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001481 * try_rgrp_unlink - Look for any unlinked, allocated, but unused inodes
1482 * @rgd: The rgrp
Bob Peterson886b1412012-04-11 13:03:52 -04001483 * @last_unlinked: block address of the last dinode we unlinked
1484 * @skip: block address we should explicitly not unlink
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001485 *
Bob Peterson1a0eae82010-04-14 11:58:16 -04001486 * Returns: 0 if no error
1487 * The inode, if one has been found, in inode.
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001488 */
1489
Steven Whitehouse044b9412010-11-03 20:01:07 +00001490static void try_rgrp_unlink(struct gfs2_rgrpd *rgd, u64 *last_unlinked, u64 skip)
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001491{
Bob Peterson6760bdc2007-07-24 14:09:32 -05001492 u32 goal = 0, block;
Wendy Chengbb9bcf02007-06-27 17:07:08 -04001493 u64 no_addr;
Bob Peterson5f3eae72007-08-08 16:52:09 -05001494 struct gfs2_sbd *sdp = rgd->rd_sbd;
Steven Whitehouse044b9412010-11-03 20:01:07 +00001495 struct gfs2_glock *gl;
1496 struct gfs2_inode *ip;
1497 int error;
1498 int found = 0;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001499 struct gfs2_bitmap *bi;
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001500
Steven Whitehouse044b9412010-11-03 20:01:07 +00001501 while (goal < rgd->rd_data) {
Bob Peterson5f3eae72007-08-08 16:52:09 -05001502 down_write(&sdp->sd_log_flush_lock);
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00001503 block = rgblk_search(rgd, goal, GFS2_BLKST_UNLINKED, &bi);
Bob Peterson5f3eae72007-08-08 16:52:09 -05001504 up_write(&sdp->sd_log_flush_lock);
Bob Peterson6760bdc2007-07-24 14:09:32 -05001505 if (block == BFITNOENT)
Bob Peterson24c73872007-07-12 16:58:50 -05001506 break;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001507
1508 block = gfs2_bi2rgd_blk(bi, block);
Bob Peterson6760bdc2007-07-24 14:09:32 -05001509 /* rgblk_search can return a block < goal, so we need to
1510 keep it marching forward. */
1511 no_addr = block + rgd->rd_data0;
Bob Peterson44ad37d2011-03-17 16:19:58 -04001512 goal = max(block + 1, goal + 1);
Bob Peterson6760bdc2007-07-24 14:09:32 -05001513 if (*last_unlinked != NO_BLOCK && no_addr <= *last_unlinked)
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001514 continue;
Steven Whitehouse1e19a192009-07-10 21:13:38 +01001515 if (no_addr == skip)
1516 continue;
Wendy Chengbb9bcf02007-06-27 17:07:08 -04001517 *last_unlinked = no_addr;
Steven Whitehouse044b9412010-11-03 20:01:07 +00001518
1519 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &gl);
1520 if (error)
1521 continue;
1522
1523 /* If the inode is already in cache, we can ignore it here
1524 * because the existing inode disposal code will deal with
1525 * it when all refs have gone away. Accessing gl_object like
1526 * this is not safe in general. Here it is ok because we do
1527 * not dereference the pointer, and we only need an approx
1528 * answer to whether it is NULL or not.
1529 */
1530 ip = gl->gl_object;
1531
1532 if (ip || queue_work(gfs2_delete_workqueue, &gl->gl_delete) == 0)
1533 gfs2_glock_put(gl);
1534 else
1535 found++;
1536
1537 /* Limit reclaim to sensible number of tasks */
Bob Peterson44ad37d2011-03-17 16:19:58 -04001538 if (found > NR_CPUS)
Steven Whitehouse044b9412010-11-03 20:01:07 +00001539 return;
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001540 }
1541
1542 rgd->rd_flags &= ~GFS2_RDF_CHECK;
Steven Whitehouse044b9412010-11-03 20:01:07 +00001543 return;
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001544}
1545
1546/**
Bob Peterson666d1d82012-06-13 23:03:56 -04001547 * gfs2_inplace_reserve - Reserve space in the filesystem
David Teiglandb3b94fa2006-01-16 16:50:04 +00001548 * @ip: the inode to reserve space for
Bob Peterson666d1d82012-06-13 23:03:56 -04001549 * @requested: the number of blocks to be reserved
David Teiglandb3b94fa2006-01-16 16:50:04 +00001550 *
1551 * Returns: errno
1552 */
1553
Bob Peterson666d1d82012-06-13 23:03:56 -04001554int gfs2_inplace_reserve(struct gfs2_inode *ip, u32 requested)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001555{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001556 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Bob Peterson8e2e0042012-07-19 08:12:40 -04001557 struct gfs2_rgrpd *begin = NULL;
Bob Peterson564e12b2011-11-21 13:36:17 -05001558 struct gfs2_blkreserv *rs = ip->i_res;
Bob Peterson666d1d82012-06-13 23:03:56 -04001559 int error = 0, rg_locked, flags = LM_FLAG_TRY;
1560 u64 last_unlinked = NO_BLOCK;
Bob Peterson7c9ca622011-08-31 09:53:19 +01001561 int loops = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001562
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001563 if (sdp->sd_args.ar_rgrplvb)
1564 flags |= GL_SKIP;
Bob Peterson666d1d82012-06-13 23:03:56 -04001565 rs->rs_requested = requested;
1566 if (gfs2_assert_warn(sdp, requested)) {
1567 error = -EINVAL;
1568 goto out;
1569 }
Bob Peterson8e2e0042012-07-19 08:12:40 -04001570 if (gfs2_rs_active(rs)) {
1571 begin = rs->rs_rgd;
1572 flags = 0; /* Yoda: Do or do not. There is no try */
1573 } else if (ip->i_rgd && rgrp_contains_block(ip->i_rgd, ip->i_goal)) {
1574 rs->rs_rgd = begin = ip->i_rgd;
1575 } else {
1576 rs->rs_rgd = begin = gfs2_blk2rgrpd(sdp, ip->i_goal, 1);
1577 }
1578 if (rs->rs_rgd == NULL)
Bob Peterson7c9ca622011-08-31 09:53:19 +01001579 return -EBADSLT;
1580
1581 while (loops < 3) {
Abhijith Das292c8c12007-11-29 14:13:54 -06001582 rg_locked = 0;
1583
Bob Peterson8e2e0042012-07-19 08:12:40 -04001584 if (gfs2_glock_is_locked_by_me(rs->rs_rgd->rd_gl)) {
Abhijith Das292c8c12007-11-29 14:13:54 -06001585 rg_locked = 1;
1586 error = 0;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001587 } else if (!loops && !gfs2_rs_active(rs) &&
1588 rs->rs_rgd->rd_rs_cnt > RGRP_RSRV_MAX_CONTENDERS) {
1589 /* If the rgrp already is maxed out for contenders,
1590 we can eliminate it as a "first pass" without even
1591 requesting the rgrp glock. */
1592 error = GLR_TRYFAILED;
Abhijith Das292c8c12007-11-29 14:13:54 -06001593 } else {
Bob Peterson8e2e0042012-07-19 08:12:40 -04001594 error = gfs2_glock_nq_init(rs->rs_rgd->rd_gl,
1595 LM_ST_EXCLUSIVE, flags,
1596 &rs->rs_rgd_gh);
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001597 if (!error && sdp->sd_args.ar_rgrplvb) {
Bob Peterson8e2e0042012-07-19 08:12:40 -04001598 error = update_rgrp_lvb(rs->rs_rgd);
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001599 if (error) {
1600 gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
1601 return error;
1602 }
1603 }
Abhijith Das292c8c12007-11-29 14:13:54 -06001604 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001605 switch (error) {
1606 case 0:
Bob Peterson8e2e0042012-07-19 08:12:40 -04001607 if (gfs2_rs_active(rs)) {
1608 if (unclaimed_blocks(rs->rs_rgd) +
1609 rs->rs_free >= rs->rs_requested) {
1610 ip->i_rgd = rs->rs_rgd;
1611 return 0;
1612 }
1613 /* We have a multi-block reservation, but the
1614 rgrp doesn't have enough free blocks to
1615 satisfy the request. Free the reservation
1616 and look for a suitable rgrp. */
1617 gfs2_rs_deltree(rs);
1618 }
1619 if (try_rgrp_fit(rs->rs_rgd, ip)) {
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001620 if (sdp->sd_args.ar_rgrplvb)
Bob Peterson8e2e0042012-07-19 08:12:40 -04001621 gfs2_rgrp_bh_get(rs->rs_rgd);
1622 ip->i_rgd = rs->rs_rgd;
Bob Peterson7c9ca622011-08-31 09:53:19 +01001623 return 0;
Steven Whitehouse54335b12011-09-01 13:31:59 +01001624 }
Bob Peterson8e2e0042012-07-19 08:12:40 -04001625 if (rs->rs_rgd->rd_flags & GFS2_RDF_CHECK) {
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001626 if (sdp->sd_args.ar_rgrplvb)
Bob Peterson8e2e0042012-07-19 08:12:40 -04001627 gfs2_rgrp_bh_get(rs->rs_rgd);
1628 try_rgrp_unlink(rs->rs_rgd, &last_unlinked,
Bob Peterson666d1d82012-06-13 23:03:56 -04001629 ip->i_no_addr);
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001630 }
Abhijith Das292c8c12007-11-29 14:13:54 -06001631 if (!rg_locked)
Bob Peterson564e12b2011-11-21 13:36:17 -05001632 gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
Steven Whitehouse9cabcdb2008-07-10 15:54:12 +01001633 /* fall through */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001634 case GLR_TRYFAILED:
Bob Peterson8e2e0042012-07-19 08:12:40 -04001635 rs->rs_rgd = gfs2_rgrpd_get_next(rs->rs_rgd);
1636 rs->rs_rgd = rs->rs_rgd ? : begin; /* if NULL, wrap */
1637 if (rs->rs_rgd != begin) /* If we didn't wrap */
Bob Peterson666d1d82012-06-13 23:03:56 -04001638 break;
1639
1640 flags &= ~LM_FLAG_TRY;
1641 loops++;
1642 /* Check that fs hasn't grown if writing to rindex */
1643 if (ip == GFS2_I(sdp->sd_rindex) &&
1644 !sdp->sd_rindex_uptodate) {
1645 error = gfs2_ri_update(ip);
1646 if (error)
1647 goto out;
1648 } else if (loops == 2)
1649 /* Flushing the log may release space */
1650 gfs2_log_flush(sdp, NULL);
Bob Peterson7c9ca622011-08-31 09:53:19 +01001651 break;
Bob Peterson7c9ca622011-08-31 09:53:19 +01001652 default:
Bob Peterson666d1d82012-06-13 23:03:56 -04001653 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001654 }
1655 }
Bob Peterson666d1d82012-06-13 23:03:56 -04001656 error = -ENOSPC;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001657
Bob Peterson564e12b2011-11-21 13:36:17 -05001658out:
1659 if (error)
Bob Peterson0a305e42012-06-06 11:17:59 +01001660 rs->rs_requested = 0;
Steven Whitehouse9ae32422011-09-20 12:16:11 +01001661 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001662}
1663
1664/**
1665 * gfs2_inplace_release - release an inplace reservation
1666 * @ip: the inode the reservation was taken out on
1667 *
1668 * Release a reservation made by gfs2_inplace_reserve().
1669 */
1670
1671void gfs2_inplace_release(struct gfs2_inode *ip)
1672{
Bob Peterson564e12b2011-11-21 13:36:17 -05001673 struct gfs2_blkreserv *rs = ip->i_res;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001674
Bob Peterson8e2e0042012-07-19 08:12:40 -04001675 if (!rs)
1676 return;
1677
1678 if (!rs->rs_free)
1679 gfs2_rs_deltree(rs);
1680
Bob Peterson564e12b2011-11-21 13:36:17 -05001681 if (rs->rs_rgd_gh.gh_gl)
1682 gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
Bob Peterson0a305e42012-06-06 11:17:59 +01001683 rs->rs_requested = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001684}
1685
1686/**
1687 * gfs2_get_block_type - Check a block in a RG is of given type
1688 * @rgd: the resource group holding the block
1689 * @block: the block number
1690 *
1691 * Returns: The block type (GFS2_BLKST_*)
1692 */
1693
Steven Whitehouseacf7e242009-09-08 18:00:30 +01001694static unsigned char gfs2_get_block_type(struct gfs2_rgrpd *rgd, u64 block)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001695{
1696 struct gfs2_bitmap *bi = NULL;
Steven Whitehousecd915492006-09-04 12:49:07 -04001697 u32 length, rgrp_block, buf_block;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001698 unsigned int buf;
1699 unsigned char type;
1700
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001701 length = rgd->rd_length;
1702 rgrp_block = block - rgd->rd_data0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001703
1704 for (buf = 0; buf < length; buf++) {
1705 bi = rgd->rd_bits + buf;
1706 if (rgrp_block < (bi->bi_start + bi->bi_len) * GFS2_NBBY)
1707 break;
1708 }
1709
1710 gfs2_assert(rgd->rd_sbd, buf < length);
1711 buf_block = rgrp_block - bi->bi_start * GFS2_NBBY;
1712
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001713 type = gfs2_testbit(rgd, bi->bi_bh->b_data + bi->bi_offset,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001714 bi->bi_len, buf_block);
1715
1716 return type;
1717}
1718
1719/**
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00001720 * rgblk_search - find a block in @state
David Teiglandb3b94fa2006-01-16 16:50:04 +00001721 * @rgd: the resource group descriptor
1722 * @goal: the goal block within the RG (start here to search for avail block)
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00001723 * @state: GFS2_BLKST_XXX the before-allocation state to find
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001724 * @rbi: address of the pointer to the bitmap containing the block found
David Teiglandb3b94fa2006-01-16 16:50:04 +00001725 *
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00001726 * Walk rgrp's bitmap to find bits that represent a block in @state.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001727 *
1728 * This function never fails, because we wouldn't call it unless we
1729 * know (from reservation results, etc.) that a block is available.
1730 *
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001731 * Scope of @goal is just within rgrp, not the whole filesystem.
1732 * Scope of @returned block is just within bitmap, not the whole filesystem.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001733 *
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001734 * Returns: the block number found relative to the bitmap rbi
David Teiglandb3b94fa2006-01-16 16:50:04 +00001735 */
1736
Bob Peterson886b1412012-04-11 13:03:52 -04001737static u32 rgblk_search(struct gfs2_rgrpd *rgd, u32 goal, unsigned char state,
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001738 struct gfs2_bitmap **rbi)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001739{
1740 struct gfs2_bitmap *bi = NULL;
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001741 const u32 length = rgd->rd_length;
Bob Peterson9598d252012-04-12 08:41:43 -04001742 u32 biblk = BFITNOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001743 unsigned int buf, x;
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001744 const u8 *buffer = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001745
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001746 *rbi = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001747 /* Find bitmap block that contains bits for goal block */
1748 for (buf = 0; buf < length; buf++) {
1749 bi = rgd->rd_bits + buf;
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001750 /* Convert scope of "goal" from rgrp-wide to within found bit block */
1751 if (goal < (bi->bi_start + bi->bi_len) * GFS2_NBBY) {
1752 goal -= bi->bi_start * GFS2_NBBY;
1753 goto do_search;
1754 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001755 }
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001756 buf = 0;
1757 goal = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001758
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001759do_search:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001760 /* Search (up to entire) bitmap in this rgrp for allocatable block.
1761 "x <= length", instead of "x < length", because we typically start
1762 the search in the middle of a bit block, but if we can't find an
1763 allocatable block anywhere else, we want to be able wrap around and
1764 search in the first part of our first-searched bit block. */
1765 for (x = 0; x <= length; x++) {
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001766 bi = rgd->rd_bits + buf;
1767
1768 if (test_bit(GBF_FULL, &bi->bi_flags) &&
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00001769 (state == GFS2_BLKST_FREE))
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001770 goto skip;
1771
Bob Peterson5f3eae72007-08-08 16:52:09 -05001772 /* The GFS2_BLKST_UNLINKED state doesn't apply to the clone
1773 bitmaps, so we must search the originals for that. */
Steven Whitehouseb45e41d2008-02-06 10:11:15 +00001774 buffer = bi->bi_bh->b_data + bi->bi_offset;
Bob Peterson7c9ca622011-08-31 09:53:19 +01001775 WARN_ON(!buffer_uptodate(bi->bi_bh));
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00001776 if (state != GFS2_BLKST_UNLINKED && bi->bi_clone)
Steven Whitehouse110acf32008-01-29 13:30:20 +00001777 buffer = bi->bi_clone + bi->bi_offset;
1778
Bob Peterson8e2e0042012-07-19 08:12:40 -04001779 while (1) {
1780 struct gfs2_blkreserv *rs;
1781 u32 rgblk;
1782
1783 biblk = gfs2_bitfit(buffer, bi->bi_len, goal, state);
1784 if (biblk == BFITNOENT)
1785 break;
1786 /* Check if this block is reserved() */
1787 rgblk = gfs2_bi2rgd_blk(bi, biblk);
1788 rs = rs_find(rgd, rgblk);
1789 if (rs == NULL)
1790 break;
1791
1792 BUG_ON(rs->rs_bi != bi);
1793 biblk = BFITNOENT;
1794 /* This should jump to the first block after the
1795 reservation. */
1796 goal = rs->rs_biblk + rs->rs_free;
1797 if (goal >= bi->bi_len * GFS2_NBBY)
1798 break;
1799 }
Bob Peterson9598d252012-04-12 08:41:43 -04001800 if (biblk != BFITNOENT)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001801 break;
1802
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00001803 if ((goal == 0) && (state == GFS2_BLKST_FREE))
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001804 set_bit(GBF_FULL, &bi->bi_flags);
1805
David Teiglandb3b94fa2006-01-16 16:50:04 +00001806 /* Try next bitmap block (wrap back to rgrp header if at end) */
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001807skip:
1808 buf++;
1809 buf %= length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001810 goal = 0;
1811 }
1812
Bob Peterson9598d252012-04-12 08:41:43 -04001813 if (biblk != BFITNOENT)
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001814 *rbi = bi;
Bob Peterson7c9ca622011-08-31 09:53:19 +01001815
Bob Peterson9598d252012-04-12 08:41:43 -04001816 return biblk;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001817}
David Teiglandb3b94fa2006-01-16 16:50:04 +00001818
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001819/**
1820 * gfs2_alloc_extent - allocate an extent from a given bitmap
1821 * @rgd: the resource group descriptor
1822 * @bi: the bitmap within the rgrp
1823 * @blk: the block within the bitmap
1824 * @dinode: TRUE if the first block we allocate is for a dinode
1825 * @n: The extent length
1826 *
1827 * Add the found bitmap buffer to the transaction.
1828 * Set the found bits to @new_state to change block's allocation state.
1829 * Returns: starting block number of the extent (fs scope)
1830 */
1831static u64 gfs2_alloc_extent(struct gfs2_rgrpd *rgd, struct gfs2_bitmap *bi,
1832 u32 blk, bool dinode, unsigned int *n)
1833{
1834 const unsigned int elen = *n;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001835 u32 goal, rgblk;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001836 const u8 *buffer = NULL;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001837 struct gfs2_blkreserv *rs;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001838
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00001839 *n = 0;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001840 buffer = bi->bi_bh->b_data + bi->bi_offset;
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001841 gfs2_trans_add_bh(rgd->rd_gl, bi->bi_bh, 1);
Bob Peterson06344b92012-04-26 12:44:35 -04001842 gfs2_setbit(rgd, bi->bi_clone, bi, blk,
1843 dinode ? GFS2_BLKST_DINODE : GFS2_BLKST_USED);
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00001844 (*n)++;
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001845 goal = blk;
1846 while (*n < elen) {
1847 goal++;
1848 if (goal >= (bi->bi_len * GFS2_NBBY))
1849 break;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001850 rgblk = gfs2_bi2rgd_blk(bi, goal);
1851 rs = rs_find(rgd, rgblk);
1852 if (rs) /* Oops, we bumped into someone's reservation */
1853 break;
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001854 if (gfs2_testbit(rgd, buffer, bi->bi_len, goal) !=
1855 GFS2_BLKST_FREE)
1856 break;
Bob Peterson06344b92012-04-26 12:44:35 -04001857 gfs2_setbit(rgd, bi->bi_clone, bi, goal, GFS2_BLKST_USED);
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001858 (*n)++;
1859 }
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001860 blk = gfs2_bi2rgd_blk(bi, blk);
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00001861 rgd->rd_last_alloc = blk + *n - 1;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001862 return rgd->rd_data0 + blk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001863}
1864
1865/**
1866 * rgblk_free - Change alloc state of given block(s)
1867 * @sdp: the filesystem
1868 * @bstart: the start of a run of blocks to free
1869 * @blen: the length of the block run (all must lie within ONE RG!)
1870 * @new_state: GFS2_BLKST_XXX the after-allocation block state
1871 *
1872 * Returns: Resource group containing the block(s)
1873 */
1874
Steven Whitehousecd915492006-09-04 12:49:07 -04001875static struct gfs2_rgrpd *rgblk_free(struct gfs2_sbd *sdp, u64 bstart,
1876 u32 blen, unsigned char new_state)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001877{
1878 struct gfs2_rgrpd *rgd;
1879 struct gfs2_bitmap *bi = NULL;
Steven Whitehousecd915492006-09-04 12:49:07 -04001880 u32 length, rgrp_blk, buf_blk;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001881 unsigned int buf;
1882
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001883 rgd = gfs2_blk2rgrpd(sdp, bstart, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001884 if (!rgd) {
1885 if (gfs2_consist(sdp))
Steven Whitehouse382066d2006-05-24 10:22:09 -04001886 fs_err(sdp, "block = %llu\n", (unsigned long long)bstart);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001887 return NULL;
1888 }
1889
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001890 length = rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001891
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001892 rgrp_blk = bstart - rgd->rd_data0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001893
1894 while (blen--) {
1895 for (buf = 0; buf < length; buf++) {
1896 bi = rgd->rd_bits + buf;
1897 if (rgrp_blk < (bi->bi_start + bi->bi_len) * GFS2_NBBY)
1898 break;
1899 }
1900
1901 gfs2_assert(rgd->rd_sbd, buf < length);
1902
1903 buf_blk = rgrp_blk - bi->bi_start * GFS2_NBBY;
1904 rgrp_blk++;
1905
1906 if (!bi->bi_clone) {
1907 bi->bi_clone = kmalloc(bi->bi_bh->b_size,
Steven Whitehousedd894be2006-07-27 14:29:00 -04001908 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001909 memcpy(bi->bi_clone + bi->bi_offset,
1910 bi->bi_bh->b_data + bi->bi_offset,
1911 bi->bi_len);
1912 }
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001913 gfs2_trans_add_bh(rgd->rd_gl, bi->bi_bh, 1);
Bob Peterson06344b92012-04-26 12:44:35 -04001914 gfs2_setbit(rgd, NULL, bi, buf_blk, new_state);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001915 }
1916
1917 return rgd;
1918}
1919
1920/**
Steven Whitehouse09010972009-05-20 10:48:47 +01001921 * gfs2_rgrp_dump - print out an rgrp
1922 * @seq: The iterator
1923 * @gl: The glock in question
David Teiglandb3b94fa2006-01-16 16:50:04 +00001924 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001925 */
1926
Steven Whitehouse09010972009-05-20 10:48:47 +01001927int gfs2_rgrp_dump(struct seq_file *seq, const struct gfs2_glock *gl)
1928{
Bob Peterson8e2e0042012-07-19 08:12:40 -04001929 struct gfs2_rgrpd *rgd = gl->gl_object;
1930 struct gfs2_blkreserv *trs;
1931 const struct rb_node *n;
1932
Steven Whitehouse09010972009-05-20 10:48:47 +01001933 if (rgd == NULL)
1934 return 0;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001935 gfs2_print_dbg(seq, " R: n:%llu f:%02x b:%u/%u i:%u r:%u\n",
Steven Whitehouse09010972009-05-20 10:48:47 +01001936 (unsigned long long)rgd->rd_addr, rgd->rd_flags,
Bob Peterson8e2e0042012-07-19 08:12:40 -04001937 rgd->rd_free, rgd->rd_free_clone, rgd->rd_dinodes,
1938 rgd->rd_reserved);
1939 spin_lock(&rgd->rd_rsspin);
1940 for (n = rb_first(&rgd->rd_rstree); n; n = rb_next(&trs->rs_node)) {
1941 trs = rb_entry(n, struct gfs2_blkreserv, rs_node);
1942 dump_rs(seq, trs);
1943 }
1944 spin_unlock(&rgd->rd_rsspin);
Steven Whitehouse09010972009-05-20 10:48:47 +01001945 return 0;
1946}
1947
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01001948static void gfs2_rgrp_error(struct gfs2_rgrpd *rgd)
1949{
1950 struct gfs2_sbd *sdp = rgd->rd_sbd;
1951 fs_warn(sdp, "rgrp %llu has an error, marking it readonly until umount\n",
Steven Whitehouse86d00632009-09-14 09:50:57 +01001952 (unsigned long long)rgd->rd_addr);
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01001953 fs_warn(sdp, "umount on all nodes and run fsck.gfs2 to fix the error\n");
1954 gfs2_rgrp_dump(NULL, rgd->rd_gl);
1955 rgd->rd_flags |= GFS2_RDF_ERROR;
1956}
1957
Steven Whitehouse09010972009-05-20 10:48:47 +01001958/**
Bob Peterson8e2e0042012-07-19 08:12:40 -04001959 * claim_reserved_blks - Claim previously reserved blocks
1960 * @ip: the inode that's claiming the reservation
1961 * @dinode: 1 if this block is a dinode block, otherwise data block
1962 * @nblocks: desired extent length
1963 *
1964 * Lay claim to previously allocated block reservation blocks.
1965 * Returns: Starting block number of the blocks claimed.
1966 * Sets *nblocks to the actual extent length allocated.
1967 */
1968static u64 claim_reserved_blks(struct gfs2_inode *ip, bool dinode,
1969 unsigned int *nblocks)
1970{
1971 struct gfs2_blkreserv *rs = ip->i_res;
1972 struct gfs2_rgrpd *rgd = rs->rs_rgd;
1973 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
1974 struct gfs2_bitmap *bi;
1975 u64 start_block = gfs2_rs_startblk(rs);
1976 const unsigned int elen = *nblocks;
1977
1978 /*BUG_ON(!gfs2_glock_is_locked_by_me(ip->i_gl));*/
1979 gfs2_assert_withdraw(sdp, rgd);
1980 /*BUG_ON(!gfs2_glock_is_locked_by_me(rgd->rd_gl));*/
1981 bi = rs->rs_bi;
1982 gfs2_trans_add_bh(rgd->rd_gl, bi->bi_bh, 1);
1983
1984 for (*nblocks = 0; *nblocks < elen && rs->rs_free; (*nblocks)++) {
1985 /* Make sure the bitmap hasn't changed */
1986 gfs2_setbit(rgd, bi->bi_clone, bi, rs->rs_biblk,
1987 dinode ? GFS2_BLKST_DINODE : GFS2_BLKST_USED);
1988 rs->rs_biblk++;
1989 rs->rs_free--;
1990
1991 BUG_ON(!rgd->rd_reserved);
1992 rgd->rd_reserved--;
1993 dinode = false;
1994 trace_gfs2_rs(ip, rs, TRACE_RS_CLAIM);
1995 }
1996
1997 if (!rs->rs_free) {
1998 struct gfs2_rgrpd *rgd = ip->i_res->rs_rgd;
1999
2000 gfs2_rs_deltree(rs);
2001 /* -nblocks because we haven't returned to do the math yet.
2002 I'm doing the math backwards to prevent negative numbers,
2003 but think of it as:
2004 if (unclaimed_blocks(rgd) - *nblocks >= RGRP_RSRV_MINBLKS */
2005 if (unclaimed_blocks(rgd) >= RGRP_RSRV_MINBLKS + *nblocks)
2006 rg_mblk_search(rgd, ip);
2007 }
2008 return start_block;
2009}
2010
2011/**
Bob Peterson6e87ed02011-11-18 10:58:32 -05002012 * gfs2_alloc_blocks - Allocate one or more blocks of data and/or a dinode
Steven Whitehouse09010972009-05-20 10:48:47 +01002013 * @ip: the inode to allocate the block for
2014 * @bn: Used to return the starting block number
Bob Peterson8e2e0042012-07-19 08:12:40 -04002015 * @nblocks: requested number of blocks/extent length (value/result)
Bob Peterson6e87ed02011-11-18 10:58:32 -05002016 * @dinode: 1 if we're allocating a dinode block, else 0
Bob Peterson3c5d7852011-11-14 11:17:08 -05002017 * @generation: the generation number of the inode
Steven Whitehouse09010972009-05-20 10:48:47 +01002018 *
2019 * Returns: 0 or error
2020 */
2021
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002022int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *nblocks,
Bob Peterson6e87ed02011-11-18 10:58:32 -05002023 bool dinode, u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002024{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002025 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehoused9ba7612009-04-23 08:59:41 +01002026 struct buffer_head *dibh;
Steven Whitehouse9a3f2362010-08-23 11:49:34 +01002027 struct gfs2_rgrpd *rgd;
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002028 unsigned int ndata;
2029 u32 goal, blk; /* block, within the rgrp scope */
Bob Peterson3c5d7852011-11-14 11:17:08 -05002030 u64 block; /* block, within the file system scope */
Steven Whitehoused9ba7612009-04-23 08:59:41 +01002031 int error;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002032 struct gfs2_bitmap *bi;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002033
Steven Whitehouse9a3f2362010-08-23 11:49:34 +01002034 /* Only happens if there is a bug in gfs2, return something distinctive
2035 * to ensure that it is noticed.
2036 */
Bob Peterson0a305e42012-06-06 11:17:59 +01002037 if (ip->i_res->rs_requested == 0)
Steven Whitehouse9a3f2362010-08-23 11:49:34 +01002038 return -ECANCELED;
2039
Bob Peterson8e2e0042012-07-19 08:12:40 -04002040 /* Check if we have a multi-block reservation, and if so, claim the
2041 next free block from it. */
2042 if (gfs2_rs_active(ip->i_res)) {
2043 BUG_ON(!ip->i_res->rs_free);
2044 rgd = ip->i_res->rs_rgd;
2045 block = claim_reserved_blks(ip, dinode, nblocks);
2046 } else {
2047 rgd = ip->i_rgd;
Steven Whitehouse9a3f2362010-08-23 11:49:34 +01002048
Bob Peterson8e2e0042012-07-19 08:12:40 -04002049 if (!dinode && rgrp_contains_block(rgd, ip->i_goal))
2050 goal = ip->i_goal - rgd->rd_data0;
2051 else
2052 goal = rgd->rd_last_alloc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002053
Bob Peterson8e2e0042012-07-19 08:12:40 -04002054 blk = rgblk_search(rgd, goal, GFS2_BLKST_FREE, &bi);
Steven Whitehouse09010972009-05-20 10:48:47 +01002055
Bob Peterson8e2e0042012-07-19 08:12:40 -04002056 /* Since all blocks are reserved in advance, this shouldn't
2057 happen */
2058 if (blk == BFITNOENT) {
2059 printk(KERN_WARNING "BFITNOENT, nblocks=%u\n",
2060 *nblocks);
2061 printk(KERN_WARNING "FULL=%d\n",
2062 test_bit(GBF_FULL, &rgd->rd_bits->bi_flags));
2063 goto rgrp_error;
2064 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00002065
Bob Peterson8e2e0042012-07-19 08:12:40 -04002066 block = gfs2_alloc_extent(rgd, bi, blk, dinode, nblocks);
2067 }
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002068 ndata = *nblocks;
2069 if (dinode)
2070 ndata--;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002071
Bob Peterson3c5d7852011-11-14 11:17:08 -05002072 if (!dinode) {
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002073 ip->i_goal = block + ndata - 1;
Bob Peterson3c5d7852011-11-14 11:17:08 -05002074 error = gfs2_meta_inode_buffer(ip, &dibh);
2075 if (error == 0) {
2076 struct gfs2_dinode *di =
2077 (struct gfs2_dinode *)dibh->b_data;
2078 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
2079 di->di_goal_meta = di->di_goal_data =
2080 cpu_to_be64(ip->i_goal);
2081 brelse(dibh);
2082 }
Steven Whitehoused9ba7612009-04-23 08:59:41 +01002083 }
Bob Peterson8e2e0042012-07-19 08:12:40 -04002084 if (rgd->rd_free < *nblocks) {
2085 printk(KERN_WARNING "nblocks=%u\n", *nblocks);
Steven Whitehouse09010972009-05-20 10:48:47 +01002086 goto rgrp_error;
Bob Peterson8e2e0042012-07-19 08:12:40 -04002087 }
Steven Whitehouse09010972009-05-20 10:48:47 +01002088
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002089 rgd->rd_free -= *nblocks;
Bob Peterson3c5d7852011-11-14 11:17:08 -05002090 if (dinode) {
2091 rgd->rd_dinodes++;
2092 *generation = rgd->rd_igeneration++;
2093 if (*generation == 0)
2094 *generation = rgd->rd_igeneration++;
2095 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00002096
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00002097 gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
Bob Peterson42d52e32008-01-28 18:38:07 -06002098 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
Benjamin Marzinski90306c42012-05-29 23:01:09 -05002099 gfs2_rgrp_ondisk2lvb(rgd->rd_rgl, rgd->rd_bits[0].bi_bh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002100
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002101 gfs2_statfs_change(sdp, 0, -(s64)*nblocks, dinode ? 1 : 0);
Bob Peterson3c5d7852011-11-14 11:17:08 -05002102 if (dinode)
2103 gfs2_trans_add_unrevoke(sdp, block, 1);
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002104
2105 /*
2106 * This needs reviewing to see why we cannot do the quota change
2107 * at this point in the dinode case.
2108 */
2109 if (ndata)
2110 gfs2_quota_change(ip, ndata, ip->i_inode.i_uid,
Bob Peterson3c5d7852011-11-14 11:17:08 -05002111 ip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002112
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002113 rgd->rd_free_clone -= *nblocks;
Bob Peterson41db1ab2012-05-09 12:11:35 -04002114 trace_gfs2_block_alloc(ip, rgd, block, *nblocks,
Bob Peterson6e87ed02011-11-18 10:58:32 -05002115 dinode ? GFS2_BLKST_DINODE : GFS2_BLKST_USED);
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01002116 *bn = block;
2117 return 0;
2118
2119rgrp_error:
2120 gfs2_rgrp_error(rgd);
2121 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002122}
2123
2124/**
Eric Sandeen46fcb2e2011-06-23 10:39:34 -05002125 * __gfs2_free_blocks - free a contiguous run of block(s)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002126 * @ip: the inode these blocks are being freed from
2127 * @bstart: first block of a run of contiguous blocks
2128 * @blen: the length of the block run
Eric Sandeen46fcb2e2011-06-23 10:39:34 -05002129 * @meta: 1 if the blocks represent metadata
David Teiglandb3b94fa2006-01-16 16:50:04 +00002130 *
2131 */
2132
Eric Sandeen46fcb2e2011-06-23 10:39:34 -05002133void __gfs2_free_blocks(struct gfs2_inode *ip, u64 bstart, u32 blen, int meta)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002134{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002135 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002136 struct gfs2_rgrpd *rgd;
2137
2138 rgd = rgblk_free(sdp, bstart, blen, GFS2_BLKST_FREE);
2139 if (!rgd)
2140 return;
Bob Peterson41db1ab2012-05-09 12:11:35 -04002141 trace_gfs2_block_alloc(ip, rgd, bstart, blen, GFS2_BLKST_FREE);
Steven Whitehousecfc8b542008-11-04 10:25:13 +00002142 rgd->rd_free += blen;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00002143 rgd->rd_flags &= ~GFS2_RGF_TRIMMED;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00002144 gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
Bob Peterson42d52e32008-01-28 18:38:07 -06002145 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
Benjamin Marzinski90306c42012-05-29 23:01:09 -05002146 gfs2_rgrp_ondisk2lvb(rgd->rd_rgl, rgd->rd_bits[0].bi_bh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002147
Steven Whitehouse6d3117b2011-05-21 14:05:58 +01002148 /* Directories keep their data in the metadata address space */
Eric Sandeen46fcb2e2011-06-23 10:39:34 -05002149 if (meta || ip->i_depth)
Steven Whitehouse6d3117b2011-05-21 14:05:58 +01002150 gfs2_meta_wipe(ip, bstart, blen);
Bob Peterson4c16c362011-02-23 16:11:33 -05002151}
David Teiglandb3b94fa2006-01-16 16:50:04 +00002152
Bob Peterson4c16c362011-02-23 16:11:33 -05002153/**
Bob Peterson4c16c362011-02-23 16:11:33 -05002154 * gfs2_free_meta - free a contiguous run of data block(s)
2155 * @ip: the inode these blocks are being freed from
2156 * @bstart: first block of a run of contiguous blocks
2157 * @blen: the length of the block run
2158 *
2159 */
2160
Steven Whitehousecd915492006-09-04 12:49:07 -04002161void gfs2_free_meta(struct gfs2_inode *ip, u64 bstart, u32 blen)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002162{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002163 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002164
Eric Sandeen46fcb2e2011-06-23 10:39:34 -05002165 __gfs2_free_blocks(ip, bstart, blen, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002166 gfs2_statfs_change(sdp, 0, +blen, 0);
Steven Whitehouse2933f922006-11-01 13:23:29 -05002167 gfs2_quota_change(ip, -(s64)blen, ip->i_inode.i_uid, ip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002168}
2169
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002170void gfs2_unlink_di(struct inode *inode)
2171{
2172 struct gfs2_inode *ip = GFS2_I(inode);
2173 struct gfs2_sbd *sdp = GFS2_SB(inode);
2174 struct gfs2_rgrpd *rgd;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01002175 u64 blkno = ip->i_no_addr;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002176
2177 rgd = rgblk_free(sdp, blkno, 1, GFS2_BLKST_UNLINKED);
2178 if (!rgd)
2179 return;
Bob Peterson41db1ab2012-05-09 12:11:35 -04002180 trace_gfs2_block_alloc(ip, rgd, blkno, 1, GFS2_BLKST_UNLINKED);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002181 gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
Bob Peterson42d52e32008-01-28 18:38:07 -06002182 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
Benjamin Marzinski90306c42012-05-29 23:01:09 -05002183 gfs2_rgrp_ondisk2lvb(rgd->rd_rgl, rgd->rd_bits[0].bi_bh->b_data);
2184 update_rgrp_lvb_unlinked(rgd, 1);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002185}
2186
Steven Whitehousecd915492006-09-04 12:49:07 -04002187static void gfs2_free_uninit_di(struct gfs2_rgrpd *rgd, u64 blkno)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002188{
2189 struct gfs2_sbd *sdp = rgd->rd_sbd;
2190 struct gfs2_rgrpd *tmp_rgd;
2191
2192 tmp_rgd = rgblk_free(sdp, blkno, 1, GFS2_BLKST_FREE);
2193 if (!tmp_rgd)
2194 return;
2195 gfs2_assert_withdraw(sdp, rgd == tmp_rgd);
2196
Steven Whitehouse73f74942008-11-04 10:32:57 +00002197 if (!rgd->rd_dinodes)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002198 gfs2_consist_rgrpd(rgd);
Steven Whitehouse73f74942008-11-04 10:32:57 +00002199 rgd->rd_dinodes--;
Steven Whitehousecfc8b542008-11-04 10:25:13 +00002200 rgd->rd_free++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002201
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00002202 gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
Bob Peterson42d52e32008-01-28 18:38:07 -06002203 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
Benjamin Marzinski90306c42012-05-29 23:01:09 -05002204 gfs2_rgrp_ondisk2lvb(rgd->rd_rgl, rgd->rd_bits[0].bi_bh->b_data);
2205 update_rgrp_lvb_unlinked(rgd, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002206
2207 gfs2_statfs_change(sdp, 0, +1, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002208}
2209
David Teiglandb3b94fa2006-01-16 16:50:04 +00002210
2211void gfs2_free_di(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip)
2212{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01002213 gfs2_free_uninit_di(rgd, ip->i_no_addr);
Bob Peterson41db1ab2012-05-09 12:11:35 -04002214 trace_gfs2_block_alloc(ip, rgd, ip->i_no_addr, 1, GFS2_BLKST_FREE);
Steven Whitehouse2933f922006-11-01 13:23:29 -05002215 gfs2_quota_change(ip, -1, ip->i_inode.i_uid, ip->i_inode.i_gid);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01002216 gfs2_meta_wipe(ip, ip->i_no_addr, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002217}
2218
2219/**
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002220 * gfs2_check_blk_type - Check the type of a block
2221 * @sdp: The superblock
2222 * @no_addr: The block number to check
2223 * @type: The block type we are looking for
2224 *
2225 * Returns: 0 if the block type matches the expected type
2226 * -ESTALE if it doesn't match
2227 * or -ve errno if something went wrong while checking
2228 */
2229
2230int gfs2_check_blk_type(struct gfs2_sbd *sdp, u64 no_addr, unsigned int type)
2231{
2232 struct gfs2_rgrpd *rgd;
Steven Whitehouse8339ee52011-08-31 16:38:29 +01002233 struct gfs2_holder rgd_gh;
Bob Peterson58884c42012-03-05 10:19:35 -05002234 int error = -EINVAL;
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002235
Steven Whitehouse66fc0612012-02-08 12:58:32 +00002236 rgd = gfs2_blk2rgrpd(sdp, no_addr, 1);
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002237 if (!rgd)
Steven Whitehouse8339ee52011-08-31 16:38:29 +01002238 goto fail;
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002239
2240 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh);
2241 if (error)
Steven Whitehouse8339ee52011-08-31 16:38:29 +01002242 goto fail;
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002243
2244 if (gfs2_get_block_type(rgd, no_addr) != type)
2245 error = -ESTALE;
2246
2247 gfs2_glock_dq_uninit(&rgd_gh);
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002248fail:
2249 return error;
2250}
2251
2252/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00002253 * gfs2_rlist_add - add a RG to a list of RGs
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002254 * @ip: the inode
David Teiglandb3b94fa2006-01-16 16:50:04 +00002255 * @rlist: the list of resource groups
2256 * @block: the block
2257 *
2258 * Figure out what RG a block belongs to and add that RG to the list
2259 *
2260 * FIXME: Don't use NOFAIL
2261 *
2262 */
2263
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002264void gfs2_rlist_add(struct gfs2_inode *ip, struct gfs2_rgrp_list *rlist,
Steven Whitehousecd915492006-09-04 12:49:07 -04002265 u64 block)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002266{
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002267 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002268 struct gfs2_rgrpd *rgd;
2269 struct gfs2_rgrpd **tmp;
2270 unsigned int new_space;
2271 unsigned int x;
2272
2273 if (gfs2_assert_warn(sdp, !rlist->rl_ghs))
2274 return;
2275
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002276 if (ip->i_rgd && rgrp_contains_block(ip->i_rgd, block))
2277 rgd = ip->i_rgd;
2278 else
Steven Whitehouse66fc0612012-02-08 12:58:32 +00002279 rgd = gfs2_blk2rgrpd(sdp, block, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002280 if (!rgd) {
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002281 fs_err(sdp, "rlist_add: no rgrp for block %llu\n", (unsigned long long)block);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002282 return;
2283 }
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002284 ip->i_rgd = rgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002285
2286 for (x = 0; x < rlist->rl_rgrps; x++)
2287 if (rlist->rl_rgd[x] == rgd)
2288 return;
2289
2290 if (rlist->rl_rgrps == rlist->rl_space) {
2291 new_space = rlist->rl_space + 10;
2292
2293 tmp = kcalloc(new_space, sizeof(struct gfs2_rgrpd *),
Steven Whitehousedd894be2006-07-27 14:29:00 -04002294 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002295
2296 if (rlist->rl_rgd) {
2297 memcpy(tmp, rlist->rl_rgd,
2298 rlist->rl_space * sizeof(struct gfs2_rgrpd *));
2299 kfree(rlist->rl_rgd);
2300 }
2301
2302 rlist->rl_space = new_space;
2303 rlist->rl_rgd = tmp;
2304 }
2305
2306 rlist->rl_rgd[rlist->rl_rgrps++] = rgd;
2307}
2308
2309/**
2310 * gfs2_rlist_alloc - all RGs have been added to the rlist, now allocate
2311 * and initialize an array of glock holders for them
2312 * @rlist: the list of resource groups
2313 * @state: the lock state to acquire the RG lock in
David Teiglandb3b94fa2006-01-16 16:50:04 +00002314 *
2315 * FIXME: Don't use NOFAIL
2316 *
2317 */
2318
Bob Petersonfe6c9912008-01-28 11:13:02 -06002319void gfs2_rlist_alloc(struct gfs2_rgrp_list *rlist, unsigned int state)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002320{
2321 unsigned int x;
2322
2323 rlist->rl_ghs = kcalloc(rlist->rl_rgrps, sizeof(struct gfs2_holder),
Steven Whitehousedd894be2006-07-27 14:29:00 -04002324 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002325 for (x = 0; x < rlist->rl_rgrps; x++)
2326 gfs2_holder_init(rlist->rl_rgd[x]->rd_gl,
Bob Petersonfe6c9912008-01-28 11:13:02 -06002327 state, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002328 &rlist->rl_ghs[x]);
2329}
2330
2331/**
2332 * gfs2_rlist_free - free a resource group list
2333 * @list: the list of resource groups
2334 *
2335 */
2336
2337void gfs2_rlist_free(struct gfs2_rgrp_list *rlist)
2338{
2339 unsigned int x;
2340
2341 kfree(rlist->rl_rgd);
2342
2343 if (rlist->rl_ghs) {
2344 for (x = 0; x < rlist->rl_rgrps; x++)
2345 gfs2_holder_uninit(&rlist->rl_ghs[x]);
2346 kfree(rlist->rl_ghs);
Bob Peterson8e2e0042012-07-19 08:12:40 -04002347 rlist->rl_ghs = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002348 }
2349}
2350