x86, extable: Switch to relative exception table entries
[linux-2.6-block.git] / fs / gfs2 / log.c
CommitLineData
b3b94faa
DT
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
da6dd40d 3 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
b3b94faa
DT
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
e9fc2aa0 7 * of the GNU General Public License version 2.
b3b94faa
DT
8 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
5c676f6d 15#include <linux/gfs2_ondisk.h>
71b86f56 16#include <linux/crc32.h>
a25311c8 17#include <linux/delay.h>
ec69b188
SW
18#include <linux/kthread.h>
19#include <linux/freezer.h>
254db57f 20#include <linux/bio.h>
4667a0ec 21#include <linux/writeback.h>
4a36d08d 22#include <linux/list_sort.h>
b3b94faa
DT
23
24#include "gfs2.h"
5c676f6d 25#include "incore.h"
b3b94faa
DT
26#include "bmap.h"
27#include "glock.h"
28#include "log.h"
29#include "lops.h"
30#include "meta_io.h"
5c676f6d 31#include "util.h"
71b86f56 32#include "dir.h"
63997775 33#include "trace_gfs2.h"
b3b94faa
DT
34
35#define PULL 1
36
b3b94faa
DT
37/**
38 * gfs2_struct2blk - compute stuff
39 * @sdp: the filesystem
40 * @nstruct: the number of structures
41 * @ssize: the size of the structures
42 *
43 * Compute the number of log descriptor blocks needed to hold a certain number
44 * of structures of a certain size.
45 *
46 * Returns: the number of blocks needed (minimum is always 1)
47 */
48
49unsigned int gfs2_struct2blk(struct gfs2_sbd *sdp, unsigned int nstruct,
50 unsigned int ssize)
51{
52 unsigned int blks;
53 unsigned int first, second;
54
55 blks = 1;
faa31ce8 56 first = (sdp->sd_sb.sb_bsize - sizeof(struct gfs2_log_descriptor)) / ssize;
b3b94faa
DT
57
58 if (nstruct > first) {
568f4c96
SW
59 second = (sdp->sd_sb.sb_bsize -
60 sizeof(struct gfs2_meta_header)) / ssize;
5c676f6d 61 blks += DIV_ROUND_UP(nstruct - first, second);
b3b94faa
DT
62 }
63
64 return blks;
65}
66
1e1a3d03
SW
67/**
68 * gfs2_remove_from_ail - Remove an entry from the ail lists, updating counters
69 * @mapping: The associated mapping (maybe NULL)
70 * @bd: The gfs2_bufdata to remove
71 *
c618e87a 72 * The ail lock _must_ be held when calling this function
1e1a3d03
SW
73 *
74 */
75
f91a0d3e 76void gfs2_remove_from_ail(struct gfs2_bufdata *bd)
1e1a3d03
SW
77{
78 bd->bd_ail = NULL;
1ad38c43
SW
79 list_del_init(&bd->bd_ail_st_list);
80 list_del_init(&bd->bd_ail_gl_list);
1e1a3d03 81 atomic_dec(&bd->bd_gl->gl_ail_count);
1e1a3d03
SW
82 brelse(bd->bd_bh);
83}
84
ddacfaf7
SW
85/**
86 * gfs2_ail1_start_one - Start I/O on a part of the AIL
87 * @sdp: the filesystem
4667a0ec
SW
88 * @wbc: The writeback control structure
89 * @ai: The ail structure
ddacfaf7
SW
90 *
91 */
92
4f1de018
SW
93static int gfs2_ail1_start_one(struct gfs2_sbd *sdp,
94 struct writeback_control *wbc,
95 struct gfs2_ail *ai)
d6a079e8
DC
96__releases(&sdp->sd_ail_lock)
97__acquires(&sdp->sd_ail_lock)
ddacfaf7 98{
5ac048bb 99 struct gfs2_glock *gl = NULL;
4667a0ec 100 struct address_space *mapping;
ddacfaf7
SW
101 struct gfs2_bufdata *bd, *s;
102 struct buffer_head *bh;
ddacfaf7 103
4667a0ec
SW
104 list_for_each_entry_safe_reverse(bd, s, &ai->ai_ail1_list, bd_ail_st_list) {
105 bh = bd->bd_bh;
ddacfaf7 106
4667a0ec 107 gfs2_assert(sdp, bd->bd_ail == ai);
ddacfaf7 108
4667a0ec
SW
109 if (!buffer_busy(bh)) {
110 if (!buffer_uptodate(bh))
111 gfs2_io_error_bh(sdp, bh);
112 list_move(&bd->bd_ail_st_list, &ai->ai_ail2_list);
113 continue;
114 }
115
116 if (!buffer_dirty(bh))
117 continue;
118 if (gl == bd->bd_gl)
119 continue;
120 gl = bd->bd_gl;
121 list_move(&bd->bd_ail_st_list, &ai->ai_ail1_list);
122 mapping = bh->b_page->mapping;
4f1de018
SW
123 if (!mapping)
124 continue;
4667a0ec
SW
125 spin_unlock(&sdp->sd_ail_lock);
126 generic_writepages(mapping, wbc);
127 spin_lock(&sdp->sd_ail_lock);
128 if (wbc->nr_to_write <= 0)
129 break;
4f1de018 130 return 1;
4667a0ec 131 }
4f1de018
SW
132
133 return 0;
4667a0ec 134}
ddacfaf7 135
ddacfaf7 136
4667a0ec
SW
137/**
138 * gfs2_ail1_flush - start writeback of some ail1 entries
139 * @sdp: The super block
140 * @wbc: The writeback control structure
141 *
142 * Writes back some ail1 entries, according to the limits in the
143 * writeback control structure
144 */
ddacfaf7 145
4667a0ec
SW
146void gfs2_ail1_flush(struct gfs2_sbd *sdp, struct writeback_control *wbc)
147{
148 struct list_head *head = &sdp->sd_ail1_list;
149 struct gfs2_ail *ai;
ddacfaf7 150
c83ae9ca 151 trace_gfs2_ail_flush(sdp, wbc, 1);
4667a0ec 152 spin_lock(&sdp->sd_ail_lock);
4f1de018 153restart:
4667a0ec
SW
154 list_for_each_entry_reverse(ai, head, ai_list) {
155 if (wbc->nr_to_write <= 0)
ddacfaf7 156 break;
4f1de018
SW
157 if (gfs2_ail1_start_one(sdp, wbc, ai))
158 goto restart;
4667a0ec
SW
159 }
160 spin_unlock(&sdp->sd_ail_lock);
c83ae9ca 161 trace_gfs2_ail_flush(sdp, wbc, 0);
4667a0ec
SW
162}
163
164/**
165 * gfs2_ail1_start - start writeback of all ail1 entries
166 * @sdp: The superblock
167 */
168
169static void gfs2_ail1_start(struct gfs2_sbd *sdp)
170{
171 struct writeback_control wbc = {
172 .sync_mode = WB_SYNC_NONE,
173 .nr_to_write = LONG_MAX,
174 .range_start = 0,
175 .range_end = LLONG_MAX,
176 };
177
178 return gfs2_ail1_flush(sdp, &wbc);
ddacfaf7
SW
179}
180
181/**
182 * gfs2_ail1_empty_one - Check whether or not a trans in the AIL has been synced
183 * @sdp: the filesystem
184 * @ai: the AIL entry
185 *
186 */
187
4667a0ec 188static void gfs2_ail1_empty_one(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
ddacfaf7
SW
189{
190 struct gfs2_bufdata *bd, *s;
191 struct buffer_head *bh;
192
193 list_for_each_entry_safe_reverse(bd, s, &ai->ai_ail1_list,
194 bd_ail_st_list) {
195 bh = bd->bd_bh;
ddacfaf7 196 gfs2_assert(sdp, bd->bd_ail == ai);
4667a0ec
SW
197 if (buffer_busy(bh))
198 continue;
ddacfaf7
SW
199 if (!buffer_uptodate(bh))
200 gfs2_io_error_bh(sdp, bh);
ddacfaf7
SW
201 list_move(&bd->bd_ail_st_list, &ai->ai_ail2_list);
202 }
203
ddacfaf7
SW
204}
205
4667a0ec
SW
206/**
207 * gfs2_ail1_empty - Try to empty the ail1 lists
208 * @sdp: The superblock
209 *
210 * Tries to empty the ail1 lists, starting with the oldest first
211 */
b3b94faa 212
4667a0ec 213static int gfs2_ail1_empty(struct gfs2_sbd *sdp)
b3b94faa
DT
214{
215 struct gfs2_ail *ai, *s;
216 int ret;
217
d6a079e8 218 spin_lock(&sdp->sd_ail_lock);
b3b94faa 219 list_for_each_entry_safe_reverse(ai, s, &sdp->sd_ail1_list, ai_list) {
4667a0ec
SW
220 gfs2_ail1_empty_one(sdp, ai);
221 if (list_empty(&ai->ai_ail1_list))
b3b94faa 222 list_move(&ai->ai_list, &sdp->sd_ail2_list);
4667a0ec 223 else
b3b94faa
DT
224 break;
225 }
b3b94faa 226 ret = list_empty(&sdp->sd_ail1_list);
d6a079e8 227 spin_unlock(&sdp->sd_ail_lock);
b3b94faa
DT
228
229 return ret;
230}
231
26b06a69
SW
232static void gfs2_ail1_wait(struct gfs2_sbd *sdp)
233{
234 struct gfs2_ail *ai;
235 struct gfs2_bufdata *bd;
236 struct buffer_head *bh;
237
238 spin_lock(&sdp->sd_ail_lock);
239 list_for_each_entry_reverse(ai, &sdp->sd_ail1_list, ai_list) {
240 list_for_each_entry(bd, &ai->ai_ail1_list, bd_ail_st_list) {
241 bh = bd->bd_bh;
242 if (!buffer_locked(bh))
243 continue;
244 get_bh(bh);
245 spin_unlock(&sdp->sd_ail_lock);
246 wait_on_buffer(bh);
247 brelse(bh);
248 return;
249 }
250 }
251 spin_unlock(&sdp->sd_ail_lock);
252}
ddacfaf7
SW
253
254/**
255 * gfs2_ail2_empty_one - Check whether or not a trans in the AIL has been synced
256 * @sdp: the filesystem
257 * @ai: the AIL entry
258 *
259 */
260
261static void gfs2_ail2_empty_one(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
262{
263 struct list_head *head = &ai->ai_ail2_list;
264 struct gfs2_bufdata *bd;
265
266 while (!list_empty(head)) {
267 bd = list_entry(head->prev, struct gfs2_bufdata,
268 bd_ail_st_list);
269 gfs2_assert(sdp, bd->bd_ail == ai);
f91a0d3e 270 gfs2_remove_from_ail(bd);
ddacfaf7
SW
271 }
272}
273
b3b94faa
DT
274static void ail2_empty(struct gfs2_sbd *sdp, unsigned int new_tail)
275{
276 struct gfs2_ail *ai, *safe;
277 unsigned int old_tail = sdp->sd_log_tail;
278 int wrap = (new_tail < old_tail);
279 int a, b, rm;
280
d6a079e8 281 spin_lock(&sdp->sd_ail_lock);
b3b94faa
DT
282
283 list_for_each_entry_safe(ai, safe, &sdp->sd_ail2_list, ai_list) {
284 a = (old_tail <= ai->ai_first);
285 b = (ai->ai_first < new_tail);
286 rm = (wrap) ? (a || b) : (a && b);
287 if (!rm)
288 continue;
289
290 gfs2_ail2_empty_one(sdp, ai);
291 list_del(&ai->ai_list);
292 gfs2_assert_warn(sdp, list_empty(&ai->ai_ail1_list));
293 gfs2_assert_warn(sdp, list_empty(&ai->ai_ail2_list));
294 kfree(ai);
295 }
296
d6a079e8 297 spin_unlock(&sdp->sd_ail_lock);
b3b94faa
DT
298}
299
300/**
301 * gfs2_log_reserve - Make a log reservation
302 * @sdp: The GFS2 superblock
303 * @blks: The number of blocks to reserve
304 *
89918647 305 * Note that we never give out the last few blocks of the journal. Thats
2332c443 306 * due to the fact that there is a small number of header blocks
b004157a
SW
307 * associated with each log flush. The exact number can't be known until
308 * flush time, so we ensure that we have just enough free blocks at all
309 * times to avoid running out during a log flush.
310 *
5e687eac
BM
311 * We no longer flush the log here, instead we wake up logd to do that
312 * for us. To avoid the thundering herd and to ensure that we deal fairly
313 * with queued waiters, we use an exclusive wait. This means that when we
314 * get woken with enough journal space to get our reservation, we need to
315 * wake the next waiter on the list.
316 *
b3b94faa
DT
317 * Returns: errno
318 */
319
320int gfs2_log_reserve(struct gfs2_sbd *sdp, unsigned int blks)
321{
89918647 322 unsigned reserved_blks = 6 * (4096 / sdp->sd_vfs->s_blocksize);
5e687eac
BM
323 unsigned wanted = blks + reserved_blks;
324 DEFINE_WAIT(wait);
325 int did_wait = 0;
326 unsigned int free_blocks;
b3b94faa
DT
327
328 if (gfs2_assert_warn(sdp, blks) ||
329 gfs2_assert_warn(sdp, blks <= sdp->sd_jdesc->jd_blocks))
330 return -EINVAL;
5e687eac
BM
331retry:
332 free_blocks = atomic_read(&sdp->sd_log_blks_free);
333 if (unlikely(free_blocks <= wanted)) {
334 do {
335 prepare_to_wait_exclusive(&sdp->sd_log_waitq, &wait,
336 TASK_UNINTERRUPTIBLE);
337 wake_up(&sdp->sd_logd_waitq);
338 did_wait = 1;
339 if (atomic_read(&sdp->sd_log_blks_free) <= wanted)
340 io_schedule();
341 free_blocks = atomic_read(&sdp->sd_log_blks_free);
342 } while(free_blocks <= wanted);
343 finish_wait(&sdp->sd_log_waitq, &wait);
b3b94faa 344 }
5e687eac
BM
345 if (atomic_cmpxchg(&sdp->sd_log_blks_free, free_blocks,
346 free_blocks - blks) != free_blocks)
347 goto retry;
63997775 348 trace_gfs2_log_blocks(sdp, -blks);
5e687eac
BM
349
350 /*
351 * If we waited, then so might others, wake them up _after_ we get
352 * our share of the log.
353 */
354 if (unlikely(did_wait))
355 wake_up(&sdp->sd_log_waitq);
484adff8
SW
356
357 down_read(&sdp->sd_log_flush_lock);
b3b94faa
DT
358
359 return 0;
360}
361
47ac5537 362u64 gfs2_log_bmap(struct gfs2_sbd *sdp, unsigned int lbn)
b3b94faa 363{
da6dd40d
BP
364 struct gfs2_journal_extent *je;
365
366 list_for_each_entry(je, &sdp->sd_jdesc->extent_list, extent_list) {
367 if (lbn >= je->lblock && lbn < je->lblock + je->blocks)
ff91cc9b 368 return je->dblock + lbn - je->lblock;
da6dd40d
BP
369 }
370
371 return -1;
b3b94faa
DT
372}
373
374/**
375 * log_distance - Compute distance between two journal blocks
376 * @sdp: The GFS2 superblock
377 * @newer: The most recent journal block of the pair
378 * @older: The older journal block of the pair
379 *
380 * Compute the distance (in the journal direction) between two
381 * blocks in the journal
382 *
383 * Returns: the distance in blocks
384 */
385
faa31ce8 386static inline unsigned int log_distance(struct gfs2_sbd *sdp, unsigned int newer,
b3b94faa
DT
387 unsigned int older)
388{
389 int dist;
390
391 dist = newer - older;
392 if (dist < 0)
393 dist += sdp->sd_jdesc->jd_blocks;
394
395 return dist;
396}
397
2332c443
RP
398/**
399 * calc_reserved - Calculate the number of blocks to reserve when
400 * refunding a transaction's unused buffers.
401 * @sdp: The GFS2 superblock
402 *
403 * This is complex. We need to reserve room for all our currently used
404 * metadata buffers (e.g. normal file I/O rewriting file time stamps) and
405 * all our journaled data buffers for journaled files (e.g. files in the
406 * meta_fs like rindex, or files for which chattr +j was done.)
407 * If we don't reserve enough space, gfs2_log_refund and gfs2_log_flush
408 * will count it as free space (sd_log_blks_free) and corruption will follow.
409 *
410 * We can have metadata bufs and jdata bufs in the same journal. So each
411 * type gets its own log header, for which we need to reserve a block.
412 * In fact, each type has the potential for needing more than one header
413 * in cases where we have more buffers than will fit on a journal page.
414 * Metadata journal entries take up half the space of journaled buffer entries.
415 * Thus, metadata entries have buf_limit (502) and journaled buffers have
416 * databuf_limit (251) before they cause a wrap around.
417 *
418 * Also, we need to reserve blocks for revoke journal entries and one for an
419 * overall header for the lot.
420 *
421 * Returns: the number of blocks reserved
422 */
423static unsigned int calc_reserved(struct gfs2_sbd *sdp)
424{
425 unsigned int reserved = 0;
426 unsigned int mbuf_limit, metabufhdrs_needed;
427 unsigned int dbuf_limit, databufhdrs_needed;
428 unsigned int revokes = 0;
429
430 mbuf_limit = buf_limit(sdp);
431 metabufhdrs_needed = (sdp->sd_log_commited_buf +
432 (mbuf_limit - 1)) / mbuf_limit;
433 dbuf_limit = databuf_limit(sdp);
434 databufhdrs_needed = (sdp->sd_log_commited_databuf +
435 (dbuf_limit - 1)) / dbuf_limit;
436
2e95e3f6 437 if (sdp->sd_log_commited_revoke > 0)
2332c443
RP
438 revokes = gfs2_struct2blk(sdp, sdp->sd_log_commited_revoke,
439 sizeof(u64));
440
441 reserved = sdp->sd_log_commited_buf + metabufhdrs_needed +
442 sdp->sd_log_commited_databuf + databufhdrs_needed +
443 revokes;
444 /* One for the overall header */
445 if (reserved)
446 reserved++;
447 return reserved;
448}
449
b3b94faa
DT
450static unsigned int current_tail(struct gfs2_sbd *sdp)
451{
452 struct gfs2_ail *ai;
453 unsigned int tail;
454
d6a079e8 455 spin_lock(&sdp->sd_ail_lock);
b3b94faa 456
faa31ce8 457 if (list_empty(&sdp->sd_ail1_list)) {
b3b94faa 458 tail = sdp->sd_log_head;
faa31ce8
SW
459 } else {
460 ai = list_entry(sdp->sd_ail1_list.prev, struct gfs2_ail, ai_list);
b3b94faa
DT
461 tail = ai->ai_first;
462 }
463
d6a079e8 464 spin_unlock(&sdp->sd_ail_lock);
b3b94faa
DT
465
466 return tail;
467}
468
16615be1 469void gfs2_log_incr_head(struct gfs2_sbd *sdp)
b3b94faa 470{
47ac5537
SW
471 BUG_ON((sdp->sd_log_flush_head == sdp->sd_log_tail) &&
472 (sdp->sd_log_flush_head != sdp->sd_log_head));
b3b94faa
DT
473
474 if (++sdp->sd_log_flush_head == sdp->sd_jdesc->jd_blocks) {
475 sdp->sd_log_flush_head = 0;
476 sdp->sd_log_flush_wrapped = 1;
477 }
478}
479
2332c443 480static void log_pull_tail(struct gfs2_sbd *sdp, unsigned int new_tail)
b3b94faa
DT
481{
482 unsigned int dist = log_distance(sdp, new_tail, sdp->sd_log_tail);
483
484 ail2_empty(sdp, new_tail);
485
fd041f0b 486 atomic_add(dist, &sdp->sd_log_blks_free);
63997775 487 trace_gfs2_log_blocks(sdp, dist);
5e687eac
BM
488 gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <=
489 sdp->sd_jdesc->jd_blocks);
b3b94faa
DT
490
491 sdp->sd_log_tail = new_tail;
492}
493
b3b94faa 494
34cc1781 495static void log_flush_wait(struct gfs2_sbd *sdp)
b3b94faa 496{
16615be1
SW
497 DEFINE_WAIT(wait);
498
499 if (atomic_read(&sdp->sd_log_in_flight)) {
500 do {
501 prepare_to_wait(&sdp->sd_log_flush_wait, &wait,
502 TASK_UNINTERRUPTIBLE);
503 if (atomic_read(&sdp->sd_log_in_flight))
504 io_schedule();
505 } while(atomic_read(&sdp->sd_log_in_flight));
506 finish_wait(&sdp->sd_log_flush_wait, &wait);
b3b94faa 507 }
b3b94faa
DT
508}
509
08728f2d 510static int bd_cmp(void *priv, struct list_head *a, struct list_head *b)
4a36d08d
BP
511{
512 struct gfs2_bufdata *bda, *bdb;
513
514 bda = list_entry(a, struct gfs2_bufdata, bd_le.le_list);
515 bdb = list_entry(b, struct gfs2_bufdata, bd_le.le_list);
516
517 if (bda->bd_bh->b_blocknr < bdb->bd_bh->b_blocknr)
518 return -1;
519 if (bda->bd_bh->b_blocknr > bdb->bd_bh->b_blocknr)
520 return 1;
521 return 0;
522}
523
d7b616e2
SW
524static void gfs2_ordered_write(struct gfs2_sbd *sdp)
525{
526 struct gfs2_bufdata *bd;
527 struct buffer_head *bh;
528 LIST_HEAD(written);
529
530 gfs2_log_lock(sdp);
4a36d08d 531 list_sort(NULL, &sdp->sd_log_le_ordered, &bd_cmp);
d7b616e2
SW
532 while (!list_empty(&sdp->sd_log_le_ordered)) {
533 bd = list_entry(sdp->sd_log_le_ordered.next, struct gfs2_bufdata, bd_le.le_list);
534 list_move(&bd->bd_le.le_list, &written);
535 bh = bd->bd_bh;
536 if (!buffer_dirty(bh))
537 continue;
538 get_bh(bh);
539 gfs2_log_unlock(sdp);
540 lock_buffer(bh);
b8e7cbb6 541 if (buffer_mapped(bh) && test_clear_buffer_dirty(bh)) {
d7b616e2 542 bh->b_end_io = end_buffer_write_sync;
721a9602 543 submit_bh(WRITE_SYNC, bh);
d7b616e2
SW
544 } else {
545 unlock_buffer(bh);
546 brelse(bh);
547 }
548 gfs2_log_lock(sdp);
549 }
550 list_splice(&written, &sdp->sd_log_le_ordered);
551 gfs2_log_unlock(sdp);
552}
553
554static void gfs2_ordered_wait(struct gfs2_sbd *sdp)
555{
556 struct gfs2_bufdata *bd;
557 struct buffer_head *bh;
558
559 gfs2_log_lock(sdp);
560 while (!list_empty(&sdp->sd_log_le_ordered)) {
561 bd = list_entry(sdp->sd_log_le_ordered.prev, struct gfs2_bufdata, bd_le.le_list);
562 bh = bd->bd_bh;
563 if (buffer_locked(bh)) {
564 get_bh(bh);
565 gfs2_log_unlock(sdp);
566 wait_on_buffer(bh);
567 brelse(bh);
568 gfs2_log_lock(sdp);
569 continue;
570 }
571 list_del_init(&bd->bd_le.le_list);
572 }
573 gfs2_log_unlock(sdp);
574}
575
34cc1781
SW
576/**
577 * log_write_header - Get and initialize a journal header buffer
578 * @sdp: The GFS2 superblock
579 *
580 * Returns: the initialized log buffer descriptor
581 */
582
583static void log_write_header(struct gfs2_sbd *sdp, u32 flags, int pull)
584{
585 u64 blkno = gfs2_log_bmap(sdp, sdp->sd_log_flush_head);
586 struct buffer_head *bh;
587 struct gfs2_log_header *lh;
588 unsigned int tail;
589 u32 hash;
590
591 bh = sb_getblk(sdp->sd_vfs, blkno);
592 lock_buffer(bh);
593 memset(bh->b_data, 0, bh->b_size);
594 set_buffer_uptodate(bh);
595 clear_buffer_dirty(bh);
596
597 gfs2_ail1_empty(sdp);
598 tail = current_tail(sdp);
599
600 lh = (struct gfs2_log_header *)bh->b_data;
601 memset(lh, 0, sizeof(struct gfs2_log_header));
602 lh->lh_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
603 lh->lh_header.mh_type = cpu_to_be32(GFS2_METATYPE_LH);
604 lh->lh_header.__pad0 = cpu_to_be64(0);
605 lh->lh_header.mh_format = cpu_to_be32(GFS2_FORMAT_LH);
606 lh->lh_header.mh_jid = cpu_to_be32(sdp->sd_jdesc->jd_jid);
607 lh->lh_sequence = cpu_to_be64(sdp->sd_log_sequence++);
608 lh->lh_flags = cpu_to_be32(flags);
609 lh->lh_tail = cpu_to_be32(tail);
610 lh->lh_blkno = cpu_to_be32(sdp->sd_log_flush_head);
611 hash = gfs2_disk_hash(bh->b_data, sizeof(struct gfs2_log_header));
612 lh->lh_hash = cpu_to_be32(hash);
613
614 bh->b_end_io = end_buffer_write_sync;
615 get_bh(bh);
616 if (test_bit(SDF_NOBARRIERS, &sdp->sd_flags)) {
617 gfs2_ordered_wait(sdp);
618 log_flush_wait(sdp);
619 submit_bh(WRITE_SYNC | REQ_META | REQ_PRIO, bh);
620 } else {
621 submit_bh(WRITE_FLUSH_FUA | REQ_META, bh);
622 }
623 wait_on_buffer(bh);
624
625 if (!buffer_uptodate(bh))
626 gfs2_io_error_bh(sdp, bh);
627 brelse(bh);
628
629 if (sdp->sd_log_tail != tail)
630 log_pull_tail(sdp, tail);
631 else
632 gfs2_assert_withdraw(sdp, !pull);
633
634 sdp->sd_log_idle = (tail == sdp->sd_log_flush_head);
635 gfs2_log_incr_head(sdp);
636}
637
b3b94faa 638/**
b09e593d 639 * gfs2_log_flush - flush incore transaction(s)
b3b94faa
DT
640 * @sdp: the filesystem
641 * @gl: The glock structure to flush. If NULL, flush the whole incore log
642 *
643 */
644
ed4878e8 645void gfs2_log_flush(struct gfs2_sbd *sdp, struct gfs2_glock *gl)
b3b94faa
DT
646{
647 struct gfs2_ail *ai;
648
484adff8 649 down_write(&sdp->sd_log_flush_lock);
f55ab26a 650
2bcd610d
SW
651 /* Log might have been flushed while we waited for the flush lock */
652 if (gl && !test_bit(GLF_LFLUSH, &gl->gl_flags)) {
653 up_write(&sdp->sd_log_flush_lock);
654 return;
f55ab26a 655 }
63997775 656 trace_gfs2_log_flush(sdp, 1);
f55ab26a 657
b09e593d
SW
658 ai = kzalloc(sizeof(struct gfs2_ail), GFP_NOFS | __GFP_NOFAIL);
659 INIT_LIST_HEAD(&ai->ai_ail1_list);
660 INIT_LIST_HEAD(&ai->ai_ail2_list);
b3b94faa 661
16615be1
SW
662 if (sdp->sd_log_num_buf != sdp->sd_log_commited_buf) {
663 printk(KERN_INFO "GFS2: log buf %u %u\n", sdp->sd_log_num_buf,
664 sdp->sd_log_commited_buf);
665 gfs2_assert_withdraw(sdp, 0);
666 }
667 if (sdp->sd_log_num_databuf != sdp->sd_log_commited_databuf) {
668 printk(KERN_INFO "GFS2: log databuf %u %u\n",
669 sdp->sd_log_num_databuf, sdp->sd_log_commited_databuf);
670 gfs2_assert_withdraw(sdp, 0);
671 }
b3b94faa
DT
672 gfs2_assert_withdraw(sdp,
673 sdp->sd_log_num_revoke == sdp->sd_log_commited_revoke);
674
b3b94faa
DT
675 sdp->sd_log_flush_head = sdp->sd_log_head;
676 sdp->sd_log_flush_wrapped = 0;
677 ai->ai_first = sdp->sd_log_flush_head;
678
d7b616e2 679 gfs2_ordered_write(sdp);
b3b94faa 680 lops_before_commit(sdp);
d7b616e2 681
34cc1781
SW
682 if (sdp->sd_log_head != sdp->sd_log_flush_head) {
683 log_write_header(sdp, 0, 0);
684 } else if (sdp->sd_log_tail != current_tail(sdp) && !sdp->sd_log_idle){
2332c443 685 gfs2_log_lock(sdp);
fd041f0b 686 atomic_dec(&sdp->sd_log_blks_free); /* Adjust for unreserved buffer */
63997775 687 trace_gfs2_log_blocks(sdp, -1);
2332c443 688 gfs2_log_unlock(sdp);
b3b94faa 689 log_write_header(sdp, 0, PULL);
2332c443 690 }
b3b94faa 691 lops_after_commit(sdp, ai);
b09e593d 692
fe1a698f
SW
693 gfs2_log_lock(sdp);
694 sdp->sd_log_head = sdp->sd_log_flush_head;
faa31ce8
SW
695 sdp->sd_log_blks_reserved = 0;
696 sdp->sd_log_commited_buf = 0;
2332c443 697 sdp->sd_log_commited_databuf = 0;
faa31ce8 698 sdp->sd_log_commited_revoke = 0;
b3b94faa 699
d6a079e8 700 spin_lock(&sdp->sd_ail_lock);
b3b94faa
DT
701 if (!list_empty(&ai->ai_ail1_list)) {
702 list_add(&ai->ai_list, &sdp->sd_ail1_list);
703 ai = NULL;
704 }
d6a079e8 705 spin_unlock(&sdp->sd_ail_lock);
b3b94faa 706 gfs2_log_unlock(sdp);
63997775 707 trace_gfs2_log_flush(sdp, 0);
484adff8 708 up_write(&sdp->sd_log_flush_lock);
b3b94faa
DT
709
710 kfree(ai);
711}
712
713static void log_refund(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
714{
2332c443 715 unsigned int reserved;
ac39aadd 716 unsigned int unused;
b3b94faa
DT
717
718 gfs2_log_lock(sdp);
719
720 sdp->sd_log_commited_buf += tr->tr_num_buf_new - tr->tr_num_buf_rm;
2332c443
RP
721 sdp->sd_log_commited_databuf += tr->tr_num_databuf_new -
722 tr->tr_num_databuf_rm;
723 gfs2_assert_withdraw(sdp, (((int)sdp->sd_log_commited_buf) >= 0) ||
724 (((int)sdp->sd_log_commited_databuf) >= 0));
b3b94faa 725 sdp->sd_log_commited_revoke += tr->tr_num_revoke - tr->tr_num_revoke_rm;
2332c443 726 reserved = calc_reserved(sdp);
62be1f71 727 gfs2_assert_withdraw(sdp, sdp->sd_log_blks_reserved + tr->tr_reserved >= reserved);
ac39aadd 728 unused = sdp->sd_log_blks_reserved - reserved + tr->tr_reserved;
ac39aadd 729 atomic_add(unused, &sdp->sd_log_blks_free);
63997775 730 trace_gfs2_log_blocks(sdp, unused);
fd041f0b 731 gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <=
2332c443 732 sdp->sd_jdesc->jd_blocks);
b3b94faa
DT
733 sdp->sd_log_blks_reserved = reserved;
734
735 gfs2_log_unlock(sdp);
736}
737
d0109bfa
BP
738static void buf_lo_incore_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
739{
740 struct list_head *head = &tr->tr_list_buf;
741 struct gfs2_bufdata *bd;
742
743 gfs2_log_lock(sdp);
744 while (!list_empty(head)) {
745 bd = list_entry(head->next, struct gfs2_bufdata, bd_list_tr);
746 list_del_init(&bd->bd_list_tr);
747 tr->tr_num_buf--;
748 }
749 gfs2_log_unlock(sdp);
750 gfs2_assert_warn(sdp, !tr->tr_num_buf);
751}
752
b3b94faa
DT
753/**
754 * gfs2_log_commit - Commit a transaction to the log
755 * @sdp: the filesystem
756 * @tr: the transaction
757 *
5e687eac
BM
758 * We wake up gfs2_logd if the number of pinned blocks exceed thresh1
759 * or the total number of used blocks (pinned blocks plus AIL blocks)
760 * is greater than thresh2.
761 *
762 * At mount time thresh1 is 1/3rd of journal size, thresh2 is 2/3rd of
763 * journal size.
764 *
b3b94faa
DT
765 * Returns: errno
766 */
767
768void gfs2_log_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
769{
770 log_refund(sdp, tr);
d0109bfa 771 buf_lo_incore_commit(sdp, tr);
b3b94faa 772
484adff8 773 up_read(&sdp->sd_log_flush_lock);
b3b94faa 774
5e687eac
BM
775 if (atomic_read(&sdp->sd_log_pinned) > atomic_read(&sdp->sd_log_thresh1) ||
776 ((sdp->sd_jdesc->jd_blocks - atomic_read(&sdp->sd_log_blks_free)) >
777 atomic_read(&sdp->sd_log_thresh2)))
778 wake_up(&sdp->sd_logd_waitq);
b3b94faa
DT
779}
780
781/**
782 * gfs2_log_shutdown - write a shutdown header into a journal
783 * @sdp: the filesystem
784 *
785 */
786
787void gfs2_log_shutdown(struct gfs2_sbd *sdp)
788{
484adff8 789 down_write(&sdp->sd_log_flush_lock);
b3b94faa 790
b3b94faa 791 gfs2_assert_withdraw(sdp, !sdp->sd_log_blks_reserved);
b3b94faa
DT
792 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_buf);
793 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_revoke);
794 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_rg);
795 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_databuf);
796 gfs2_assert_withdraw(sdp, list_empty(&sdp->sd_ail1_list));
797
798 sdp->sd_log_flush_head = sdp->sd_log_head;
799 sdp->sd_log_flush_wrapped = 0;
800
2332c443
RP
801 log_write_header(sdp, GFS2_LOG_HEAD_UNMOUNT,
802 (sdp->sd_log_tail == current_tail(sdp)) ? 0 : PULL);
b3b94faa 803
fd041f0b 804 gfs2_assert_warn(sdp, atomic_read(&sdp->sd_log_blks_free) == sdp->sd_jdesc->jd_blocks);
a74604be
SW
805 gfs2_assert_warn(sdp, sdp->sd_log_head == sdp->sd_log_tail);
806 gfs2_assert_warn(sdp, list_empty(&sdp->sd_ail2_list));
b3b94faa
DT
807
808 sdp->sd_log_head = sdp->sd_log_flush_head;
b3b94faa
DT
809 sdp->sd_log_tail = sdp->sd_log_head;
810
484adff8 811 up_write(&sdp->sd_log_flush_lock);
b3b94faa
DT
812}
813
a25311c8
SW
814
815/**
816 * gfs2_meta_syncfs - sync all the buffers in a filesystem
817 * @sdp: the filesystem
818 *
819 */
820
821void gfs2_meta_syncfs(struct gfs2_sbd *sdp)
822{
823 gfs2_log_flush(sdp, NULL);
824 for (;;) {
5e687eac 825 gfs2_ail1_start(sdp);
26b06a69 826 gfs2_ail1_wait(sdp);
4667a0ec 827 if (gfs2_ail1_empty(sdp))
a25311c8 828 break;
a25311c8 829 }
380f7c65 830 gfs2_log_flush(sdp, NULL);
a25311c8
SW
831}
832
5e687eac
BM
833static inline int gfs2_jrnl_flush_reqd(struct gfs2_sbd *sdp)
834{
835 return (atomic_read(&sdp->sd_log_pinned) >= atomic_read(&sdp->sd_log_thresh1));
836}
837
838static inline int gfs2_ail_flush_reqd(struct gfs2_sbd *sdp)
839{
840 unsigned int used_blocks = sdp->sd_jdesc->jd_blocks - atomic_read(&sdp->sd_log_blks_free);
841 return used_blocks >= atomic_read(&sdp->sd_log_thresh2);
842}
ec69b188
SW
843
844/**
845 * gfs2_logd - Update log tail as Active Items get flushed to in-place blocks
846 * @sdp: Pointer to GFS2 superblock
847 *
848 * Also, periodically check to make sure that we're using the most recent
849 * journal index.
850 */
851
852int gfs2_logd(void *data)
853{
854 struct gfs2_sbd *sdp = data;
5e687eac
BM
855 unsigned long t = 1;
856 DEFINE_WAIT(wait);
857 unsigned preflush;
ec69b188
SW
858
859 while (!kthread_should_stop()) {
ec69b188 860
5e687eac
BM
861 preflush = atomic_read(&sdp->sd_log_pinned);
862 if (gfs2_jrnl_flush_reqd(sdp) || t == 0) {
4667a0ec 863 gfs2_ail1_empty(sdp);
5e687eac 864 gfs2_log_flush(sdp, NULL);
5e687eac 865 }
ec69b188 866
5e687eac
BM
867 if (gfs2_ail_flush_reqd(sdp)) {
868 gfs2_ail1_start(sdp);
26b06a69 869 gfs2_ail1_wait(sdp);
4667a0ec 870 gfs2_ail1_empty(sdp);
ec69b188 871 gfs2_log_flush(sdp, NULL);
ec69b188
SW
872 }
873
26b06a69
SW
874 if (!gfs2_ail_flush_reqd(sdp))
875 wake_up(&sdp->sd_log_waitq);
876
ec69b188 877 t = gfs2_tune_get(sdp, gt_logd_secs) * HZ;
a0acae0e
TH
878
879 try_to_freeze();
5e687eac
BM
880
881 do {
882 prepare_to_wait(&sdp->sd_logd_waitq, &wait,
5f487490 883 TASK_INTERRUPTIBLE);
5e687eac
BM
884 if (!gfs2_ail_flush_reqd(sdp) &&
885 !gfs2_jrnl_flush_reqd(sdp) &&
886 !kthread_should_stop())
887 t = schedule_timeout(t);
888 } while(t && !gfs2_ail_flush_reqd(sdp) &&
889 !gfs2_jrnl_flush_reqd(sdp) &&
890 !kthread_should_stop());
891 finish_wait(&sdp->sd_logd_waitq, &wait);
ec69b188
SW
892 }
893
894 return 0;
895}
896