blob: 36636e1c84e74a1bcd81d17899801667dc50facb [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * localalloc.c
5 *
6 * Node local data allocation
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 */
25
26#include <linux/fs.h>
27#include <linux/types.h>
28#include <linux/slab.h>
29#include <linux/highmem.h>
30#include <linux/bitops.h>
31
32#define MLOG_MASK_PREFIX ML_DISK_ALLOC
33#include <cluster/masklog.h>
34
35#include "ocfs2.h"
36
37#include "alloc.h"
Joel Becker13723d02008-10-17 19:25:01 -070038#include "blockcheck.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080039#include "dlmglue.h"
40#include "inode.h"
41#include "journal.h"
42#include "localalloc.h"
43#include "suballoc.h"
44#include "super.h"
45#include "sysfile.h"
46
47#include "buffer_head_io.h"
48
49#define OCFS2_LOCAL_ALLOC(dinode) (&((dinode)->id2.i_lab))
50
Mark Fashehccd979b2005-12-15 14:31:24 -080051static u32 ocfs2_local_alloc_count_bits(struct ocfs2_dinode *alloc);
52
53static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb,
54 struct ocfs2_dinode *alloc,
Mark Fashehd02f00c2009-12-07 13:10:48 -080055 u32 *numbits,
56 struct ocfs2_alloc_reservation *resv);
Mark Fashehccd979b2005-12-15 14:31:24 -080057
58static void ocfs2_clear_local_alloc(struct ocfs2_dinode *alloc);
59
60static int ocfs2_sync_local_to_main(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -070061 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080062 struct ocfs2_dinode *alloc,
63 struct inode *main_bm_inode,
64 struct buffer_head *main_bm_bh);
65
66static int ocfs2_local_alloc_reserve_for_window(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -080067 struct ocfs2_alloc_context **ac,
68 struct inode **bitmap_inode,
69 struct buffer_head **bitmap_bh);
70
71static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -070072 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -080073 struct ocfs2_alloc_context *ac);
74
75static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
76 struct inode *local_alloc_inode);
77
Mark Fasheh6b820212010-04-05 18:17:14 -070078/*
79 * ocfs2_la_default_mb() - determine a default size, in megabytes of
80 * the local alloc.
81 *
82 * Generally, we'd like to pick as large a local alloc as
83 * possible. Performance on large workloads tends to scale
84 * proportionally to la size. In addition to that, the reservations
85 * code functions more efficiently as it can reserve more windows for
86 * write.
87 *
88 * Some things work against us when trying to choose a large local alloc:
89 *
90 * - We need to ensure our sizing is picked to leave enough space in
91 * group descriptors for other allocations (such as block groups,
92 * etc). Picking default sizes which are a multiple of 4 could help
93 * - block groups are allocated in 2mb and 4mb chunks.
94 *
95 * - Likewise, we don't want to starve other nodes of bits on small
96 * file systems. This can easily be taken care of by limiting our
97 * default to a reasonable size (256M) on larger cluster sizes.
98 *
99 * - Some file systems can't support very large sizes - 4k and 8k in
100 * particular are limited to less than 128 and 256 megabytes respectively.
101 *
102 * The following reference table shows group descriptor and local
103 * alloc maximums at various cluster sizes (4k blocksize)
104 *
105 * csize: 4K group: 126M la: 121M
106 * csize: 8K group: 252M la: 243M
107 * csize: 16K group: 504M la: 486M
108 * csize: 32K group: 1008M la: 972M
109 * csize: 64K group: 2016M la: 1944M
110 * csize: 128K group: 4032M la: 3888M
111 * csize: 256K group: 8064M la: 7776M
112 * csize: 512K group: 16128M la: 15552M
113 * csize: 1024K group: 32256M la: 31104M
114 */
115#define OCFS2_LA_MAX_DEFAULT_MB 256
116#define OCFS2_LA_OLD_DEFAULT 8
117unsigned int ocfs2_la_default_mb(struct ocfs2_super *osb)
118{
119 unsigned int la_mb;
120 unsigned int gd_mb;
Tao Ma1739da42010-06-09 16:43:05 +0800121 unsigned int la_max_mb;
Mark Fasheh6b820212010-04-05 18:17:14 -0700122 unsigned int megs_per_slot;
123 struct super_block *sb = osb->sb;
124
125 gd_mb = ocfs2_clusters_to_megabytes(osb->sb,
Tao Ma85718822010-04-13 14:38:06 +0800126 8 * ocfs2_group_bitmap_size(sb, 0, osb->s_feature_incompat));
Mark Fasheh6b820212010-04-05 18:17:14 -0700127
128 /*
129 * This takes care of files systems with very small group
130 * descriptors - 512 byte blocksize at cluster sizes lower
131 * than 16K and also 1k blocksize with 4k cluster size.
132 */
133 if ((sb->s_blocksize == 512 && osb->s_clustersize <= 8192)
134 || (sb->s_blocksize == 1024 && osb->s_clustersize == 4096))
135 return OCFS2_LA_OLD_DEFAULT;
136
137 /*
138 * Leave enough room for some block groups and make the final
139 * value we work from a multiple of 4.
140 */
141 gd_mb -= 16;
142 gd_mb &= 0xFFFFFFFB;
143
144 la_mb = gd_mb;
145
146 /*
147 * Keep window sizes down to a reasonable default
148 */
149 if (la_mb > OCFS2_LA_MAX_DEFAULT_MB) {
150 /*
151 * Some clustersize / blocksize combinations will have
152 * given us a larger than OCFS2_LA_MAX_DEFAULT_MB
153 * default size, but get poor distribution when
154 * limited to exactly 256 megabytes.
155 *
156 * As an example, 16K clustersize at 4K blocksize
157 * gives us a cluster group size of 504M. Paring the
158 * local alloc size down to 256 however, would give us
159 * only one window and around 200MB left in the
160 * cluster group. Instead, find the first size below
161 * 256 which would give us an even distribution.
162 *
163 * Larger cluster group sizes actually work out pretty
164 * well when pared to 256, so we don't have to do this
165 * for any group that fits more than two
166 * OCFS2_LA_MAX_DEFAULT_MB windows.
167 */
168 if (gd_mb > (2 * OCFS2_LA_MAX_DEFAULT_MB))
169 la_mb = 256;
170 else {
171 unsigned int gd_mult = gd_mb;
172
173 while (gd_mult > 256)
174 gd_mult = gd_mult >> 1;
175
176 la_mb = gd_mult;
177 }
178 }
179
180 megs_per_slot = osb->osb_clusters_at_boot / osb->max_slots;
181 megs_per_slot = ocfs2_clusters_to_megabytes(osb->sb, megs_per_slot);
182 /* Too many nodes, too few disk clusters. */
183 if (megs_per_slot < la_mb)
184 la_mb = megs_per_slot;
185
Tao Ma1739da42010-06-09 16:43:05 +0800186 /* We can't store more bits than we can in a block. */
187 la_max_mb = ocfs2_clusters_to_megabytes(osb->sb,
188 ocfs2_local_alloc_size(sb) * 8);
189 if (la_mb > la_max_mb)
190 la_mb = la_max_mb;
191
Mark Fasheh6b820212010-04-05 18:17:14 -0700192 return la_mb;
193}
194
Mark Fasheh73c8a802010-04-05 18:17:13 -0700195void ocfs2_la_set_sizes(struct ocfs2_super *osb, int requested_mb)
196{
197 struct super_block *sb = osb->sb;
Mark Fasheh6b820212010-04-05 18:17:14 -0700198 unsigned int la_default_mb = ocfs2_la_default_mb(osb);
Mark Fasheh73c8a802010-04-05 18:17:13 -0700199 unsigned int la_max_mb;
200
201 la_max_mb = ocfs2_clusters_to_megabytes(sb,
202 ocfs2_local_alloc_size(sb) * 8);
203
204 mlog(0, "requested: %dM, max: %uM, default: %uM\n",
205 requested_mb, la_max_mb, la_default_mb);
206
207 if (requested_mb == -1) {
208 /* No user request - use defaults */
209 osb->local_alloc_default_bits =
210 ocfs2_megabytes_to_clusters(sb, la_default_mb);
211 } else if (requested_mb > la_max_mb) {
212 /* Request is too big, we give the maximum available */
213 osb->local_alloc_default_bits =
214 ocfs2_megabytes_to_clusters(sb, la_max_mb);
215 } else {
216 osb->local_alloc_default_bits =
217 ocfs2_megabytes_to_clusters(sb, requested_mb);
218 }
219
220 osb->local_alloc_bits = osb->local_alloc_default_bits;
221}
222
Mark Fasheh9c7af402008-07-28 18:02:53 -0700223static inline int ocfs2_la_state_enabled(struct ocfs2_super *osb)
224{
225 return (osb->local_alloc_state == OCFS2_LA_THROTTLED ||
226 osb->local_alloc_state == OCFS2_LA_ENABLED);
227}
228
229void ocfs2_local_alloc_seen_free_bits(struct ocfs2_super *osb,
230 unsigned int num_clusters)
231{
232 spin_lock(&osb->osb_lock);
233 if (osb->local_alloc_state == OCFS2_LA_DISABLED ||
234 osb->local_alloc_state == OCFS2_LA_THROTTLED)
235 if (num_clusters >= osb->local_alloc_default_bits) {
236 cancel_delayed_work(&osb->la_enable_wq);
237 osb->local_alloc_state = OCFS2_LA_ENABLED;
238 }
239 spin_unlock(&osb->osb_lock);
240}
241
242void ocfs2_la_enable_worker(struct work_struct *work)
243{
244 struct ocfs2_super *osb =
245 container_of(work, struct ocfs2_super,
246 la_enable_wq.work);
247 spin_lock(&osb->osb_lock);
248 osb->local_alloc_state = OCFS2_LA_ENABLED;
249 spin_unlock(&osb->osb_lock);
250}
251
Mark Fashehccd979b2005-12-15 14:31:24 -0800252/*
253 * Tell us whether a given allocation should use the local alloc
254 * file. Otherwise, it has to go to the main bitmap.
Mark Fasheh9c7af402008-07-28 18:02:53 -0700255 *
256 * This function does semi-dirty reads of local alloc size and state!
257 * This is ok however, as the values are re-checked once under mutex.
Mark Fashehccd979b2005-12-15 14:31:24 -0800258 */
259int ocfs2_alloc_should_use_local(struct ocfs2_super *osb, u64 bits)
260{
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800261 int ret = 0;
Mark Fasheh9c7af402008-07-28 18:02:53 -0700262 int la_bits;
Mark Fashehccd979b2005-12-15 14:31:24 -0800263
Mark Fasheh9c7af402008-07-28 18:02:53 -0700264 spin_lock(&osb->osb_lock);
265 la_bits = osb->local_alloc_bits;
266
267 if (!ocfs2_la_state_enabled(osb))
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800268 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -0800269
270 /* la_bits should be at least twice the size (in clusters) of
271 * a new block group. We want to be sure block group
272 * allocations go through the local alloc, so allow an
273 * allocation to take up to half the bitmap. */
274 if (bits > (la_bits / 2))
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800275 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -0800276
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800277 ret = 1;
278bail:
279 mlog(0, "state=%d, bits=%llu, la_bits=%d, ret=%d\n",
280 osb->local_alloc_state, (unsigned long long)bits, la_bits, ret);
Mark Fasheh9c7af402008-07-28 18:02:53 -0700281 spin_unlock(&osb->osb_lock);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800282 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800283}
284
285int ocfs2_load_local_alloc(struct ocfs2_super *osb)
286{
287 int status = 0;
288 struct ocfs2_dinode *alloc = NULL;
289 struct buffer_head *alloc_bh = NULL;
290 u32 num_used;
291 struct inode *inode = NULL;
292 struct ocfs2_local_alloc *la;
293
Mark Fashehebcee4b2008-07-28 14:55:20 -0700294 if (osb->local_alloc_bits == 0)
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800295 goto bail;
296
Mark Fashehebcee4b2008-07-28 14:55:20 -0700297 if (osb->local_alloc_bits >= osb->bitmap_cpg) {
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800298 mlog(ML_NOTICE, "Requested local alloc window %d is larger "
299 "than max possible %u. Using defaults.\n",
Mark Fashehebcee4b2008-07-28 14:55:20 -0700300 osb->local_alloc_bits, (osb->bitmap_cpg - 1));
301 osb->local_alloc_bits =
302 ocfs2_megabytes_to_clusters(osb->sb,
Mark Fasheh6b820212010-04-05 18:17:14 -0700303 ocfs2_la_default_mb(osb));
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800304 }
305
Mark Fashehccd979b2005-12-15 14:31:24 -0800306 /* read the alloc off disk */
307 inode = ocfs2_get_system_file_inode(osb, LOCAL_ALLOC_SYSTEM_INODE,
308 osb->slot_num);
309 if (!inode) {
310 status = -EINVAL;
311 mlog_errno(status);
312 goto bail;
313 }
314
Joel Beckerb657c952008-11-13 14:49:11 -0800315 status = ocfs2_read_inode_block_full(inode, &alloc_bh,
316 OCFS2_BH_IGNORE_CACHE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800317 if (status < 0) {
318 mlog_errno(status);
319 goto bail;
320 }
321
322 alloc = (struct ocfs2_dinode *) alloc_bh->b_data;
323 la = OCFS2_LOCAL_ALLOC(alloc);
324
325 if (!(le32_to_cpu(alloc->i_flags) &
326 (OCFS2_LOCAL_ALLOC_FL|OCFS2_BITMAP_FL))) {
Mark Fashehb06970532006-03-03 10:24:33 -0800327 mlog(ML_ERROR, "Invalid local alloc inode, %llu\n",
328 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800329 status = -EINVAL;
330 goto bail;
331 }
332
333 if ((la->la_size == 0) ||
334 (le16_to_cpu(la->la_size) > ocfs2_local_alloc_size(inode->i_sb))) {
335 mlog(ML_ERROR, "Local alloc size is invalid (la_size = %u)\n",
336 le16_to_cpu(la->la_size));
337 status = -EINVAL;
338 goto bail;
339 }
340
341 /* do a little verification. */
342 num_used = ocfs2_local_alloc_count_bits(alloc);
343
344 /* hopefully the local alloc has always been recovered before
345 * we load it. */
346 if (num_used
347 || alloc->id1.bitmap1.i_used
348 || alloc->id1.bitmap1.i_total
349 || la->la_bm_off)
350 mlog(ML_ERROR, "Local alloc hasn't been recovered!\n"
351 "found = %u, set = %u, taken = %u, off = %u\n",
352 num_used, le32_to_cpu(alloc->id1.bitmap1.i_used),
353 le32_to_cpu(alloc->id1.bitmap1.i_total),
354 OCFS2_LOCAL_ALLOC(alloc)->la_bm_off);
355
356 osb->local_alloc_bh = alloc_bh;
357 osb->local_alloc_state = OCFS2_LA_ENABLED;
358
359bail:
360 if (status < 0)
Mark Fasheha81cb882008-10-07 14:25:16 -0700361 brelse(alloc_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800362 if (inode)
363 iput(inode);
364
Mark Fashehebcee4b2008-07-28 14:55:20 -0700365 mlog(0, "Local alloc window bits = %d\n", osb->local_alloc_bits);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800366
Tao Mac1e8d352011-03-07 16:43:21 +0800367 if (status)
368 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800369 return status;
370}
371
372/*
373 * return any unused bits to the bitmap and write out a clean
374 * local_alloc.
375 *
376 * local_alloc_bh is optional. If not passed, we will simply use the
377 * one off osb. If you do pass it however, be warned that it *will* be
378 * returned brelse'd and NULL'd out.*/
379void ocfs2_shutdown_local_alloc(struct ocfs2_super *osb)
380{
381 int status;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700382 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800383 struct inode *local_alloc_inode = NULL;
384 struct buffer_head *bh = NULL;
385 struct buffer_head *main_bm_bh = NULL;
386 struct inode *main_bm_inode = NULL;
387 struct ocfs2_dinode *alloc_copy = NULL;
388 struct ocfs2_dinode *alloc = NULL;
389
Mark Fasheh9c7af402008-07-28 18:02:53 -0700390 cancel_delayed_work(&osb->la_enable_wq);
391 flush_workqueue(ocfs2_wq);
392
Mark Fashehccd979b2005-12-15 14:31:24 -0800393 if (osb->local_alloc_state == OCFS2_LA_UNUSED)
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700394 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800395
396 local_alloc_inode =
397 ocfs2_get_system_file_inode(osb,
398 LOCAL_ALLOC_SYSTEM_INODE,
399 osb->slot_num);
400 if (!local_alloc_inode) {
401 status = -ENOENT;
402 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700403 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800404 }
405
406 osb->local_alloc_state = OCFS2_LA_DISABLED;
407
Mark Fashehd02f00c2009-12-07 13:10:48 -0800408 ocfs2_resmap_uninit(&osb->osb_la_resmap);
409
Mark Fashehccd979b2005-12-15 14:31:24 -0800410 main_bm_inode = ocfs2_get_system_file_inode(osb,
411 GLOBAL_BITMAP_SYSTEM_INODE,
412 OCFS2_INVALID_SLOT);
413 if (!main_bm_inode) {
414 status = -EINVAL;
415 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700416 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800417 }
418
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700419 mutex_lock(&main_bm_inode->i_mutex);
420
Mark Fashehe63aecb62007-10-18 15:30:42 -0700421 status = ocfs2_inode_lock(main_bm_inode, &main_bm_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800422 if (status < 0) {
423 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700424 goto out_mutex;
Mark Fashehccd979b2005-12-15 14:31:24 -0800425 }
426
427 /* WINDOW_MOVE_CREDITS is a bit heavy... */
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700428 handle = ocfs2_start_trans(osb, OCFS2_WINDOW_MOVE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800429 if (IS_ERR(handle)) {
430 mlog_errno(PTR_ERR(handle));
431 handle = NULL;
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700432 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -0800433 }
434
435 bh = osb->local_alloc_bh;
436 alloc = (struct ocfs2_dinode *) bh->b_data;
437
Sunil Mushran4ba1c5b2008-04-18 15:03:59 -0700438 alloc_copy = kmalloc(bh->b_size, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800439 if (!alloc_copy) {
440 status = -ENOMEM;
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700441 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800442 }
443 memcpy(alloc_copy, alloc, bh->b_size);
444
Joel Becker0cf2f762009-02-12 16:41:25 -0800445 status = ocfs2_journal_access_di(handle, INODE_CACHE(local_alloc_inode),
446 bh, OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800447 if (status < 0) {
448 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700449 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800450 }
451
452 ocfs2_clear_local_alloc(alloc);
Joel Beckerec20cec2010-03-19 14:13:52 -0700453 ocfs2_journal_dirty(handle, bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800454
455 brelse(bh);
456 osb->local_alloc_bh = NULL;
457 osb->local_alloc_state = OCFS2_LA_UNUSED;
458
459 status = ocfs2_sync_local_to_main(osb, handle, alloc_copy,
460 main_bm_inode, main_bm_bh);
461 if (status < 0)
462 mlog_errno(status);
463
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700464out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700465 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800466
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700467out_unlock:
Mark Fasheha81cb882008-10-07 14:25:16 -0700468 brelse(main_bm_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800469
Mark Fashehe63aecb62007-10-18 15:30:42 -0700470 ocfs2_inode_unlock(main_bm_inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800471
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700472out_mutex:
473 mutex_unlock(&main_bm_inode->i_mutex);
474 iput(main_bm_inode);
475
476out:
Mark Fashehccd979b2005-12-15 14:31:24 -0800477 if (local_alloc_inode)
478 iput(local_alloc_inode);
479
480 if (alloc_copy)
481 kfree(alloc_copy);
Mark Fashehccd979b2005-12-15 14:31:24 -0800482}
483
484/*
485 * We want to free the bitmap bits outside of any recovery context as
486 * we'll need a cluster lock to do so, but we must clear the local
487 * alloc before giving up the recovered nodes journal. To solve this,
488 * we kmalloc a copy of the local alloc before it's change for the
489 * caller to process with ocfs2_complete_local_alloc_recovery
490 */
491int ocfs2_begin_local_alloc_recovery(struct ocfs2_super *osb,
492 int slot_num,
493 struct ocfs2_dinode **alloc_copy)
494{
495 int status = 0;
496 struct buffer_head *alloc_bh = NULL;
497 struct inode *inode = NULL;
498 struct ocfs2_dinode *alloc;
499
Tao Maef6b6892011-02-21 11:10:44 +0800500 mlog(0, "(slot_num = %d)\n", slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -0800501
502 *alloc_copy = NULL;
503
504 inode = ocfs2_get_system_file_inode(osb,
505 LOCAL_ALLOC_SYSTEM_INODE,
506 slot_num);
507 if (!inode) {
508 status = -EINVAL;
509 mlog_errno(status);
510 goto bail;
511 }
512
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800513 mutex_lock(&inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800514
Joel Beckerb657c952008-11-13 14:49:11 -0800515 status = ocfs2_read_inode_block_full(inode, &alloc_bh,
516 OCFS2_BH_IGNORE_CACHE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800517 if (status < 0) {
518 mlog_errno(status);
519 goto bail;
520 }
521
522 *alloc_copy = kmalloc(alloc_bh->b_size, GFP_KERNEL);
523 if (!(*alloc_copy)) {
524 status = -ENOMEM;
525 goto bail;
526 }
527 memcpy((*alloc_copy), alloc_bh->b_data, alloc_bh->b_size);
528
529 alloc = (struct ocfs2_dinode *) alloc_bh->b_data;
530 ocfs2_clear_local_alloc(alloc);
531
Joel Becker13723d02008-10-17 19:25:01 -0700532 ocfs2_compute_meta_ecc(osb->sb, alloc_bh->b_data, &alloc->i_check);
Joel Becker8cb471e2009-02-10 20:00:41 -0800533 status = ocfs2_write_block(osb, alloc_bh, INODE_CACHE(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -0800534 if (status < 0)
535 mlog_errno(status);
536
537bail:
538 if ((status < 0) && (*alloc_copy)) {
539 kfree(*alloc_copy);
540 *alloc_copy = NULL;
541 }
542
Mark Fasheha81cb882008-10-07 14:25:16 -0700543 brelse(alloc_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800544
545 if (inode) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800546 mutex_unlock(&inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800547 iput(inode);
548 }
549
Tao Mac1e8d352011-03-07 16:43:21 +0800550 if (status)
551 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800552 return status;
553}
554
555/*
556 * Step 2: By now, we've completed the journal recovery, we've stamped
557 * a clean local alloc on disk and dropped the node out of the
558 * recovery map. Dlm locks will no longer stall, so lets clear out the
559 * main bitmap.
560 */
561int ocfs2_complete_local_alloc_recovery(struct ocfs2_super *osb,
562 struct ocfs2_dinode *alloc)
563{
564 int status;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700565 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800566 struct buffer_head *main_bm_bh = NULL;
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700567 struct inode *main_bm_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800568
Mark Fashehccd979b2005-12-15 14:31:24 -0800569 main_bm_inode = ocfs2_get_system_file_inode(osb,
570 GLOBAL_BITMAP_SYSTEM_INODE,
571 OCFS2_INVALID_SLOT);
572 if (!main_bm_inode) {
573 status = -EINVAL;
574 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700575 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800576 }
577
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700578 mutex_lock(&main_bm_inode->i_mutex);
579
Mark Fashehe63aecb62007-10-18 15:30:42 -0700580 status = ocfs2_inode_lock(main_bm_inode, &main_bm_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800581 if (status < 0) {
582 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700583 goto out_mutex;
Mark Fashehccd979b2005-12-15 14:31:24 -0800584 }
585
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700586 handle = ocfs2_start_trans(osb, OCFS2_WINDOW_MOVE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800587 if (IS_ERR(handle)) {
588 status = PTR_ERR(handle);
589 handle = NULL;
590 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700591 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -0800592 }
593
594 /* we want the bitmap change to be recorded on disk asap */
Mark Fasheh1fabe142006-10-09 18:11:45 -0700595 handle->h_sync = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -0800596
597 status = ocfs2_sync_local_to_main(osb, handle, alloc,
598 main_bm_inode, main_bm_bh);
599 if (status < 0)
600 mlog_errno(status);
601
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700602 ocfs2_commit_trans(osb, handle);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700603
604out_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700605 ocfs2_inode_unlock(main_bm_inode, 1);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700606
607out_mutex:
608 mutex_unlock(&main_bm_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800609
Mark Fasheha81cb882008-10-07 14:25:16 -0700610 brelse(main_bm_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800611
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700612 iput(main_bm_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800613
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700614out:
Tao Ma4d0ddb22008-03-05 16:11:46 +0800615 if (!status)
Tiger Yangb89c5422010-01-25 14:11:06 +0800616 ocfs2_init_steal_slots(osb);
Tao Mac1e8d352011-03-07 16:43:21 +0800617 if (status)
618 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800619 return status;
620}
621
622/*
Mark Fasheh9c7af402008-07-28 18:02:53 -0700623 * make sure we've got at least bits_wanted contiguous bits in the
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800624 * local alloc. You lose them when you drop i_mutex.
Mark Fashehccd979b2005-12-15 14:31:24 -0800625 *
626 * We will add ourselves to the transaction passed in, but may start
627 * our own in order to shift windows.
628 */
629int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -0800630 u32 bits_wanted,
631 struct ocfs2_alloc_context *ac)
632{
633 int status;
634 struct ocfs2_dinode *alloc;
635 struct inode *local_alloc_inode;
636 unsigned int free_bits;
637
Mark Fashehccd979b2005-12-15 14:31:24 -0800638 BUG_ON(!ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800639
640 local_alloc_inode =
641 ocfs2_get_system_file_inode(osb,
642 LOCAL_ALLOC_SYSTEM_INODE,
643 osb->slot_num);
644 if (!local_alloc_inode) {
645 status = -ENOENT;
646 mlog_errno(status);
647 goto bail;
648 }
Mark Fashehda5cbf22006-10-06 18:34:35 -0700649
650 mutex_lock(&local_alloc_inode->i_mutex);
651
Mark Fasheh9c7af402008-07-28 18:02:53 -0700652 /*
653 * We must double check state and allocator bits because
654 * another process may have changed them while holding i_mutex.
655 */
656 spin_lock(&osb->osb_lock);
657 if (!ocfs2_la_state_enabled(osb) ||
658 (bits_wanted > osb->local_alloc_bits)) {
659 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800660 status = -ENOSPC;
661 goto bail;
662 }
Mark Fasheh9c7af402008-07-28 18:02:53 -0700663 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800664
665 alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
666
Joel Beckere407e392008-06-12 22:35:39 -0700667#ifdef CONFIG_OCFS2_DEBUG_FS
Mark Fashehccd979b2005-12-15 14:31:24 -0800668 if (le32_to_cpu(alloc->id1.bitmap1.i_used) !=
669 ocfs2_local_alloc_count_bits(alloc)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800670 ocfs2_error(osb->sb, "local alloc inode %llu says it has "
Mark Fashehccd979b2005-12-15 14:31:24 -0800671 "%u free bits, but a count shows %u",
Mark Fashehb06970532006-03-03 10:24:33 -0800672 (unsigned long long)le64_to_cpu(alloc->i_blkno),
Mark Fashehccd979b2005-12-15 14:31:24 -0800673 le32_to_cpu(alloc->id1.bitmap1.i_used),
674 ocfs2_local_alloc_count_bits(alloc));
675 status = -EIO;
676 goto bail;
677 }
Jan Kara5a58c3e2007-11-13 19:59:33 +0100678#endif
Mark Fashehccd979b2005-12-15 14:31:24 -0800679
680 free_bits = le32_to_cpu(alloc->id1.bitmap1.i_total) -
681 le32_to_cpu(alloc->id1.bitmap1.i_used);
682 if (bits_wanted > free_bits) {
683 /* uhoh, window change time. */
684 status =
685 ocfs2_local_alloc_slide_window(osb, local_alloc_inode);
686 if (status < 0) {
687 if (status != -ENOSPC)
688 mlog_errno(status);
689 goto bail;
690 }
Mark Fasheh9c7af402008-07-28 18:02:53 -0700691
692 /*
693 * Under certain conditions, the window slide code
694 * might have reduced the number of bits available or
695 * disabled the the local alloc entirely. Re-check
696 * here and return -ENOSPC if necessary.
697 */
698 status = -ENOSPC;
699 if (!ocfs2_la_state_enabled(osb))
700 goto bail;
701
702 free_bits = le32_to_cpu(alloc->id1.bitmap1.i_total) -
703 le32_to_cpu(alloc->id1.bitmap1.i_used);
704 if (bits_wanted > free_bits)
705 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -0800706 }
707
Joel Becker1187c962008-09-03 20:03:39 -0700708 if (ac->ac_max_block)
709 mlog(0, "Calling in_range for max block %llu\n",
710 (unsigned long long)ac->ac_max_block);
711
Mark Fasheh8fccfc82007-05-09 17:34:26 -0700712 ac->ac_inode = local_alloc_inode;
Tao Maa4a48912008-03-03 17:12:30 +0800713 /* We should never use localalloc from another slot */
714 ac->ac_alloc_slot = osb->slot_num;
Mark Fasheh8fccfc82007-05-09 17:34:26 -0700715 ac->ac_which = OCFS2_AC_USE_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800716 get_bh(osb->local_alloc_bh);
717 ac->ac_bh = osb->local_alloc_bh;
Mark Fashehccd979b2005-12-15 14:31:24 -0800718 status = 0;
719bail:
Sunil Mushranbda02332007-09-21 11:41:43 -0700720 if (status < 0 && local_alloc_inode) {
721 mutex_unlock(&local_alloc_inode->i_mutex);
Mark Fasheh8fccfc82007-05-09 17:34:26 -0700722 iput(local_alloc_inode);
Sunil Mushranbda02332007-09-21 11:41:43 -0700723 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800724
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800725 mlog(0, "bits=%d, slot=%d, ret=%d\n", bits_wanted, osb->slot_num,
726 status);
727
Tao Mac1e8d352011-03-07 16:43:21 +0800728 if (status)
729 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800730 return status;
731}
732
733int ocfs2_claim_local_alloc_bits(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -0700734 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800735 struct ocfs2_alloc_context *ac,
Mark Fasheh415cb802007-09-16 20:10:16 -0700736 u32 bits_wanted,
Mark Fashehccd979b2005-12-15 14:31:24 -0800737 u32 *bit_off,
738 u32 *num_bits)
739{
740 int status, start;
741 struct inode *local_alloc_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800742 void *bitmap;
743 struct ocfs2_dinode *alloc;
744 struct ocfs2_local_alloc *la;
745
Mark Fashehccd979b2005-12-15 14:31:24 -0800746 BUG_ON(ac->ac_which != OCFS2_AC_USE_LOCAL);
747
Mark Fashehccd979b2005-12-15 14:31:24 -0800748 local_alloc_inode = ac->ac_inode;
749 alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
750 la = OCFS2_LOCAL_ALLOC(alloc);
751
Mark Fashehd02f00c2009-12-07 13:10:48 -0800752 start = ocfs2_local_alloc_find_clear_bits(osb, alloc, &bits_wanted,
753 ac->ac_resv);
Mark Fashehccd979b2005-12-15 14:31:24 -0800754 if (start == -1) {
755 /* TODO: Shouldn't we just BUG here? */
756 status = -ENOSPC;
757 mlog_errno(status);
758 goto bail;
759 }
760
761 bitmap = la->la_bitmap;
762 *bit_off = le32_to_cpu(la->la_bm_off) + start;
Mark Fashehccd979b2005-12-15 14:31:24 -0800763 *num_bits = bits_wanted;
764
Joel Becker0cf2f762009-02-12 16:41:25 -0800765 status = ocfs2_journal_access_di(handle,
766 INODE_CACHE(local_alloc_inode),
Joel Becker13723d02008-10-17 19:25:01 -0700767 osb->local_alloc_bh,
768 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800769 if (status < 0) {
770 mlog_errno(status);
771 goto bail;
772 }
773
Mark Fashehd02f00c2009-12-07 13:10:48 -0800774 ocfs2_resmap_claimed_bits(&osb->osb_la_resmap, ac->ac_resv, start,
775 bits_wanted);
776
Mark Fashehccd979b2005-12-15 14:31:24 -0800777 while(bits_wanted--)
778 ocfs2_set_bit(start++, bitmap);
779
Marcin Slusarz0dd32562008-02-13 00:06:18 +0100780 le32_add_cpu(&alloc->id1.bitmap1.i_used, *num_bits);
Joel Beckerec20cec2010-03-19 14:13:52 -0700781 ocfs2_journal_dirty(handle, osb->local_alloc_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800782
Mark Fashehccd979b2005-12-15 14:31:24 -0800783bail:
Tao Mac1e8d352011-03-07 16:43:21 +0800784 if (status)
785 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800786 return status;
787}
788
789static u32 ocfs2_local_alloc_count_bits(struct ocfs2_dinode *alloc)
790{
791 int i;
792 u8 *buffer;
793 u32 count = 0;
794 struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
795
Mark Fashehccd979b2005-12-15 14:31:24 -0800796 buffer = la->la_bitmap;
797 for (i = 0; i < le16_to_cpu(la->la_size); i++)
798 count += hweight8(buffer[i]);
799
Tao Mac1e8d352011-03-07 16:43:21 +0800800 mlog(0, "count %u\n", count);
Mark Fashehccd979b2005-12-15 14:31:24 -0800801 return count;
802}
803
804static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb,
Mark Fashehd02f00c2009-12-07 13:10:48 -0800805 struct ocfs2_dinode *alloc,
806 u32 *numbits,
807 struct ocfs2_alloc_reservation *resv)
Mark Fashehccd979b2005-12-15 14:31:24 -0800808{
809 int numfound, bitoff, left, startoff, lastzero;
Mark Fashehd02f00c2009-12-07 13:10:48 -0800810 int local_resv = 0;
811 struct ocfs2_alloc_reservation r;
Mark Fashehccd979b2005-12-15 14:31:24 -0800812 void *bitmap = NULL;
Mark Fashehd02f00c2009-12-07 13:10:48 -0800813 struct ocfs2_reservation_map *resmap = &osb->osb_la_resmap;
Mark Fashehccd979b2005-12-15 14:31:24 -0800814
Tao Maef6b6892011-02-21 11:10:44 +0800815 mlog(0, "(numbits wanted = %u)\n", *numbits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800816
817 if (!alloc->id1.bitmap1.i_total) {
818 mlog(0, "No bits in my window!\n");
819 bitoff = -1;
820 goto bail;
821 }
822
Mark Fashehd02f00c2009-12-07 13:10:48 -0800823 if (!resv) {
824 local_resv = 1;
825 ocfs2_resv_init_once(&r);
826 ocfs2_resv_set_type(&r, OCFS2_RESV_FLAG_TMP);
827 resv = &r;
828 }
829
830 numfound = *numbits;
831 if (ocfs2_resmap_resv_bits(resmap, resv, &bitoff, &numfound) == 0) {
832 if (numfound < *numbits)
833 *numbits = numfound;
834 goto bail;
835 }
836
837 /*
838 * Code error. While reservations are enabled, local
839 * allocation should _always_ go through them.
840 */
841 BUG_ON(osb->osb_resv_level != 0);
842
843 /*
844 * Reservations are disabled. Handle this the old way.
845 */
846
Mark Fashehccd979b2005-12-15 14:31:24 -0800847 bitmap = OCFS2_LOCAL_ALLOC(alloc)->la_bitmap;
848
849 numfound = bitoff = startoff = 0;
850 lastzero = -1;
851 left = le32_to_cpu(alloc->id1.bitmap1.i_total);
852 while ((bitoff = ocfs2_find_next_zero_bit(bitmap, left, startoff)) != -1) {
853 if (bitoff == left) {
854 /* mlog(0, "bitoff (%d) == left", bitoff); */
855 break;
856 }
857 /* mlog(0, "Found a zero: bitoff = %d, startoff = %d, "
858 "numfound = %d\n", bitoff, startoff, numfound);*/
859
860 /* Ok, we found a zero bit... is it contig. or do we
861 * start over?*/
862 if (bitoff == startoff) {
863 /* we found a zero */
864 numfound++;
865 startoff++;
866 } else {
867 /* got a zero after some ones */
868 numfound = 1;
869 startoff = bitoff+1;
870 }
871 /* we got everything we needed */
Mark Fashehd02f00c2009-12-07 13:10:48 -0800872 if (numfound == *numbits) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800873 /* mlog(0, "Found it all!\n"); */
874 break;
875 }
876 }
877
878 mlog(0, "Exiting loop, bitoff = %d, numfound = %d\n", bitoff,
879 numfound);
880
Tao Ma3e4218d2010-04-06 16:46:46 +0800881 if (numfound == *numbits)
Mark Fashehccd979b2005-12-15 14:31:24 -0800882 bitoff = startoff - numfound;
Tao Ma3e4218d2010-04-06 16:46:46 +0800883 else
Mark Fashehccd979b2005-12-15 14:31:24 -0800884 bitoff = -1;
885
886bail:
Mark Fashehd02f00c2009-12-07 13:10:48 -0800887 if (local_resv)
888 ocfs2_resv_discard(resmap, resv);
889
Tao Mac1e8d352011-03-07 16:43:21 +0800890 mlog(0, "bitoff %d\n", bitoff);
Mark Fashehccd979b2005-12-15 14:31:24 -0800891 return bitoff;
892}
893
894static void ocfs2_clear_local_alloc(struct ocfs2_dinode *alloc)
895{
896 struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
897 int i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800898
899 alloc->id1.bitmap1.i_total = 0;
900 alloc->id1.bitmap1.i_used = 0;
901 la->la_bm_off = 0;
902 for(i = 0; i < le16_to_cpu(la->la_size); i++)
903 la->la_bitmap[i] = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800904}
905
906#if 0
907/* turn this on and uncomment below to aid debugging window shifts. */
908static void ocfs2_verify_zero_bits(unsigned long *bitmap,
909 unsigned int start,
910 unsigned int count)
911{
912 unsigned int tmp = count;
913 while(tmp--) {
914 if (ocfs2_test_bit(start + tmp, bitmap)) {
915 printk("ocfs2_verify_zero_bits: start = %u, count = "
916 "%u\n", start, count);
917 printk("ocfs2_verify_zero_bits: bit %u is set!",
918 start + tmp);
919 BUG();
920 }
921 }
922}
923#endif
924
925/*
926 * sync the local alloc to main bitmap.
927 *
928 * assumes you've already locked the main bitmap -- the bitmap inode
929 * passed is used for caching.
930 */
931static int ocfs2_sync_local_to_main(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -0700932 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800933 struct ocfs2_dinode *alloc,
934 struct inode *main_bm_inode,
935 struct buffer_head *main_bm_bh)
936{
937 int status = 0;
938 int bit_off, left, count, start;
939 u64 la_start_blk;
940 u64 blkno;
941 void *bitmap;
942 struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
943
Tao Maef6b6892011-02-21 11:10:44 +0800944 mlog(0, "total = %u, used = %u\n",
945 le32_to_cpu(alloc->id1.bitmap1.i_total),
946 le32_to_cpu(alloc->id1.bitmap1.i_used));
Mark Fashehccd979b2005-12-15 14:31:24 -0800947
948 if (!alloc->id1.bitmap1.i_total) {
949 mlog(0, "nothing to sync!\n");
950 goto bail;
951 }
952
953 if (le32_to_cpu(alloc->id1.bitmap1.i_used) ==
954 le32_to_cpu(alloc->id1.bitmap1.i_total)) {
955 mlog(0, "all bits were taken!\n");
956 goto bail;
957 }
958
959 la_start_blk = ocfs2_clusters_to_blocks(osb->sb,
960 le32_to_cpu(la->la_bm_off));
961 bitmap = la->la_bitmap;
962 start = count = bit_off = 0;
963 left = le32_to_cpu(alloc->id1.bitmap1.i_total);
964
965 while ((bit_off = ocfs2_find_next_zero_bit(bitmap, left, start))
966 != -1) {
967 if ((bit_off < left) && (bit_off == start)) {
968 count++;
969 start++;
970 continue;
971 }
972 if (count) {
973 blkno = la_start_blk +
974 ocfs2_clusters_to_blocks(osb->sb,
975 start - count);
976
Mark Fashehb06970532006-03-03 10:24:33 -0800977 mlog(0, "freeing %u bits starting at local alloc bit "
978 "%u (la_start_blk = %llu, blkno = %llu)\n",
979 count, start - count,
980 (unsigned long long)la_start_blk,
981 (unsigned long long)blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800982
Mark Fashehb4414ee2010-03-11 18:31:09 -0800983 status = ocfs2_release_clusters(handle,
984 main_bm_inode,
985 main_bm_bh, blkno,
986 count);
Mark Fashehccd979b2005-12-15 14:31:24 -0800987 if (status < 0) {
988 mlog_errno(status);
989 goto bail;
990 }
991 }
992 if (bit_off >= left)
993 break;
994 count = 1;
995 start = bit_off + 1;
996 }
997
998bail:
Tao Mac1e8d352011-03-07 16:43:21 +0800999 if (status)
1000 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001001 return status;
1002}
1003
Mark Fasheh9c7af402008-07-28 18:02:53 -07001004enum ocfs2_la_event {
1005 OCFS2_LA_EVENT_SLIDE, /* Normal window slide. */
1006 OCFS2_LA_EVENT_FRAGMENTED, /* The global bitmap has
1007 * enough bits theoretically
1008 * free, but a contiguous
1009 * allocation could not be
1010 * found. */
1011 OCFS2_LA_EVENT_ENOSPC, /* Global bitmap doesn't have
1012 * enough bits free to satisfy
1013 * our request. */
1014};
1015#define OCFS2_LA_ENABLE_INTERVAL (30 * HZ)
1016/*
1017 * Given an event, calculate the size of our next local alloc window.
1018 *
1019 * This should always be called under i_mutex of the local alloc inode
1020 * so that local alloc disabling doesn't race with processes trying to
1021 * use the allocator.
1022 *
1023 * Returns the state which the local alloc was left in. This value can
1024 * be ignored by some paths.
1025 */
1026static int ocfs2_recalc_la_window(struct ocfs2_super *osb,
1027 enum ocfs2_la_event event)
1028{
1029 unsigned int bits;
1030 int state;
1031
1032 spin_lock(&osb->osb_lock);
1033 if (osb->local_alloc_state == OCFS2_LA_DISABLED) {
1034 WARN_ON_ONCE(osb->local_alloc_state == OCFS2_LA_DISABLED);
1035 goto out_unlock;
1036 }
1037
1038 /*
1039 * ENOSPC and fragmentation are treated similarly for now.
1040 */
1041 if (event == OCFS2_LA_EVENT_ENOSPC ||
1042 event == OCFS2_LA_EVENT_FRAGMENTED) {
1043 /*
1044 * We ran out of contiguous space in the primary
1045 * bitmap. Drastically reduce the number of bits used
1046 * by local alloc until we have to disable it.
1047 */
1048 bits = osb->local_alloc_bits >> 1;
1049 if (bits > ocfs2_megabytes_to_clusters(osb->sb, 1)) {
1050 /*
1051 * By setting state to THROTTLED, we'll keep
1052 * the number of local alloc bits used down
1053 * until an event occurs which would give us
1054 * reason to assume the bitmap situation might
1055 * have changed.
1056 */
1057 osb->local_alloc_state = OCFS2_LA_THROTTLED;
1058 osb->local_alloc_bits = bits;
1059 } else {
1060 osb->local_alloc_state = OCFS2_LA_DISABLED;
1061 }
1062 queue_delayed_work(ocfs2_wq, &osb->la_enable_wq,
1063 OCFS2_LA_ENABLE_INTERVAL);
1064 goto out_unlock;
1065 }
1066
1067 /*
1068 * Don't increase the size of the local alloc window until we
1069 * know we might be able to fulfill the request. Otherwise, we
1070 * risk bouncing around the global bitmap during periods of
1071 * low space.
1072 */
1073 if (osb->local_alloc_state != OCFS2_LA_THROTTLED)
1074 osb->local_alloc_bits = osb->local_alloc_default_bits;
1075
1076out_unlock:
1077 state = osb->local_alloc_state;
1078 spin_unlock(&osb->osb_lock);
1079
1080 return state;
1081}
1082
Mark Fashehccd979b2005-12-15 14:31:24 -08001083static int ocfs2_local_alloc_reserve_for_window(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -08001084 struct ocfs2_alloc_context **ac,
1085 struct inode **bitmap_inode,
1086 struct buffer_head **bitmap_bh)
1087{
1088 int status;
1089
Robert P. J. Daycd861282006-12-13 00:34:52 -08001090 *ac = kzalloc(sizeof(struct ocfs2_alloc_context), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001091 if (!(*ac)) {
1092 status = -ENOMEM;
1093 mlog_errno(status);
1094 goto bail;
1095 }
1096
Mark Fasheh9c7af402008-07-28 18:02:53 -07001097retry_enospc:
Mark Fashehb22b63e2010-03-11 18:43:46 -08001098 (*ac)->ac_bits_wanted = osb->local_alloc_default_bits;
Mark Fashehccd979b2005-12-15 14:31:24 -08001099 status = ocfs2_reserve_cluster_bitmap_bits(osb, *ac);
Mark Fasheh9c7af402008-07-28 18:02:53 -07001100 if (status == -ENOSPC) {
1101 if (ocfs2_recalc_la_window(osb, OCFS2_LA_EVENT_ENOSPC) ==
1102 OCFS2_LA_DISABLED)
1103 goto bail;
1104
1105 ocfs2_free_ac_resource(*ac);
1106 memset(*ac, 0, sizeof(struct ocfs2_alloc_context));
1107 goto retry_enospc;
1108 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001109 if (status < 0) {
Mark Fasheh9c7af402008-07-28 18:02:53 -07001110 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001111 goto bail;
1112 }
1113
1114 *bitmap_inode = (*ac)->ac_inode;
1115 igrab(*bitmap_inode);
1116 *bitmap_bh = (*ac)->ac_bh;
1117 get_bh(*bitmap_bh);
1118 status = 0;
1119bail:
1120 if ((status < 0) && *ac) {
1121 ocfs2_free_alloc_context(*ac);
1122 *ac = NULL;
1123 }
1124
Tao Mac1e8d352011-03-07 16:43:21 +08001125 if (status)
1126 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001127 return status;
1128}
1129
1130/*
1131 * pass it the bitmap lock in lock_bh if you have it.
1132 */
1133static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001134 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001135 struct ocfs2_alloc_context *ac)
1136{
1137 int status = 0;
1138 u32 cluster_off, cluster_count;
1139 struct ocfs2_dinode *alloc = NULL;
1140 struct ocfs2_local_alloc *la;
1141
Mark Fashehccd979b2005-12-15 14:31:24 -08001142 alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
1143 la = OCFS2_LOCAL_ALLOC(alloc);
1144
1145 if (alloc->id1.bitmap1.i_total)
1146 mlog(0, "asking me to alloc a new window over a non-empty "
1147 "one\n");
1148
1149 mlog(0, "Allocating %u clusters for a new window.\n",
Mark Fashehebcee4b2008-07-28 14:55:20 -07001150 osb->local_alloc_bits);
Mark Fasheh883d4ca2006-06-05 16:41:00 -04001151
1152 /* Instruct the allocation code to try the most recently used
1153 * cluster group. We'll re-record the group used this pass
1154 * below. */
1155 ac->ac_last_group = osb->la_last_gd;
1156
Mark Fashehccd979b2005-12-15 14:31:24 -08001157 /* we used the generic suballoc reserve function, but we set
1158 * everything up nicely, so there's no reason why we can't use
1159 * the more specific cluster api to claim bits. */
Joel Becker1ed9b772010-05-06 13:59:06 +08001160 status = ocfs2_claim_clusters(handle, ac, osb->local_alloc_bits,
Mark Fashehccd979b2005-12-15 14:31:24 -08001161 &cluster_off, &cluster_count);
Mark Fasheh9c7af402008-07-28 18:02:53 -07001162 if (status == -ENOSPC) {
1163retry_enospc:
1164 /*
1165 * Note: We could also try syncing the journal here to
1166 * allow use of any free bits which the current
1167 * transaction can't give us access to. --Mark
1168 */
1169 if (ocfs2_recalc_la_window(osb, OCFS2_LA_EVENT_FRAGMENTED) ==
1170 OCFS2_LA_DISABLED)
1171 goto bail;
1172
Mark Fashehb22b63e2010-03-11 18:43:46 -08001173 ac->ac_bits_wanted = osb->local_alloc_default_bits;
Joel Becker1ed9b772010-05-06 13:59:06 +08001174 status = ocfs2_claim_clusters(handle, ac,
Mark Fasheh9c7af402008-07-28 18:02:53 -07001175 osb->local_alloc_bits,
1176 &cluster_off,
1177 &cluster_count);
1178 if (status == -ENOSPC)
1179 goto retry_enospc;
1180 /*
1181 * We only shrunk the *minimum* number of in our
1182 * request - it's entirely possible that the allocator
1183 * might give us more than we asked for.
1184 */
1185 if (status == 0) {
1186 spin_lock(&osb->osb_lock);
1187 osb->local_alloc_bits = cluster_count;
1188 spin_unlock(&osb->osb_lock);
1189 }
1190 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001191 if (status < 0) {
1192 if (status != -ENOSPC)
1193 mlog_errno(status);
1194 goto bail;
1195 }
1196
Mark Fasheh883d4ca2006-06-05 16:41:00 -04001197 osb->la_last_gd = ac->ac_last_group;
1198
Mark Fashehccd979b2005-12-15 14:31:24 -08001199 la->la_bm_off = cpu_to_le32(cluster_off);
1200 alloc->id1.bitmap1.i_total = cpu_to_le32(cluster_count);
1201 /* just in case... In the future when we find space ourselves,
1202 * we don't have to get all contiguous -- but we'll have to
1203 * set all previously used bits in bitmap and update
1204 * la_bits_set before setting the bits in the main bitmap. */
1205 alloc->id1.bitmap1.i_used = 0;
1206 memset(OCFS2_LOCAL_ALLOC(alloc)->la_bitmap, 0,
1207 le16_to_cpu(la->la_size));
1208
Mark Fashehd02f00c2009-12-07 13:10:48 -08001209 ocfs2_resmap_restart(&osb->osb_la_resmap, cluster_count,
1210 OCFS2_LOCAL_ALLOC(alloc)->la_bitmap);
1211
Mark Fashehccd979b2005-12-15 14:31:24 -08001212 mlog(0, "New window allocated:\n");
1213 mlog(0, "window la_bm_off = %u\n",
1214 OCFS2_LOCAL_ALLOC(alloc)->la_bm_off);
1215 mlog(0, "window bits = %u\n", le32_to_cpu(alloc->id1.bitmap1.i_total));
1216
1217bail:
Tao Mac1e8d352011-03-07 16:43:21 +08001218 if (status)
1219 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001220 return status;
1221}
1222
1223/* Note that we do *NOT* lock the local alloc inode here as
1224 * it's been locked already for us. */
1225static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
1226 struct inode *local_alloc_inode)
1227{
1228 int status = 0;
1229 struct buffer_head *main_bm_bh = NULL;
1230 struct inode *main_bm_inode = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001231 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001232 struct ocfs2_dinode *alloc;
1233 struct ocfs2_dinode *alloc_copy = NULL;
1234 struct ocfs2_alloc_context *ac = NULL;
1235
Mark Fasheh9c7af402008-07-28 18:02:53 -07001236 ocfs2_recalc_la_window(osb, OCFS2_LA_EVENT_SLIDE);
1237
Mark Fashehccd979b2005-12-15 14:31:24 -08001238 /* This will lock the main bitmap for us. */
1239 status = ocfs2_local_alloc_reserve_for_window(osb,
Mark Fashehccd979b2005-12-15 14:31:24 -08001240 &ac,
1241 &main_bm_inode,
1242 &main_bm_bh);
1243 if (status < 0) {
1244 if (status != -ENOSPC)
1245 mlog_errno(status);
1246 goto bail;
1247 }
1248
Mark Fasheh65eff9c2006-10-09 17:26:22 -07001249 handle = ocfs2_start_trans(osb, OCFS2_WINDOW_MOVE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -08001250 if (IS_ERR(handle)) {
1251 status = PTR_ERR(handle);
1252 handle = NULL;
1253 mlog_errno(status);
1254 goto bail;
1255 }
1256
1257 alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
1258
1259 /* We want to clear the local alloc before doing anything
1260 * else, so that if we error later during this operation,
1261 * local alloc shutdown won't try to double free main bitmap
1262 * bits. Make a copy so the sync function knows which bits to
1263 * free. */
Sunil Mushran4ba1c5b2008-04-18 15:03:59 -07001264 alloc_copy = kmalloc(osb->local_alloc_bh->b_size, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -08001265 if (!alloc_copy) {
1266 status = -ENOMEM;
1267 mlog_errno(status);
1268 goto bail;
1269 }
1270 memcpy(alloc_copy, alloc, osb->local_alloc_bh->b_size);
1271
Joel Becker0cf2f762009-02-12 16:41:25 -08001272 status = ocfs2_journal_access_di(handle,
1273 INODE_CACHE(local_alloc_inode),
Joel Becker13723d02008-10-17 19:25:01 -07001274 osb->local_alloc_bh,
1275 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001276 if (status < 0) {
1277 mlog_errno(status);
1278 goto bail;
1279 }
1280
1281 ocfs2_clear_local_alloc(alloc);
Joel Beckerec20cec2010-03-19 14:13:52 -07001282 ocfs2_journal_dirty(handle, osb->local_alloc_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001283
1284 status = ocfs2_sync_local_to_main(osb, handle, alloc_copy,
1285 main_bm_inode, main_bm_bh);
1286 if (status < 0) {
1287 mlog_errno(status);
1288 goto bail;
1289 }
1290
1291 status = ocfs2_local_alloc_new_window(osb, handle, ac);
1292 if (status < 0) {
1293 if (status != -ENOSPC)
1294 mlog_errno(status);
1295 goto bail;
1296 }
1297
1298 atomic_inc(&osb->alloc_stats.moves);
1299
Mark Fashehccd979b2005-12-15 14:31:24 -08001300bail:
1301 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001302 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001303
Mark Fasheha81cb882008-10-07 14:25:16 -07001304 brelse(main_bm_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001305
1306 if (main_bm_inode)
1307 iput(main_bm_inode);
1308
1309 if (alloc_copy)
1310 kfree(alloc_copy);
1311
1312 if (ac)
1313 ocfs2_free_alloc_context(ac);
1314
Tao Mac1e8d352011-03-07 16:43:21 +08001315 if (status)
1316 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001317 return status;
1318}
1319