Blame view

fs/ocfs2/localalloc.c 23.2 KB
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  /* -*- mode: c; c-basic-offset: 8; -*-
   * vim: noexpandtab sw=8 ts=8 sts=0:
   *
   * localalloc.c
   *
   * Node local data allocation
   *
   * Copyright (C) 2002, 2004 Oracle.  All rights reserved.
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public
   * License as published by the Free Software Foundation; either
   * version 2 of the License, or (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * General Public License for more details.
   *
   * You should have received a copy of the GNU General Public
   * License along with this program; if not, write to the
   * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   * Boston, MA 021110-1307, USA.
   */
  
  #include <linux/fs.h>
  #include <linux/types.h>
  #include <linux/slab.h>
  #include <linux/highmem.h>
  #include <linux/bitops.h>
  
  #define MLOG_MASK_PREFIX ML_DISK_ALLOC
  #include <cluster/masklog.h>
  
  #include "ocfs2.h"
  
  #include "alloc.h"
  #include "dlmglue.h"
  #include "inode.h"
  #include "journal.h"
  #include "localalloc.h"
  #include "suballoc.h"
  #include "super.h"
  #include "sysfile.h"
  
  #include "buffer_head_io.h"
  
  #define OCFS2_LOCAL_ALLOC(dinode)	(&((dinode)->id2.i_lab))
  
  static inline int ocfs2_local_alloc_window_bits(struct ocfs2_super *osb);
  
  static u32 ocfs2_local_alloc_count_bits(struct ocfs2_dinode *alloc);
  
  static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb,
  					     struct ocfs2_dinode *alloc,
  					     u32 numbits);
  
  static void ocfs2_clear_local_alloc(struct ocfs2_dinode *alloc);
  
  static int ocfs2_sync_local_to_main(struct ocfs2_super *osb,
1fabe1481   Mark Fasheh   ocfs2: Remove str...
61
  				    handle_t *handle,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
62
63
64
65
66
  				    struct ocfs2_dinode *alloc,
  				    struct inode *main_bm_inode,
  				    struct buffer_head *main_bm_bh);
  
  static int ocfs2_local_alloc_reserve_for_window(struct ocfs2_super *osb,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
67
68
69
70
71
  						struct ocfs2_alloc_context **ac,
  						struct inode **bitmap_inode,
  						struct buffer_head **bitmap_bh);
  
  static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
1fabe1481   Mark Fasheh   ocfs2: Remove str...
72
  					handle_t *handle,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
  					struct ocfs2_alloc_context *ac);
  
  static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
  					  struct inode *local_alloc_inode);
  
  /*
   * Determine how large our local alloc window should be, in bits.
   *
   * These values (and the behavior in ocfs2_alloc_should_use_local) have
   * been chosen so that most allocations, including new block groups go
   * through local alloc.
   */
  static inline int ocfs2_local_alloc_window_bits(struct ocfs2_super *osb)
  {
  	BUG_ON(osb->s_clustersize_bits < 12);
  
  	return 2048 >> (osb->s_clustersize_bits - 12);
  }
  
  /*
   * Tell us whether a given allocation should use the local alloc
   * file. Otherwise, it has to go to the main bitmap.
   */
  int ocfs2_alloc_should_use_local(struct ocfs2_super *osb, u64 bits)
  {
  	int la_bits = ocfs2_local_alloc_window_bits(osb);
  
  	if (osb->local_alloc_state != OCFS2_LA_ENABLED)
  		return 0;
  
  	/* la_bits should be at least twice the size (in clusters) of
  	 * a new block group. We want to be sure block group
  	 * allocations go through the local alloc, so allow an
  	 * allocation to take up to half the bitmap. */
  	if (bits > (la_bits / 2))
  		return 0;
  
  	return 1;
  }
  
  int ocfs2_load_local_alloc(struct ocfs2_super *osb)
  {
  	int status = 0;
  	struct ocfs2_dinode *alloc = NULL;
  	struct buffer_head *alloc_bh = NULL;
  	u32 num_used;
  	struct inode *inode = NULL;
  	struct ocfs2_local_alloc *la;
  
  	mlog_entry_void();
  
  	/* read the alloc off disk */
  	inode = ocfs2_get_system_file_inode(osb, LOCAL_ALLOC_SYSTEM_INODE,
  					    osb->slot_num);
  	if (!inode) {
  		status = -EINVAL;
  		mlog_errno(status);
  		goto bail;
  	}
  
  	status = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno,
  				  &alloc_bh, 0, inode);
  	if (status < 0) {
  		mlog_errno(status);
  		goto bail;
  	}
  
  	alloc = (struct ocfs2_dinode *) alloc_bh->b_data;
  	la = OCFS2_LOCAL_ALLOC(alloc);
  
  	if (!(le32_to_cpu(alloc->i_flags) &
  	    (OCFS2_LOCAL_ALLOC_FL|OCFS2_BITMAP_FL))) {
b0697053f   Mark Fasheh   ocfs2: don't use ...
145
146
147
  		mlog(ML_ERROR, "Invalid local alloc inode, %llu
  ",
  		     (unsigned long long)OCFS2_I(inode)->ip_blkno);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
  		status = -EINVAL;
  		goto bail;
  	}
  
  	if ((la->la_size == 0) ||
  	    (le16_to_cpu(la->la_size) > ocfs2_local_alloc_size(inode->i_sb))) {
  		mlog(ML_ERROR, "Local alloc size is invalid (la_size = %u)
  ",
  		     le16_to_cpu(la->la_size));
  		status = -EINVAL;
  		goto bail;
  	}
  
  	/* do a little verification. */
  	num_used = ocfs2_local_alloc_count_bits(alloc);
  
  	/* hopefully the local alloc has always been recovered before
  	 * we load it. */
  	if (num_used
  	    || alloc->id1.bitmap1.i_used
  	    || alloc->id1.bitmap1.i_total
  	    || la->la_bm_off)
  		mlog(ML_ERROR, "Local alloc hasn't been recovered!
  "
  		     "found = %u, set = %u, taken = %u, off = %u
  ",
  		     num_used, le32_to_cpu(alloc->id1.bitmap1.i_used),
  		     le32_to_cpu(alloc->id1.bitmap1.i_total),
  		     OCFS2_LOCAL_ALLOC(alloc)->la_bm_off);
  
  	osb->local_alloc_bh = alloc_bh;
  	osb->local_alloc_state = OCFS2_LA_ENABLED;
  
  bail:
  	if (status < 0)
  		if (alloc_bh)
  			brelse(alloc_bh);
  	if (inode)
  		iput(inode);
  
  	mlog_exit(status);
  	return status;
  }
  
  /*
   * return any unused bits to the bitmap and write out a clean
   * local_alloc.
   *
   * local_alloc_bh is optional. If not passed, we will simply use the
   * one off osb. If you do pass it however, be warned that it *will* be
   * returned brelse'd and NULL'd out.*/
  void ocfs2_shutdown_local_alloc(struct ocfs2_super *osb)
  {
  	int status;
1fabe1481   Mark Fasheh   ocfs2: Remove str...
202
  	handle_t *handle;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
203
204
205
206
207
208
209
210
211
212
  	struct inode *local_alloc_inode = NULL;
  	struct buffer_head *bh = NULL;
  	struct buffer_head *main_bm_bh = NULL;
  	struct inode *main_bm_inode = NULL;
  	struct ocfs2_dinode *alloc_copy = NULL;
  	struct ocfs2_dinode *alloc = NULL;
  
  	mlog_entry_void();
  
  	if (osb->local_alloc_state == OCFS2_LA_UNUSED)
8898a5a58   Mark Fasheh   ocfs2: don't pass...
213
  		goto out;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
214
215
216
217
218
219
220
221
  
  	local_alloc_inode =
  		ocfs2_get_system_file_inode(osb,
  					    LOCAL_ALLOC_SYSTEM_INODE,
  					    osb->slot_num);
  	if (!local_alloc_inode) {
  		status = -ENOENT;
  		mlog_errno(status);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
222
  		goto out;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
223
224
225
  	}
  
  	osb->local_alloc_state = OCFS2_LA_DISABLED;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
226
227
228
229
230
231
  	main_bm_inode = ocfs2_get_system_file_inode(osb,
  						    GLOBAL_BITMAP_SYSTEM_INODE,
  						    OCFS2_INVALID_SLOT);
  	if (!main_bm_inode) {
  		status = -EINVAL;
  		mlog_errno(status);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
232
  		goto out;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
233
  	}
8898a5a58   Mark Fasheh   ocfs2: don't pass...
234
  	mutex_lock(&main_bm_inode->i_mutex);
4bcec1847   Mark Fasheh   ocfs2: remove unu...
235
  	status = ocfs2_meta_lock(main_bm_inode, &main_bm_bh, 1);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
236
237
  	if (status < 0) {
  		mlog_errno(status);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
238
  		goto out_mutex;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
239
240
241
  	}
  
  	/* WINDOW_MOVE_CREDITS is a bit heavy... */
65eff9ccf   Mark Fasheh   ocfs2: remove han...
242
  	handle = ocfs2_start_trans(osb, OCFS2_WINDOW_MOVE_CREDITS);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
243
244
245
  	if (IS_ERR(handle)) {
  		mlog_errno(PTR_ERR(handle));
  		handle = NULL;
8898a5a58   Mark Fasheh   ocfs2: don't pass...
246
  		goto out_unlock;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
247
248
249
250
251
252
253
254
  	}
  
  	bh = osb->local_alloc_bh;
  	alloc = (struct ocfs2_dinode *) bh->b_data;
  
  	alloc_copy = kmalloc(bh->b_size, GFP_KERNEL);
  	if (!alloc_copy) {
  		status = -ENOMEM;
8898a5a58   Mark Fasheh   ocfs2: don't pass...
255
  		goto out_commit;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
256
257
258
259
260
261
262
  	}
  	memcpy(alloc_copy, alloc, bh->b_size);
  
  	status = ocfs2_journal_access(handle, local_alloc_inode, bh,
  				      OCFS2_JOURNAL_ACCESS_WRITE);
  	if (status < 0) {
  		mlog_errno(status);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
263
  		goto out_commit;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
264
265
266
267
268
269
270
  	}
  
  	ocfs2_clear_local_alloc(alloc);
  
  	status = ocfs2_journal_dirty(handle, bh);
  	if (status < 0) {
  		mlog_errno(status);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
271
  		goto out_commit;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
272
273
274
275
276
277
278
279
280
281
  	}
  
  	brelse(bh);
  	osb->local_alloc_bh = NULL;
  	osb->local_alloc_state = OCFS2_LA_UNUSED;
  
  	status = ocfs2_sync_local_to_main(osb, handle, alloc_copy,
  					  main_bm_inode, main_bm_bh);
  	if (status < 0)
  		mlog_errno(status);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
282
  out_commit:
02dc1af44   Mark Fasheh   ocfs2: pass ocfs2...
283
  	ocfs2_commit_trans(osb, handle);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
284

8898a5a58   Mark Fasheh   ocfs2: don't pass...
285
  out_unlock:
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
286
287
  	if (main_bm_bh)
  		brelse(main_bm_bh);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
288
  	ocfs2_meta_unlock(main_bm_inode, 1);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
289

8898a5a58   Mark Fasheh   ocfs2: don't pass...
290
291
292
293
294
  out_mutex:
  	mutex_unlock(&main_bm_inode->i_mutex);
  	iput(main_bm_inode);
  
  out:
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
  	if (local_alloc_inode)
  		iput(local_alloc_inode);
  
  	if (alloc_copy)
  		kfree(alloc_copy);
  
  	mlog_exit_void();
  }
  
  /*
   * We want to free the bitmap bits outside of any recovery context as
   * we'll need a cluster lock to do so, but we must clear the local
   * alloc before giving up the recovered nodes journal. To solve this,
   * we kmalloc a copy of the local alloc before it's change for the
   * caller to process with ocfs2_complete_local_alloc_recovery
   */
  int ocfs2_begin_local_alloc_recovery(struct ocfs2_super *osb,
  				     int slot_num,
  				     struct ocfs2_dinode **alloc_copy)
  {
  	int status = 0;
  	struct buffer_head *alloc_bh = NULL;
  	struct inode *inode = NULL;
  	struct ocfs2_dinode *alloc;
  
  	mlog_entry("(slot_num = %d)
  ", slot_num);
  
  	*alloc_copy = NULL;
  
  	inode = ocfs2_get_system_file_inode(osb,
  					    LOCAL_ALLOC_SYSTEM_INODE,
  					    slot_num);
  	if (!inode) {
  		status = -EINVAL;
  		mlog_errno(status);
  		goto bail;
  	}
1b1dcc1b5   Jes Sorensen   [PATCH] mutex sub...
333
  	mutex_lock(&inode->i_mutex);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
  
  	status = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno,
  				  &alloc_bh, 0, inode);
  	if (status < 0) {
  		mlog_errno(status);
  		goto bail;
  	}
  
  	*alloc_copy = kmalloc(alloc_bh->b_size, GFP_KERNEL);
  	if (!(*alloc_copy)) {
  		status = -ENOMEM;
  		goto bail;
  	}
  	memcpy((*alloc_copy), alloc_bh->b_data, alloc_bh->b_size);
  
  	alloc = (struct ocfs2_dinode *) alloc_bh->b_data;
  	ocfs2_clear_local_alloc(alloc);
  
  	status = ocfs2_write_block(osb, alloc_bh, inode);
  	if (status < 0)
  		mlog_errno(status);
  
  bail:
  	if ((status < 0) && (*alloc_copy)) {
  		kfree(*alloc_copy);
  		*alloc_copy = NULL;
  	}
  
  	if (alloc_bh)
  		brelse(alloc_bh);
  
  	if (inode) {
1b1dcc1b5   Jes Sorensen   [PATCH] mutex sub...
366
  		mutex_unlock(&inode->i_mutex);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
  		iput(inode);
  	}
  
  	mlog_exit(status);
  	return status;
  }
  
  /*
   * Step 2: By now, we've completed the journal recovery, we've stamped
   * a clean local alloc on disk and dropped the node out of the
   * recovery map. Dlm locks will no longer stall, so lets clear out the
   * main bitmap.
   */
  int ocfs2_complete_local_alloc_recovery(struct ocfs2_super *osb,
  					struct ocfs2_dinode *alloc)
  {
  	int status;
1fabe1481   Mark Fasheh   ocfs2: Remove str...
384
  	handle_t *handle;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
385
  	struct buffer_head *main_bm_bh = NULL;
8898a5a58   Mark Fasheh   ocfs2: don't pass...
386
  	struct inode *main_bm_inode;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
387
388
  
  	mlog_entry_void();
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
389
390
391
392
393
394
  	main_bm_inode = ocfs2_get_system_file_inode(osb,
  						    GLOBAL_BITMAP_SYSTEM_INODE,
  						    OCFS2_INVALID_SLOT);
  	if (!main_bm_inode) {
  		status = -EINVAL;
  		mlog_errno(status);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
395
  		goto out;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
396
  	}
8898a5a58   Mark Fasheh   ocfs2: don't pass...
397
  	mutex_lock(&main_bm_inode->i_mutex);
4bcec1847   Mark Fasheh   ocfs2: remove unu...
398
  	status = ocfs2_meta_lock(main_bm_inode, &main_bm_bh, 1);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
399
400
  	if (status < 0) {
  		mlog_errno(status);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
401
  		goto out_mutex;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
402
  	}
65eff9ccf   Mark Fasheh   ocfs2: remove han...
403
  	handle = ocfs2_start_trans(osb, OCFS2_WINDOW_MOVE_CREDITS);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
404
405
406
407
  	if (IS_ERR(handle)) {
  		status = PTR_ERR(handle);
  		handle = NULL;
  		mlog_errno(status);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
408
  		goto out_unlock;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
409
410
411
  	}
  
  	/* we want the bitmap change to be recorded on disk asap */
1fabe1481   Mark Fasheh   ocfs2: Remove str...
412
  	handle->h_sync = 1;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
413
414
415
416
417
  
  	status = ocfs2_sync_local_to_main(osb, handle, alloc,
  					  main_bm_inode, main_bm_bh);
  	if (status < 0)
  		mlog_errno(status);
02dc1af44   Mark Fasheh   ocfs2: pass ocfs2...
418
  	ocfs2_commit_trans(osb, handle);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
419
420
421
422
423
424
  
  out_unlock:
  	ocfs2_meta_unlock(main_bm_inode, 1);
  
  out_mutex:
  	mutex_unlock(&main_bm_inode->i_mutex);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
425
426
427
  
  	if (main_bm_bh)
  		brelse(main_bm_bh);
8898a5a58   Mark Fasheh   ocfs2: don't pass...
428
  	iput(main_bm_inode);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
429

8898a5a58   Mark Fasheh   ocfs2: don't pass...
430
  out:
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
431
432
433
434
435
436
  	mlog_exit(status);
  	return status;
  }
  
  /*
   * make sure we've got at least bitswanted contiguous bits in the
1b1dcc1b5   Jes Sorensen   [PATCH] mutex sub...
437
   * local alloc. You lose them when you drop i_mutex.
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
438
439
440
441
442
   *
   * We will add ourselves to the transaction passed in, but may start
   * our own in order to shift windows.
   */
  int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
443
444
445
446
447
448
449
450
451
  				   u32 bits_wanted,
  				   struct ocfs2_alloc_context *ac)
  {
  	int status;
  	struct ocfs2_dinode *alloc;
  	struct inode *local_alloc_inode;
  	unsigned int free_bits;
  
  	mlog_entry_void();
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
452
  	BUG_ON(!ac);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
453
454
455
456
457
458
459
460
461
462
  
  	local_alloc_inode =
  		ocfs2_get_system_file_inode(osb,
  					    LOCAL_ALLOC_SYSTEM_INODE,
  					    osb->slot_num);
  	if (!local_alloc_inode) {
  		status = -ENOENT;
  		mlog_errno(status);
  		goto bail;
  	}
da5cbf2f9   Mark Fasheh   ocfs2: don't use ...
463
464
  
  	mutex_lock(&local_alloc_inode->i_mutex);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
  	if (osb->local_alloc_state != OCFS2_LA_ENABLED) {
  		status = -ENOSPC;
  		goto bail;
  	}
  
  	if (bits_wanted > ocfs2_local_alloc_window_bits(osb)) {
  		mlog(0, "Asking for more than my max window size!
  ");
  		status = -ENOSPC;
  		goto bail;
  	}
  
  	alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
  
  	if (le32_to_cpu(alloc->id1.bitmap1.i_used) !=
  	    ocfs2_local_alloc_count_bits(alloc)) {
b0697053f   Mark Fasheh   ocfs2: don't use ...
481
  		ocfs2_error(osb->sb, "local alloc inode %llu says it has "
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
482
  			    "%u free bits, but a count shows %u",
b0697053f   Mark Fasheh   ocfs2: don't use ...
483
  			    (unsigned long long)le64_to_cpu(alloc->i_blkno),
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
  			    le32_to_cpu(alloc->id1.bitmap1.i_used),
  			    ocfs2_local_alloc_count_bits(alloc));
  		status = -EIO;
  		goto bail;
  	}
  
  	free_bits = le32_to_cpu(alloc->id1.bitmap1.i_total) -
  		le32_to_cpu(alloc->id1.bitmap1.i_used);
  	if (bits_wanted > free_bits) {
  		/* uhoh, window change time. */
  		status =
  			ocfs2_local_alloc_slide_window(osb, local_alloc_inode);
  		if (status < 0) {
  			if (status != -ENOSPC)
  				mlog_errno(status);
  			goto bail;
  		}
  	}
8fccfc829   Mark Fasheh   ocfs2: fix inode ...
502
503
  	ac->ac_inode = local_alloc_inode;
  	ac->ac_which = OCFS2_AC_USE_LOCAL;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
504
505
  	get_bh(osb->local_alloc_bh);
  	ac->ac_bh = osb->local_alloc_bh;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
506
507
  	status = 0;
  bail:
8fccfc829   Mark Fasheh   ocfs2: fix inode ...
508
509
  	if (status < 0 && local_alloc_inode)
  		iput(local_alloc_inode);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
510
511
512
513
514
515
  
  	mlog_exit(status);
  	return status;
  }
  
  int ocfs2_claim_local_alloc_bits(struct ocfs2_super *osb,
1fabe1481   Mark Fasheh   ocfs2: Remove str...
516
  				 handle_t *handle,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
  				 struct ocfs2_alloc_context *ac,
  				 u32 min_bits,
  				 u32 *bit_off,
  				 u32 *num_bits)
  {
  	int status, start;
  	struct inode *local_alloc_inode;
  	u32 bits_wanted;
  	void *bitmap;
  	struct ocfs2_dinode *alloc;
  	struct ocfs2_local_alloc *la;
  
  	mlog_entry_void();
  	BUG_ON(ac->ac_which != OCFS2_AC_USE_LOCAL);
  
  	bits_wanted = ac->ac_bits_wanted - ac->ac_bits_given;
  	local_alloc_inode = ac->ac_inode;
  	alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
  	la = OCFS2_LOCAL_ALLOC(alloc);
  
  	start = ocfs2_local_alloc_find_clear_bits(osb, alloc, bits_wanted);
  	if (start == -1) {
  		/* TODO: Shouldn't we just BUG here? */
  		status = -ENOSPC;
  		mlog_errno(status);
  		goto bail;
  	}
  
  	bitmap = la->la_bitmap;
  	*bit_off = le32_to_cpu(la->la_bm_off) + start;
  	/* local alloc is always contiguous by nature -- we never
  	 * delete bits from it! */
  	*num_bits = bits_wanted;
  
  	status = ocfs2_journal_access(handle, local_alloc_inode,
  				      osb->local_alloc_bh,
  				      OCFS2_JOURNAL_ACCESS_WRITE);
  	if (status < 0) {
  		mlog_errno(status);
  		goto bail;
  	}
  
  	while(bits_wanted--)
  		ocfs2_set_bit(start++, bitmap);
  
  	alloc->id1.bitmap1.i_used = cpu_to_le32(*num_bits +
  				le32_to_cpu(alloc->id1.bitmap1.i_used));
  
  	status = ocfs2_journal_dirty(handle, osb->local_alloc_bh);
  	if (status < 0) {
  		mlog_errno(status);
  		goto bail;
  	}
  
  	status = 0;
  bail:
  	mlog_exit(status);
  	return status;
  }
  
  static u32 ocfs2_local_alloc_count_bits(struct ocfs2_dinode *alloc)
  {
  	int i;
  	u8 *buffer;
  	u32 count = 0;
  	struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
  
  	mlog_entry_void();
  
  	buffer = la->la_bitmap;
  	for (i = 0; i < le16_to_cpu(la->la_size); i++)
  		count += hweight8(buffer[i]);
  
  	mlog_exit(count);
  	return count;
  }
  
  static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb,
  					     struct ocfs2_dinode *alloc,
  					     u32 numbits)
  {
  	int numfound, bitoff, left, startoff, lastzero;
  	void *bitmap = NULL;
  
  	mlog_entry("(numbits wanted = %u)
  ", numbits);
  
  	if (!alloc->id1.bitmap1.i_total) {
  		mlog(0, "No bits in my window!
  ");
  		bitoff = -1;
  		goto bail;
  	}
  
  	bitmap = OCFS2_LOCAL_ALLOC(alloc)->la_bitmap;
  
  	numfound = bitoff = startoff = 0;
  	lastzero = -1;
  	left = le32_to_cpu(alloc->id1.bitmap1.i_total);
  	while ((bitoff = ocfs2_find_next_zero_bit(bitmap, left, startoff)) != -1) {
  		if (bitoff == left) {
  			/* mlog(0, "bitoff (%d) == left", bitoff); */
  			break;
  		}
  		/* mlog(0, "Found a zero: bitoff = %d, startoff = %d, "
  		   "numfound = %d
  ", bitoff, startoff, numfound);*/
  
  		/* Ok, we found a zero bit... is it contig. or do we
  		 * start over?*/
  		if (bitoff == startoff) {
  			/* we found a zero */
  			numfound++;
  			startoff++;
  		} else {
  			/* got a zero after some ones */
  			numfound = 1;
  			startoff = bitoff+1;
  		}
  		/* we got everything we needed */
  		if (numfound == numbits) {
  			/* mlog(0, "Found it all!
  "); */
  			break;
  		}
  	}
  
  	mlog(0, "Exiting loop, bitoff = %d, numfound = %d
  ", bitoff,
  	     numfound);
  
  	if (numfound == numbits)
  		bitoff = startoff - numfound;
  	else
  		bitoff = -1;
  
  bail:
  	mlog_exit(bitoff);
  	return bitoff;
  }
  
  static void ocfs2_clear_local_alloc(struct ocfs2_dinode *alloc)
  {
  	struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
  	int i;
  	mlog_entry_void();
  
  	alloc->id1.bitmap1.i_total = 0;
  	alloc->id1.bitmap1.i_used = 0;
  	la->la_bm_off = 0;
  	for(i = 0; i < le16_to_cpu(la->la_size); i++)
  		la->la_bitmap[i] = 0;
  
  	mlog_exit_void();
  }
  
  #if 0
  /* turn this on and uncomment below to aid debugging window shifts. */
  static void ocfs2_verify_zero_bits(unsigned long *bitmap,
  				   unsigned int start,
  				   unsigned int count)
  {
  	unsigned int tmp = count;
  	while(tmp--) {
  		if (ocfs2_test_bit(start + tmp, bitmap)) {
  			printk("ocfs2_verify_zero_bits: start = %u, count = "
  			       "%u
  ", start, count);
  			printk("ocfs2_verify_zero_bits: bit %u is set!",
  			       start + tmp);
  			BUG();
  		}
  	}
  }
  #endif
  
  /*
   * sync the local alloc to main bitmap.
   *
   * assumes you've already locked the main bitmap -- the bitmap inode
   * passed is used for caching.
   */
  static int ocfs2_sync_local_to_main(struct ocfs2_super *osb,
1fabe1481   Mark Fasheh   ocfs2: Remove str...
700
  				    handle_t *handle,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
  				    struct ocfs2_dinode *alloc,
  				    struct inode *main_bm_inode,
  				    struct buffer_head *main_bm_bh)
  {
  	int status = 0;
  	int bit_off, left, count, start;
  	u64 la_start_blk;
  	u64 blkno;
  	void *bitmap;
  	struct ocfs2_local_alloc *la = OCFS2_LOCAL_ALLOC(alloc);
  
  	mlog_entry("total = %u, COUNT = %u, used = %u
  ",
  		   le32_to_cpu(alloc->id1.bitmap1.i_total),
  		   ocfs2_local_alloc_count_bits(alloc),
  		   le32_to_cpu(alloc->id1.bitmap1.i_used));
  
  	if (!alloc->id1.bitmap1.i_total) {
  		mlog(0, "nothing to sync!
  ");
  		goto bail;
  	}
  
  	if (le32_to_cpu(alloc->id1.bitmap1.i_used) ==
  	    le32_to_cpu(alloc->id1.bitmap1.i_total)) {
  		mlog(0, "all bits were taken!
  ");
  		goto bail;
  	}
  
  	la_start_blk = ocfs2_clusters_to_blocks(osb->sb,
  						le32_to_cpu(la->la_bm_off));
  	bitmap = la->la_bitmap;
  	start = count = bit_off = 0;
  	left = le32_to_cpu(alloc->id1.bitmap1.i_total);
  
  	while ((bit_off = ocfs2_find_next_zero_bit(bitmap, left, start))
  	       != -1) {
  		if ((bit_off < left) && (bit_off == start)) {
  			count++;
  			start++;
  			continue;
  		}
  		if (count) {
  			blkno = la_start_blk +
  				ocfs2_clusters_to_blocks(osb->sb,
  							 start - count);
b0697053f   Mark Fasheh   ocfs2: don't use ...
748
749
750
751
752
753
  			mlog(0, "freeing %u bits starting at local alloc bit "
  			     "%u (la_start_blk = %llu, blkno = %llu)
  ",
  			     count, start - count,
  			     (unsigned long long)la_start_blk,
  			     (unsigned long long)blkno);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
  
  			status = ocfs2_free_clusters(handle, main_bm_inode,
  						     main_bm_bh, blkno, count);
  			if (status < 0) {
  				mlog_errno(status);
  				goto bail;
  			}
  		}
  		if (bit_off >= left)
  			break;
  		count = 1;
  		start = bit_off + 1;
  	}
  
  bail:
  	mlog_exit(status);
  	return status;
  }
  
  static int ocfs2_local_alloc_reserve_for_window(struct ocfs2_super *osb,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
774
775
776
777
778
  						struct ocfs2_alloc_context **ac,
  						struct inode **bitmap_inode,
  						struct buffer_head **bitmap_bh)
  {
  	int status;
cd8612808   Robert P. J. Day   [PATCH] Fix numer...
779
  	*ac = kzalloc(sizeof(struct ocfs2_alloc_context), GFP_KERNEL);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
780
781
782
783
784
  	if (!(*ac)) {
  		status = -ENOMEM;
  		mlog_errno(status);
  		goto bail;
  	}
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
  	(*ac)->ac_bits_wanted = ocfs2_local_alloc_window_bits(osb);
  
  	status = ocfs2_reserve_cluster_bitmap_bits(osb, *ac);
  	if (status < 0) {
  		if (status != -ENOSPC)
  			mlog_errno(status);
  		goto bail;
  	}
  
  	*bitmap_inode = (*ac)->ac_inode;
  	igrab(*bitmap_inode);
  	*bitmap_bh = (*ac)->ac_bh;
  	get_bh(*bitmap_bh);
  	status = 0;
  bail:
  	if ((status < 0) && *ac) {
  		ocfs2_free_alloc_context(*ac);
  		*ac = NULL;
  	}
  
  	mlog_exit(status);
  	return status;
  }
  
  /*
   * pass it the bitmap lock in lock_bh if you have it.
   */
  static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
1fabe1481   Mark Fasheh   ocfs2: Remove str...
813
  					handle_t *handle,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
  					struct ocfs2_alloc_context *ac)
  {
  	int status = 0;
  	u32 cluster_off, cluster_count;
  	struct ocfs2_dinode *alloc = NULL;
  	struct ocfs2_local_alloc *la;
  
  	mlog_entry_void();
  
  	alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
  	la = OCFS2_LOCAL_ALLOC(alloc);
  
  	if (alloc->id1.bitmap1.i_total)
  		mlog(0, "asking me to alloc a new window over a non-empty "
  		     "one
  ");
  
  	mlog(0, "Allocating %u clusters for a new window.
  ",
  	     ocfs2_local_alloc_window_bits(osb));
883d4cae4   Mark Fasheh   ocfs2: allocation...
834
835
836
837
838
  
  	/* Instruct the allocation code to try the most recently used
  	 * cluster group. We'll re-record the group used this pass
  	 * below. */
  	ac->ac_last_group = osb->la_last_gd;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
839
840
841
842
843
844
845
846
847
848
849
  	/* we used the generic suballoc reserve function, but we set
  	 * everything up nicely, so there's no reason why we can't use
  	 * the more specific cluster api to claim bits. */
  	status = ocfs2_claim_clusters(osb, handle, ac,
  				      ocfs2_local_alloc_window_bits(osb),
  				      &cluster_off, &cluster_count);
  	if (status < 0) {
  		if (status != -ENOSPC)
  			mlog_errno(status);
  		goto bail;
  	}
883d4cae4   Mark Fasheh   ocfs2: allocation...
850
  	osb->la_last_gd = ac->ac_last_group;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
  	la->la_bm_off = cpu_to_le32(cluster_off);
  	alloc->id1.bitmap1.i_total = cpu_to_le32(cluster_count);
  	/* just in case... In the future when we find space ourselves,
  	 * we don't have to get all contiguous -- but we'll have to
  	 * set all previously used bits in bitmap and update
  	 * la_bits_set before setting the bits in the main bitmap. */
  	alloc->id1.bitmap1.i_used = 0;
  	memset(OCFS2_LOCAL_ALLOC(alloc)->la_bitmap, 0,
  	       le16_to_cpu(la->la_size));
  
  	mlog(0, "New window allocated:
  ");
  	mlog(0, "window la_bm_off = %u
  ",
  	     OCFS2_LOCAL_ALLOC(alloc)->la_bm_off);
  	mlog(0, "window bits = %u
  ", le32_to_cpu(alloc->id1.bitmap1.i_total));
  
  bail:
  	mlog_exit(status);
  	return status;
  }
  
  /* Note that we do *NOT* lock the local alloc inode here as
   * it's been locked already for us. */
  static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
  					  struct inode *local_alloc_inode)
  {
  	int status = 0;
  	struct buffer_head *main_bm_bh = NULL;
  	struct inode *main_bm_inode = NULL;
1fabe1481   Mark Fasheh   ocfs2: Remove str...
882
  	handle_t *handle = NULL;
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
883
884
885
886
887
  	struct ocfs2_dinode *alloc;
  	struct ocfs2_dinode *alloc_copy = NULL;
  	struct ocfs2_alloc_context *ac = NULL;
  
  	mlog_entry_void();
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
888
889
  	/* This will lock the main bitmap for us. */
  	status = ocfs2_local_alloc_reserve_for_window(osb,
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
890
891
892
893
894
895
896
897
  						      &ac,
  						      &main_bm_inode,
  						      &main_bm_bh);
  	if (status < 0) {
  		if (status != -ENOSPC)
  			mlog_errno(status);
  		goto bail;
  	}
65eff9ccf   Mark Fasheh   ocfs2: remove han...
898
  	handle = ocfs2_start_trans(osb, OCFS2_WINDOW_MOVE_CREDITS);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
  	if (IS_ERR(handle)) {
  		status = PTR_ERR(handle);
  		handle = NULL;
  		mlog_errno(status);
  		goto bail;
  	}
  
  	alloc = (struct ocfs2_dinode *) osb->local_alloc_bh->b_data;
  
  	/* We want to clear the local alloc before doing anything
  	 * else, so that if we error later during this operation,
  	 * local alloc shutdown won't try to double free main bitmap
  	 * bits. Make a copy so the sync function knows which bits to
  	 * free. */
  	alloc_copy = kmalloc(osb->local_alloc_bh->b_size, GFP_KERNEL);
  	if (!alloc_copy) {
  		status = -ENOMEM;
  		mlog_errno(status);
  		goto bail;
  	}
  	memcpy(alloc_copy, alloc, osb->local_alloc_bh->b_size);
  
  	status = ocfs2_journal_access(handle, local_alloc_inode,
  				      osb->local_alloc_bh,
  				      OCFS2_JOURNAL_ACCESS_WRITE);
  	if (status < 0) {
  		mlog_errno(status);
  		goto bail;
  	}
  
  	ocfs2_clear_local_alloc(alloc);
  
  	status = ocfs2_journal_dirty(handle, osb->local_alloc_bh);
  	if (status < 0) {
  		mlog_errno(status);
  		goto bail;
  	}
  
  	status = ocfs2_sync_local_to_main(osb, handle, alloc_copy,
  					  main_bm_inode, main_bm_bh);
  	if (status < 0) {
  		mlog_errno(status);
  		goto bail;
  	}
  
  	status = ocfs2_local_alloc_new_window(osb, handle, ac);
  	if (status < 0) {
  		if (status != -ENOSPC)
  			mlog_errno(status);
  		goto bail;
  	}
  
  	atomic_inc(&osb->alloc_stats.moves);
  
  	status = 0;
  bail:
  	if (handle)
02dc1af44   Mark Fasheh   ocfs2: pass ocfs2...
956
  		ocfs2_commit_trans(osb, handle);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
  
  	if (main_bm_bh)
  		brelse(main_bm_bh);
  
  	if (main_bm_inode)
  		iput(main_bm_inode);
  
  	if (alloc_copy)
  		kfree(alloc_copy);
  
  	if (ac)
  		ocfs2_free_alloc_context(ac);
  
  	mlog_exit(status);
  	return status;
  }