blob: 1ad3256b9cbc38721020fb3f901aa99641923fe9 [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
Joe Perchesd77d1b52014-03-06 12:10:45 -080010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
David Teiglandb3b94fa2006-01-16 16:50:04 +000012#include <linux/slab.h>
13#include <linux/spinlock.h>
14#include <linux/completion.h>
15#include <linux/buffer_head.h>
Steven Whitehousef42faf42006-01-30 18:34:10 +000016#include <linux/fs.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050017#include <linux/gfs2_ondisk.h>
Bob Peterson1f466a42008-03-10 18:17:47 -050018#include <linux/prefetch.h>
Steven Whitehousef15ab562009-02-09 09:25:01 +000019#include <linux/blkdev.h>
Bob Peterson7c9ca622011-08-31 09:53:19 +010020#include <linux/rbtree.h>
Steven Whitehouse9dbe9612012-10-31 10:37:10 +000021#include <linux/random.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000022
23#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050024#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "glock.h"
26#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000027#include "lops.h"
28#include "meta_io.h"
29#include "quota.h"
30#include "rgrp.h"
31#include "super.h"
32#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050033#include "util.h"
Benjamin Marzinski172e0452007-03-23 14:51:56 -060034#include "log.h"
Steven Whitehousec8cdf472007-06-08 10:05:33 +010035#include "inode.h"
Steven Whitehouse63997772009-06-12 08:49:20 +010036#include "trace_gfs2.h"
Andrew Price850d2d92017-12-12 11:42:30 -060037#include "dir.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000038
Steven Whitehouse2c1e52a2006-09-05 15:41:57 -040039#define BFITNOENT ((u32)~0)
Bob Peterson6760bdc2007-07-24 14:09:32 -050040#define NO_BLOCK ((u64)~0)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040041
Bob Peterson1f466a42008-03-10 18:17:47 -050042#if BITS_PER_LONG == 32
43#define LBITMASK (0x55555555UL)
44#define LBITSKIP55 (0x55555555UL)
45#define LBITSKIP00 (0x00000000UL)
46#else
47#define LBITMASK (0x5555555555555555UL)
48#define LBITSKIP55 (0x5555555555555555UL)
49#define LBITSKIP00 (0x0000000000000000UL)
50#endif
51
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040052/*
53 * These routines are used by the resource group routines (rgrp.c)
54 * to keep track of block allocation. Each block is represented by two
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040055 * bits. So, each byte represents GFS2_NBBY (i.e. 4) blocks.
56 *
57 * 0 = Free
58 * 1 = Used (not metadata)
59 * 2 = Unlinked (still in use) inode
60 * 3 = Used (metadata)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040061 */
62
Bob Peterson5ce13432013-11-06 10:55:52 -050063struct gfs2_extent {
64 struct gfs2_rbm rbm;
65 u32 len;
66};
67
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040068static const char valid_change[16] = {
69 /* current */
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040070 /* n */ 0, 1, 1, 1,
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040071 /* e */ 1, 0, 0, 0,
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040072 /* w */ 0, 0, 0, 1,
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040073 1, 0, 0, 0
74};
75
Bob Peterson5ce13432013-11-06 10:55:52 -050076static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state, u32 *minext,
Bob Peterson8381e602016-05-02 09:42:49 -050077 const struct gfs2_inode *ip, bool nowrap);
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +010078
79
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040080/**
81 * gfs2_setbit - Set a bit in the bitmaps
Steven Whitehouse3e6339d2012-08-13 11:37:51 +010082 * @rbm: The position of the bit to set
83 * @do_clone: Also set the clone bitmap, if it exists
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040084 * @new_state: the new state of the block
85 *
86 */
87
Steven Whitehouse3e6339d2012-08-13 11:37:51 +010088static inline void gfs2_setbit(const struct gfs2_rbm *rbm, bool do_clone,
Bob Peterson06344b92012-04-26 12:44:35 -040089 unsigned char new_state)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040090{
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000091 unsigned char *byte1, *byte2, *end, cur_state;
Bob Petersone579ed42013-09-17 13:12:15 -040092 struct gfs2_bitmap *bi = rbm_bi(rbm);
93 unsigned int buflen = bi->bi_len;
Steven Whitehouse3e6339d2012-08-13 11:37:51 +010094 const unsigned int bit = (rbm->offset % GFS2_NBBY) * GFS2_BIT_SIZE;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040095
Bob Petersone579ed42013-09-17 13:12:15 -040096 byte1 = bi->bi_bh->b_data + bi->bi_offset + (rbm->offset / GFS2_NBBY);
97 end = bi->bi_bh->b_data + bi->bi_offset + buflen;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -040098
Steven Whitehouseb45e41d2008-02-06 10:11:15 +000099 BUG_ON(byte1 >= end);
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400100
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000101 cur_state = (*byte1 >> bit) & GFS2_BIT_MASK;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400102
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000103 if (unlikely(!valid_change[new_state * 4 + cur_state])) {
Joe Perchesd77d1b52014-03-06 12:10:45 -0800104 pr_warn("buf_blk = 0x%x old_state=%d, new_state=%d\n",
105 rbm->offset, cur_state, new_state);
106 pr_warn("rgrp=0x%llx bi_start=0x%x\n",
107 (unsigned long long)rbm->rgd->rd_addr, bi->bi_start);
108 pr_warn("bi_offset=0x%x bi_len=0x%x\n",
109 bi->bi_offset, bi->bi_len);
Bob Peterson95c8e172011-03-22 10:49:12 -0400110 dump_stack();
Steven Whitehouse3e6339d2012-08-13 11:37:51 +0100111 gfs2_consist_rgrpd(rbm->rgd);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000112 return;
113 }
114 *byte1 ^= (cur_state ^ new_state) << bit;
115
Bob Petersone579ed42013-09-17 13:12:15 -0400116 if (do_clone && bi->bi_clone) {
117 byte2 = bi->bi_clone + bi->bi_offset + (rbm->offset / GFS2_NBBY);
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000118 cur_state = (*byte2 >> bit) & GFS2_BIT_MASK;
119 *byte2 ^= (cur_state ^ new_state) << bit;
120 }
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400121}
122
123/**
124 * gfs2_testbit - test a bit in the bitmaps
Steven Whitehousec04a2ef2012-08-13 11:14:57 +0100125 * @rbm: The bit to test
Bob Petersondffe12a2018-08-07 10:07:00 -0500126 * @use_clone: If true, test the clone bitmap, not the official bitmap.
127 *
128 * Some callers like gfs2_unaligned_extlen need to test the clone bitmaps,
129 * not the "real" bitmaps, to avoid allocating recently freed blocks.
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400130 *
Steven Whitehousec04a2ef2012-08-13 11:14:57 +0100131 * Returns: The two bit block state of the requested bit
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400132 */
133
Bob Petersondffe12a2018-08-07 10:07:00 -0500134static inline u8 gfs2_testbit(const struct gfs2_rbm *rbm, bool use_clone)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400135{
Bob Petersone579ed42013-09-17 13:12:15 -0400136 struct gfs2_bitmap *bi = rbm_bi(rbm);
Bob Petersondffe12a2018-08-07 10:07:00 -0500137 const u8 *buffer;
Steven Whitehousec04a2ef2012-08-13 11:14:57 +0100138 const u8 *byte;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400139 unsigned int bit;
140
Bob Petersondffe12a2018-08-07 10:07:00 -0500141 if (use_clone && bi->bi_clone)
142 buffer = bi->bi_clone;
143 else
144 buffer = bi->bi_bh->b_data;
145 buffer += bi->bi_offset;
Steven Whitehousec04a2ef2012-08-13 11:14:57 +0100146 byte = buffer + (rbm->offset / GFS2_NBBY);
147 bit = (rbm->offset % GFS2_NBBY) * GFS2_BIT_SIZE;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400148
Steven Whitehousec04a2ef2012-08-13 11:14:57 +0100149 return (*byte >> bit) & GFS2_BIT_MASK;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400150}
151
152/**
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000153 * gfs2_bit_search
154 * @ptr: Pointer to bitmap data
155 * @mask: Mask to use (normally 0x55555.... but adjusted for search start)
156 * @state: The state we are searching for
157 *
158 * We xor the bitmap data with a patter which is the bitwise opposite
159 * of what we are looking for, this gives rise to a pattern of ones
160 * wherever there is a match. Since we have two bits per entry, we
161 * take this pattern, shift it down by one place and then and it with
162 * the original. All the even bit positions (0,2,4, etc) then represent
163 * successful matches, so we mask with 0x55555..... to remove the unwanted
164 * odd bit positions.
165 *
166 * This allows searching of a whole u64 at once (32 blocks) with a
167 * single test (on 64 bit arches).
168 */
169
170static inline u64 gfs2_bit_search(const __le64 *ptr, u64 mask, u8 state)
171{
172 u64 tmp;
173 static const u64 search[] = {
Hannes Eder075ac442009-02-21 02:11:42 +0100174 [0] = 0xffffffffffffffffULL,
175 [1] = 0xaaaaaaaaaaaaaaaaULL,
176 [2] = 0x5555555555555555ULL,
177 [3] = 0x0000000000000000ULL,
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000178 };
179 tmp = le64_to_cpu(*ptr) ^ search[state];
180 tmp &= (tmp >> 1);
181 tmp &= mask;
182 return tmp;
183}
184
185/**
Bob Peterson8e2e0042012-07-19 08:12:40 -0400186 * rs_cmp - multi-block reservation range compare
187 * @blk: absolute file system block number of the new reservation
188 * @len: number of blocks in the new reservation
189 * @rs: existing reservation to compare against
190 *
191 * returns: 1 if the block range is beyond the reach of the reservation
192 * -1 if the block range is before the start of the reservation
193 * 0 if the block range overlaps with the reservation
194 */
195static inline int rs_cmp(u64 blk, u32 len, struct gfs2_blkreserv *rs)
196{
Steven Whitehouse4a993fb2012-07-31 15:21:20 +0100197 u64 startblk = gfs2_rbm_to_block(&rs->rs_rbm);
Bob Peterson8e2e0042012-07-19 08:12:40 -0400198
199 if (blk >= startblk + rs->rs_free)
200 return 1;
201 if (blk + len - 1 < startblk)
202 return -1;
203 return 0;
204}
205
206/**
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400207 * gfs2_bitfit - Search an rgrp's bitmap buffer to find a bit-pair representing
208 * a block in a given allocation state.
Bob Peterson886b1412012-04-11 13:03:52 -0400209 * @buf: the buffer that holds the bitmaps
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000210 * @len: the length (in bytes) of the buffer
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400211 * @goal: start search at this block's bit-pair (within @buffer)
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000212 * @state: GFS2_BLKST_XXX the state of the block we're looking for.
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400213 *
214 * Scope of @goal and returned block number is only within this bitmap buffer,
215 * not entire rgrp or filesystem. @buffer will be offset from the actual
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000216 * beginning of a bitmap block buffer, skipping any header structures, but
217 * headers are always a multiple of 64 bits long so that the buffer is
218 * always aligned to a 64 bit boundary.
219 *
220 * The size of the buffer is in bytes, but is it assumed that it is
Anand Gadiyarfd589a82009-07-16 17:13:03 +0200221 * always ok to read a complete multiple of 64 bits at the end
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000222 * of the block in case the end is no aligned to a natural boundary.
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400223 *
224 * Return: the block number (bitmap buffer scope) that was found
225 */
226
Hannes Eder02ab1722009-02-21 02:12:05 +0100227static u32 gfs2_bitfit(const u8 *buf, const unsigned int len,
228 u32 goal, u8 state)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400229{
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000230 u32 spoint = (goal << 1) & ((8*sizeof(u64)) - 1);
231 const __le64 *ptr = ((__le64 *)buf) + (goal >> 5);
232 const __le64 *end = (__le64 *)(buf + ALIGN(len, sizeof(u64)));
233 u64 tmp;
Hannes Eder075ac442009-02-21 02:11:42 +0100234 u64 mask = 0x5555555555555555ULL;
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000235 u32 bit;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400236
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000237 /* Mask off bits we don't care about at the start of the search */
238 mask <<= spoint;
239 tmp = gfs2_bit_search(ptr, mask, state);
240 ptr++;
241 while(tmp == 0 && ptr < end) {
Hannes Eder075ac442009-02-21 02:11:42 +0100242 tmp = gfs2_bit_search(ptr, 0x5555555555555555ULL, state);
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000243 ptr++;
Bob Peterson1f466a42008-03-10 18:17:47 -0500244 }
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000245 /* Mask off any bits which are more than len bytes from the start */
246 if (ptr == end && (len & (sizeof(u64) - 1)))
247 tmp &= (((u64)~0) >> (64 - 8*(len & (sizeof(u64) - 1))));
248 /* Didn't find anything, so return */
249 if (tmp == 0)
250 return BFITNOENT;
251 ptr--;
Steven Whitehoused8bd5042009-04-23 08:54:02 +0100252 bit = __ffs64(tmp);
Steven Whitehouse223b2b82009-02-17 14:13:35 +0000253 bit /= 2; /* two bits per entry in the bitmap */
254 return (((const unsigned char *)ptr - buf) * GFS2_NBBY) + bit;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400255}
256
257/**
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100258 * gfs2_rbm_from_block - Set the rbm based upon rgd and block number
259 * @rbm: The rbm with rgd already set correctly
260 * @block: The block number (filesystem relative)
261 *
262 * This sets the bi and offset members of an rbm based on a
263 * resource group and a filesystem relative block number. The
264 * resource group must be set in the rbm on entry, the bi and
265 * offset members will be set by this function.
266 *
267 * Returns: 0 on success, or an error code
268 */
269
270static int gfs2_rbm_from_block(struct gfs2_rbm *rbm, u64 block)
271{
272 u64 rblock = block - rbm->rgd->rd_data0;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100273
274 if (WARN_ON_ONCE(rblock > UINT_MAX))
275 return -EINVAL;
276 if (block >= rbm->rgd->rd_data0 + rbm->rgd->rd_data)
277 return -E2BIG;
278
Bob Petersone579ed42013-09-17 13:12:15 -0400279 rbm->bii = 0;
Bob Petersona68a0a32012-10-19 08:32:51 -0400280 rbm->offset = (u32)(rblock);
281 /* Check if the block is within the first block */
Bob Petersone579ed42013-09-17 13:12:15 -0400282 if (rbm->offset < rbm_bi(rbm)->bi_blocks)
Bob Petersona68a0a32012-10-19 08:32:51 -0400283 return 0;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100284
Bob Petersona68a0a32012-10-19 08:32:51 -0400285 /* Adjust for the size diff between gfs2_meta_header and gfs2_rgrp */
286 rbm->offset += (sizeof(struct gfs2_rgrp) -
287 sizeof(struct gfs2_meta_header)) * GFS2_NBBY;
Bob Petersone579ed42013-09-17 13:12:15 -0400288 rbm->bii = rbm->offset / rbm->rgd->rd_sbd->sd_blocks_per_bitmap;
289 rbm->offset -= rbm->bii * rbm->rgd->rd_sbd->sd_blocks_per_bitmap;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100290 return 0;
291}
292
293/**
Bob Peterson149ed7f2013-09-17 13:14:35 -0400294 * gfs2_rbm_incr - increment an rbm structure
295 * @rbm: The rbm with rgd already set correctly
296 *
297 * This function takes an existing rbm structure and increments it to the next
298 * viable block offset.
299 *
300 * Returns: If incrementing the offset would cause the rbm to go past the
301 * end of the rgrp, true is returned, otherwise false.
302 *
303 */
304
305static bool gfs2_rbm_incr(struct gfs2_rbm *rbm)
306{
307 if (rbm->offset + 1 < rbm_bi(rbm)->bi_blocks) { /* in the same bitmap */
308 rbm->offset++;
309 return false;
310 }
311 if (rbm->bii == rbm->rgd->rd_length - 1) /* at the last bitmap */
312 return true;
313
314 rbm->offset = 0;
315 rbm->bii++;
316 return false;
317}
318
319/**
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100320 * gfs2_unaligned_extlen - Look for free blocks which are not byte aligned
321 * @rbm: Position to search (value/result)
322 * @n_unaligned: Number of unaligned blocks to check
323 * @len: Decremented for each block found (terminate on zero)
324 *
325 * Returns: true if a non-free block is encountered
326 */
327
328static bool gfs2_unaligned_extlen(struct gfs2_rbm *rbm, u32 n_unaligned, u32 *len)
329{
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100330 u32 n;
331 u8 res;
332
333 for (n = 0; n < n_unaligned; n++) {
Bob Petersondffe12a2018-08-07 10:07:00 -0500334 res = gfs2_testbit(rbm, true);
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100335 if (res != GFS2_BLKST_FREE)
336 return true;
337 (*len)--;
338 if (*len == 0)
339 return true;
Bob Peterson149ed7f2013-09-17 13:14:35 -0400340 if (gfs2_rbm_incr(rbm))
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100341 return true;
342 }
343
344 return false;
345}
346
347/**
348 * gfs2_free_extlen - Return extent length of free blocks
Fabian Frederick27ff6a02014-07-02 22:05:27 +0200349 * @rrbm: Starting position
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100350 * @len: Max length to check
351 *
352 * Starting at the block specified by the rbm, see how many free blocks
353 * there are, not reading more than len blocks ahead. This can be done
354 * using memchr_inv when the blocks are byte aligned, but has to be done
355 * on a block by block basis in case of unaligned blocks. Also this
356 * function can cope with bitmap boundaries (although it must stop on
357 * a resource group boundary)
358 *
359 * Returns: Number of free blocks in the extent
360 */
361
362static u32 gfs2_free_extlen(const struct gfs2_rbm *rrbm, u32 len)
363{
364 struct gfs2_rbm rbm = *rrbm;
365 u32 n_unaligned = rbm.offset & 3;
366 u32 size = len;
367 u32 bytes;
368 u32 chunk_size;
369 u8 *ptr, *start, *end;
370 u64 block;
Bob Petersone579ed42013-09-17 13:12:15 -0400371 struct gfs2_bitmap *bi;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100372
373 if (n_unaligned &&
374 gfs2_unaligned_extlen(&rbm, 4 - n_unaligned, &len))
375 goto out;
376
Bob Peterson37015302012-09-12 09:40:31 -0400377 n_unaligned = len & 3;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100378 /* Start is now byte aligned */
379 while (len > 3) {
Bob Petersone579ed42013-09-17 13:12:15 -0400380 bi = rbm_bi(&rbm);
381 start = bi->bi_bh->b_data;
382 if (bi->bi_clone)
383 start = bi->bi_clone;
Bob Petersone579ed42013-09-17 13:12:15 -0400384 start += bi->bi_offset;
Bob Petersondc8fbb02018-06-01 22:09:50 -0500385 end = start + bi->bi_len;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100386 BUG_ON(rbm.offset & 3);
387 start += (rbm.offset / GFS2_NBBY);
388 bytes = min_t(u32, len / GFS2_NBBY, (end - start));
389 ptr = memchr_inv(start, 0, bytes);
390 chunk_size = ((ptr == NULL) ? bytes : (ptr - start));
391 chunk_size *= GFS2_NBBY;
392 BUG_ON(len < chunk_size);
393 len -= chunk_size;
394 block = gfs2_rbm_to_block(&rbm);
Bob Peterson15bd50a2012-12-20 13:21:07 -0500395 if (gfs2_rbm_from_block(&rbm, block + chunk_size)) {
396 n_unaligned = 0;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100397 break;
Bob Peterson15bd50a2012-12-20 13:21:07 -0500398 }
399 if (ptr) {
400 n_unaligned = 3;
401 break;
402 }
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +0100403 n_unaligned = len & 3;
404 }
405
406 /* Deal with any bits left over at the end */
407 if (n_unaligned)
408 gfs2_unaligned_extlen(&rbm, n_unaligned, &len);
409out:
410 return size - len;
411}
412
413/**
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400414 * gfs2_bitcount - count the number of bits in a certain state
Bob Peterson886b1412012-04-11 13:03:52 -0400415 * @rgd: the resource group descriptor
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400416 * @buffer: the buffer that holds the bitmaps
417 * @buflen: the length (in bytes) of the buffer
418 * @state: the state of the block we're looking for
419 *
420 * Returns: The number of bits
421 */
422
Steven Whitehouse110acf32008-01-29 13:30:20 +0000423static u32 gfs2_bitcount(struct gfs2_rgrpd *rgd, const u8 *buffer,
424 unsigned int buflen, u8 state)
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400425{
Steven Whitehouse110acf32008-01-29 13:30:20 +0000426 const u8 *byte = buffer;
427 const u8 *end = buffer + buflen;
428 const u8 state1 = state << 2;
429 const u8 state2 = state << 4;
430 const u8 state3 = state << 6;
Steven Whitehousecd915492006-09-04 12:49:07 -0400431 u32 count = 0;
Steven Whitehouse88c8ab1f2006-05-18 13:52:39 -0400432
433 for (; byte < end; byte++) {
434 if (((*byte) & 0x03) == state)
435 count++;
436 if (((*byte) & 0x0C) == state1)
437 count++;
438 if (((*byte) & 0x30) == state2)
439 count++;
440 if (((*byte) & 0xC0) == state3)
441 count++;
442 }
443
444 return count;
445}
446
David Teiglandb3b94fa2006-01-16 16:50:04 +0000447/**
448 * gfs2_rgrp_verify - Verify that a resource group is consistent
David Teiglandb3b94fa2006-01-16 16:50:04 +0000449 * @rgd: the rgrp
450 *
451 */
452
453void gfs2_rgrp_verify(struct gfs2_rgrpd *rgd)
454{
455 struct gfs2_sbd *sdp = rgd->rd_sbd;
456 struct gfs2_bitmap *bi = NULL;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100457 u32 length = rgd->rd_length;
Steven Whitehousecd915492006-09-04 12:49:07 -0400458 u32 count[4], tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000459 int buf, x;
460
Steven Whitehousecd915492006-09-04 12:49:07 -0400461 memset(count, 0, 4 * sizeof(u32));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462
463 /* Count # blocks in each of 4 possible allocation states */
464 for (buf = 0; buf < length; buf++) {
465 bi = rgd->rd_bits + buf;
466 for (x = 0; x < 4; x++)
467 count[x] += gfs2_bitcount(rgd,
468 bi->bi_bh->b_data +
469 bi->bi_offset,
470 bi->bi_len, x);
471 }
472
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000473 if (count[0] != rgd->rd_free) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474 if (gfs2_consist_rgrpd(rgd))
475 fs_err(sdp, "free data mismatch: %u != %u\n",
Steven Whitehousecfc8b542008-11-04 10:25:13 +0000476 count[0], rgd->rd_free);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000477 return;
478 }
479
Steven Whitehouse73f74942008-11-04 10:32:57 +0000480 tmp = rgd->rd_data - rgd->rd_free - rgd->rd_dinodes;
Benjamin Marzinski6b946172009-07-10 18:13:26 -0500481 if (count[1] != tmp) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000482 if (gfs2_consist_rgrpd(rgd))
483 fs_err(sdp, "used data mismatch: %u != %u\n",
484 count[1], tmp);
485 return;
486 }
487
Benjamin Marzinski6b946172009-07-10 18:13:26 -0500488 if (count[2] + count[3] != rgd->rd_dinodes) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489 if (gfs2_consist_rgrpd(rgd))
490 fs_err(sdp, "used metadata mismatch: %u != %u\n",
Benjamin Marzinski6b946172009-07-10 18:13:26 -0500491 count[2] + count[3], rgd->rd_dinodes);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000492 return;
493 }
494}
495
David Teiglandb3b94fa2006-01-16 16:50:04 +0000496/**
497 * gfs2_blk2rgrpd - Find resource group for a given data/meta block number
498 * @sdp: The GFS2 superblock
Bob Peterson886b1412012-04-11 13:03:52 -0400499 * @blk: The data block number
500 * @exact: True if this needs to be an exact match
David Teiglandb3b94fa2006-01-16 16:50:04 +0000501 *
Steven Whitehouse90bcab92017-12-22 13:13:07 +0100502 * The @exact argument should be set to true by most callers. The exception
503 * is when we need to match blocks which are not represented by the rgrp
504 * bitmap, but which are part of the rgrp (i.e. padding blocks) which are
505 * there for alignment purposes. Another way of looking at it is that @exact
506 * matches only valid data/metadata blocks, but with @exact false, it will
507 * match any block within the extent of the rgrp.
508 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000509 * Returns: The resource group, or NULL if not found
510 */
511
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000512struct gfs2_rgrpd *gfs2_blk2rgrpd(struct gfs2_sbd *sdp, u64 blk, bool exact)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000513{
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000514 struct rb_node *n, *next;
Steven Whitehousef75bbfb2011-09-08 10:21:13 +0100515 struct gfs2_rgrpd *cur;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000516
517 spin_lock(&sdp->sd_rindex_spin);
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000518 n = sdp->sd_rindex_tree.rb_node;
519 while (n) {
520 cur = rb_entry(n, struct gfs2_rgrpd, rd_node);
521 next = NULL;
Bob Peterson7c9ca622011-08-31 09:53:19 +0100522 if (blk < cur->rd_addr)
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000523 next = n->rb_left;
Steven Whitehousef75bbfb2011-09-08 10:21:13 +0100524 else if (blk >= cur->rd_data0 + cur->rd_data)
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000525 next = n->rb_right;
526 if (next == NULL) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000527 spin_unlock(&sdp->sd_rindex_spin);
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000528 if (exact) {
529 if (blk < cur->rd_addr)
530 return NULL;
531 if (blk >= cur->rd_data0 + cur->rd_data)
532 return NULL;
533 }
Bob Peterson7c9ca622011-08-31 09:53:19 +0100534 return cur;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535 }
Steven Whitehouse66fc0612012-02-08 12:58:32 +0000536 n = next;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000537 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000538 spin_unlock(&sdp->sd_rindex_spin);
539
540 return NULL;
541}
542
543/**
544 * gfs2_rgrpd_get_first - get the first Resource Group in the filesystem
545 * @sdp: The GFS2 superblock
546 *
547 * Returns: The first rgrp in the filesystem
548 */
549
550struct gfs2_rgrpd *gfs2_rgrpd_get_first(struct gfs2_sbd *sdp)
551{
Bob Peterson7c9ca622011-08-31 09:53:19 +0100552 const struct rb_node *n;
553 struct gfs2_rgrpd *rgd;
554
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100555 spin_lock(&sdp->sd_rindex_spin);
Bob Peterson7c9ca622011-08-31 09:53:19 +0100556 n = rb_first(&sdp->sd_rindex_tree);
557 rgd = rb_entry(n, struct gfs2_rgrpd, rd_node);
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100558 spin_unlock(&sdp->sd_rindex_spin);
Bob Peterson7c9ca622011-08-31 09:53:19 +0100559
560 return rgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000561}
562
563/**
564 * gfs2_rgrpd_get_next - get the next RG
Bob Peterson886b1412012-04-11 13:03:52 -0400565 * @rgd: the resource group descriptor
David Teiglandb3b94fa2006-01-16 16:50:04 +0000566 *
567 * Returns: The next rgrp
568 */
569
570struct gfs2_rgrpd *gfs2_rgrpd_get_next(struct gfs2_rgrpd *rgd)
571{
Bob Peterson7c9ca622011-08-31 09:53:19 +0100572 struct gfs2_sbd *sdp = rgd->rd_sbd;
573 const struct rb_node *n;
574
575 spin_lock(&sdp->sd_rindex_spin);
576 n = rb_next(&rgd->rd_node);
577 if (n == NULL)
578 n = rb_first(&sdp->sd_rindex_tree);
579
580 if (unlikely(&rgd->rd_node == n)) {
581 spin_unlock(&sdp->sd_rindex_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000582 return NULL;
Bob Peterson7c9ca622011-08-31 09:53:19 +0100583 }
584 rgd = rb_entry(n, struct gfs2_rgrpd, rd_node);
585 spin_unlock(&sdp->sd_rindex_spin);
586 return rgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000587}
588
Abhi Das00a158b2014-09-18 21:40:28 -0500589void check_and_update_goal(struct gfs2_inode *ip)
590{
591 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
592 if (!ip->i_goal || gfs2_blk2rgrpd(sdp, ip->i_goal, 1) == NULL)
593 ip->i_goal = ip->i_no_addr;
594}
595
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100596void gfs2_free_clones(struct gfs2_rgrpd *rgd)
597{
598 int x;
599
600 for (x = 0; x < rgd->rd_length; x++) {
601 struct gfs2_bitmap *bi = rgd->rd_bits + x;
602 kfree(bi->bi_clone);
603 bi->bi_clone = NULL;
604 }
605}
606
Bob Peterson0a305e42012-06-06 11:17:59 +0100607/**
Bob Petersonb54e9a02015-10-26 10:40:28 -0500608 * gfs2_rsqa_alloc - make sure we have a reservation assigned to the inode
609 * plus a quota allocations data structure, if necessary
Bob Peterson0a305e42012-06-06 11:17:59 +0100610 * @ip: the inode for this reservation
611 */
Bob Petersonb54e9a02015-10-26 10:40:28 -0500612int gfs2_rsqa_alloc(struct gfs2_inode *ip)
Bob Peterson0a305e42012-06-06 11:17:59 +0100613{
Bob Petersona097dc7e2015-07-16 08:28:04 -0500614 return gfs2_qa_alloc(ip);
Bob Peterson0a305e42012-06-06 11:17:59 +0100615}
616
Steven Whitehouse9e733d32012-08-23 15:37:59 +0100617static void dump_rs(struct seq_file *seq, const struct gfs2_blkreserv *rs)
Bob Peterson8e2e0042012-07-19 08:12:40 -0400618{
Bob Petersonf85c10e2018-06-13 08:52:47 -0500619 struct gfs2_inode *ip = container_of(rs, struct gfs2_inode, i_res);
620
Steven Whitehouse9e733d32012-08-23 15:37:59 +0100621 gfs2_print_dbg(seq, " B: n:%llu s:%llu b:%u f:%u\n",
Bob Petersonf85c10e2018-06-13 08:52:47 -0500622 (unsigned long long)ip->i_no_addr,
Steven Whitehouse9e733d32012-08-23 15:37:59 +0100623 (unsigned long long)gfs2_rbm_to_block(&rs->rs_rbm),
Steven Whitehouse4a993fb2012-07-31 15:21:20 +0100624 rs->rs_rbm.offset, rs->rs_free);
Bob Peterson8e2e0042012-07-19 08:12:40 -0400625}
626
Bob Peterson0a305e42012-06-06 11:17:59 +0100627/**
Bob Peterson8e2e0042012-07-19 08:12:40 -0400628 * __rs_deltree - remove a multi-block reservation from the rgd tree
629 * @rs: The reservation to remove
630 *
631 */
Bob Peterson20095212013-03-13 10:26:38 -0400632static void __rs_deltree(struct gfs2_blkreserv *rs)
Bob Peterson8e2e0042012-07-19 08:12:40 -0400633{
634 struct gfs2_rgrpd *rgd;
635
636 if (!gfs2_rs_active(rs))
637 return;
638
Steven Whitehouse4a993fb2012-07-31 15:21:20 +0100639 rgd = rs->rs_rbm.rgd;
Steven Whitehouse9e733d32012-08-23 15:37:59 +0100640 trace_gfs2_rs(rs, TRACE_RS_TREEDEL);
Steven Whitehouse4a993fb2012-07-31 15:21:20 +0100641 rb_erase(&rs->rs_node, &rgd->rd_rstree);
Michel Lespinasse24d634e2012-08-05 22:04:08 -0700642 RB_CLEAR_NODE(&rs->rs_node);
Bob Peterson8e2e0042012-07-19 08:12:40 -0400643
644 if (rs->rs_free) {
Bob Petersone579ed42013-09-17 13:12:15 -0400645 struct gfs2_bitmap *bi = rbm_bi(&rs->rs_rbm);
646
Bob Peterson20095212013-03-13 10:26:38 -0400647 /* return reserved blocks to the rgrp */
Steven Whitehouse4a993fb2012-07-31 15:21:20 +0100648 BUG_ON(rs->rs_rbm.rgd->rd_reserved < rs->rs_free);
649 rs->rs_rbm.rgd->rd_reserved -= rs->rs_free;
Bob Peterson5ea50502013-11-25 11:16:25 +0000650 /* The rgrp extent failure point is likely not to increase;
651 it will only do so if the freed blocks are somehow
652 contiguous with a span of free blocks that follows. Still,
653 it will force the number to be recalculated later. */
654 rgd->rd_extfail_pt += rs->rs_free;
Bob Peterson8e2e0042012-07-19 08:12:40 -0400655 rs->rs_free = 0;
Bob Petersone579ed42013-09-17 13:12:15 -0400656 clear_bit(GBF_FULL, &bi->bi_flags);
Bob Peterson8e2e0042012-07-19 08:12:40 -0400657 }
Bob Peterson8e2e0042012-07-19 08:12:40 -0400658}
659
660/**
661 * gfs2_rs_deltree - remove a multi-block reservation from the rgd tree
662 * @rs: The reservation to remove
663 *
664 */
Bob Peterson20095212013-03-13 10:26:38 -0400665void gfs2_rs_deltree(struct gfs2_blkreserv *rs)
Bob Peterson8e2e0042012-07-19 08:12:40 -0400666{
667 struct gfs2_rgrpd *rgd;
668
Steven Whitehouse4a993fb2012-07-31 15:21:20 +0100669 rgd = rs->rs_rbm.rgd;
670 if (rgd) {
671 spin_lock(&rgd->rd_rsspin);
Bob Peterson20095212013-03-13 10:26:38 -0400672 __rs_deltree(rs);
Bob Peterson44f52122016-07-06 10:36:43 -0500673 BUG_ON(rs->rs_free);
Steven Whitehouse4a993fb2012-07-31 15:21:20 +0100674 spin_unlock(&rgd->rd_rsspin);
675 }
Bob Peterson8e2e0042012-07-19 08:12:40 -0400676}
677
678/**
Bob Petersonb54e9a02015-10-26 10:40:28 -0500679 * gfs2_rsqa_delete - delete a multi-block reservation and quota allocation
Bob Peterson0a305e42012-06-06 11:17:59 +0100680 * @ip: The inode for this reservation
Steven Whitehouseaf5c2692013-09-27 12:49:33 +0100681 * @wcount: The inode's write count, or NULL
Bob Peterson0a305e42012-06-06 11:17:59 +0100682 *
683 */
Bob Petersonb54e9a02015-10-26 10:40:28 -0500684void gfs2_rsqa_delete(struct gfs2_inode *ip, atomic_t *wcount)
Bob Peterson0a305e42012-06-06 11:17:59 +0100685{
686 down_write(&ip->i_rw_mutex);
Bob Peterson44f52122016-07-06 10:36:43 -0500687 if ((wcount == NULL) || (atomic_read(wcount) <= 1))
Bob Petersona097dc7e2015-07-16 08:28:04 -0500688 gfs2_rs_deltree(&ip->i_res);
Bob Peterson0a305e42012-06-06 11:17:59 +0100689 up_write(&ip->i_rw_mutex);
Bob Petersona097dc7e2015-07-16 08:28:04 -0500690 gfs2_qa_delete(ip, wcount);
Bob Peterson0a305e42012-06-06 11:17:59 +0100691}
692
Bob Peterson8e2e0042012-07-19 08:12:40 -0400693/**
694 * return_all_reservations - return all reserved blocks back to the rgrp.
695 * @rgd: the rgrp that needs its space back
696 *
697 * We previously reserved a bunch of blocks for allocation. Now we need to
698 * give them back. This leave the reservation structures in tact, but removes
699 * all of their corresponding "no-fly zones".
700 */
701static void return_all_reservations(struct gfs2_rgrpd *rgd)
702{
703 struct rb_node *n;
704 struct gfs2_blkreserv *rs;
705
706 spin_lock(&rgd->rd_rsspin);
707 while ((n = rb_first(&rgd->rd_rstree))) {
708 rs = rb_entry(n, struct gfs2_blkreserv, rs_node);
Bob Peterson20095212013-03-13 10:26:38 -0400709 __rs_deltree(rs);
Bob Peterson8e2e0042012-07-19 08:12:40 -0400710 }
711 spin_unlock(&rgd->rd_rsspin);
712}
713
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100714void gfs2_clear_rgrpd(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000715{
Bob Peterson7c9ca622011-08-31 09:53:19 +0100716 struct rb_node *n;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000717 struct gfs2_rgrpd *rgd;
718 struct gfs2_glock *gl;
719
Bob Peterson7c9ca622011-08-31 09:53:19 +0100720 while ((n = rb_first(&sdp->sd_rindex_tree))) {
721 rgd = rb_entry(n, struct gfs2_rgrpd, rd_node);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000722 gl = rgd->rd_gl;
723
Bob Peterson7c9ca622011-08-31 09:53:19 +0100724 rb_erase(n, &sdp->sd_rindex_tree);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000725
726 if (gl) {
Andreas Gruenbacher7023a0b2017-08-30 07:46:24 -0500727 glock_clear_object(gl, rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000728 gfs2_glock_put(gl);
729 }
730
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100731 gfs2_free_clones(rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000732 kfree(rgd->rd_bits);
Bob Peterson36e4ad02016-06-09 14:24:07 -0500733 rgd->rd_bits = NULL;
Bob Peterson8e2e0042012-07-19 08:12:40 -0400734 return_all_reservations(rgd);
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600735 kmem_cache_free(gfs2_rgrpd_cachep, rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000736 }
737}
738
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100739static void gfs2_rindex_print(const struct gfs2_rgrpd *rgd)
740{
Joe Perchesd77d1b52014-03-06 12:10:45 -0800741 pr_info("ri_addr = %llu\n", (unsigned long long)rgd->rd_addr);
742 pr_info("ri_length = %u\n", rgd->rd_length);
743 pr_info("ri_data0 = %llu\n", (unsigned long long)rgd->rd_data0);
744 pr_info("ri_data = %u\n", rgd->rd_data);
745 pr_info("ri_bitbytes = %u\n", rgd->rd_bitbytes);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100746}
747
David Teiglandb3b94fa2006-01-16 16:50:04 +0000748/**
749 * gfs2_compute_bitstructs - Compute the bitmap sizes
750 * @rgd: The resource group descriptor
751 *
752 * Calculates bitmap descriptors, one for each block that contains bitmap data
753 *
754 * Returns: errno
755 */
756
757static int compute_bitstructs(struct gfs2_rgrpd *rgd)
758{
759 struct gfs2_sbd *sdp = rgd->rd_sbd;
760 struct gfs2_bitmap *bi;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100761 u32 length = rgd->rd_length; /* # blocks in hdr & bitmap */
Steven Whitehousecd915492006-09-04 12:49:07 -0400762 u32 bytes_left, bytes;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763 int x;
764
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400765 if (!length)
766 return -EINVAL;
767
Steven Whitehousedd894be2006-07-27 14:29:00 -0400768 rgd->rd_bits = kcalloc(length, sizeof(struct gfs2_bitmap), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000769 if (!rgd->rd_bits)
770 return -ENOMEM;
771
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100772 bytes_left = rgd->rd_bitbytes;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000773
774 for (x = 0; x < length; x++) {
775 bi = rgd->rd_bits + x;
776
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +0100777 bi->bi_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000778 /* small rgrp; bitmap stored completely in header block */
779 if (length == 1) {
780 bytes = bytes_left;
781 bi->bi_offset = sizeof(struct gfs2_rgrp);
782 bi->bi_start = 0;
783 bi->bi_len = bytes;
Bob Peterson7e230f52013-09-11 13:44:02 -0500784 bi->bi_blocks = bytes * GFS2_NBBY;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000785 /* header block */
786 } else if (x == 0) {
787 bytes = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_rgrp);
788 bi->bi_offset = sizeof(struct gfs2_rgrp);
789 bi->bi_start = 0;
790 bi->bi_len = bytes;
Bob Peterson7e230f52013-09-11 13:44:02 -0500791 bi->bi_blocks = bytes * GFS2_NBBY;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000792 /* last block */
793 } else if (x + 1 == length) {
794 bytes = bytes_left;
795 bi->bi_offset = sizeof(struct gfs2_meta_header);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100796 bi->bi_start = rgd->rd_bitbytes - bytes_left;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797 bi->bi_len = bytes;
Bob Peterson7e230f52013-09-11 13:44:02 -0500798 bi->bi_blocks = bytes * GFS2_NBBY;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000799 /* other blocks */
800 } else {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500801 bytes = sdp->sd_sb.sb_bsize -
802 sizeof(struct gfs2_meta_header);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000803 bi->bi_offset = sizeof(struct gfs2_meta_header);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100804 bi->bi_start = rgd->rd_bitbytes - bytes_left;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000805 bi->bi_len = bytes;
Bob Peterson7e230f52013-09-11 13:44:02 -0500806 bi->bi_blocks = bytes * GFS2_NBBY;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000807 }
808
809 bytes_left -= bytes;
810 }
811
812 if (bytes_left) {
813 gfs2_consist_rgrpd(rgd);
814 return -EIO;
815 }
816 bi = rgd->rd_bits + (length - 1);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100817 if ((bi->bi_start + bi->bi_len) * GFS2_NBBY != rgd->rd_data) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 if (gfs2_consist_rgrpd(rgd)) {
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100819 gfs2_rindex_print(rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820 fs_err(sdp, "start=%u len=%u offset=%u\n",
821 bi->bi_start, bi->bi_len, bi->bi_offset);
822 }
823 return -EIO;
824 }
825
826 return 0;
827}
828
829/**
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500830 * gfs2_ri_total - Total up the file system space, according to the rindex.
Bob Peterson886b1412012-04-11 13:03:52 -0400831 * @sdp: the filesystem
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500832 *
833 */
834u64 gfs2_ri_total(struct gfs2_sbd *sdp)
835{
836 u64 total_data = 0;
837 struct inode *inode = sdp->sd_rindex;
838 struct gfs2_inode *ip = GFS2_I(inode);
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500839 char buf[sizeof(struct gfs2_rindex)];
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500840 int error, rgrps;
841
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500842 for (rgrps = 0;; rgrps++) {
843 loff_t pos = rgrps * sizeof(struct gfs2_rindex);
844
Bob Petersonbcd72782010-12-07 13:58:56 -0500845 if (pos + sizeof(struct gfs2_rindex) > i_size_read(inode))
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500846 break;
Andrew Price43066292012-04-16 16:40:55 +0100847 error = gfs2_internal_read(ip, buf, &pos,
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500848 sizeof(struct gfs2_rindex));
849 if (error != sizeof(struct gfs2_rindex))
850 break;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100851 total_data += be32_to_cpu(((struct gfs2_rindex *)buf)->ri_data);
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500852 }
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500853 return total_data;
854}
855
Bob Peterson6aad1c32012-03-05 09:20:59 -0500856static int rgd_insert(struct gfs2_rgrpd *rgd)
Bob Peterson7c9ca622011-08-31 09:53:19 +0100857{
858 struct gfs2_sbd *sdp = rgd->rd_sbd;
859 struct rb_node **newn = &sdp->sd_rindex_tree.rb_node, *parent = NULL;
860
861 /* Figure out where to put new node */
862 while (*newn) {
863 struct gfs2_rgrpd *cur = rb_entry(*newn, struct gfs2_rgrpd,
864 rd_node);
865
866 parent = *newn;
867 if (rgd->rd_addr < cur->rd_addr)
868 newn = &((*newn)->rb_left);
869 else if (rgd->rd_addr > cur->rd_addr)
870 newn = &((*newn)->rb_right);
871 else
Bob Peterson6aad1c32012-03-05 09:20:59 -0500872 return -EEXIST;
Bob Peterson7c9ca622011-08-31 09:53:19 +0100873 }
874
875 rb_link_node(&rgd->rd_node, parent, newn);
876 rb_insert_color(&rgd->rd_node, &sdp->sd_rindex_tree);
Bob Peterson6aad1c32012-03-05 09:20:59 -0500877 sdp->sd_rgrps++;
878 return 0;
Bob Peterson7c9ca622011-08-31 09:53:19 +0100879}
880
Robert Peterson7ae8fa82007-05-09 09:37:57 -0500881/**
Robert Peterson6c532672007-05-10 16:54:38 -0500882 * read_rindex_entry - Pull in a new resource index entry from the disk
Andrew Price43066292012-04-16 16:40:55 +0100883 * @ip: Pointer to the rindex inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000884 *
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100885 * Returns: 0 on success, > 0 on EOF, error code otherwise
Robert Peterson6c532672007-05-10 16:54:38 -0500886 */
887
Andrew Price43066292012-04-16 16:40:55 +0100888static int read_rindex_entry(struct gfs2_inode *ip)
Robert Peterson6c532672007-05-10 16:54:38 -0500889{
890 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouse7005c3e2013-12-06 10:16:14 +0000891 const unsigned bsize = sdp->sd_sb.sb_bsize;
Robert Peterson6c532672007-05-10 16:54:38 -0500892 loff_t pos = sdp->sd_rgrps * sizeof(struct gfs2_rindex);
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100893 struct gfs2_rindex buf;
Robert Peterson6c532672007-05-10 16:54:38 -0500894 int error;
895 struct gfs2_rgrpd *rgd;
896
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100897 if (pos >= i_size_read(&ip->i_inode))
898 return 1;
899
Andrew Price43066292012-04-16 16:40:55 +0100900 error = gfs2_internal_read(ip, (char *)&buf, &pos,
Robert Peterson6c532672007-05-10 16:54:38 -0500901 sizeof(struct gfs2_rindex));
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100902
903 if (error != sizeof(struct gfs2_rindex))
904 return (error == 0) ? 1 : error;
Robert Peterson6c532672007-05-10 16:54:38 -0500905
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600906 rgd = kmem_cache_zalloc(gfs2_rgrpd_cachep, GFP_NOFS);
Robert Peterson6c532672007-05-10 16:54:38 -0500907 error = -ENOMEM;
908 if (!rgd)
909 return error;
910
Robert Peterson6c532672007-05-10 16:54:38 -0500911 rgd->rd_sbd = sdp;
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100912 rgd->rd_addr = be64_to_cpu(buf.ri_addr);
913 rgd->rd_length = be32_to_cpu(buf.ri_length);
914 rgd->rd_data0 = be64_to_cpu(buf.ri_data0);
915 rgd->rd_data = be32_to_cpu(buf.ri_data);
916 rgd->rd_bitbytes = be32_to_cpu(buf.ri_bitbytes);
Bob Peterson8e2e0042012-07-19 08:12:40 -0400917 spin_lock_init(&rgd->rd_rsspin);
Bob Peterson7c9ca622011-08-31 09:53:19 +0100918
Robert Peterson6c532672007-05-10 16:54:38 -0500919 error = compute_bitstructs(rgd);
920 if (error)
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100921 goto fail;
Robert Peterson6c532672007-05-10 16:54:38 -0500922
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100923 error = gfs2_glock_get(sdp, rgd->rd_addr,
Robert Peterson6c532672007-05-10 16:54:38 -0500924 &gfs2_rgrp_glops, CREATE, &rgd->rd_gl);
925 if (error)
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100926 goto fail;
Robert Peterson6c532672007-05-10 16:54:38 -0500927
David Teigland4e2f8842012-11-14 13:47:37 -0500928 rgd->rd_rgl = (struct gfs2_rgrp_lvb *)rgd->rd_gl->gl_lksb.sb_lvbptr;
Bob Peterson0e27c182014-10-29 08:02:28 -0500929 rgd->rd_flags &= ~(GFS2_RDF_UPTODATE | GFS2_RDF_PREFERRED);
Bob Peterson7c9ca622011-08-31 09:53:19 +0100930 if (rgd->rd_data > sdp->sd_max_rg_data)
931 sdp->sd_max_rg_data = rgd->rd_data;
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100932 spin_lock(&sdp->sd_rindex_spin);
Bob Peterson6aad1c32012-03-05 09:20:59 -0500933 error = rgd_insert(rgd);
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100934 spin_unlock(&sdp->sd_rindex_spin);
Bob Peterson36e4ad02016-06-09 14:24:07 -0500935 if (!error) {
Andreas Gruenbacher6f6597ba2017-06-30 07:55:08 -0500936 glock_set_object(rgd->rd_gl, rgd);
Bob Peterson36e4ad02016-06-09 14:24:07 -0500937 rgd->rd_gl->gl_vm.start = (rgd->rd_addr * bsize) & PAGE_MASK;
938 rgd->rd_gl->gl_vm.end = PAGE_ALIGN((rgd->rd_addr +
939 rgd->rd_length) * bsize) - 1;
Bob Peterson6aad1c32012-03-05 09:20:59 -0500940 return 0;
Bob Peterson36e4ad02016-06-09 14:24:07 -0500941 }
Bob Peterson6aad1c32012-03-05 09:20:59 -0500942
943 error = 0; /* someone else read in the rgrp; free it and ignore it */
Bob Petersonc1ac5392012-03-22 08:58:30 -0400944 gfs2_glock_put(rgd->rd_gl);
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100945
946fail:
947 kfree(rgd->rd_bits);
Bob Peterson36e4ad02016-06-09 14:24:07 -0500948 rgd->rd_bits = NULL;
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100949 kmem_cache_free(gfs2_rgrpd_cachep, rgd);
Robert Peterson6c532672007-05-10 16:54:38 -0500950 return error;
951}
952
953/**
Bob Peterson0e27c182014-10-29 08:02:28 -0500954 * set_rgrp_preferences - Run all the rgrps, selecting some we prefer to use
955 * @sdp: the GFS2 superblock
956 *
957 * The purpose of this function is to select a subset of the resource groups
958 * and mark them as PREFERRED. We do it in such a way that each node prefers
959 * to use a unique set of rgrps to minimize glock contention.
960 */
961static void set_rgrp_preferences(struct gfs2_sbd *sdp)
962{
963 struct gfs2_rgrpd *rgd, *first;
964 int i;
965
966 /* Skip an initial number of rgrps, based on this node's journal ID.
967 That should start each node out on its own set. */
968 rgd = gfs2_rgrpd_get_first(sdp);
969 for (i = 0; i < sdp->sd_lockstruct.ls_jid; i++)
970 rgd = gfs2_rgrpd_get_next(rgd);
971 first = rgd;
972
973 do {
974 rgd->rd_flags |= GFS2_RDF_PREFERRED;
975 for (i = 0; i < sdp->sd_journals; i++) {
976 rgd = gfs2_rgrpd_get_next(rgd);
Abhi Das959b6712015-05-05 11:26:04 -0500977 if (!rgd || rgd == first)
Bob Peterson0e27c182014-10-29 08:02:28 -0500978 break;
979 }
Abhi Das959b6712015-05-05 11:26:04 -0500980 } while (rgd && rgd != first);
Bob Peterson0e27c182014-10-29 08:02:28 -0500981}
982
983/**
Robert Peterson6c532672007-05-10 16:54:38 -0500984 * gfs2_ri_update - Pull in a new resource index from the disk
985 * @ip: pointer to the rindex inode
986 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000987 * Returns: 0 on successful update, error code otherwise
988 */
989
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100990static int gfs2_ri_update(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000991{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400992 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000993 int error;
994
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100995 do {
Andrew Price43066292012-04-16 16:40:55 +0100996 error = read_rindex_entry(ip);
Steven Whitehouse8339ee52011-08-31 16:38:29 +0100997 } while (error == 0);
998
999 if (error < 0)
1000 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001
Bob Peterson0e27c182014-10-29 08:02:28 -05001002 set_rgrp_preferences(sdp);
1003
Bob Petersoncf45b752008-01-31 10:31:39 -06001004 sdp->sd_rindex_uptodate = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005 return 0;
Robert Peterson6c532672007-05-10 16:54:38 -05001006}
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007
Robert Peterson6c532672007-05-10 16:54:38 -05001008/**
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001009 * gfs2_rindex_update - Update the rindex if required
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010 * @sdp: The GFS2 superblock
David Teiglandb3b94fa2006-01-16 16:50:04 +00001011 *
1012 * We grab a lock on the rindex inode to make sure that it doesn't
1013 * change whilst we are performing an operation. We keep this lock
1014 * for quite long periods of time compared to other locks. This
1015 * doesn't matter, since it is shared and it is very, very rarely
1016 * accessed in the exclusive mode (i.e. only when expanding the filesystem).
1017 *
1018 * This makes sure that we're using the latest copy of the resource index
1019 * special file, which might have been updated if someone expanded the
1020 * filesystem (via gfs2_grow utility), which adds new resource groups.
1021 *
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001022 * Returns: 0 on succeess, error code otherwise
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023 */
1024
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001025int gfs2_rindex_update(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001027 struct gfs2_inode *ip = GFS2_I(sdp->sd_rindex);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001028 struct gfs2_glock *gl = ip->i_gl;
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001029 struct gfs2_holder ri_gh;
1030 int error = 0;
Steven Whitehousea365fbf2012-02-24 15:09:14 +00001031 int unlock_required = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032
1033 /* Read new copy from disk if we don't have the latest */
Bob Petersoncf45b752008-01-31 10:31:39 -06001034 if (!sdp->sd_rindex_uptodate) {
Steven Whitehousea365fbf2012-02-24 15:09:14 +00001035 if (!gfs2_glock_is_locked_by_me(gl)) {
1036 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, 0, &ri_gh);
1037 if (error)
Bob Peterson6aad1c32012-03-05 09:20:59 -05001038 return error;
Steven Whitehousea365fbf2012-02-24 15:09:14 +00001039 unlock_required = 1;
1040 }
Steven Whitehouse8339ee52011-08-31 16:38:29 +01001041 if (!sdp->sd_rindex_uptodate)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001042 error = gfs2_ri_update(ip);
Steven Whitehousea365fbf2012-02-24 15:09:14 +00001043 if (unlock_required)
1044 gfs2_glock_dq_uninit(&ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001045 }
1046
1047 return error;
1048}
1049
Bob Peterson42d52e32008-01-28 18:38:07 -06001050static void gfs2_rgrp_in(struct gfs2_rgrpd *rgd, const void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001051{
1052 const struct gfs2_rgrp *str = buf;
Bob Peterson42d52e32008-01-28 18:38:07 -06001053 u32 rg_flags;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001054
Bob Peterson42d52e32008-01-28 18:38:07 -06001055 rg_flags = be32_to_cpu(str->rg_flags);
Steven Whitehouse09010972009-05-20 10:48:47 +01001056 rg_flags &= ~GFS2_RDF_MASK;
Steven Whitehouse1ce97e52009-05-21 15:18:19 +01001057 rgd->rd_flags &= GFS2_RDF_MASK;
1058 rgd->rd_flags |= rg_flags;
Steven Whitehousecfc8b542008-11-04 10:25:13 +00001059 rgd->rd_free = be32_to_cpu(str->rg_free);
Steven Whitehouse73f74942008-11-04 10:32:57 +00001060 rgd->rd_dinodes = be32_to_cpu(str->rg_dinodes);
Steven Whitehoused8b71f72008-11-04 10:19:03 +00001061 rgd->rd_igeneration = be64_to_cpu(str->rg_igeneration);
Andrew Price166725d2017-12-12 11:40:05 -06001062 /* rd_data0, rd_data and rd_bitbytes already set from rindex */
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001063}
1064
Bob Peterson3f30f922018-07-26 12:59:13 -05001065static void gfs2_rgrp_ondisk2lvb(struct gfs2_rgrp_lvb *rgl, const void *buf)
1066{
1067 const struct gfs2_rgrp *str = buf;
1068
1069 rgl->rl_magic = cpu_to_be32(GFS2_MAGIC);
1070 rgl->rl_flags = str->rg_flags;
1071 rgl->rl_free = str->rg_free;
1072 rgl->rl_dinodes = str->rg_dinodes;
1073 rgl->rl_igeneration = str->rg_igeneration;
1074 rgl->__pad = 0UL;
1075}
1076
Bob Peterson42d52e32008-01-28 18:38:07 -06001077static void gfs2_rgrp_out(struct gfs2_rgrpd *rgd, void *buf)
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001078{
Andrew Price65adc272017-12-12 11:37:15 -06001079 struct gfs2_rgrpd *next = gfs2_rgrpd_get_next(rgd);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001080 struct gfs2_rgrp *str = buf;
Andrew Price850d2d92017-12-12 11:42:30 -06001081 u32 crc;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001082
Steven Whitehouse09010972009-05-20 10:48:47 +01001083 str->rg_flags = cpu_to_be32(rgd->rd_flags & ~GFS2_RDF_MASK);
Steven Whitehousecfc8b542008-11-04 10:25:13 +00001084 str->rg_free = cpu_to_be32(rgd->rd_free);
Steven Whitehouse73f74942008-11-04 10:32:57 +00001085 str->rg_dinodes = cpu_to_be32(rgd->rd_dinodes);
Andrew Price65adc272017-12-12 11:37:15 -06001086 if (next == NULL)
1087 str->rg_skip = 0;
1088 else if (next->rd_addr > rgd->rd_addr)
1089 str->rg_skip = cpu_to_be32(next->rd_addr - rgd->rd_addr);
Steven Whitehoused8b71f72008-11-04 10:19:03 +00001090 str->rg_igeneration = cpu_to_be64(rgd->rd_igeneration);
Andrew Price166725d2017-12-12 11:40:05 -06001091 str->rg_data0 = cpu_to_be64(rgd->rd_data0);
1092 str->rg_data = cpu_to_be32(rgd->rd_data);
1093 str->rg_bitbytes = cpu_to_be32(rgd->rd_bitbytes);
Andrew Price850d2d92017-12-12 11:42:30 -06001094 str->rg_crc = 0;
1095 crc = gfs2_disk_hash(buf, sizeof(struct gfs2_rgrp));
1096 str->rg_crc = cpu_to_be32(crc);
Andrew Price166725d2017-12-12 11:40:05 -06001097
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001098 memset(&str->rg_reserved, 0, sizeof(str->rg_reserved));
Bob Peterson3f30f922018-07-26 12:59:13 -05001099 gfs2_rgrp_ondisk2lvb(rgd->rd_rgl, buf);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001100}
1101
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001102static int gfs2_rgrp_lvb_valid(struct gfs2_rgrpd *rgd)
1103{
1104 struct gfs2_rgrp_lvb *rgl = rgd->rd_rgl;
1105 struct gfs2_rgrp *str = (struct gfs2_rgrp *)rgd->rd_bits[0].bi_bh->b_data;
1106
1107 if (rgl->rl_flags != str->rg_flags || rgl->rl_free != str->rg_free ||
1108 rgl->rl_dinodes != str->rg_dinodes ||
1109 rgl->rl_igeneration != str->rg_igeneration)
1110 return 0;
1111 return 1;
1112}
1113
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001114static u32 count_unlinked(struct gfs2_rgrpd *rgd)
1115{
1116 struct gfs2_bitmap *bi;
1117 const u32 length = rgd->rd_length;
1118 const u8 *buffer = NULL;
1119 u32 i, goal, count = 0;
1120
1121 for (i = 0, bi = rgd->rd_bits; i < length; i++, bi++) {
1122 goal = 0;
1123 buffer = bi->bi_bh->b_data + bi->bi_offset;
1124 WARN_ON(!buffer_uptodate(bi->bi_bh));
1125 while (goal < bi->bi_len * GFS2_NBBY) {
1126 goal = gfs2_bitfit(buffer, bi->bi_len, goal,
1127 GFS2_BLKST_UNLINKED);
1128 if (goal == BFITNOENT)
1129 break;
1130 count++;
1131 goal++;
1132 }
1133 }
1134
1135 return count;
1136}
1137
1138
David Teiglandb3b94fa2006-01-16 16:50:04 +00001139/**
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001140 * gfs2_rgrp_bh_get - Read in a RG's header and bitmaps
1141 * @rgd: the struct gfs2_rgrpd describing the RG to read in
David Teiglandb3b94fa2006-01-16 16:50:04 +00001142 *
1143 * Read in all of a Resource Group's header and bitmap blocks.
1144 * Caller must eventually call gfs2_rgrp_relse() to free the bitmaps.
1145 *
1146 * Returns: errno
1147 */
1148
Rashika Kheriac2b0b302014-02-09 18:40:19 +05301149static int gfs2_rgrp_bh_get(struct gfs2_rgrpd *rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001150{
1151 struct gfs2_sbd *sdp = rgd->rd_sbd;
1152 struct gfs2_glock *gl = rgd->rd_gl;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001153 unsigned int length = rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001154 struct gfs2_bitmap *bi;
1155 unsigned int x, y;
1156 int error;
1157
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001158 if (rgd->rd_bits[0].bi_bh != NULL)
1159 return 0;
1160
David Teiglandb3b94fa2006-01-16 16:50:04 +00001161 for (x = 0; x < length; x++) {
1162 bi = rgd->rd_bits + x;
Andreas Gruenbacherc8d57702015-11-11 15:00:35 -06001163 error = gfs2_meta_read(gl, rgd->rd_addr + x, 0, 0, &bi->bi_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001164 if (error)
1165 goto fail;
1166 }
1167
1168 for (y = length; y--;) {
1169 bi = rgd->rd_bits + y;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001170 error = gfs2_meta_wait(sdp, bi->bi_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001171 if (error)
1172 goto fail;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001173 if (gfs2_metatype_check(sdp, bi->bi_bh, y ? GFS2_METATYPE_RB :
David Teiglandb3b94fa2006-01-16 16:50:04 +00001174 GFS2_METATYPE_RG)) {
1175 error = -EIO;
1176 goto fail;
1177 }
1178 }
1179
Bob Petersoncf45b752008-01-31 10:31:39 -06001180 if (!(rgd->rd_flags & GFS2_RDF_UPTODATE)) {
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01001181 for (x = 0; x < length; x++)
1182 clear_bit(GBF_FULL, &rgd->rd_bits[x].bi_flags);
Bob Peterson42d52e32008-01-28 18:38:07 -06001183 gfs2_rgrp_in(rgd, (rgd->rd_bits[0].bi_bh)->b_data);
Steven Whitehouse1ce97e52009-05-21 15:18:19 +01001184 rgd->rd_flags |= (GFS2_RDF_UPTODATE | GFS2_RDF_CHECK);
Bob Peterson7c9ca622011-08-31 09:53:19 +01001185 rgd->rd_free_clone = rgd->rd_free;
Bob Peterson5ea50502013-11-25 11:16:25 +00001186 /* max out the rgrp allocation failure point */
1187 rgd->rd_extfail_pt = rgd->rd_free;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001188 }
Al Viro951b4bd2013-06-02 19:53:40 -04001189 if (cpu_to_be32(GFS2_MAGIC) != rgd->rd_rgl->rl_magic) {
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001190 rgd->rd_rgl->rl_unlinked = cpu_to_be32(count_unlinked(rgd));
1191 gfs2_rgrp_ondisk2lvb(rgd->rd_rgl,
1192 rgd->rd_bits[0].bi_bh->b_data);
1193 }
1194 else if (sdp->sd_args.ar_rgrplvb) {
1195 if (!gfs2_rgrp_lvb_valid(rgd)){
1196 gfs2_consist_rgrpd(rgd);
1197 error = -EIO;
1198 goto fail;
1199 }
1200 if (rgd->rd_rgl->rl_unlinked == 0)
1201 rgd->rd_flags &= ~GFS2_RDF_CHECK;
1202 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001203 return 0;
1204
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001205fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206 while (x--) {
1207 bi = rgd->rd_bits + x;
1208 brelse(bi->bi_bh);
1209 bi->bi_bh = NULL;
1210 gfs2_assert_warn(sdp, !bi->bi_clone);
1211 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001212
1213 return error;
1214}
1215
Rashika Kheriac2b0b302014-02-09 18:40:19 +05301216static int update_rgrp_lvb(struct gfs2_rgrpd *rgd)
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001217{
1218 u32 rl_flags;
1219
1220 if (rgd->rd_flags & GFS2_RDF_UPTODATE)
1221 return 0;
1222
Al Viro951b4bd2013-06-02 19:53:40 -04001223 if (cpu_to_be32(GFS2_MAGIC) != rgd->rd_rgl->rl_magic)
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001224 return gfs2_rgrp_bh_get(rgd);
1225
1226 rl_flags = be32_to_cpu(rgd->rd_rgl->rl_flags);
1227 rl_flags &= ~GFS2_RDF_MASK;
1228 rgd->rd_flags &= GFS2_RDF_MASK;
1229 rgd->rd_flags |= (rl_flags | GFS2_RDF_UPTODATE | GFS2_RDF_CHECK);
1230 if (rgd->rd_rgl->rl_unlinked == 0)
1231 rgd->rd_flags &= ~GFS2_RDF_CHECK;
1232 rgd->rd_free = be32_to_cpu(rgd->rd_rgl->rl_free);
1233 rgd->rd_free_clone = rgd->rd_free;
1234 rgd->rd_dinodes = be32_to_cpu(rgd->rd_rgl->rl_dinodes);
1235 rgd->rd_igeneration = be64_to_cpu(rgd->rd_rgl->rl_igeneration);
1236 return 0;
1237}
1238
1239int gfs2_rgrp_go_lock(struct gfs2_holder *gh)
1240{
1241 struct gfs2_rgrpd *rgd = gh->gh_gl->gl_object;
1242 struct gfs2_sbd *sdp = rgd->rd_sbd;
1243
1244 if (gh->gh_flags & GL_SKIP && sdp->sd_args.ar_rgrplvb)
1245 return 0;
Bob Peterson8b127d02014-01-16 08:52:16 -05001246 return gfs2_rgrp_bh_get(rgd);
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001247}
1248
David Teiglandb3b94fa2006-01-16 16:50:04 +00001249/**
Bob Peterson39b0f1e2015-06-05 08:38:57 -05001250 * gfs2_rgrp_brelse - Release RG bitmaps read in with gfs2_rgrp_bh_get()
1251 * @rgd: The resource group
David Teiglandb3b94fa2006-01-16 16:50:04 +00001252 *
1253 */
1254
Bob Peterson39b0f1e2015-06-05 08:38:57 -05001255void gfs2_rgrp_brelse(struct gfs2_rgrpd *rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001256{
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001257 int x, length = rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001258
David Teiglandb3b94fa2006-01-16 16:50:04 +00001259 for (x = 0; x < length; x++) {
1260 struct gfs2_bitmap *bi = rgd->rd_bits + x;
Benjamin Marzinski90306c42012-05-29 23:01:09 -05001261 if (bi->bi_bh) {
1262 brelse(bi->bi_bh);
1263 bi->bi_bh = NULL;
1264 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001265 }
1266
David Teiglandb3b94fa2006-01-16 16:50:04 +00001267}
1268
Bob Peterson39b0f1e2015-06-05 08:38:57 -05001269/**
1270 * gfs2_rgrp_go_unlock - Unlock a rgrp glock
1271 * @gh: The glock holder for the resource group
1272 *
1273 */
1274
1275void gfs2_rgrp_go_unlock(struct gfs2_holder *gh)
1276{
1277 struct gfs2_rgrpd *rgd = gh->gh_gl->gl_object;
1278 int demote_requested = test_bit(GLF_DEMOTE, &gh->gh_gl->gl_flags) |
1279 test_bit(GLF_PENDING_DEMOTE, &gh->gh_gl->gl_flags);
1280
1281 if (rgd && demote_requested)
1282 gfs2_rgrp_brelse(rgd);
1283}
1284
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001285int gfs2_rgrp_send_discards(struct gfs2_sbd *sdp, u64 offset,
Bob Peterson7c9ca622011-08-31 09:53:19 +01001286 struct buffer_head *bh,
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001287 const struct gfs2_bitmap *bi, unsigned minlen, u64 *ptrimmed)
Steven Whitehousef15ab562009-02-09 09:25:01 +00001288{
1289 struct super_block *sb = sdp->sd_vfs;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001290 u64 blk;
Steven Whitehouse64d576b2009-02-12 13:31:58 +00001291 sector_t start = 0;
Bob Petersonb2c87ca2013-03-22 10:07:24 -04001292 sector_t nr_blks = 0;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001293 int rv;
1294 unsigned int x;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001295 u32 trimmed = 0;
1296 u8 diff;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001297
1298 for (x = 0; x < bi->bi_len; x++) {
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001299 const u8 *clone = bi->bi_clone ? bi->bi_clone : bi->bi_bh->b_data;
1300 clone += bi->bi_offset;
1301 clone += x;
1302 if (bh) {
1303 const u8 *orig = bh->b_data + bi->bi_offset + x;
1304 diff = ~(*orig | (*orig >> 1)) & (*clone | (*clone >> 1));
1305 } else {
1306 diff = ~(*clone | (*clone >> 1));
1307 }
Steven Whitehousef15ab562009-02-09 09:25:01 +00001308 diff &= 0x55;
1309 if (diff == 0)
1310 continue;
1311 blk = offset + ((bi->bi_start + x) * GFS2_NBBY);
Steven Whitehousef15ab562009-02-09 09:25:01 +00001312 while(diff) {
1313 if (diff & 1) {
Bob Petersonb2c87ca2013-03-22 10:07:24 -04001314 if (nr_blks == 0)
Steven Whitehousef15ab562009-02-09 09:25:01 +00001315 goto start_new_extent;
Bob Petersonb2c87ca2013-03-22 10:07:24 -04001316 if ((start + nr_blks) != blk) {
1317 if (nr_blks >= minlen) {
1318 rv = sb_issue_discard(sb,
1319 start, nr_blks,
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001320 GFP_NOFS, 0);
1321 if (rv)
1322 goto fail;
Bob Petersonb2c87ca2013-03-22 10:07:24 -04001323 trimmed += nr_blks;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001324 }
Bob Petersonb2c87ca2013-03-22 10:07:24 -04001325 nr_blks = 0;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001326start_new_extent:
1327 start = blk;
1328 }
Bob Petersonb2c87ca2013-03-22 10:07:24 -04001329 nr_blks++;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001330 }
1331 diff >>= 2;
Bob Petersonb2c87ca2013-03-22 10:07:24 -04001332 blk++;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001333 }
1334 }
Bob Petersonb2c87ca2013-03-22 10:07:24 -04001335 if (nr_blks >= minlen) {
1336 rv = sb_issue_discard(sb, start, nr_blks, GFP_NOFS, 0);
Steven Whitehousef15ab562009-02-09 09:25:01 +00001337 if (rv)
1338 goto fail;
Bob Petersonb2c87ca2013-03-22 10:07:24 -04001339 trimmed += nr_blks;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001340 }
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001341 if (ptrimmed)
1342 *ptrimmed = trimmed;
1343 return 0;
1344
Steven Whitehousef15ab562009-02-09 09:25:01 +00001345fail:
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001346 if (sdp->sd_args.ar_discard)
Andreas Gruenbacheraf388162018-01-30 10:32:30 -07001347 fs_warn(sdp, "error %d on discard request, turning discards off for this filesystem\n", rv);
Steven Whitehousef15ab562009-02-09 09:25:01 +00001348 sdp->sd_args.ar_discard = 0;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001349 return -EIO;
1350}
1351
1352/**
1353 * gfs2_fitrim - Generate discard requests for unused bits of the filesystem
1354 * @filp: Any file on the filesystem
1355 * @argp: Pointer to the arguments (also used to pass result)
1356 *
1357 * Returns: 0 on success, otherwise error code
1358 */
1359
1360int gfs2_fitrim(struct file *filp, void __user *argp)
1361{
Al Viro496ad9a2013-01-23 17:07:38 -05001362 struct inode *inode = file_inode(filp);
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001363 struct gfs2_sbd *sdp = GFS2_SB(inode);
1364 struct request_queue *q = bdev_get_queue(sdp->sd_vfs->s_bdev);
1365 struct buffer_head *bh;
1366 struct gfs2_rgrpd *rgd;
1367 struct gfs2_rgrpd *rgd_end;
1368 struct gfs2_holder gh;
1369 struct fstrim_range r;
1370 int ret = 0;
1371 u64 amt;
1372 u64 trimmed = 0;
Lukas Czerner076f0fa2012-10-16 11:39:08 +02001373 u64 start, end, minlen;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001374 unsigned int x;
Lukas Czerner076f0fa2012-10-16 11:39:08 +02001375 unsigned bs_shift = sdp->sd_sb.sb_bsize_shift;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001376
1377 if (!capable(CAP_SYS_ADMIN))
1378 return -EPERM;
1379
1380 if (!blk_queue_discard(q))
1381 return -EOPNOTSUPP;
1382
Lukas Czerner3a238ad2012-10-16 11:39:07 +02001383 if (copy_from_user(&r, argp, sizeof(r)))
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001384 return -EFAULT;
1385
Bob Peterson5e2f7d62012-04-04 22:11:16 -04001386 ret = gfs2_rindex_update(sdp);
1387 if (ret)
1388 return ret;
1389
Lukas Czerner076f0fa2012-10-16 11:39:08 +02001390 start = r.start >> bs_shift;
1391 end = start + (r.len >> bs_shift);
1392 minlen = max_t(u64, r.minlen,
1393 q->limits.discard_granularity) >> bs_shift;
1394
Abhijith Das6a98c332013-06-19 17:03:29 -04001395 if (end <= start || minlen > sdp->sd_max_rg_data)
Lukas Czerner076f0fa2012-10-16 11:39:08 +02001396 return -EINVAL;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001397
Abhijith Das6a98c332013-06-19 17:03:29 -04001398 rgd = gfs2_blk2rgrpd(sdp, start, 0);
1399 rgd_end = gfs2_blk2rgrpd(sdp, end, 0);
1400
1401 if ((gfs2_rgrpd_get_first(sdp) == gfs2_rgrpd_get_next(rgd_end))
1402 && (start > rgd_end->rd_data0 + rgd_end->rd_data))
1403 return -EINVAL; /* start is beyond the end of the fs */
1404
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001405 while (1) {
1406
1407 ret = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &gh);
1408 if (ret)
1409 goto out;
1410
1411 if (!(rgd->rd_flags & GFS2_RGF_TRIMMED)) {
1412 /* Trim each bitmap in the rgrp */
1413 for (x = 0; x < rgd->rd_length; x++) {
1414 struct gfs2_bitmap *bi = rgd->rd_bits + x;
Lukas Czerner076f0fa2012-10-16 11:39:08 +02001415 ret = gfs2_rgrp_send_discards(sdp,
1416 rgd->rd_data0, NULL, bi, minlen,
1417 &amt);
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001418 if (ret) {
1419 gfs2_glock_dq_uninit(&gh);
1420 goto out;
1421 }
1422 trimmed += amt;
1423 }
1424
1425 /* Mark rgrp as having been trimmed */
1426 ret = gfs2_trans_begin(sdp, RES_RG_HDR, 0);
1427 if (ret == 0) {
1428 bh = rgd->rd_bits[0].bi_bh;
1429 rgd->rd_flags |= GFS2_RGF_TRIMMED;
Steven Whitehouse350a9b02012-12-14 12:36:02 +00001430 gfs2_trans_add_meta(rgd->rd_gl, bh);
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001431 gfs2_rgrp_out(rgd, bh->b_data);
1432 gfs2_trans_end(sdp);
1433 }
1434 }
1435 gfs2_glock_dq_uninit(&gh);
1436
1437 if (rgd == rgd_end)
1438 break;
1439
1440 rgd = gfs2_rgrpd_get_next(rgd);
1441 }
1442
1443out:
Abhijith Das6a98c332013-06-19 17:03:29 -04001444 r.len = trimmed << bs_shift;
Lukas Czerner3a238ad2012-10-16 11:39:07 +02001445 if (copy_to_user(argp, &r, sizeof(r)))
Steven Whitehouse66fc0612012-02-08 12:58:32 +00001446 return -EFAULT;
1447
1448 return ret;
Steven Whitehousef15ab562009-02-09 09:25:01 +00001449}
1450
David Teiglandb3b94fa2006-01-16 16:50:04 +00001451/**
Bob Peterson8e2e0042012-07-19 08:12:40 -04001452 * rs_insert - insert a new multi-block reservation into the rgrp's rb_tree
Bob Peterson8e2e0042012-07-19 08:12:40 -04001453 * @ip: the inode structure
Bob Peterson8e2e0042012-07-19 08:12:40 -04001454 *
Bob Peterson8e2e0042012-07-19 08:12:40 -04001455 */
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001456static void rs_insert(struct gfs2_inode *ip)
Bob Peterson8e2e0042012-07-19 08:12:40 -04001457{
1458 struct rb_node **newn, *parent = NULL;
1459 int rc;
Bob Petersona097dc7e2015-07-16 08:28:04 -05001460 struct gfs2_blkreserv *rs = &ip->i_res;
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01001461 struct gfs2_rgrpd *rgd = rs->rs_rbm.rgd;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001462 u64 fsblock = gfs2_rbm_to_block(&rs->rs_rbm);
1463
1464 BUG_ON(gfs2_rs_active(rs));
Bob Peterson8e2e0042012-07-19 08:12:40 -04001465
1466 spin_lock(&rgd->rd_rsspin);
1467 newn = &rgd->rd_rstree.rb_node;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001468 while (*newn) {
1469 struct gfs2_blkreserv *cur =
1470 rb_entry(*newn, struct gfs2_blkreserv, rs_node);
1471
1472 parent = *newn;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001473 rc = rs_cmp(fsblock, rs->rs_free, cur);
Bob Peterson8e2e0042012-07-19 08:12:40 -04001474 if (rc > 0)
1475 newn = &((*newn)->rb_right);
1476 else if (rc < 0)
1477 newn = &((*newn)->rb_left);
1478 else {
1479 spin_unlock(&rgd->rd_rsspin);
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001480 WARN_ON(1);
1481 return;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001482 }
1483 }
1484
Bob Peterson8e2e0042012-07-19 08:12:40 -04001485 rb_link_node(&rs->rs_node, parent, newn);
1486 rb_insert_color(&rs->rs_node, &rgd->rd_rstree);
1487
Bob Peterson8e2e0042012-07-19 08:12:40 -04001488 /* Do our rgrp accounting for the reservation */
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001489 rgd->rd_reserved += rs->rs_free; /* blocks reserved */
Bob Peterson8e2e0042012-07-19 08:12:40 -04001490 spin_unlock(&rgd->rd_rsspin);
Steven Whitehouse9e733d32012-08-23 15:37:59 +01001491 trace_gfs2_rs(rs, TRACE_RS_INSERT);
Bob Peterson8e2e0042012-07-19 08:12:40 -04001492}
1493
1494/**
Bob Petersonf6753df2018-05-30 14:05:15 -05001495 * rgd_free - return the number of free blocks we can allocate.
1496 * @rgd: the resource group
1497 *
1498 * This function returns the number of free blocks for an rgrp.
1499 * That's the clone-free blocks (blocks that are free, not including those
1500 * still being used for unlinked files that haven't been deleted.)
1501 *
1502 * It also subtracts any blocks reserved by someone else, but does not
1503 * include free blocks that are still part of our current reservation,
1504 * because obviously we can (and will) allocate them.
1505 */
1506static inline u32 rgd_free(struct gfs2_rgrpd *rgd, struct gfs2_blkreserv *rs)
1507{
1508 u32 tot_reserved, tot_free;
1509
1510 if (WARN_ON_ONCE(rgd->rd_reserved < rs->rs_free))
1511 return 0;
1512 tot_reserved = rgd->rd_reserved - rs->rs_free;
1513
1514 if (rgd->rd_free_clone < tot_reserved)
1515 tot_reserved = 0;
1516
1517 tot_free = rgd->rd_free_clone - tot_reserved;
1518
1519 return tot_free;
1520}
1521
1522/**
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001523 * rg_mblk_search - find a group of multiple free blocks to form a reservation
Bob Peterson8e2e0042012-07-19 08:12:40 -04001524 * @rgd: the resource group descriptor
Bob Peterson8e2e0042012-07-19 08:12:40 -04001525 * @ip: pointer to the inode for which we're reserving blocks
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001526 * @ap: the allocation parameters
Bob Peterson8e2e0042012-07-19 08:12:40 -04001527 *
Bob Peterson8e2e0042012-07-19 08:12:40 -04001528 */
1529
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001530static void rg_mblk_search(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip,
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001531 const struct gfs2_alloc_parms *ap)
Bob Peterson8e2e0042012-07-19 08:12:40 -04001532{
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001533 struct gfs2_rbm rbm = { .rgd = rgd, };
1534 u64 goal;
Bob Petersona097dc7e2015-07-16 08:28:04 -05001535 struct gfs2_blkreserv *rs = &ip->i_res;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001536 u32 extlen;
Bob Petersonf6753df2018-05-30 14:05:15 -05001537 u32 free_blocks = rgd_free(rgd, rs);
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001538 int ret;
Bob Petersonaf21ca82013-05-14 13:04:29 -04001539 struct inode *inode = &ip->i_inode;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001540
Bob Petersonaf21ca82013-05-14 13:04:29 -04001541 if (S_ISDIR(inode->i_mode))
1542 extlen = 1;
1543 else {
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001544 extlen = max_t(u32, atomic_read(&rs->rs_sizehint), ap->target);
Bob Petersonaf21ca82013-05-14 13:04:29 -04001545 extlen = clamp(extlen, RGRP_RSRV_MINBLKS, free_blocks);
1546 }
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001547 if ((rgd->rd_free_clone < rgd->rd_reserved) || (free_blocks < extlen))
Steven Whitehousec743ffd2012-08-25 18:21:47 +01001548 return;
1549
Bob Peterson8e2e0042012-07-19 08:12:40 -04001550 /* Find bitmap block that contains bits for goal block */
1551 if (rgrp_contains_block(rgd, ip->i_goal))
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001552 goal = ip->i_goal;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001553 else
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001554 goal = rgd->rd_last_alloc + rgd->rd_data0;
Steven Whitehousec743ffd2012-08-25 18:21:47 +01001555
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001556 if (WARN_ON(gfs2_rbm_from_block(&rbm, goal)))
1557 return;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001558
Bob Peterson8381e602016-05-02 09:42:49 -05001559 ret = gfs2_rbm_find(&rbm, GFS2_BLKST_FREE, &extlen, ip, true);
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001560 if (ret == 0) {
1561 rs->rs_rbm = rbm;
1562 rs->rs_free = extlen;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001563 rs_insert(ip);
Bob Peterson13d2eb02012-12-20 13:23:04 -05001564 } else {
1565 if (goal == rgd->rd_last_alloc + rgd->rd_data0)
1566 rgd->rd_last_alloc = 0;
Bob Peterson8e2e0042012-07-19 08:12:40 -04001567 }
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001568}
1569
David Teiglandb3b94fa2006-01-16 16:50:04 +00001570/**
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001571 * gfs2_next_unreserved_block - Return next block that is not reserved
1572 * @rgd: The resource group
1573 * @block: The starting block
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001574 * @length: The required length
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001575 * @ip: Ignore any reservations for this inode
1576 *
1577 * If the block does not appear in any reservation, then return the
1578 * block number unchanged. If it does appear in the reservation, then
1579 * keep looking through the tree of reservations in order to find the
1580 * first block number which is not reserved.
1581 */
1582
1583static u64 gfs2_next_unreserved_block(struct gfs2_rgrpd *rgd, u64 block,
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001584 u32 length,
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001585 const struct gfs2_inode *ip)
1586{
1587 struct gfs2_blkreserv *rs;
1588 struct rb_node *n;
1589 int rc;
1590
1591 spin_lock(&rgd->rd_rsspin);
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001592 n = rgd->rd_rstree.rb_node;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001593 while (n) {
1594 rs = rb_entry(n, struct gfs2_blkreserv, rs_node);
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001595 rc = rs_cmp(block, length, rs);
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001596 if (rc < 0)
1597 n = n->rb_left;
1598 else if (rc > 0)
1599 n = n->rb_right;
1600 else
1601 break;
1602 }
1603
1604 if (n) {
Bob Petersona097dc7e2015-07-16 08:28:04 -05001605 while ((rs_cmp(block, length, rs) == 0) && (&ip->i_res != rs)) {
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001606 block = gfs2_rbm_to_block(&rs->rs_rbm) + rs->rs_free;
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001607 n = n->rb_right;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001608 if (n == NULL)
1609 break;
1610 rs = rb_entry(n, struct gfs2_blkreserv, rs_node);
1611 }
1612 }
1613
1614 spin_unlock(&rgd->rd_rsspin);
1615 return block;
1616}
1617
1618/**
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001619 * gfs2_reservation_check_and_update - Check for reservations during block alloc
1620 * @rbm: The current position in the resource group
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001621 * @ip: The inode for which we are searching for blocks
1622 * @minext: The minimum extent length
Bob Peterson5ce13432013-11-06 10:55:52 -05001623 * @maxext: A pointer to the maximum extent structure
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001624 *
1625 * This checks the current position in the rgrp to see whether there is
1626 * a reservation covering this block. If not then this function is a
1627 * no-op. If there is, then the position is moved to the end of the
1628 * contiguous reservation(s) so that we are pointing at the first
1629 * non-reserved block.
1630 *
1631 * Returns: 0 if no reservation, 1 if @rbm has changed, otherwise an error
1632 */
1633
1634static int gfs2_reservation_check_and_update(struct gfs2_rbm *rbm,
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001635 const struct gfs2_inode *ip,
Bob Peterson5ce13432013-11-06 10:55:52 -05001636 u32 minext,
1637 struct gfs2_extent *maxext)
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001638{
1639 u64 block = gfs2_rbm_to_block(rbm);
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001640 u32 extlen = 1;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001641 u64 nblock;
1642 int ret;
1643
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001644 /*
1645 * If we have a minimum extent length, then skip over any extent
1646 * which is less than the min extent length in size.
1647 */
1648 if (minext) {
1649 extlen = gfs2_free_extlen(rbm, minext);
Bob Peterson5ce13432013-11-06 10:55:52 -05001650 if (extlen <= maxext->len)
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001651 goto fail;
1652 }
1653
1654 /*
1655 * Check the extent which has been found against the reservations
1656 * and skip if parts of it are already reserved
1657 */
1658 nblock = gfs2_next_unreserved_block(rbm->rgd, block, extlen, ip);
Bob Peterson5ce13432013-11-06 10:55:52 -05001659 if (nblock == block) {
1660 if (!minext || extlen >= minext)
1661 return 0;
1662
1663 if (extlen > maxext->len) {
1664 maxext->len = extlen;
1665 maxext->rbm = *rbm;
1666 }
Steven Whitehouseff7f4cb2012-09-10 10:03:50 +01001667fail:
Bob Peterson5ce13432013-11-06 10:55:52 -05001668 nblock = block + extlen;
1669 }
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001670 ret = gfs2_rbm_from_block(rbm, nblock);
1671 if (ret < 0)
1672 return ret;
1673 return 1;
1674}
1675
1676/**
1677 * gfs2_rbm_find - Look for blocks of a particular state
1678 * @rbm: Value/result starting position and final position
1679 * @state: The state which we want to find
Bob Peterson5ce13432013-11-06 10:55:52 -05001680 * @minext: Pointer to the requested extent length (NULL for a single block)
1681 * This is updated to be the actual reservation size.
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001682 * @ip: If set, check for reservations
1683 * @nowrap: Stop looking at the end of the rgrp, rather than wrapping
1684 * around until we've reached the starting point.
1685 *
1686 * Side effects:
1687 * - If looking for free blocks, we set GBF_FULL on each bitmap which
1688 * has no free blocks in it.
Bob Peterson5ea50502013-11-25 11:16:25 +00001689 * - If looking for free blocks, we set rd_extfail_pt on each rgrp which
1690 * has come up short on a free block search.
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001691 *
1692 * Returns: 0 on success, -ENOSPC if there is no block of the requested state
1693 */
1694
Bob Peterson5ce13432013-11-06 10:55:52 -05001695static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state, u32 *minext,
Bob Peterson8381e602016-05-02 09:42:49 -05001696 const struct gfs2_inode *ip, bool nowrap)
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001697{
1698 struct buffer_head *bh;
Bob Petersone579ed42013-09-17 13:12:15 -04001699 int initial_bii;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001700 u32 initial_offset;
Bob Peterson5ea50502013-11-25 11:16:25 +00001701 int first_bii = rbm->bii;
1702 u32 first_offset = rbm->offset;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001703 u32 offset;
1704 u8 *buffer;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001705 int n = 0;
1706 int iters = rbm->rgd->rd_length;
1707 int ret;
Bob Petersone579ed42013-09-17 13:12:15 -04001708 struct gfs2_bitmap *bi;
Bob Peterson5ce13432013-11-06 10:55:52 -05001709 struct gfs2_extent maxext = { .rbm.rgd = rbm->rgd, };
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001710
1711 /* If we are not starting at the beginning of a bitmap, then we
1712 * need to add one to the bitmap count to ensure that we search
1713 * the starting bitmap twice.
1714 */
1715 if (rbm->offset != 0)
1716 iters++;
1717
1718 while(1) {
Bob Petersone579ed42013-09-17 13:12:15 -04001719 bi = rbm_bi(rbm);
Bob Petersone79e0e12018-06-18 13:24:13 -05001720 if ((ip == NULL || !gfs2_rs_active(&ip->i_res)) &&
1721 test_bit(GBF_FULL, &bi->bi_flags) &&
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001722 (state == GFS2_BLKST_FREE))
1723 goto next_bitmap;
1724
Bob Petersone579ed42013-09-17 13:12:15 -04001725 bh = bi->bi_bh;
1726 buffer = bh->b_data + bi->bi_offset;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001727 WARN_ON(!buffer_uptodate(bh));
Bob Petersone579ed42013-09-17 13:12:15 -04001728 if (state != GFS2_BLKST_UNLINKED && bi->bi_clone)
1729 buffer = bi->bi_clone + bi->bi_offset;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001730 initial_offset = rbm->offset;
Bob Petersone579ed42013-09-17 13:12:15 -04001731 offset = gfs2_bitfit(buffer, bi->bi_len, rbm->offset, state);
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001732 if (offset == BFITNOENT)
1733 goto bitmap_full;
1734 rbm->offset = offset;
1735 if (ip == NULL)
1736 return 0;
1737
Bob Petersone579ed42013-09-17 13:12:15 -04001738 initial_bii = rbm->bii;
Bob Peterson5ce13432013-11-06 10:55:52 -05001739 ret = gfs2_reservation_check_and_update(rbm, ip,
1740 minext ? *minext : 0,
1741 &maxext);
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001742 if (ret == 0)
1743 return 0;
1744 if (ret > 0) {
Bob Petersone579ed42013-09-17 13:12:15 -04001745 n += (rbm->bii - initial_bii);
Bob Peterson8d8b7522012-08-07 13:28:17 -04001746 goto next_iter;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001747 }
Steven Whitehouse5d50d532012-08-07 13:47:12 +01001748 if (ret == -E2BIG) {
Bob Petersone579ed42013-09-17 13:12:15 -04001749 rbm->bii = 0;
Steven Whitehouse5d50d532012-08-07 13:47:12 +01001750 rbm->offset = 0;
Bob Petersone579ed42013-09-17 13:12:15 -04001751 n += (rbm->bii - initial_bii);
Steven Whitehouse5d50d532012-08-07 13:47:12 +01001752 goto res_covered_end_of_rgrp;
1753 }
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001754 return ret;
1755
1756bitmap_full: /* Mark bitmap as full and fall through */
Fabian Fredericka3e32132015-05-18 15:23:03 -05001757 if ((state == GFS2_BLKST_FREE) && initial_offset == 0)
Bob Petersone579ed42013-09-17 13:12:15 -04001758 set_bit(GBF_FULL, &bi->bi_flags);
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001759
1760next_bitmap: /* Find next bitmap in the rgrp */
1761 rbm->offset = 0;
Bob Petersone579ed42013-09-17 13:12:15 -04001762 rbm->bii++;
1763 if (rbm->bii == rbm->rgd->rd_length)
1764 rbm->bii = 0;
Steven Whitehouse5d50d532012-08-07 13:47:12 +01001765res_covered_end_of_rgrp:
Bob Petersone579ed42013-09-17 13:12:15 -04001766 if ((rbm->bii == 0) && nowrap)
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001767 break;
1768 n++;
Bob Peterson8d8b7522012-08-07 13:28:17 -04001769next_iter:
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001770 if (n >= iters)
1771 break;
1772 }
1773
Bob Peterson5ce13432013-11-06 10:55:52 -05001774 if (minext == NULL || state != GFS2_BLKST_FREE)
1775 return -ENOSPC;
1776
Bob Peterson5ea50502013-11-25 11:16:25 +00001777 /* If the extent was too small, and it's smaller than the smallest
1778 to have failed before, remember for future reference that it's
1779 useless to search this rgrp again for this amount or more. */
1780 if ((first_offset == 0) && (first_bii == 0) &&
1781 (*minext < rbm->rgd->rd_extfail_pt))
1782 rbm->rgd->rd_extfail_pt = *minext;
1783
Bob Peterson5ce13432013-11-06 10:55:52 -05001784 /* If the maximum extent we found is big enough to fulfill the
1785 minimum requirements, use it anyway. */
1786 if (maxext.len) {
1787 *rbm = maxext.rbm;
1788 *minext = maxext.len;
1789 return 0;
1790 }
1791
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001792 return -ENOSPC;
1793}
1794
1795/**
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001796 * try_rgrp_unlink - Look for any unlinked, allocated, but unused inodes
1797 * @rgd: The rgrp
Bob Peterson886b1412012-04-11 13:03:52 -04001798 * @last_unlinked: block address of the last dinode we unlinked
1799 * @skip: block address we should explicitly not unlink
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001800 *
Bob Peterson1a0eae82010-04-14 11:58:16 -04001801 * Returns: 0 if no error
1802 * The inode, if one has been found, in inode.
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001803 */
1804
Steven Whitehouse044b9412010-11-03 20:01:07 +00001805static void try_rgrp_unlink(struct gfs2_rgrpd *rgd, u64 *last_unlinked, u64 skip)
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001806{
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001807 u64 block;
Bob Peterson5f3eae72007-08-08 16:52:09 -05001808 struct gfs2_sbd *sdp = rgd->rd_sbd;
Steven Whitehouse044b9412010-11-03 20:01:07 +00001809 struct gfs2_glock *gl;
1810 struct gfs2_inode *ip;
1811 int error;
1812 int found = 0;
Bob Petersone579ed42013-09-17 13:12:15 -04001813 struct gfs2_rbm rbm = { .rgd = rgd, .bii = 0, .offset = 0 };
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001814
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001815 while (1) {
Bob Peterson5f3eae72007-08-08 16:52:09 -05001816 down_write(&sdp->sd_log_flush_lock);
Bob Peterson5ce13432013-11-06 10:55:52 -05001817 error = gfs2_rbm_find(&rbm, GFS2_BLKST_UNLINKED, NULL, NULL,
Bob Peterson8381e602016-05-02 09:42:49 -05001818 true);
Bob Peterson5f3eae72007-08-08 16:52:09 -05001819 up_write(&sdp->sd_log_flush_lock);
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001820 if (error == -ENOSPC)
1821 break;
1822 if (WARN_ON_ONCE(error))
Bob Peterson24c73872007-07-12 16:58:50 -05001823 break;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05001824
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001825 block = gfs2_rbm_to_block(&rbm);
1826 if (gfs2_rbm_from_block(&rbm, block + 1))
1827 break;
1828 if (*last_unlinked != NO_BLOCK && block <= *last_unlinked)
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001829 continue;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001830 if (block == skip)
Steven Whitehouse1e19a192009-07-10 21:13:38 +01001831 continue;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01001832 *last_unlinked = block;
Steven Whitehouse044b9412010-11-03 20:01:07 +00001833
Bob Peterson5ea31bc2015-12-04 12:57:00 -06001834 error = gfs2_glock_get(sdp, block, &gfs2_iopen_glops, CREATE, &gl);
Steven Whitehouse044b9412010-11-03 20:01:07 +00001835 if (error)
1836 continue;
1837
1838 /* If the inode is already in cache, we can ignore it here
1839 * because the existing inode disposal code will deal with
1840 * it when all refs have gone away. Accessing gl_object like
1841 * this is not safe in general. Here it is ok because we do
1842 * not dereference the pointer, and we only need an approx
1843 * answer to whether it is NULL or not.
1844 */
1845 ip = gl->gl_object;
1846
1847 if (ip || queue_work(gfs2_delete_workqueue, &gl->gl_delete) == 0)
1848 gfs2_glock_put(gl);
1849 else
1850 found++;
1851
1852 /* Limit reclaim to sensible number of tasks */
Bob Peterson44ad37d2011-03-17 16:19:58 -04001853 if (found > NR_CPUS)
Steven Whitehouse044b9412010-11-03 20:01:07 +00001854 return;
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001855 }
1856
1857 rgd->rd_flags &= ~GFS2_RDF_CHECK;
Steven Whitehouse044b9412010-11-03 20:01:07 +00001858 return;
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001859}
1860
Steven Whitehousebcd97c02012-10-31 09:58:42 +00001861/**
1862 * gfs2_rgrp_congested - Use stats to figure out whether an rgrp is congested
1863 * @rgd: The rgrp in question
1864 * @loops: An indication of how picky we can be (0=very, 1=less so)
1865 *
1866 * This function uses the recently added glock statistics in order to
1867 * figure out whether a parciular resource group is suffering from
1868 * contention from multiple nodes. This is done purely on the basis
1869 * of timings, since this is the only data we have to work with and
1870 * our aim here is to reject a resource group which is highly contended
1871 * but (very important) not to do this too often in order to ensure that
1872 * we do not land up introducing fragmentation by changing resource
1873 * groups when not actually required.
1874 *
1875 * The calculation is fairly simple, we want to know whether the SRTTB
1876 * (i.e. smoothed round trip time for blocking operations) to acquire
1877 * the lock for this rgrp's glock is significantly greater than the
1878 * time taken for resource groups on average. We introduce a margin in
1879 * the form of the variable @var which is computed as the sum of the two
1880 * respective variences, and multiplied by a factor depending on @loops
1881 * and whether we have a lot of data to base the decision on. This is
1882 * then tested against the square difference of the means in order to
1883 * decide whether the result is statistically significant or not.
1884 *
1885 * Returns: A boolean verdict on the congestion status
1886 */
1887
1888static bool gfs2_rgrp_congested(const struct gfs2_rgrpd *rgd, int loops)
1889{
1890 const struct gfs2_glock *gl = rgd->rd_gl;
Bob Peterson15562c42015-03-16 11:52:05 -05001891 const struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Steven Whitehousebcd97c02012-10-31 09:58:42 +00001892 struct gfs2_lkstats *st;
Ben Hutchings4d207132015-08-27 12:51:45 -05001893 u64 r_dcount, l_dcount;
1894 u64 l_srttb, a_srttb = 0;
Steven Whitehousebcd97c02012-10-31 09:58:42 +00001895 s64 srttb_diff;
Ben Hutchings4d207132015-08-27 12:51:45 -05001896 u64 sqr_diff;
1897 u64 var;
Bob Peterson0166b192015-04-22 11:24:12 -05001898 int cpu, nonzero = 0;
Steven Whitehousebcd97c02012-10-31 09:58:42 +00001899
1900 preempt_disable();
Bob Petersonf4a3ae92014-11-19 12:27:11 -06001901 for_each_present_cpu(cpu) {
1902 st = &per_cpu_ptr(sdp->sd_lkstats, cpu)->lkstats[LM_TYPE_RGRP];
Bob Peterson0166b192015-04-22 11:24:12 -05001903 if (st->stats[GFS2_LKS_SRTTB]) {
1904 a_srttb += st->stats[GFS2_LKS_SRTTB];
1905 nonzero++;
1906 }
Bob Petersonf4a3ae92014-11-19 12:27:11 -06001907 }
Steven Whitehousebcd97c02012-10-31 09:58:42 +00001908 st = &this_cpu_ptr(sdp->sd_lkstats)->lkstats[LM_TYPE_RGRP];
Bob Peterson0166b192015-04-22 11:24:12 -05001909 if (nonzero)
1910 do_div(a_srttb, nonzero);
Steven Whitehousebcd97c02012-10-31 09:58:42 +00001911 r_dcount = st->stats[GFS2_LKS_DCOUNT];
1912 var = st->stats[GFS2_LKS_SRTTVARB] +
1913 gl->gl_stats.stats[GFS2_LKS_SRTTVARB];
1914 preempt_enable();
1915
1916 l_srttb = gl->gl_stats.stats[GFS2_LKS_SRTTB];
1917 l_dcount = gl->gl_stats.stats[GFS2_LKS_DCOUNT];
1918
Bob Petersonf4a3ae92014-11-19 12:27:11 -06001919 if ((l_dcount < 1) || (r_dcount < 1) || (a_srttb == 0))
Steven Whitehousebcd97c02012-10-31 09:58:42 +00001920 return false;
1921
Bob Petersonf4a3ae92014-11-19 12:27:11 -06001922 srttb_diff = a_srttb - l_srttb;
Steven Whitehousebcd97c02012-10-31 09:58:42 +00001923 sqr_diff = srttb_diff * srttb_diff;
1924
1925 var *= 2;
1926 if (l_dcount < 8 || r_dcount < 8)
1927 var *= 2;
1928 if (loops == 1)
1929 var *= 2;
1930
1931 return ((srttb_diff < 0) && (sqr_diff > var));
1932}
1933
1934/**
1935 * gfs2_rgrp_used_recently
1936 * @rs: The block reservation with the rgrp to test
1937 * @msecs: The time limit in milliseconds
1938 *
1939 * Returns: True if the rgrp glock has been used within the time limit
1940 */
1941static bool gfs2_rgrp_used_recently(const struct gfs2_blkreserv *rs,
1942 u64 msecs)
1943{
1944 u64 tdiff;
1945
1946 tdiff = ktime_to_ns(ktime_sub(ktime_get_real(),
1947 rs->rs_rbm.rgd->rd_gl->gl_dstamp));
1948
1949 return tdiff > (msecs * 1000 * 1000);
1950}
1951
Steven Whitehouse9dbe9612012-10-31 10:37:10 +00001952static u32 gfs2_orlov_skip(const struct gfs2_inode *ip)
1953{
1954 const struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
1955 u32 skip;
1956
1957 get_random_bytes(&skip, sizeof(skip));
1958 return skip % sdp->sd_rgrps;
1959}
1960
Steven Whitehousec743ffd2012-08-25 18:21:47 +01001961static bool gfs2_select_rgrp(struct gfs2_rgrpd **pos, const struct gfs2_rgrpd *begin)
1962{
1963 struct gfs2_rgrpd *rgd = *pos;
Steven Whitehouseaa8920c2012-11-13 14:50:35 +00001964 struct gfs2_sbd *sdp = rgd->rd_sbd;
Steven Whitehousec743ffd2012-08-25 18:21:47 +01001965
1966 rgd = gfs2_rgrpd_get_next(rgd);
1967 if (rgd == NULL)
Steven Whitehouseaa8920c2012-11-13 14:50:35 +00001968 rgd = gfs2_rgrpd_get_first(sdp);
Steven Whitehousec743ffd2012-08-25 18:21:47 +01001969 *pos = rgd;
1970 if (rgd != begin) /* If we didn't wrap */
1971 return true;
1972 return false;
1973}
1974
Steven Whitehousec8cdf472007-06-08 10:05:33 +01001975/**
Bob Peterson0e27c182014-10-29 08:02:28 -05001976 * fast_to_acquire - determine if a resource group will be fast to acquire
1977 *
1978 * If this is one of our preferred rgrps, it should be quicker to acquire,
1979 * because we tried to set ourselves up as dlm lock master.
1980 */
1981static inline int fast_to_acquire(struct gfs2_rgrpd *rgd)
1982{
1983 struct gfs2_glock *gl = rgd->rd_gl;
1984
1985 if (gl->gl_state != LM_ST_UNLOCKED && list_empty(&gl->gl_holders) &&
1986 !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
1987 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1988 return 1;
1989 if (rgd->rd_flags & GFS2_RDF_PREFERRED)
1990 return 1;
1991 return 0;
1992}
1993
1994/**
Bob Peterson666d1d82012-06-13 23:03:56 -04001995 * gfs2_inplace_reserve - Reserve space in the filesystem
David Teiglandb3b94fa2006-01-16 16:50:04 +00001996 * @ip: the inode to reserve space for
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001997 * @ap: the allocation parameters
David Teiglandb3b94fa2006-01-16 16:50:04 +00001998 *
Abhi Das25435e52015-03-18 12:04:37 -05001999 * We try our best to find an rgrp that has at least ap->target blocks
2000 * available. After a couple of passes (loops == 2), the prospects of finding
2001 * such an rgrp diminish. At this stage, we return the first rgrp that has
2002 * atleast ap->min_target blocks available. Either way, we set ap->allowed to
2003 * the number of blocks available in the chosen rgrp.
2004 *
2005 * Returns: 0 on success,
2006 * -ENOMEM if a suitable rgrp can't be found
2007 * errno otherwise
David Teiglandb3b94fa2006-01-16 16:50:04 +00002008 */
2009
Abhi Das25435e52015-03-18 12:04:37 -05002010int gfs2_inplace_reserve(struct gfs2_inode *ip, struct gfs2_alloc_parms *ap)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002011{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002012 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Bob Peterson8e2e0042012-07-19 08:12:40 -04002013 struct gfs2_rgrpd *begin = NULL;
Bob Petersona097dc7e2015-07-16 08:28:04 -05002014 struct gfs2_blkreserv *rs = &ip->i_res;
Steven Whitehousebcd97c02012-10-31 09:58:42 +00002015 int error = 0, rg_locked, flags = 0;
Bob Peterson666d1d82012-06-13 23:03:56 -04002016 u64 last_unlinked = NO_BLOCK;
Bob Peterson7c9ca622011-08-31 09:53:19 +01002017 int loops = 0;
Bob Petersonf6753df2018-05-30 14:05:15 -05002018 u32 free_blocks, skip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002019
Benjamin Marzinski90306c42012-05-29 23:01:09 -05002020 if (sdp->sd_args.ar_rgrplvb)
2021 flags |= GL_SKIP;
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01002022 if (gfs2_assert_warn(sdp, ap->target))
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002023 return -EINVAL;
Bob Peterson8e2e0042012-07-19 08:12:40 -04002024 if (gfs2_rs_active(rs)) {
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002025 begin = rs->rs_rbm.rgd;
Andreas Gruenbacherb7eba892018-06-21 07:42:37 -05002026 } else if (rs->rs_rbm.rgd &&
2027 rgrp_contains_block(rs->rs_rbm.rgd, ip->i_goal)) {
2028 begin = rs->rs_rbm.rgd;
Bob Peterson8e2e0042012-07-19 08:12:40 -04002029 } else {
Abhi Das00a158b2014-09-18 21:40:28 -05002030 check_and_update_goal(ip);
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002031 rs->rs_rbm.rgd = begin = gfs2_blk2rgrpd(sdp, ip->i_goal, 1);
Bob Peterson8e2e0042012-07-19 08:12:40 -04002032 }
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01002033 if (S_ISDIR(ip->i_inode.i_mode) && (ap->aflags & GFS2_AF_ORLOV))
Steven Whitehouse9dbe9612012-10-31 10:37:10 +00002034 skip = gfs2_orlov_skip(ip);
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002035 if (rs->rs_rbm.rgd == NULL)
Bob Peterson7c9ca622011-08-31 09:53:19 +01002036 return -EBADSLT;
2037
2038 while (loops < 3) {
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002039 rg_locked = 1;
Abhijith Das292c8c12007-11-29 14:13:54 -06002040
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002041 if (!gfs2_glock_is_locked_by_me(rs->rs_rbm.rgd->rd_gl)) {
2042 rg_locked = 0;
Steven Whitehouse9dbe9612012-10-31 10:37:10 +00002043 if (skip && skip--)
2044 goto next_rgrp;
Bob Peterson0e27c182014-10-29 08:02:28 -05002045 if (!gfs2_rs_active(rs)) {
2046 if (loops == 0 &&
2047 !fast_to_acquire(rs->rs_rbm.rgd))
2048 goto next_rgrp;
2049 if ((loops < 2) &&
2050 gfs2_rgrp_used_recently(rs, 1000) &&
2051 gfs2_rgrp_congested(rs->rs_rbm.rgd, loops))
2052 goto next_rgrp;
2053 }
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002054 error = gfs2_glock_nq_init(rs->rs_rbm.rgd->rd_gl,
Bob Peterson8e2e0042012-07-19 08:12:40 -04002055 LM_ST_EXCLUSIVE, flags,
2056 &rs->rs_rgd_gh);
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002057 if (unlikely(error))
2058 return error;
Steven Whitehousebcd97c02012-10-31 09:58:42 +00002059 if (!gfs2_rs_active(rs) && (loops < 2) &&
2060 gfs2_rgrp_congested(rs->rs_rbm.rgd, loops))
2061 goto skip_rgrp;
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002062 if (sdp->sd_args.ar_rgrplvb) {
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002063 error = update_rgrp_lvb(rs->rs_rbm.rgd);
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002064 if (unlikely(error)) {
Benjamin Marzinski90306c42012-05-29 23:01:09 -05002065 gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
2066 return error;
2067 }
2068 }
Abhijith Das292c8c12007-11-29 14:13:54 -06002069 }
Bob Peterson666d1d82012-06-13 23:03:56 -04002070
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002071 /* Skip unuseable resource groups */
Bob Peterson5ea50502013-11-25 11:16:25 +00002072 if ((rs->rs_rbm.rgd->rd_flags & (GFS2_RGF_NOALLOC |
2073 GFS2_RDF_ERROR)) ||
Abhi Das25435e52015-03-18 12:04:37 -05002074 (loops == 0 && ap->target > rs->rs_rbm.rgd->rd_extfail_pt))
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002075 goto skip_rgrp;
2076
2077 if (sdp->sd_args.ar_rgrplvb)
2078 gfs2_rgrp_bh_get(rs->rs_rbm.rgd);
2079
2080 /* Get a reservation if we don't already have one */
2081 if (!gfs2_rs_active(rs))
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01002082 rg_mblk_search(rs->rs_rbm.rgd, ip, ap);
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002083
2084 /* Skip rgrps when we can't get a reservation on first pass */
2085 if (!gfs2_rs_active(rs) && (loops < 1))
2086 goto check_rgrp;
2087
2088 /* If rgrp has enough free space, use it */
Bob Petersonf6753df2018-05-30 14:05:15 -05002089 free_blocks = rgd_free(rs->rs_rbm.rgd, rs);
2090 if (free_blocks >= ap->target ||
Abhi Das25435e52015-03-18 12:04:37 -05002091 (loops == 2 && ap->min_target &&
Bob Petersonf6753df2018-05-30 14:05:15 -05002092 free_blocks >= ap->min_target)) {
2093 ap->allowed = free_blocks;
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002094 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002095 }
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002096check_rgrp:
2097 /* Check for unlinked inodes which can be reclaimed */
2098 if (rs->rs_rbm.rgd->rd_flags & GFS2_RDF_CHECK)
2099 try_rgrp_unlink(rs->rs_rbm.rgd, &last_unlinked,
2100 ip->i_no_addr);
2101skip_rgrp:
Bob Peterson1330edb2013-11-06 10:58:00 -05002102 /* Drop reservation, if we couldn't use reserved rgrp */
2103 if (gfs2_rs_active(rs))
2104 gfs2_rs_deltree(rs);
2105
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002106 /* Unlock rgrp if required */
2107 if (!rg_locked)
2108 gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
2109next_rgrp:
2110 /* Find the next rgrp, and continue looking */
2111 if (gfs2_select_rgrp(&rs->rs_rbm.rgd, begin))
2112 continue;
Steven Whitehouse9dbe9612012-10-31 10:37:10 +00002113 if (skip)
2114 continue;
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002115
2116 /* If we've scanned all the rgrps, but found no free blocks
2117 * then this checks for some less likely conditions before
2118 * trying again.
2119 */
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002120 loops++;
2121 /* Check that fs hasn't grown if writing to rindex */
2122 if (ip == GFS2_I(sdp->sd_rindex) && !sdp->sd_rindex_uptodate) {
2123 error = gfs2_ri_update(ip);
2124 if (error)
2125 return error;
2126 }
2127 /* Flushing the log may release space */
2128 if (loops == 2)
Bob Peterson805c09072018-01-08 10:34:17 -05002129 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_NORMAL |
2130 GFS2_LFC_INPLACE_RESERVE);
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002131 }
2132
2133 return -ENOSPC;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002134}
2135
2136/**
2137 * gfs2_inplace_release - release an inplace reservation
2138 * @ip: the inode the reservation was taken out on
2139 *
2140 * Release a reservation made by gfs2_inplace_reserve().
2141 */
2142
2143void gfs2_inplace_release(struct gfs2_inode *ip)
2144{
Bob Petersona097dc7e2015-07-16 08:28:04 -05002145 struct gfs2_blkreserv *rs = &ip->i_res;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002146
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05002147 if (gfs2_holder_initialized(&rs->rs_rgd_gh))
Bob Peterson564e12b2011-11-21 13:36:17 -05002148 gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002149}
2150
2151/**
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002152 * gfs2_alloc_extent - allocate an extent from a given bitmap
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002153 * @rbm: the resource group information
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002154 * @dinode: TRUE if the first block we allocate is for a dinode
Steven Whitehousec04a2ef2012-08-13 11:14:57 +01002155 * @n: The extent length (value/result)
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002156 *
Steven Whitehousec04a2ef2012-08-13 11:14:57 +01002157 * Add the bitmap buffer to the transaction.
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002158 * Set the found bits to @new_state to change block's allocation state.
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002159 */
Steven Whitehousec04a2ef2012-08-13 11:14:57 +01002160static void gfs2_alloc_extent(const struct gfs2_rbm *rbm, bool dinode,
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002161 unsigned int *n)
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002162{
Steven Whitehousec04a2ef2012-08-13 11:14:57 +01002163 struct gfs2_rbm pos = { .rgd = rbm->rgd, };
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002164 const unsigned int elen = *n;
Steven Whitehousec04a2ef2012-08-13 11:14:57 +01002165 u64 block;
2166 int ret;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002167
Steven Whitehousec04a2ef2012-08-13 11:14:57 +01002168 *n = 1;
2169 block = gfs2_rbm_to_block(rbm);
Bob Petersone579ed42013-09-17 13:12:15 -04002170 gfs2_trans_add_meta(rbm->rgd->rd_gl, rbm_bi(rbm)->bi_bh);
Steven Whitehouse3e6339d2012-08-13 11:37:51 +01002171 gfs2_setbit(rbm, true, dinode ? GFS2_BLKST_DINODE : GFS2_BLKST_USED);
Steven Whitehousec04a2ef2012-08-13 11:14:57 +01002172 block++;
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01002173 while (*n < elen) {
Steven Whitehousec04a2ef2012-08-13 11:14:57 +01002174 ret = gfs2_rbm_from_block(&pos, block);
Bob Petersondffe12a2018-08-07 10:07:00 -05002175 if (ret || gfs2_testbit(&pos, true) != GFS2_BLKST_FREE)
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01002176 break;
Bob Petersone579ed42013-09-17 13:12:15 -04002177 gfs2_trans_add_meta(pos.rgd->rd_gl, rbm_bi(&pos)->bi_bh);
Steven Whitehouse3e6339d2012-08-13 11:37:51 +01002178 gfs2_setbit(&pos, true, GFS2_BLKST_USED);
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01002179 (*n)++;
Steven Whitehousec04a2ef2012-08-13 11:14:57 +01002180 block++;
Steven Whitehouse60a0b8f2009-05-21 12:23:12 +01002181 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00002182}
2183
2184/**
2185 * rgblk_free - Change alloc state of given block(s)
2186 * @sdp: the filesystem
2187 * @bstart: the start of a run of blocks to free
2188 * @blen: the length of the block run (all must lie within ONE RG!)
2189 * @new_state: GFS2_BLKST_XXX the after-allocation block state
2190 *
2191 * Returns: Resource group containing the block(s)
2192 */
2193
Steven Whitehousecd915492006-09-04 12:49:07 -04002194static struct gfs2_rgrpd *rgblk_free(struct gfs2_sbd *sdp, u64 bstart,
2195 u32 blen, unsigned char new_state)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002196{
Steven Whitehouse3b1d0b92012-08-03 11:23:28 +01002197 struct gfs2_rbm rbm;
Bob Petersond24e0562014-10-03 08:38:06 -04002198 struct gfs2_bitmap *bi, *bi_prev = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002199
Steven Whitehouse3b1d0b92012-08-03 11:23:28 +01002200 rbm.rgd = gfs2_blk2rgrpd(sdp, bstart, 1);
2201 if (!rbm.rgd) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00002202 if (gfs2_consist(sdp))
Steven Whitehouse382066d2006-05-24 10:22:09 -04002203 fs_err(sdp, "block = %llu\n", (unsigned long long)bstart);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002204 return NULL;
2205 }
2206
Bob Petersond24e0562014-10-03 08:38:06 -04002207 gfs2_rbm_from_block(&rbm, bstart);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002208 while (blen--) {
Bob Petersone579ed42013-09-17 13:12:15 -04002209 bi = rbm_bi(&rbm);
Bob Petersond24e0562014-10-03 08:38:06 -04002210 if (bi != bi_prev) {
2211 if (!bi->bi_clone) {
2212 bi->bi_clone = kmalloc(bi->bi_bh->b_size,
2213 GFP_NOFS | __GFP_NOFAIL);
2214 memcpy(bi->bi_clone + bi->bi_offset,
2215 bi->bi_bh->b_data + bi->bi_offset,
2216 bi->bi_len);
2217 }
2218 gfs2_trans_add_meta(rbm.rgd->rd_gl, bi->bi_bh);
2219 bi_prev = bi;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002220 }
Steven Whitehouse3e6339d2012-08-13 11:37:51 +01002221 gfs2_setbit(&rbm, false, new_state);
Bob Petersond24e0562014-10-03 08:38:06 -04002222 gfs2_rbm_incr(&rbm);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002223 }
2224
Steven Whitehouse3b1d0b92012-08-03 11:23:28 +01002225 return rbm.rgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002226}
2227
2228/**
Steven Whitehouse09010972009-05-20 10:48:47 +01002229 * gfs2_rgrp_dump - print out an rgrp
2230 * @seq: The iterator
2231 * @gl: The glock in question
David Teiglandb3b94fa2006-01-16 16:50:04 +00002232 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00002233 */
2234
Steven Whitehouseac3beb62014-01-16 10:31:13 +00002235void gfs2_rgrp_dump(struct seq_file *seq, const struct gfs2_glock *gl)
Steven Whitehouse09010972009-05-20 10:48:47 +01002236{
Bob Peterson8e2e0042012-07-19 08:12:40 -04002237 struct gfs2_rgrpd *rgd = gl->gl_object;
2238 struct gfs2_blkreserv *trs;
2239 const struct rb_node *n;
2240
Steven Whitehouse09010972009-05-20 10:48:47 +01002241 if (rgd == NULL)
Steven Whitehouseac3beb62014-01-16 10:31:13 +00002242 return;
Bob Peterson5ea50502013-11-25 11:16:25 +00002243 gfs2_print_dbg(seq, " R: n:%llu f:%02x b:%u/%u i:%u r:%u e:%u\n",
Steven Whitehouse09010972009-05-20 10:48:47 +01002244 (unsigned long long)rgd->rd_addr, rgd->rd_flags,
Bob Peterson8e2e0042012-07-19 08:12:40 -04002245 rgd->rd_free, rgd->rd_free_clone, rgd->rd_dinodes,
Bob Peterson5ea50502013-11-25 11:16:25 +00002246 rgd->rd_reserved, rgd->rd_extfail_pt);
Bob Peterson8e2e0042012-07-19 08:12:40 -04002247 spin_lock(&rgd->rd_rsspin);
2248 for (n = rb_first(&rgd->rd_rstree); n; n = rb_next(&trs->rs_node)) {
2249 trs = rb_entry(n, struct gfs2_blkreserv, rs_node);
2250 dump_rs(seq, trs);
2251 }
2252 spin_unlock(&rgd->rd_rsspin);
Steven Whitehouse09010972009-05-20 10:48:47 +01002253}
2254
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01002255static void gfs2_rgrp_error(struct gfs2_rgrpd *rgd)
2256{
2257 struct gfs2_sbd *sdp = rgd->rd_sbd;
2258 fs_warn(sdp, "rgrp %llu has an error, marking it readonly until umount\n",
Steven Whitehouse86d00632009-09-14 09:50:57 +01002259 (unsigned long long)rgd->rd_addr);
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01002260 fs_warn(sdp, "umount on all nodes and run fsck.gfs2 to fix the error\n");
2261 gfs2_rgrp_dump(NULL, rgd->rd_gl);
2262 rgd->rd_flags |= GFS2_RDF_ERROR;
2263}
2264
Steven Whitehouse09010972009-05-20 10:48:47 +01002265/**
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01002266 * gfs2_adjust_reservation - Adjust (or remove) a reservation after allocation
2267 * @ip: The inode we have just allocated blocks for
2268 * @rbm: The start of the allocated blocks
2269 * @len: The extent length
Bob Peterson8e2e0042012-07-19 08:12:40 -04002270 *
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01002271 * Adjusts a reservation after an allocation has taken place. If the
2272 * reservation does not match the allocation, or if it is now empty
2273 * then it is removed.
Bob Peterson8e2e0042012-07-19 08:12:40 -04002274 */
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01002275
2276static void gfs2_adjust_reservation(struct gfs2_inode *ip,
2277 const struct gfs2_rbm *rbm, unsigned len)
Bob Peterson8e2e0042012-07-19 08:12:40 -04002278{
Bob Petersona097dc7e2015-07-16 08:28:04 -05002279 struct gfs2_blkreserv *rs = &ip->i_res;
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01002280 struct gfs2_rgrpd *rgd = rbm->rgd;
2281 unsigned rlen;
2282 u64 block;
2283 int ret;
Bob Peterson8e2e0042012-07-19 08:12:40 -04002284
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01002285 spin_lock(&rgd->rd_rsspin);
2286 if (gfs2_rs_active(rs)) {
2287 if (gfs2_rbm_eq(&rs->rs_rbm, rbm)) {
2288 block = gfs2_rbm_to_block(rbm);
2289 ret = gfs2_rbm_from_block(&rs->rs_rbm, block + len);
2290 rlen = min(rs->rs_free, len);
2291 rs->rs_free -= rlen;
2292 rgd->rd_reserved -= rlen;
Steven Whitehouse9e733d32012-08-23 15:37:59 +01002293 trace_gfs2_rs(rs, TRACE_RS_CLAIM);
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01002294 if (rs->rs_free && !ret)
2295 goto out;
Bob Peterson1a855032014-10-29 08:02:30 -05002296 /* We used up our block reservation, so we should
2297 reserve more blocks next time. */
2298 atomic_add(RGRP_RSRV_ADDBLKS, &rs->rs_sizehint);
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01002299 }
Bob Peterson20095212013-03-13 10:26:38 -04002300 __rs_deltree(rs);
Bob Peterson8e2e0042012-07-19 08:12:40 -04002301 }
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01002302out:
2303 spin_unlock(&rgd->rd_rsspin);
Bob Peterson8e2e0042012-07-19 08:12:40 -04002304}
2305
2306/**
Steven Whitehouse9e07f2c2013-10-02 14:42:45 +01002307 * gfs2_set_alloc_start - Set starting point for block allocation
2308 * @rbm: The rbm which will be set to the required location
2309 * @ip: The gfs2 inode
2310 * @dinode: Flag to say if allocation includes a new inode
2311 *
2312 * This sets the starting point from the reservation if one is active
2313 * otherwise it falls back to guessing a start point based on the
2314 * inode's goal block or the last allocation point in the rgrp.
2315 */
2316
2317static void gfs2_set_alloc_start(struct gfs2_rbm *rbm,
2318 const struct gfs2_inode *ip, bool dinode)
2319{
2320 u64 goal;
2321
Bob Petersona097dc7e2015-07-16 08:28:04 -05002322 if (gfs2_rs_active(&ip->i_res)) {
2323 *rbm = ip->i_res.rs_rbm;
Steven Whitehouse9e07f2c2013-10-02 14:42:45 +01002324 return;
2325 }
2326
2327 if (!dinode && rgrp_contains_block(rbm->rgd, ip->i_goal))
2328 goal = ip->i_goal;
2329 else
2330 goal = rbm->rgd->rd_last_alloc + rbm->rgd->rd_data0;
2331
2332 gfs2_rbm_from_block(rbm, goal);
2333}
2334
2335/**
Bob Peterson6e87ed02011-11-18 10:58:32 -05002336 * gfs2_alloc_blocks - Allocate one or more blocks of data and/or a dinode
Steven Whitehouse09010972009-05-20 10:48:47 +01002337 * @ip: the inode to allocate the block for
2338 * @bn: Used to return the starting block number
Bob Peterson8e2e0042012-07-19 08:12:40 -04002339 * @nblocks: requested number of blocks/extent length (value/result)
Bob Peterson6e87ed02011-11-18 10:58:32 -05002340 * @dinode: 1 if we're allocating a dinode block, else 0
Bob Peterson3c5d7852011-11-14 11:17:08 -05002341 * @generation: the generation number of the inode
Steven Whitehouse09010972009-05-20 10:48:47 +01002342 *
2343 * Returns: 0 or error
2344 */
2345
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002346int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *nblocks,
Bob Peterson6e87ed02011-11-18 10:58:32 -05002347 bool dinode, u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002348{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002349 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehoused9ba7612009-04-23 08:59:41 +01002350 struct buffer_head *dibh;
Andreas Gruenbacherb7eba892018-06-21 07:42:37 -05002351 struct gfs2_rbm rbm = { .rgd = ip->i_res.rs_rbm.rgd, };
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002352 unsigned int ndata;
Bob Peterson3c5d7852011-11-14 11:17:08 -05002353 u64 block; /* block, within the file system scope */
Steven Whitehoused9ba7612009-04-23 08:59:41 +01002354 int error;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002355
Steven Whitehouse9e07f2c2013-10-02 14:42:45 +01002356 gfs2_set_alloc_start(&rbm, ip, dinode);
Bob Peterson8381e602016-05-02 09:42:49 -05002357 error = gfs2_rbm_find(&rbm, GFS2_BLKST_FREE, NULL, ip, false);
Steven Whitehouse62e252e2012-07-30 11:06:08 +01002358
Steven Whitehouse137834a2012-08-23 13:43:40 +01002359 if (error == -ENOSPC) {
Steven Whitehouse9e07f2c2013-10-02 14:42:45 +01002360 gfs2_set_alloc_start(&rbm, ip, dinode);
Bob Peterson8381e602016-05-02 09:42:49 -05002361 error = gfs2_rbm_find(&rbm, GFS2_BLKST_FREE, NULL, NULL, false);
Steven Whitehouse137834a2012-08-23 13:43:40 +01002362 }
2363
Steven Whitehouse62e252e2012-07-30 11:06:08 +01002364 /* Since all blocks are reserved in advance, this shouldn't happen */
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01002365 if (error) {
Bob Peterson5ea50502013-11-25 11:16:25 +00002366 fs_warn(sdp, "inum=%llu error=%d, nblocks=%u, full=%d fail_pt=%d\n",
Steven Whitehouse9e733d32012-08-23 15:37:59 +01002367 (unsigned long long)ip->i_no_addr, error, *nblocks,
Bob Peterson5ea50502013-11-25 11:16:25 +00002368 test_bit(GBF_FULL, &rbm.rgd->rd_bits->bi_flags),
2369 rbm.rgd->rd_extfail_pt);
Steven Whitehouse62e252e2012-07-30 11:06:08 +01002370 goto rgrp_error;
2371 }
2372
Steven Whitehousec04a2ef2012-08-13 11:14:57 +01002373 gfs2_alloc_extent(&rbm, dinode, nblocks);
2374 block = gfs2_rbm_to_block(&rbm);
Steven Whitehousec743ffd2012-08-25 18:21:47 +01002375 rbm.rgd->rd_last_alloc = block - rbm.rgd->rd_data0;
Bob Petersona097dc7e2015-07-16 08:28:04 -05002376 if (gfs2_rs_active(&ip->i_res))
Steven Whitehouse5b924ae2012-08-01 20:35:05 +01002377 gfs2_adjust_reservation(ip, &rbm, *nblocks);
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002378 ndata = *nblocks;
2379 if (dinode)
2380 ndata--;
Bob Petersonb3e47ca2011-11-21 11:47:08 -05002381
Bob Peterson3c5d7852011-11-14 11:17:08 -05002382 if (!dinode) {
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002383 ip->i_goal = block + ndata - 1;
Bob Peterson3c5d7852011-11-14 11:17:08 -05002384 error = gfs2_meta_inode_buffer(ip, &dibh);
2385 if (error == 0) {
2386 struct gfs2_dinode *di =
2387 (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse350a9b02012-12-14 12:36:02 +00002388 gfs2_trans_add_meta(ip->i_gl, dibh);
Bob Peterson3c5d7852011-11-14 11:17:08 -05002389 di->di_goal_meta = di->di_goal_data =
2390 cpu_to_be64(ip->i_goal);
2391 brelse(dibh);
2392 }
Steven Whitehoused9ba7612009-04-23 08:59:41 +01002393 }
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002394 if (rbm.rgd->rd_free < *nblocks) {
Fabian Frederickfc554ed2014-03-05 22:06:42 +08002395 pr_warn("nblocks=%u\n", *nblocks);
Steven Whitehouse09010972009-05-20 10:48:47 +01002396 goto rgrp_error;
Bob Peterson8e2e0042012-07-19 08:12:40 -04002397 }
Steven Whitehouse09010972009-05-20 10:48:47 +01002398
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002399 rbm.rgd->rd_free -= *nblocks;
Bob Peterson3c5d7852011-11-14 11:17:08 -05002400 if (dinode) {
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002401 rbm.rgd->rd_dinodes++;
2402 *generation = rbm.rgd->rd_igeneration++;
Bob Peterson3c5d7852011-11-14 11:17:08 -05002403 if (*generation == 0)
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002404 *generation = rbm.rgd->rd_igeneration++;
Bob Peterson3c5d7852011-11-14 11:17:08 -05002405 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00002406
Steven Whitehouse350a9b02012-12-14 12:36:02 +00002407 gfs2_trans_add_meta(rbm.rgd->rd_gl, rbm.rgd->rd_bits[0].bi_bh);
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002408 gfs2_rgrp_out(rbm.rgd, rbm.rgd->rd_bits[0].bi_bh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002409
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002410 gfs2_statfs_change(sdp, 0, -(s64)*nblocks, dinode ? 1 : 0);
Bob Peterson3c5d7852011-11-14 11:17:08 -05002411 if (dinode)
Steven Whitehouseb2c8b3e2014-02-04 15:45:11 +00002412 gfs2_trans_add_unrevoke(sdp, block, *nblocks);
Steven Whitehouse6a8099e2011-11-22 12:18:51 +00002413
Steven Whitehousefd4b4e02013-02-26 16:15:20 +00002414 gfs2_quota_change(ip, *nblocks, ip->i_inode.i_uid, ip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002415
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002416 rbm.rgd->rd_free_clone -= *nblocks;
2417 trace_gfs2_block_alloc(ip, rbm.rgd, block, *nblocks,
Bob Peterson6e87ed02011-11-18 10:58:32 -05002418 dinode ? GFS2_BLKST_DINODE : GFS2_BLKST_USED);
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01002419 *bn = block;
2420 return 0;
2421
2422rgrp_error:
Steven Whitehouse4a993fb2012-07-31 15:21:20 +01002423 gfs2_rgrp_error(rbm.rgd);
Steven Whitehouse6050b9c2009-07-31 16:19:40 +01002424 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002425}
2426
2427/**
Eric Sandeen46fcb2e2011-06-23 10:39:34 -05002428 * __gfs2_free_blocks - free a contiguous run of block(s)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002429 * @ip: the inode these blocks are being freed from
2430 * @bstart: first block of a run of contiguous blocks
2431 * @blen: the length of the block run
Eric Sandeen46fcb2e2011-06-23 10:39:34 -05002432 * @meta: 1 if the blocks represent metadata
David Teiglandb3b94fa2006-01-16 16:50:04 +00002433 *
2434 */
2435
Eric Sandeen46fcb2e2011-06-23 10:39:34 -05002436void __gfs2_free_blocks(struct gfs2_inode *ip, u64 bstart, u32 blen, int meta)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002437{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002438 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002439 struct gfs2_rgrpd *rgd;
2440
2441 rgd = rgblk_free(sdp, bstart, blen, GFS2_BLKST_FREE);
2442 if (!rgd)
2443 return;
Bob Peterson41db1ab2012-05-09 12:11:35 -04002444 trace_gfs2_block_alloc(ip, rgd, bstart, blen, GFS2_BLKST_FREE);
Steven Whitehousecfc8b542008-11-04 10:25:13 +00002445 rgd->rd_free += blen;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00002446 rgd->rd_flags &= ~GFS2_RGF_TRIMMED;
Steven Whitehouse350a9b02012-12-14 12:36:02 +00002447 gfs2_trans_add_meta(rgd->rd_gl, rgd->rd_bits[0].bi_bh);
Bob Peterson42d52e32008-01-28 18:38:07 -06002448 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002449
Steven Whitehouse6d3117b2011-05-21 14:05:58 +01002450 /* Directories keep their data in the metadata address space */
Eric Sandeen46fcb2e2011-06-23 10:39:34 -05002451 if (meta || ip->i_depth)
Steven Whitehouse6d3117b2011-05-21 14:05:58 +01002452 gfs2_meta_wipe(ip, bstart, blen);
Bob Peterson4c16c362011-02-23 16:11:33 -05002453}
David Teiglandb3b94fa2006-01-16 16:50:04 +00002454
Bob Peterson4c16c362011-02-23 16:11:33 -05002455/**
Bob Peterson4c16c362011-02-23 16:11:33 -05002456 * gfs2_free_meta - free a contiguous run of data block(s)
2457 * @ip: the inode these blocks are being freed from
2458 * @bstart: first block of a run of contiguous blocks
2459 * @blen: the length of the block run
2460 *
2461 */
2462
Steven Whitehousecd915492006-09-04 12:49:07 -04002463void gfs2_free_meta(struct gfs2_inode *ip, u64 bstart, u32 blen)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002464{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002465 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002466
Eric Sandeen46fcb2e2011-06-23 10:39:34 -05002467 __gfs2_free_blocks(ip, bstart, blen, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002468 gfs2_statfs_change(sdp, 0, +blen, 0);
Steven Whitehouse2933f922006-11-01 13:23:29 -05002469 gfs2_quota_change(ip, -(s64)blen, ip->i_inode.i_uid, ip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002470}
2471
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002472void gfs2_unlink_di(struct inode *inode)
2473{
2474 struct gfs2_inode *ip = GFS2_I(inode);
2475 struct gfs2_sbd *sdp = GFS2_SB(inode);
2476 struct gfs2_rgrpd *rgd;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01002477 u64 blkno = ip->i_no_addr;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002478
2479 rgd = rgblk_free(sdp, blkno, 1, GFS2_BLKST_UNLINKED);
2480 if (!rgd)
2481 return;
Bob Peterson41db1ab2012-05-09 12:11:35 -04002482 trace_gfs2_block_alloc(ip, rgd, blkno, 1, GFS2_BLKST_UNLINKED);
Steven Whitehouse350a9b02012-12-14 12:36:02 +00002483 gfs2_trans_add_meta(rgd->rd_gl, rgd->rd_bits[0].bi_bh);
Bob Peterson42d52e32008-01-28 18:38:07 -06002484 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
Bob Petersonf5580d02018-08-08 09:53:30 -05002485 be32_add_cpu(&rgd->rd_rgl->rl_unlinked, 1);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04002486}
2487
Bob Petersona18c78c2017-11-22 09:24:14 -06002488void gfs2_free_di(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002489{
2490 struct gfs2_sbd *sdp = rgd->rd_sbd;
2491 struct gfs2_rgrpd *tmp_rgd;
2492
Bob Petersona18c78c2017-11-22 09:24:14 -06002493 tmp_rgd = rgblk_free(sdp, ip->i_no_addr, 1, GFS2_BLKST_FREE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002494 if (!tmp_rgd)
2495 return;
2496 gfs2_assert_withdraw(sdp, rgd == tmp_rgd);
2497
Steven Whitehouse73f74942008-11-04 10:32:57 +00002498 if (!rgd->rd_dinodes)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002499 gfs2_consist_rgrpd(rgd);
Steven Whitehouse73f74942008-11-04 10:32:57 +00002500 rgd->rd_dinodes--;
Steven Whitehousecfc8b542008-11-04 10:25:13 +00002501 rgd->rd_free++;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002502
Steven Whitehouse350a9b02012-12-14 12:36:02 +00002503 gfs2_trans_add_meta(rgd->rd_gl, rgd->rd_bits[0].bi_bh);
Bob Peterson42d52e32008-01-28 18:38:07 -06002504 gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
Bob Petersonf5580d02018-08-08 09:53:30 -05002505 be32_add_cpu(&rgd->rd_rgl->rl_unlinked, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002506
2507 gfs2_statfs_change(sdp, 0, +1, -1);
Bob Peterson41db1ab2012-05-09 12:11:35 -04002508 trace_gfs2_block_alloc(ip, rgd, ip->i_no_addr, 1, GFS2_BLKST_FREE);
Steven Whitehouse2933f922006-11-01 13:23:29 -05002509 gfs2_quota_change(ip, -1, ip->i_inode.i_uid, ip->i_inode.i_gid);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01002510 gfs2_meta_wipe(ip, ip->i_no_addr, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002511}
2512
2513/**
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002514 * gfs2_check_blk_type - Check the type of a block
2515 * @sdp: The superblock
2516 * @no_addr: The block number to check
2517 * @type: The block type we are looking for
2518 *
2519 * Returns: 0 if the block type matches the expected type
2520 * -ESTALE if it doesn't match
2521 * or -ve errno if something went wrong while checking
2522 */
2523
2524int gfs2_check_blk_type(struct gfs2_sbd *sdp, u64 no_addr, unsigned int type)
2525{
2526 struct gfs2_rgrpd *rgd;
Steven Whitehouse8339ee52011-08-31 16:38:29 +01002527 struct gfs2_holder rgd_gh;
Bob Petersondffe12a2018-08-07 10:07:00 -05002528 struct gfs2_rbm rbm;
Bob Peterson58884c42012-03-05 10:19:35 -05002529 int error = -EINVAL;
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002530
Steven Whitehouse66fc0612012-02-08 12:58:32 +00002531 rgd = gfs2_blk2rgrpd(sdp, no_addr, 1);
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002532 if (!rgd)
Steven Whitehouse8339ee52011-08-31 16:38:29 +01002533 goto fail;
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002534
2535 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh);
2536 if (error)
Steven Whitehouse8339ee52011-08-31 16:38:29 +01002537 goto fail;
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002538
Bob Petersondffe12a2018-08-07 10:07:00 -05002539 rbm.rgd = rgd;
2540 error = gfs2_rbm_from_block(&rbm, no_addr);
2541 WARN_ON_ONCE(error != 0);
2542
2543 if (gfs2_testbit(&rbm, false) != type)
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002544 error = -ESTALE;
2545
2546 gfs2_glock_dq_uninit(&rgd_gh);
Steven Whitehouseacf7e242009-09-08 18:00:30 +01002547fail:
2548 return error;
2549}
2550
2551/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00002552 * gfs2_rlist_add - add a RG to a list of RGs
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002553 * @ip: the inode
David Teiglandb3b94fa2006-01-16 16:50:04 +00002554 * @rlist: the list of resource groups
2555 * @block: the block
2556 *
2557 * Figure out what RG a block belongs to and add that RG to the list
2558 *
2559 * FIXME: Don't use NOFAIL
2560 *
2561 */
2562
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002563void gfs2_rlist_add(struct gfs2_inode *ip, struct gfs2_rgrp_list *rlist,
Steven Whitehousecd915492006-09-04 12:49:07 -04002564 u64 block)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002565{
Steven Whitehouse70b0c362011-09-02 16:08:09 +01002566 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002567 struct gfs2_rgrpd *rgd;
2568 struct gfs2_rgrpd **tmp;
2569 unsigned int new_space;
2570 unsigned int x;
2571
2572 if (gfs2_assert_warn(sdp, !rlist->rl_ghs))
2573 return;
2574
Andreas Gruenbacher03f8c412018-06-21 07:22:12 -05002575 /*
2576 * The resource group last accessed is kept in the last position.
2577 */
2578
2579 if (rlist->rl_rgrps) {
2580 rgd = rlist->rl_rgd[rlist->rl_rgrps - 1];
2581 if (rgrp_contains_block(rgd, block))
2582 return;
Steven Whitehouse66fc0612012-02-08 12:58:32 +00002583 rgd = gfs2_blk2rgrpd(sdp, block, 1);
Andreas Gruenbacher03f8c412018-06-21 07:22:12 -05002584 } else {
Andreas Gruenbacherb7eba892018-06-21 07:42:37 -05002585 rgd = ip->i_res.rs_rbm.rgd;
Andreas Gruenbacher03f8c412018-06-21 07:22:12 -05002586 if (!rgd || !rgrp_contains_block(rgd, block))
2587 rgd = gfs2_blk2rgrpd(sdp, block, 1);
2588 }
2589
David Teiglandb3b94fa2006-01-16 16:50:04 +00002590 if (!rgd) {
Andreas Gruenbacher03f8c412018-06-21 07:22:12 -05002591 fs_err(sdp, "rlist_add: no rgrp for block %llu\n",
2592 (unsigned long long)block);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002593 return;
2594 }
2595
Andreas Gruenbacher03f8c412018-06-21 07:22:12 -05002596 for (x = 0; x < rlist->rl_rgrps; x++) {
2597 if (rlist->rl_rgd[x] == rgd) {
2598 swap(rlist->rl_rgd[x],
2599 rlist->rl_rgd[rlist->rl_rgrps - 1]);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002600 return;
Andreas Gruenbacher03f8c412018-06-21 07:22:12 -05002601 }
2602 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00002603
2604 if (rlist->rl_rgrps == rlist->rl_space) {
2605 new_space = rlist->rl_space + 10;
2606
2607 tmp = kcalloc(new_space, sizeof(struct gfs2_rgrpd *),
Steven Whitehousedd894be2006-07-27 14:29:00 -04002608 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002609
2610 if (rlist->rl_rgd) {
2611 memcpy(tmp, rlist->rl_rgd,
2612 rlist->rl_space * sizeof(struct gfs2_rgrpd *));
2613 kfree(rlist->rl_rgd);
2614 }
2615
2616 rlist->rl_space = new_space;
2617 rlist->rl_rgd = tmp;
2618 }
2619
2620 rlist->rl_rgd[rlist->rl_rgrps++] = rgd;
2621}
2622
2623/**
2624 * gfs2_rlist_alloc - all RGs have been added to the rlist, now allocate
2625 * and initialize an array of glock holders for them
2626 * @rlist: the list of resource groups
2627 * @state: the lock state to acquire the RG lock in
David Teiglandb3b94fa2006-01-16 16:50:04 +00002628 *
2629 * FIXME: Don't use NOFAIL
2630 *
2631 */
2632
Bob Petersonfe6c9912008-01-28 11:13:02 -06002633void gfs2_rlist_alloc(struct gfs2_rgrp_list *rlist, unsigned int state)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002634{
2635 unsigned int x;
2636
Kees Cook6da2ec52018-06-12 13:55:00 -07002637 rlist->rl_ghs = kmalloc_array(rlist->rl_rgrps,
2638 sizeof(struct gfs2_holder),
2639 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002640 for (x = 0; x < rlist->rl_rgrps; x++)
2641 gfs2_holder_init(rlist->rl_rgd[x]->rd_gl,
Bob Petersonfe6c9912008-01-28 11:13:02 -06002642 state, 0,
David Teiglandb3b94fa2006-01-16 16:50:04 +00002643 &rlist->rl_ghs[x]);
2644}
2645
2646/**
2647 * gfs2_rlist_free - free a resource group list
Fabian Frederick27ff6a02014-07-02 22:05:27 +02002648 * @rlist: the list of resource groups
David Teiglandb3b94fa2006-01-16 16:50:04 +00002649 *
2650 */
2651
2652void gfs2_rlist_free(struct gfs2_rgrp_list *rlist)
2653{
2654 unsigned int x;
2655
2656 kfree(rlist->rl_rgd);
2657
2658 if (rlist->rl_ghs) {
2659 for (x = 0; x < rlist->rl_rgrps; x++)
2660 gfs2_holder_uninit(&rlist->rl_ghs[x]);
2661 kfree(rlist->rl_ghs);
Bob Peterson8e2e0042012-07-19 08:12:40 -04002662 rlist->rl_ghs = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002663 }
2664}
2665