blob: 7fe8149a0002d55b671a212c777039c05d77d61e [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 Fasheh9c7af402008-07-28 18:02:53 -070078static inline int ocfs2_la_state_enabled(struct ocfs2_super *osb)
79{
80 return (osb->local_alloc_state == OCFS2_LA_THROTTLED ||
81 osb->local_alloc_state == OCFS2_LA_ENABLED);
82}
83
84void ocfs2_local_alloc_seen_free_bits(struct ocfs2_super *osb,
85 unsigned int num_clusters)
86{
87 spin_lock(&osb->osb_lock);
88 if (osb->local_alloc_state == OCFS2_LA_DISABLED ||
89 osb->local_alloc_state == OCFS2_LA_THROTTLED)
90 if (num_clusters >= osb->local_alloc_default_bits) {
91 cancel_delayed_work(&osb->la_enable_wq);
92 osb->local_alloc_state = OCFS2_LA_ENABLED;
93 }
94 spin_unlock(&osb->osb_lock);
95}
96
97void ocfs2_la_enable_worker(struct work_struct *work)
98{
99 struct ocfs2_super *osb =
100 container_of(work, struct ocfs2_super,
101 la_enable_wq.work);
102 spin_lock(&osb->osb_lock);
103 osb->local_alloc_state = OCFS2_LA_ENABLED;
104 spin_unlock(&osb->osb_lock);
105}
106
Mark Fashehccd979b2005-12-15 14:31:24 -0800107/*
108 * Tell us whether a given allocation should use the local alloc
109 * file. Otherwise, it has to go to the main bitmap.
Mark Fasheh9c7af402008-07-28 18:02:53 -0700110 *
111 * This function does semi-dirty reads of local alloc size and state!
112 * This is ok however, as the values are re-checked once under mutex.
Mark Fashehccd979b2005-12-15 14:31:24 -0800113 */
114int ocfs2_alloc_should_use_local(struct ocfs2_super *osb, u64 bits)
115{
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800116 int ret = 0;
Mark Fasheh9c7af402008-07-28 18:02:53 -0700117 int la_bits;
Mark Fashehccd979b2005-12-15 14:31:24 -0800118
Mark Fasheh9c7af402008-07-28 18:02:53 -0700119 spin_lock(&osb->osb_lock);
120 la_bits = osb->local_alloc_bits;
121
122 if (!ocfs2_la_state_enabled(osb))
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800123 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -0800124
125 /* la_bits should be at least twice the size (in clusters) of
126 * a new block group. We want to be sure block group
127 * allocations go through the local alloc, so allow an
128 * allocation to take up to half the bitmap. */
129 if (bits > (la_bits / 2))
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800130 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -0800131
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800132 ret = 1;
133bail:
134 mlog(0, "state=%d, bits=%llu, la_bits=%d, ret=%d\n",
135 osb->local_alloc_state, (unsigned long long)bits, la_bits, ret);
Mark Fasheh9c7af402008-07-28 18:02:53 -0700136 spin_unlock(&osb->osb_lock);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800137 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800138}
139
140int ocfs2_load_local_alloc(struct ocfs2_super *osb)
141{
142 int status = 0;
143 struct ocfs2_dinode *alloc = NULL;
144 struct buffer_head *alloc_bh = NULL;
145 u32 num_used;
146 struct inode *inode = NULL;
147 struct ocfs2_local_alloc *la;
148
149 mlog_entry_void();
150
Mark Fashehebcee4b2008-07-28 14:55:20 -0700151 if (osb->local_alloc_bits == 0)
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800152 goto bail;
153
Mark Fashehebcee4b2008-07-28 14:55:20 -0700154 if (osb->local_alloc_bits >= osb->bitmap_cpg) {
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800155 mlog(ML_NOTICE, "Requested local alloc window %d is larger "
156 "than max possible %u. Using defaults.\n",
Mark Fashehebcee4b2008-07-28 14:55:20 -0700157 osb->local_alloc_bits, (osb->bitmap_cpg - 1));
158 osb->local_alloc_bits =
159 ocfs2_megabytes_to_clusters(osb->sb,
160 OCFS2_DEFAULT_LOCAL_ALLOC_SIZE);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800161 }
162
Mark Fashehccd979b2005-12-15 14:31:24 -0800163 /* read the alloc off disk */
164 inode = ocfs2_get_system_file_inode(osb, LOCAL_ALLOC_SYSTEM_INODE,
165 osb->slot_num);
166 if (!inode) {
167 status = -EINVAL;
168 mlog_errno(status);
169 goto bail;
170 }
171
Joel Beckerb657c952008-11-13 14:49:11 -0800172 status = ocfs2_read_inode_block_full(inode, &alloc_bh,
173 OCFS2_BH_IGNORE_CACHE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800174 if (status < 0) {
175 mlog_errno(status);
176 goto bail;
177 }
178
179 alloc = (struct ocfs2_dinode *) alloc_bh->b_data;
180 la = OCFS2_LOCAL_ALLOC(alloc);
181
182 if (!(le32_to_cpu(alloc->i_flags) &
183 (OCFS2_LOCAL_ALLOC_FL|OCFS2_BITMAP_FL))) {
Mark Fashehb06970532006-03-03 10:24:33 -0800184 mlog(ML_ERROR, "Invalid local alloc inode, %llu\n",
185 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800186 status = -EINVAL;
187 goto bail;
188 }
189
190 if ((la->la_size == 0) ||
191 (le16_to_cpu(la->la_size) > ocfs2_local_alloc_size(inode->i_sb))) {
192 mlog(ML_ERROR, "Local alloc size is invalid (la_size = %u)\n",
193 le16_to_cpu(la->la_size));
194 status = -EINVAL;
195 goto bail;
196 }
197
198 /* do a little verification. */
199 num_used = ocfs2_local_alloc_count_bits(alloc);
200
201 /* hopefully the local alloc has always been recovered before
202 * we load it. */
203 if (num_used
204 || alloc->id1.bitmap1.i_used
205 || alloc->id1.bitmap1.i_total
206 || la->la_bm_off)
207 mlog(ML_ERROR, "Local alloc hasn't been recovered!\n"
208 "found = %u, set = %u, taken = %u, off = %u\n",
209 num_used, le32_to_cpu(alloc->id1.bitmap1.i_used),
210 le32_to_cpu(alloc->id1.bitmap1.i_total),
211 OCFS2_LOCAL_ALLOC(alloc)->la_bm_off);
212
213 osb->local_alloc_bh = alloc_bh;
214 osb->local_alloc_state = OCFS2_LA_ENABLED;
215
216bail:
217 if (status < 0)
Mark Fasheha81cb882008-10-07 14:25:16 -0700218 brelse(alloc_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800219 if (inode)
220 iput(inode);
221
Mark Fashehebcee4b2008-07-28 14:55:20 -0700222 mlog(0, "Local alloc window bits = %d\n", osb->local_alloc_bits);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800223
Mark Fashehccd979b2005-12-15 14:31:24 -0800224 mlog_exit(status);
225 return status;
226}
227
228/*
229 * return any unused bits to the bitmap and write out a clean
230 * local_alloc.
231 *
232 * local_alloc_bh is optional. If not passed, we will simply use the
233 * one off osb. If you do pass it however, be warned that it *will* be
234 * returned brelse'd and NULL'd out.*/
235void ocfs2_shutdown_local_alloc(struct ocfs2_super *osb)
236{
237 int status;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700238 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800239 struct inode *local_alloc_inode = NULL;
240 struct buffer_head *bh = NULL;
241 struct buffer_head *main_bm_bh = NULL;
242 struct inode *main_bm_inode = NULL;
243 struct ocfs2_dinode *alloc_copy = NULL;
244 struct ocfs2_dinode *alloc = NULL;
245
246 mlog_entry_void();
247
Mark Fasheh9c7af402008-07-28 18:02:53 -0700248 cancel_delayed_work(&osb->la_enable_wq);
249 flush_workqueue(ocfs2_wq);
250
Mark Fashehccd979b2005-12-15 14:31:24 -0800251 if (osb->local_alloc_state == OCFS2_LA_UNUSED)
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700252 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800253
254 local_alloc_inode =
255 ocfs2_get_system_file_inode(osb,
256 LOCAL_ALLOC_SYSTEM_INODE,
257 osb->slot_num);
258 if (!local_alloc_inode) {
259 status = -ENOENT;
260 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700261 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800262 }
263
264 osb->local_alloc_state = OCFS2_LA_DISABLED;
265
Mark Fashehd02f00c2009-12-07 13:10:48 -0800266 ocfs2_resmap_uninit(&osb->osb_la_resmap);
267
Mark Fashehccd979b2005-12-15 14:31:24 -0800268 main_bm_inode = ocfs2_get_system_file_inode(osb,
269 GLOBAL_BITMAP_SYSTEM_INODE,
270 OCFS2_INVALID_SLOT);
271 if (!main_bm_inode) {
272 status = -EINVAL;
273 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700274 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800275 }
276
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700277 mutex_lock(&main_bm_inode->i_mutex);
278
Mark Fashehe63aecb62007-10-18 15:30:42 -0700279 status = ocfs2_inode_lock(main_bm_inode, &main_bm_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800280 if (status < 0) {
281 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700282 goto out_mutex;
Mark Fashehccd979b2005-12-15 14:31:24 -0800283 }
284
285 /* WINDOW_MOVE_CREDITS is a bit heavy... */
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700286 handle = ocfs2_start_trans(osb, OCFS2_WINDOW_MOVE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800287 if (IS_ERR(handle)) {
288 mlog_errno(PTR_ERR(handle));
289 handle = NULL;
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700290 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -0800291 }
292
293 bh = osb->local_alloc_bh;
294 alloc = (struct ocfs2_dinode *) bh->b_data;
295
Sunil Mushran4ba1c5b2008-04-18 15:03:59 -0700296 alloc_copy = kmalloc(bh->b_size, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800297 if (!alloc_copy) {
298 status = -ENOMEM;
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700299 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800300 }
301 memcpy(alloc_copy, alloc, bh->b_size);
302
Joel Becker0cf2f762009-02-12 16:41:25 -0800303 status = ocfs2_journal_access_di(handle, INODE_CACHE(local_alloc_inode),
304 bh, OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800305 if (status < 0) {
306 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700307 goto out_commit;
Mark Fashehccd979b2005-12-15 14:31:24 -0800308 }
309
310 ocfs2_clear_local_alloc(alloc);
Joel Beckerec20cec2010-03-19 14:13:52 -0700311 ocfs2_journal_dirty(handle, bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800312
313 brelse(bh);
314 osb->local_alloc_bh = NULL;
315 osb->local_alloc_state = OCFS2_LA_UNUSED;
316
317 status = ocfs2_sync_local_to_main(osb, handle, alloc_copy,
318 main_bm_inode, main_bm_bh);
319 if (status < 0)
320 mlog_errno(status);
321
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700322out_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700323 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800324
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700325out_unlock:
Mark Fasheha81cb882008-10-07 14:25:16 -0700326 brelse(main_bm_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800327
Mark Fashehe63aecb62007-10-18 15:30:42 -0700328 ocfs2_inode_unlock(main_bm_inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800329
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700330out_mutex:
331 mutex_unlock(&main_bm_inode->i_mutex);
332 iput(main_bm_inode);
333
334out:
Mark Fashehccd979b2005-12-15 14:31:24 -0800335 if (local_alloc_inode)
336 iput(local_alloc_inode);
337
338 if (alloc_copy)
339 kfree(alloc_copy);
340
341 mlog_exit_void();
342}
343
344/*
345 * We want to free the bitmap bits outside of any recovery context as
346 * we'll need a cluster lock to do so, but we must clear the local
347 * alloc before giving up the recovered nodes journal. To solve this,
348 * we kmalloc a copy of the local alloc before it's change for the
349 * caller to process with ocfs2_complete_local_alloc_recovery
350 */
351int ocfs2_begin_local_alloc_recovery(struct ocfs2_super *osb,
352 int slot_num,
353 struct ocfs2_dinode **alloc_copy)
354{
355 int status = 0;
356 struct buffer_head *alloc_bh = NULL;
357 struct inode *inode = NULL;
358 struct ocfs2_dinode *alloc;
359
360 mlog_entry("(slot_num = %d)\n", slot_num);
361
362 *alloc_copy = NULL;
363
364 inode = ocfs2_get_system_file_inode(osb,
365 LOCAL_ALLOC_SYSTEM_INODE,
366 slot_num);
367 if (!inode) {
368 status = -EINVAL;
369 mlog_errno(status);
370 goto bail;
371 }
372
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800373 mutex_lock(&inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800374
Joel Beckerb657c952008-11-13 14:49:11 -0800375 status = ocfs2_read_inode_block_full(inode, &alloc_bh,
376 OCFS2_BH_IGNORE_CACHE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800377 if (status < 0) {
378 mlog_errno(status);
379 goto bail;
380 }
381
382 *alloc_copy = kmalloc(alloc_bh->b_size, GFP_KERNEL);
383 if (!(*alloc_copy)) {
384 status = -ENOMEM;
385 goto bail;
386 }
387 memcpy((*alloc_copy), alloc_bh->b_data, alloc_bh->b_size);
388
389 alloc = (struct ocfs2_dinode *) alloc_bh->b_data;
390 ocfs2_clear_local_alloc(alloc);
391
Joel Becker13723d02008-10-17 19:25:01 -0700392 ocfs2_compute_meta_ecc(osb->sb, alloc_bh->b_data, &alloc->i_check);
Joel Becker8cb471e2009-02-10 20:00:41 -0800393 status = ocfs2_write_block(osb, alloc_bh, INODE_CACHE(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -0800394 if (status < 0)
395 mlog_errno(status);
396
397bail:
398 if ((status < 0) && (*alloc_copy)) {
399 kfree(*alloc_copy);
400 *alloc_copy = NULL;
401 }
402
Mark Fasheha81cb882008-10-07 14:25:16 -0700403 brelse(alloc_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800404
405 if (inode) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800406 mutex_unlock(&inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800407 iput(inode);
408 }
409
410 mlog_exit(status);
411 return status;
412}
413
414/*
415 * Step 2: By now, we've completed the journal recovery, we've stamped
416 * a clean local alloc on disk and dropped the node out of the
417 * recovery map. Dlm locks will no longer stall, so lets clear out the
418 * main bitmap.
419 */
420int ocfs2_complete_local_alloc_recovery(struct ocfs2_super *osb,
421 struct ocfs2_dinode *alloc)
422{
423 int status;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700424 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800425 struct buffer_head *main_bm_bh = NULL;
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700426 struct inode *main_bm_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800427
428 mlog_entry_void();
429
Mark Fashehccd979b2005-12-15 14:31:24 -0800430 main_bm_inode = ocfs2_get_system_file_inode(osb,
431 GLOBAL_BITMAP_SYSTEM_INODE,
432 OCFS2_INVALID_SLOT);
433 if (!main_bm_inode) {
434 status = -EINVAL;
435 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700436 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -0800437 }
438
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700439 mutex_lock(&main_bm_inode->i_mutex);
440
Mark Fashehe63aecb62007-10-18 15:30:42 -0700441 status = ocfs2_inode_lock(main_bm_inode, &main_bm_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800442 if (status < 0) {
443 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700444 goto out_mutex;
Mark Fashehccd979b2005-12-15 14:31:24 -0800445 }
446
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700447 handle = ocfs2_start_trans(osb, OCFS2_WINDOW_MOVE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800448 if (IS_ERR(handle)) {
449 status = PTR_ERR(handle);
450 handle = NULL;
451 mlog_errno(status);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700452 goto out_unlock;
Mark Fashehccd979b2005-12-15 14:31:24 -0800453 }
454
455 /* we want the bitmap change to be recorded on disk asap */
Mark Fasheh1fabe142006-10-09 18:11:45 -0700456 handle->h_sync = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -0800457
458 status = ocfs2_sync_local_to_main(osb, handle, alloc,
459 main_bm_inode, main_bm_bh);
460 if (status < 0)
461 mlog_errno(status);
462
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700463 ocfs2_commit_trans(osb, handle);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700464
465out_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700466 ocfs2_inode_unlock(main_bm_inode, 1);
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700467
468out_mutex:
469 mutex_unlock(&main_bm_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800470
Mark Fasheha81cb882008-10-07 14:25:16 -0700471 brelse(main_bm_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800472
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700473 iput(main_bm_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800474
Mark Fasheh8898a5a2006-10-05 15:42:08 -0700475out:
Tao Ma4d0ddb22008-03-05 16:11:46 +0800476 if (!status)
Tiger Yangb89c5422010-01-25 14:11:06 +0800477 ocfs2_init_steal_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800478 mlog_exit(status);
479 return status;
480}
481
Joel Becker1187c962008-09-03 20:03:39 -0700482/* Check to see if the local alloc window is within ac->ac_max_block */
483static int ocfs2_local_alloc_in_range(struct inode *inode,
484 struct ocfs2_alloc_context *ac,
485 u32 bits_wanted)
486{
487 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
488 struct ocfs2_dinode *alloc;
489 struct ocfs2_local_alloc *la;
490 int start;
491 u64 block_off;
492
493 if (!ac->ac_max_block)
494 return 1;
495
496 alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
497 la = OCFS2_LOCAL_ALLOC(alloc);
498
Mark Fashehd02f00c2009-12-07 13:10:48 -0800499 start = ocfs2_local_alloc_find_clear_bits(osb, alloc, &bits_wanted, NULL);
Joel Becker1187c962008-09-03 20:03:39 -0700500 if (start == -1) {
501 mlog_errno(-ENOSPC);
502 return 0;
503 }
504
505 /*
506 * Converting (bm_off + start + bits_wanted) to blocks gives us
507 * the blkno just past our actual allocation. This is perfect
508 * to compare with ac_max_block.
509 */
510 block_off = ocfs2_clusters_to_blocks(inode->i_sb,
511 le32_to_cpu(la->la_bm_off) +
512 start + bits_wanted);
513 mlog(0, "Checking %llu against %llu\n",
514 (unsigned long long)block_off,
515 (unsigned long long)ac->ac_max_block);
516 if (block_off > ac->ac_max_block)
517 return 0;
518
519 return 1;
520}
521
Mark Fashehccd979b2005-12-15 14:31:24 -0800522/*
Mark Fasheh9c7af402008-07-28 18:02:53 -0700523 * make sure we've got at least bits_wanted contiguous bits in the
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800524 * local alloc. You lose them when you drop i_mutex.
Mark Fashehccd979b2005-12-15 14:31:24 -0800525 *
526 * We will add ourselves to the transaction passed in, but may start
527 * our own in order to shift windows.
528 */
529int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -0800530 u32 bits_wanted,
531 struct ocfs2_alloc_context *ac)
532{
533 int status;
534 struct ocfs2_dinode *alloc;
535 struct inode *local_alloc_inode;
536 unsigned int free_bits;
537
538 mlog_entry_void();
539
Mark Fashehccd979b2005-12-15 14:31:24 -0800540 BUG_ON(!ac);
Mark Fashehccd979b2005-12-15 14:31:24 -0800541
542 local_alloc_inode =
543 ocfs2_get_system_file_inode(osb,
544 LOCAL_ALLOC_SYSTEM_INODE,
545 osb->slot_num);
546 if (!local_alloc_inode) {
547 status = -ENOENT;
548 mlog_errno(status);
549 goto bail;
550 }
Mark Fashehda5cbf22006-10-06 18:34:35 -0700551
552 mutex_lock(&local_alloc_inode->i_mutex);
553
Mark Fasheh9c7af402008-07-28 18:02:53 -0700554 /*
555 * We must double check state and allocator bits because
556 * another process may have changed them while holding i_mutex.
557 */
558 spin_lock(&osb->osb_lock);
559 if (!ocfs2_la_state_enabled(osb) ||
560 (bits_wanted > osb->local_alloc_bits)) {
561 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800562 status = -ENOSPC;
563 goto bail;
564 }
Mark Fasheh9c7af402008-07-28 18:02:53 -0700565 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800566
567 alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
568
Joel Beckere407e392008-06-12 22:35:39 -0700569#ifdef CONFIG_OCFS2_DEBUG_FS
Mark Fashehccd979b2005-12-15 14:31:24 -0800570 if (le32_to_cpu(alloc->id1.bitmap1.i_used) !=
571 ocfs2_local_alloc_count_bits(alloc)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800572 ocfs2_error(osb->sb, "local alloc inode %llu says it has "
Mark Fashehccd979b2005-12-15 14:31:24 -0800573 "%u free bits, but a count shows %u",
Mark Fashehb06970532006-03-03 10:24:33 -0800574 (unsigned long long)le64_to_cpu(alloc->i_blkno),
Mark Fashehccd979b2005-12-15 14:31:24 -0800575 le32_to_cpu(alloc->id1.bitmap1.i_used),
576 ocfs2_local_alloc_count_bits(alloc));
577 status = -EIO;
578 goto bail;
579 }
Jan Kara5a58c3e2007-11-13 19:59:33 +0100580#endif
Mark Fashehccd979b2005-12-15 14:31:24 -0800581
582 free_bits = le32_to_cpu(alloc->id1.bitmap1.i_total) -
583 le32_to_cpu(alloc->id1.bitmap1.i_used);
584 if (bits_wanted > free_bits) {
585 /* uhoh, window change time. */
586 status =
587 ocfs2_local_alloc_slide_window(osb, local_alloc_inode);
588 if (status < 0) {
589 if (status != -ENOSPC)
590 mlog_errno(status);
591 goto bail;
592 }
Mark Fasheh9c7af402008-07-28 18:02:53 -0700593
594 /*
595 * Under certain conditions, the window slide code
596 * might have reduced the number of bits available or
597 * disabled the the local alloc entirely. Re-check
598 * here and return -ENOSPC if necessary.
599 */
600 status = -ENOSPC;
601 if (!ocfs2_la_state_enabled(osb))
602 goto bail;
603
604 free_bits = le32_to_cpu(alloc->id1.bitmap1.i_total) -
605 le32_to_cpu(alloc->id1.bitmap1.i_used);
606 if (bits_wanted > free_bits)
607 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -0800608 }
609
Joel Becker1187c962008-09-03 20:03:39 -0700610 if (ac->ac_max_block)
611 mlog(0, "Calling in_range for max block %llu\n",
612 (unsigned long long)ac->ac_max_block);
613
614 if (!ocfs2_local_alloc_in_range(local_alloc_inode, ac,
615 bits_wanted)) {
616 /*
617 * The window is outside ac->ac_max_block.
618 * This errno tells the caller to keep localalloc enabled
619 * but to get the allocation from the main bitmap.
620 */
621 status = -EFBIG;
622 goto bail;
623 }
624
Mark Fasheh8fccfc82007-05-09 17:34:26 -0700625 ac->ac_inode = local_alloc_inode;
Tao Maa4a48912008-03-03 17:12:30 +0800626 /* We should never use localalloc from another slot */
627 ac->ac_alloc_slot = osb->slot_num;
Mark Fasheh8fccfc82007-05-09 17:34:26 -0700628 ac->ac_which = OCFS2_AC_USE_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800629 get_bh(osb->local_alloc_bh);
630 ac->ac_bh = osb->local_alloc_bh;
Mark Fashehccd979b2005-12-15 14:31:24 -0800631 status = 0;
632bail:
Sunil Mushranbda02332007-09-21 11:41:43 -0700633 if (status < 0 && local_alloc_inode) {
634 mutex_unlock(&local_alloc_inode->i_mutex);
Mark Fasheh8fccfc82007-05-09 17:34:26 -0700635 iput(local_alloc_inode);
Sunil Mushranbda02332007-09-21 11:41:43 -0700636 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800637
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800638 mlog(0, "bits=%d, slot=%d, ret=%d\n", bits_wanted, osb->slot_num,
639 status);
640
Mark Fashehccd979b2005-12-15 14:31:24 -0800641 mlog_exit(status);
642 return status;
643}
644
645int ocfs2_claim_local_alloc_bits(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -0700646 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800647 struct ocfs2_alloc_context *ac,
Mark Fasheh415cb802007-09-16 20:10:16 -0700648 u32 bits_wanted,
Mark Fashehccd979b2005-12-15 14:31:24 -0800649 u32 *bit_off,
650 u32 *num_bits)
651{
652 int status, start;
653 struct inode *local_alloc_inode;
Mark Fashehccd979b2005-12-15 14:31:24 -0800654 void *bitmap;
655 struct ocfs2_dinode *alloc;
656 struct ocfs2_local_alloc *la;
657
658 mlog_entry_void();
659 BUG_ON(ac->ac_which != OCFS2_AC_USE_LOCAL);
660
Mark Fashehccd979b2005-12-15 14:31:24 -0800661 local_alloc_inode = ac->ac_inode;
662 alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
663 la = OCFS2_LOCAL_ALLOC(alloc);
664
Mark Fashehd02f00c2009-12-07 13:10:48 -0800665 start = ocfs2_local_alloc_find_clear_bits(osb, alloc, &bits_wanted,
666 ac->ac_resv);
Mark Fashehccd979b2005-12-15 14:31:24 -0800667 if (start == -1) {
668 /* TODO: Shouldn't we just BUG here? */
669 status = -ENOSPC;
670 mlog_errno(status);
671 goto bail;
672 }
673
674 bitmap = la->la_bitmap;
675 *bit_off = le32_to_cpu(la->la_bm_off) + start;
Mark Fashehccd979b2005-12-15 14:31:24 -0800676 *num_bits = bits_wanted;
677
Joel Becker0cf2f762009-02-12 16:41:25 -0800678 status = ocfs2_journal_access_di(handle,
679 INODE_CACHE(local_alloc_inode),
Joel Becker13723d02008-10-17 19:25:01 -0700680 osb->local_alloc_bh,
681 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800682 if (status < 0) {
683 mlog_errno(status);
684 goto bail;
685 }
686
Mark Fashehd02f00c2009-12-07 13:10:48 -0800687 ocfs2_resmap_claimed_bits(&osb->osb_la_resmap, ac->ac_resv, start,
688 bits_wanted);
689
Mark Fashehccd979b2005-12-15 14:31:24 -0800690 while(bits_wanted--)
691 ocfs2_set_bit(start++, bitmap);
692
Marcin Slusarz0dd32562008-02-13 00:06:18 +0100693 le32_add_cpu(&alloc->id1.bitmap1.i_used, *num_bits);
Joel Beckerec20cec2010-03-19 14:13:52 -0700694 ocfs2_journal_dirty(handle, osb->local_alloc_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800695
Mark Fashehccd979b2005-12-15 14:31:24 -0800696bail:
697 mlog_exit(status);
698 return status;
699}
700
701static u32 ocfs2_local_alloc_count_bits(struct ocfs2_dinode *alloc)
702{
703 int i;
704 u8 *buffer;
705 u32 count = 0;
706 struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
707
708 mlog_entry_void();
709
710 buffer = la->la_bitmap;
711 for (i = 0; i < le16_to_cpu(la->la_size); i++)
712 count += hweight8(buffer[i]);
713
714 mlog_exit(count);
715 return count;
716}
717
718static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb,
Mark Fashehd02f00c2009-12-07 13:10:48 -0800719 struct ocfs2_dinode *alloc,
720 u32 *numbits,
721 struct ocfs2_alloc_reservation *resv)
Mark Fashehccd979b2005-12-15 14:31:24 -0800722{
723 int numfound, bitoff, left, startoff, lastzero;
Mark Fashehd02f00c2009-12-07 13:10:48 -0800724 int local_resv = 0;
725 struct ocfs2_alloc_reservation r;
Mark Fashehccd979b2005-12-15 14:31:24 -0800726 void *bitmap = NULL;
Mark Fashehd02f00c2009-12-07 13:10:48 -0800727 struct ocfs2_reservation_map *resmap = &osb->osb_la_resmap;
Mark Fashehccd979b2005-12-15 14:31:24 -0800728
Mark Fashehd02f00c2009-12-07 13:10:48 -0800729 mlog_entry("(numbits wanted = %u)\n", *numbits);
Mark Fashehccd979b2005-12-15 14:31:24 -0800730
731 if (!alloc->id1.bitmap1.i_total) {
732 mlog(0, "No bits in my window!\n");
733 bitoff = -1;
734 goto bail;
735 }
736
Mark Fashehd02f00c2009-12-07 13:10:48 -0800737 if (!resv) {
738 local_resv = 1;
739 ocfs2_resv_init_once(&r);
740 ocfs2_resv_set_type(&r, OCFS2_RESV_FLAG_TMP);
741 resv = &r;
742 }
743
744 numfound = *numbits;
745 if (ocfs2_resmap_resv_bits(resmap, resv, &bitoff, &numfound) == 0) {
746 if (numfound < *numbits)
747 *numbits = numfound;
748 goto bail;
749 }
750
751 /*
752 * Code error. While reservations are enabled, local
753 * allocation should _always_ go through them.
754 */
755 BUG_ON(osb->osb_resv_level != 0);
756
757 /*
758 * Reservations are disabled. Handle this the old way.
759 */
760
Mark Fashehccd979b2005-12-15 14:31:24 -0800761 bitmap = OCFS2_LOCAL_ALLOC(alloc)->la_bitmap;
762
763 numfound = bitoff = startoff = 0;
764 lastzero = -1;
765 left = le32_to_cpu(alloc->id1.bitmap1.i_total);
766 while ((bitoff = ocfs2_find_next_zero_bit(bitmap, left, startoff)) != -1) {
767 if (bitoff == left) {
768 /* mlog(0, "bitoff (%d) == left", bitoff); */
769 break;
770 }
771 /* mlog(0, "Found a zero: bitoff = %d, startoff = %d, "
772 "numfound = %d\n", bitoff, startoff, numfound);*/
773
774 /* Ok, we found a zero bit... is it contig. or do we
775 * start over?*/
776 if (bitoff == startoff) {
777 /* we found a zero */
778 numfound++;
779 startoff++;
780 } else {
781 /* got a zero after some ones */
782 numfound = 1;
783 startoff = bitoff+1;
784 }
785 /* we got everything we needed */
Mark Fashehd02f00c2009-12-07 13:10:48 -0800786 if (numfound == *numbits) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800787 /* mlog(0, "Found it all!\n"); */
788 break;
789 }
790 }
791
792 mlog(0, "Exiting loop, bitoff = %d, numfound = %d\n", bitoff,
793 numfound);
794
Mark Fashehd02f00c2009-12-07 13:10:48 -0800795 if (numfound == *numbits) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800796 bitoff = startoff - numfound;
Mark Fashehd02f00c2009-12-07 13:10:48 -0800797 *numbits = numfound;
798 } else {
799 numfound = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800800 bitoff = -1;
Mark Fashehd02f00c2009-12-07 13:10:48 -0800801 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800802
803bail:
Mark Fashehd02f00c2009-12-07 13:10:48 -0800804 if (local_resv)
805 ocfs2_resv_discard(resmap, resv);
806
Mark Fashehccd979b2005-12-15 14:31:24 -0800807 mlog_exit(bitoff);
808 return bitoff;
809}
810
811static void ocfs2_clear_local_alloc(struct ocfs2_dinode *alloc)
812{
813 struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
814 int i;
815 mlog_entry_void();
816
817 alloc->id1.bitmap1.i_total = 0;
818 alloc->id1.bitmap1.i_used = 0;
819 la->la_bm_off = 0;
820 for(i = 0; i < le16_to_cpu(la->la_size); i++)
821 la->la_bitmap[i] = 0;
822
823 mlog_exit_void();
824}
825
826#if 0
827/* turn this on and uncomment below to aid debugging window shifts. */
828static void ocfs2_verify_zero_bits(unsigned long *bitmap,
829 unsigned int start,
830 unsigned int count)
831{
832 unsigned int tmp = count;
833 while(tmp--) {
834 if (ocfs2_test_bit(start + tmp, bitmap)) {
835 printk("ocfs2_verify_zero_bits: start = %u, count = "
836 "%u\n", start, count);
837 printk("ocfs2_verify_zero_bits: bit %u is set!",
838 start + tmp);
839 BUG();
840 }
841 }
842}
843#endif
844
845/*
846 * sync the local alloc to main bitmap.
847 *
848 * assumes you've already locked the main bitmap -- the bitmap inode
849 * passed is used for caching.
850 */
851static int ocfs2_sync_local_to_main(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -0700852 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800853 struct ocfs2_dinode *alloc,
854 struct inode *main_bm_inode,
855 struct buffer_head *main_bm_bh)
856{
857 int status = 0;
858 int bit_off, left, count, start;
859 u64 la_start_blk;
860 u64 blkno;
861 void *bitmap;
862 struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
863
Jan Kara5a58c3e2007-11-13 19:59:33 +0100864 mlog_entry("total = %u, used = %u\n",
Mark Fashehccd979b2005-12-15 14:31:24 -0800865 le32_to_cpu(alloc->id1.bitmap1.i_total),
Mark Fashehccd979b2005-12-15 14:31:24 -0800866 le32_to_cpu(alloc->id1.bitmap1.i_used));
867
868 if (!alloc->id1.bitmap1.i_total) {
869 mlog(0, "nothing to sync!\n");
870 goto bail;
871 }
872
873 if (le32_to_cpu(alloc->id1.bitmap1.i_used) ==
874 le32_to_cpu(alloc->id1.bitmap1.i_total)) {
875 mlog(0, "all bits were taken!\n");
876 goto bail;
877 }
878
879 la_start_blk = ocfs2_clusters_to_blocks(osb->sb,
880 le32_to_cpu(la->la_bm_off));
881 bitmap = la->la_bitmap;
882 start = count = bit_off = 0;
883 left = le32_to_cpu(alloc->id1.bitmap1.i_total);
884
885 while ((bit_off = ocfs2_find_next_zero_bit(bitmap, left, start))
886 != -1) {
887 if ((bit_off < left) && (bit_off == start)) {
888 count++;
889 start++;
890 continue;
891 }
892 if (count) {
893 blkno = la_start_blk +
894 ocfs2_clusters_to_blocks(osb->sb,
895 start - count);
896
Mark Fashehb06970532006-03-03 10:24:33 -0800897 mlog(0, "freeing %u bits starting at local alloc bit "
898 "%u (la_start_blk = %llu, blkno = %llu)\n",
899 count, start - count,
900 (unsigned long long)la_start_blk,
901 (unsigned long long)blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800902
Mark Fashehb4414ee2010-03-11 18:31:09 -0800903 status = ocfs2_release_clusters(handle,
904 main_bm_inode,
905 main_bm_bh, blkno,
906 count);
Mark Fashehccd979b2005-12-15 14:31:24 -0800907 if (status < 0) {
908 mlog_errno(status);
909 goto bail;
910 }
911 }
912 if (bit_off >= left)
913 break;
914 count = 1;
915 start = bit_off + 1;
916 }
917
918bail:
919 mlog_exit(status);
920 return status;
921}
922
Mark Fasheh9c7af402008-07-28 18:02:53 -0700923enum ocfs2_la_event {
924 OCFS2_LA_EVENT_SLIDE, /* Normal window slide. */
925 OCFS2_LA_EVENT_FRAGMENTED, /* The global bitmap has
926 * enough bits theoretically
927 * free, but a contiguous
928 * allocation could not be
929 * found. */
930 OCFS2_LA_EVENT_ENOSPC, /* Global bitmap doesn't have
931 * enough bits free to satisfy
932 * our request. */
933};
934#define OCFS2_LA_ENABLE_INTERVAL (30 * HZ)
935/*
936 * Given an event, calculate the size of our next local alloc window.
937 *
938 * This should always be called under i_mutex of the local alloc inode
939 * so that local alloc disabling doesn't race with processes trying to
940 * use the allocator.
941 *
942 * Returns the state which the local alloc was left in. This value can
943 * be ignored by some paths.
944 */
945static int ocfs2_recalc_la_window(struct ocfs2_super *osb,
946 enum ocfs2_la_event event)
947{
948 unsigned int bits;
949 int state;
950
951 spin_lock(&osb->osb_lock);
952 if (osb->local_alloc_state == OCFS2_LA_DISABLED) {
953 WARN_ON_ONCE(osb->local_alloc_state == OCFS2_LA_DISABLED);
954 goto out_unlock;
955 }
956
957 /*
958 * ENOSPC and fragmentation are treated similarly for now.
959 */
960 if (event == OCFS2_LA_EVENT_ENOSPC ||
961 event == OCFS2_LA_EVENT_FRAGMENTED) {
962 /*
963 * We ran out of contiguous space in the primary
964 * bitmap. Drastically reduce the number of bits used
965 * by local alloc until we have to disable it.
966 */
967 bits = osb->local_alloc_bits >> 1;
968 if (bits > ocfs2_megabytes_to_clusters(osb->sb, 1)) {
969 /*
970 * By setting state to THROTTLED, we'll keep
971 * the number of local alloc bits used down
972 * until an event occurs which would give us
973 * reason to assume the bitmap situation might
974 * have changed.
975 */
976 osb->local_alloc_state = OCFS2_LA_THROTTLED;
977 osb->local_alloc_bits = bits;
978 } else {
979 osb->local_alloc_state = OCFS2_LA_DISABLED;
980 }
981 queue_delayed_work(ocfs2_wq, &osb->la_enable_wq,
982 OCFS2_LA_ENABLE_INTERVAL);
983 goto out_unlock;
984 }
985
986 /*
987 * Don't increase the size of the local alloc window until we
988 * know we might be able to fulfill the request. Otherwise, we
989 * risk bouncing around the global bitmap during periods of
990 * low space.
991 */
992 if (osb->local_alloc_state != OCFS2_LA_THROTTLED)
993 osb->local_alloc_bits = osb->local_alloc_default_bits;
994
995out_unlock:
996 state = osb->local_alloc_state;
997 spin_unlock(&osb->osb_lock);
998
999 return state;
1000}
1001
Mark Fashehccd979b2005-12-15 14:31:24 -08001002static int ocfs2_local_alloc_reserve_for_window(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -08001003 struct ocfs2_alloc_context **ac,
1004 struct inode **bitmap_inode,
1005 struct buffer_head **bitmap_bh)
1006{
1007 int status;
1008
Robert P. J. Daycd861282006-12-13 00:34:52 -08001009 *ac = kzalloc(sizeof(struct ocfs2_alloc_context), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001010 if (!(*ac)) {
1011 status = -ENOMEM;
1012 mlog_errno(status);
1013 goto bail;
1014 }
1015
Mark Fasheh9c7af402008-07-28 18:02:53 -07001016retry_enospc:
Mark Fashehb22b63e2010-03-11 18:43:46 -08001017 (*ac)->ac_bits_wanted = osb->local_alloc_default_bits;
Mark Fashehccd979b2005-12-15 14:31:24 -08001018 status = ocfs2_reserve_cluster_bitmap_bits(osb, *ac);
Mark Fasheh9c7af402008-07-28 18:02:53 -07001019 if (status == -ENOSPC) {
1020 if (ocfs2_recalc_la_window(osb, OCFS2_LA_EVENT_ENOSPC) ==
1021 OCFS2_LA_DISABLED)
1022 goto bail;
1023
1024 ocfs2_free_ac_resource(*ac);
1025 memset(*ac, 0, sizeof(struct ocfs2_alloc_context));
1026 goto retry_enospc;
1027 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001028 if (status < 0) {
Mark Fasheh9c7af402008-07-28 18:02:53 -07001029 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001030 goto bail;
1031 }
1032
1033 *bitmap_inode = (*ac)->ac_inode;
1034 igrab(*bitmap_inode);
1035 *bitmap_bh = (*ac)->ac_bh;
1036 get_bh(*bitmap_bh);
1037 status = 0;
1038bail:
1039 if ((status < 0) && *ac) {
1040 ocfs2_free_alloc_context(*ac);
1041 *ac = NULL;
1042 }
1043
1044 mlog_exit(status);
1045 return status;
1046}
1047
1048/*
1049 * pass it the bitmap lock in lock_bh if you have it.
1050 */
1051static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
Mark Fasheh1fabe142006-10-09 18:11:45 -07001052 handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001053 struct ocfs2_alloc_context *ac)
1054{
1055 int status = 0;
1056 u32 cluster_off, cluster_count;
1057 struct ocfs2_dinode *alloc = NULL;
1058 struct ocfs2_local_alloc *la;
1059
1060 mlog_entry_void();
1061
1062 alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
1063 la = OCFS2_LOCAL_ALLOC(alloc);
1064
1065 if (alloc->id1.bitmap1.i_total)
1066 mlog(0, "asking me to alloc a new window over a non-empty "
1067 "one\n");
1068
1069 mlog(0, "Allocating %u clusters for a new window.\n",
Mark Fashehebcee4b2008-07-28 14:55:20 -07001070 osb->local_alloc_bits);
Mark Fasheh883d4ca2006-06-05 16:41:00 -04001071
1072 /* Instruct the allocation code to try the most recently used
1073 * cluster group. We'll re-record the group used this pass
1074 * below. */
1075 ac->ac_last_group = osb->la_last_gd;
1076
Mark Fashehccd979b2005-12-15 14:31:24 -08001077 /* we used the generic suballoc reserve function, but we set
1078 * everything up nicely, so there's no reason why we can't use
1079 * the more specific cluster api to claim bits. */
Mark Fashehebcee4b2008-07-28 14:55:20 -07001080 status = ocfs2_claim_clusters(osb, handle, ac, osb->local_alloc_bits,
Mark Fashehccd979b2005-12-15 14:31:24 -08001081 &cluster_off, &cluster_count);
Mark Fasheh9c7af402008-07-28 18:02:53 -07001082 if (status == -ENOSPC) {
1083retry_enospc:
1084 /*
1085 * Note: We could also try syncing the journal here to
1086 * allow use of any free bits which the current
1087 * transaction can't give us access to. --Mark
1088 */
1089 if (ocfs2_recalc_la_window(osb, OCFS2_LA_EVENT_FRAGMENTED) ==
1090 OCFS2_LA_DISABLED)
1091 goto bail;
1092
Mark Fashehb22b63e2010-03-11 18:43:46 -08001093 ac->ac_bits_wanted = osb->local_alloc_default_bits;
Mark Fasheh9c7af402008-07-28 18:02:53 -07001094 status = ocfs2_claim_clusters(osb, handle, ac,
1095 osb->local_alloc_bits,
1096 &cluster_off,
1097 &cluster_count);
1098 if (status == -ENOSPC)
1099 goto retry_enospc;
1100 /*
1101 * We only shrunk the *minimum* number of in our
1102 * request - it's entirely possible that the allocator
1103 * might give us more than we asked for.
1104 */
1105 if (status == 0) {
1106 spin_lock(&osb->osb_lock);
1107 osb->local_alloc_bits = cluster_count;
1108 spin_unlock(&osb->osb_lock);
1109 }
1110 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001111 if (status < 0) {
1112 if (status != -ENOSPC)
1113 mlog_errno(status);
1114 goto bail;
1115 }
1116
Mark Fasheh883d4ca2006-06-05 16:41:00 -04001117 osb->la_last_gd = ac->ac_last_group;
1118
Mark Fashehccd979b2005-12-15 14:31:24 -08001119 la->la_bm_off = cpu_to_le32(cluster_off);
1120 alloc->id1.bitmap1.i_total = cpu_to_le32(cluster_count);
1121 /* just in case... In the future when we find space ourselves,
1122 * we don't have to get all contiguous -- but we'll have to
1123 * set all previously used bits in bitmap and update
1124 * la_bits_set before setting the bits in the main bitmap. */
1125 alloc->id1.bitmap1.i_used = 0;
1126 memset(OCFS2_LOCAL_ALLOC(alloc)->la_bitmap, 0,
1127 le16_to_cpu(la->la_size));
1128
Mark Fashehd02f00c2009-12-07 13:10:48 -08001129 ocfs2_resmap_restart(&osb->osb_la_resmap, cluster_count,
1130 OCFS2_LOCAL_ALLOC(alloc)->la_bitmap);
1131
Mark Fashehccd979b2005-12-15 14:31:24 -08001132 mlog(0, "New window allocated:\n");
1133 mlog(0, "window la_bm_off = %u\n",
1134 OCFS2_LOCAL_ALLOC(alloc)->la_bm_off);
1135 mlog(0, "window bits = %u\n", le32_to_cpu(alloc->id1.bitmap1.i_total));
1136
1137bail:
1138 mlog_exit(status);
1139 return status;
1140}
1141
1142/* Note that we do *NOT* lock the local alloc inode here as
1143 * it's been locked already for us. */
1144static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
1145 struct inode *local_alloc_inode)
1146{
1147 int status = 0;
1148 struct buffer_head *main_bm_bh = NULL;
1149 struct inode *main_bm_inode = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -07001150 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001151 struct ocfs2_dinode *alloc;
1152 struct ocfs2_dinode *alloc_copy = NULL;
1153 struct ocfs2_alloc_context *ac = NULL;
1154
1155 mlog_entry_void();
1156
Mark Fasheh9c7af402008-07-28 18:02:53 -07001157 ocfs2_recalc_la_window(osb, OCFS2_LA_EVENT_SLIDE);
1158
Mark Fashehccd979b2005-12-15 14:31:24 -08001159 /* This will lock the main bitmap for us. */
1160 status = ocfs2_local_alloc_reserve_for_window(osb,
Mark Fashehccd979b2005-12-15 14:31:24 -08001161 &ac,
1162 &main_bm_inode,
1163 &main_bm_bh);
1164 if (status < 0) {
1165 if (status != -ENOSPC)
1166 mlog_errno(status);
1167 goto bail;
1168 }
1169
Mark Fasheh65eff9c2006-10-09 17:26:22 -07001170 handle = ocfs2_start_trans(osb, OCFS2_WINDOW_MOVE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -08001171 if (IS_ERR(handle)) {
1172 status = PTR_ERR(handle);
1173 handle = NULL;
1174 mlog_errno(status);
1175 goto bail;
1176 }
1177
1178 alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
1179
1180 /* We want to clear the local alloc before doing anything
1181 * else, so that if we error later during this operation,
1182 * local alloc shutdown won't try to double free main bitmap
1183 * bits. Make a copy so the sync function knows which bits to
1184 * free. */
Sunil Mushran4ba1c5b2008-04-18 15:03:59 -07001185 alloc_copy = kmalloc(osb->local_alloc_bh->b_size, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -08001186 if (!alloc_copy) {
1187 status = -ENOMEM;
1188 mlog_errno(status);
1189 goto bail;
1190 }
1191 memcpy(alloc_copy, alloc, osb->local_alloc_bh->b_size);
1192
Joel Becker0cf2f762009-02-12 16:41:25 -08001193 status = ocfs2_journal_access_di(handle,
1194 INODE_CACHE(local_alloc_inode),
Joel Becker13723d02008-10-17 19:25:01 -07001195 osb->local_alloc_bh,
1196 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001197 if (status < 0) {
1198 mlog_errno(status);
1199 goto bail;
1200 }
1201
1202 ocfs2_clear_local_alloc(alloc);
Joel Beckerec20cec2010-03-19 14:13:52 -07001203 ocfs2_journal_dirty(handle, osb->local_alloc_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001204
1205 status = ocfs2_sync_local_to_main(osb, handle, alloc_copy,
1206 main_bm_inode, main_bm_bh);
1207 if (status < 0) {
1208 mlog_errno(status);
1209 goto bail;
1210 }
1211
1212 status = ocfs2_local_alloc_new_window(osb, handle, ac);
1213 if (status < 0) {
1214 if (status != -ENOSPC)
1215 mlog_errno(status);
1216 goto bail;
1217 }
1218
1219 atomic_inc(&osb->alloc_stats.moves);
1220
Mark Fashehccd979b2005-12-15 14:31:24 -08001221bail:
1222 if (handle)
Mark Fasheh02dc1af2006-10-09 16:48:10 -07001223 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08001224
Mark Fasheha81cb882008-10-07 14:25:16 -07001225 brelse(main_bm_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001226
1227 if (main_bm_inode)
1228 iput(main_bm_inode);
1229
1230 if (alloc_copy)
1231 kfree(alloc_copy);
1232
1233 if (ac)
1234 ocfs2_free_alloc_context(ac);
1235
1236 mlog_exit(status);
1237 return status;
1238}
1239