blob: 4752eadc7f6efda56c1e60bcea78900a895467f7 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersonda6dd402007-12-11 18:49:21 -06003 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
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>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050015#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050016#include <linux/crc32.h>
Steven Whitehousea25311c2006-11-23 11:06:35 -050017#include <linux/delay.h>
Steven Whitehouseec69b182007-11-09 10:01:41 +000018#include <linux/kthread.h>
19#include <linux/freezer.h>
Steven Whitehouse254db572008-09-26 10:23:22 +010020#include <linux/bio.h>
Steven Whitehouse4667a0e2011-04-18 14:18:09 +010021#include <linux/writeback.h>
Bob Peterson4a36d082012-02-14 14:49:57 -050022#include <linux/list_sort.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000023
24#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050025#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000026#include "bmap.h"
27#include "glock.h"
28#include "log.h"
29#include "lops.h"
30#include "meta_io.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050031#include "util.h"
Steven Whitehouse71b86f52006-03-28 14:14:04 -050032#include "dir.h"
Steven Whitehouse63997772009-06-12 08:49:20 +010033#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000034
35#define PULL 1
36
David Teiglandb3b94fa2006-01-16 16:50:04 +000037/**
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;
Steven Whitehousefaa31ce2006-09-13 11:13:27 -040056 first = (sdp->sd_sb.sb_bsize - sizeof(struct gfs2_log_descriptor)) / ssize;
David Teiglandb3b94fa2006-01-16 16:50:04 +000057
58 if (nstruct > first) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -050059 second = (sdp->sd_sb.sb_bsize -
60 sizeof(struct gfs2_meta_header)) / ssize;
Steven Whitehouse5c676f62006-02-27 17:23:27 -050061 blks += DIV_ROUND_UP(nstruct - first, second);
David Teiglandb3b94fa2006-01-16 16:50:04 +000062 }
63
64 return blks;
65}
66
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040067/**
Steven Whitehouse1e1a3d02007-08-27 09:45:26 +010068 * 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 *
Steven Whitehousec618e872011-03-14 12:40:29 +000072 * The ail lock _must_ be held when calling this function
Steven Whitehouse1e1a3d02007-08-27 09:45:26 +010073 *
74 */
75
Steven Whitehousef91a0d32007-10-15 16:29:05 +010076void gfs2_remove_from_ail(struct gfs2_bufdata *bd)
Steven Whitehouse1e1a3d02007-08-27 09:45:26 +010077{
78 bd->bd_ail = NULL;
Steven Whitehouse1ad38c42007-09-03 11:01:33 +010079 list_del_init(&bd->bd_ail_st_list);
80 list_del_init(&bd->bd_ail_gl_list);
Steven Whitehouse1e1a3d02007-08-27 09:45:26 +010081 atomic_dec(&bd->bd_gl->gl_ail_count);
Steven Whitehouse1e1a3d02007-08-27 09:45:26 +010082 brelse(bd->bd_bh);
83}
84
85/**
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040086 * gfs2_ail1_start_one - Start I/O on a part of the AIL
87 * @sdp: the filesystem
Steven Whitehouse4667a0e2011-04-18 14:18:09 +010088 * @wbc: The writeback control structure
89 * @ai: The ail structure
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040090 *
91 */
92
Steven Whitehouse4f1de012011-04-26 10:23:56 +010093static int gfs2_ail1_start_one(struct gfs2_sbd *sdp,
94 struct writeback_control *wbc,
95 struct gfs2_ail *ai)
Dave Chinnerd6a079e2011-03-11 11:52:25 +000096__releases(&sdp->sd_ail_lock)
97__acquires(&sdp->sd_ail_lock)
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040098{
Steven Whitehouse5ac048b2011-03-30 16:25:51 +010099 struct gfs2_glock *gl = NULL;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100100 struct address_space *mapping;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400101 struct gfs2_bufdata *bd, *s;
102 struct buffer_head *bh;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400103
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100104 list_for_each_entry_safe_reverse(bd, s, &ai->ai_ail1_list, bd_ail_st_list) {
105 bh = bd->bd_bh;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400106
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100107 gfs2_assert(sdp, bd->bd_ail == ai);
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400108
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100109 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;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400114 }
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100115
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;
Steven Whitehouse4f1de012011-04-26 10:23:56 +0100123 if (!mapping)
124 continue;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100125 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;
Steven Whitehouse4f1de012011-04-26 10:23:56 +0100130 return 1;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100131 }
Steven Whitehouse4f1de012011-04-26 10:23:56 +0100132
133 return 0;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100134}
135
136
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 */
145
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;
150
Steven Whitehousec83ae9c2011-04-18 14:18:38 +0100151 trace_gfs2_ail_flush(sdp, wbc, 1);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100152 spin_lock(&sdp->sd_ail_lock);
Steven Whitehouse4f1de012011-04-26 10:23:56 +0100153restart:
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100154 list_for_each_entry_reverse(ai, head, ai_list) {
155 if (wbc->nr_to_write <= 0)
156 break;
Steven Whitehouse4f1de012011-04-26 10:23:56 +0100157 if (gfs2_ail1_start_one(sdp, wbc, ai))
158 goto restart;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100159 }
160 spin_unlock(&sdp->sd_ail_lock);
Steven Whitehousec83ae9c2011-04-18 14:18:38 +0100161 trace_gfs2_ail_flush(sdp, wbc, 0);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100162}
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);
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400179}
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
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100188static void gfs2_ail1_empty_one(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400189{
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;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400196 gfs2_assert(sdp, bd->bd_ail == ai);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100197 if (buffer_busy(bh))
198 continue;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400199 if (!buffer_uptodate(bh))
200 gfs2_io_error_bh(sdp, bh);
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400201 list_move(&bd->bd_ail_st_list, &ai->ai_ail2_list);
202 }
203
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400204}
205
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100206/**
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 */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000212
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100213static int gfs2_ail1_empty(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000214{
215 struct gfs2_ail *ai, *s;
216 int ret;
217
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000218 spin_lock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000219 list_for_each_entry_safe_reverse(ai, s, &sdp->sd_ail1_list, ai_list) {
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100220 gfs2_ail1_empty_one(sdp, ai);
221 if (list_empty(&ai->ai_ail1_list))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000222 list_move(&ai->ai_list, &sdp->sd_ail2_list);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100223 else
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224 break;
225 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226 ret = list_empty(&sdp->sd_ail1_list);
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000227 spin_unlock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000228
229 return ret;
230}
231
Steven Whitehouse26b06a62011-05-21 19:21:07 +0100232static 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}
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400253
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);
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100270 gfs2_remove_from_ail(bd);
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400271 }
272}
273
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274static 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
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000281 spin_lock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000282
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
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000297 spin_unlock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000298}
299
300/**
301 * gfs2_log_reserve - Make a log reservation
302 * @sdp: The GFS2 superblock
303 * @blks: The number of blocks to reserve
304 *
Steven Whitehouse89918642007-06-01 15:19:33 +0100305 * Note that we never give out the last few blocks of the journal. Thats
Robert Peterson2332c442007-06-18 14:50:20 -0500306 * due to the fact that there is a small number of header blocks
Steven Whitehouseb0041572006-11-23 10:51:34 -0500307 * 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 *
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500311 * 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 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000317 * Returns: errno
318 */
319
320int gfs2_log_reserve(struct gfs2_sbd *sdp, unsigned int blks)
321{
Steven Whitehouse89918642007-06-01 15:19:33 +0100322 unsigned reserved_blks = 6 * (4096 / sdp->sd_vfs->s_blocksize);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500323 unsigned wanted = blks + reserved_blks;
324 DEFINE_WAIT(wait);
325 int did_wait = 0;
326 unsigned int free_blocks;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000327
328 if (gfs2_assert_warn(sdp, blks) ||
329 gfs2_assert_warn(sdp, blks <= sdp->sd_jdesc->jd_blocks))
330 return -EINVAL;
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500331retry:
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);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000344 }
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500345 if (atomic_cmpxchg(&sdp->sd_log_blks_free, free_blocks,
346 free_blocks - blks) != free_blocks)
347 goto retry;
Steven Whitehouse63997772009-06-12 08:49:20 +0100348 trace_gfs2_log_blocks(sdp, -blks);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500349
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);
Steven Whitehouse484adff2006-03-29 09:12:12 -0500356
357 down_read(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000358
359 return 0;
360}
361
Steven Whitehouse47ac5532012-02-03 15:21:59 +0000362u64 gfs2_log_bmap(struct gfs2_sbd *sdp, unsigned int lbn)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000363{
Bob Petersonda6dd402007-12-11 18:49:21 -0600364 struct gfs2_journal_extent *je;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000365
Bob Petersonda6dd402007-12-11 18:49:21 -0600366 list_for_each_entry(je, &sdp->sd_jdesc->extent_list, extent_list) {
367 if (lbn >= je->lblock && lbn < je->lblock + je->blocks)
Steven Whitehouseff91cc92007-12-14 14:04:34 +0000368 return je->dblock + lbn - je->lblock;
Bob Petersonda6dd402007-12-11 18:49:21 -0600369 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000370
Bob Petersonda6dd402007-12-11 18:49:21 -0600371 return -1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000372}
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
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400386static inline unsigned int log_distance(struct gfs2_sbd *sdp, unsigned int newer,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000387 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
Robert Peterson2332c442007-06-18 14:50:20 -0500398/**
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
Benjamin Marzinski2e95e3f2010-03-10 18:10:19 -0600437 if (sdp->sd_log_commited_revoke > 0)
Robert Peterson2332c442007-06-18 14:50:20 -0500438 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
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450static unsigned int current_tail(struct gfs2_sbd *sdp)
451{
452 struct gfs2_ail *ai;
453 unsigned int tail;
454
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000455 spin_lock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000456
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400457 if (list_empty(&sdp->sd_ail1_list)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000458 tail = sdp->sd_log_head;
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400459 } else {
460 ai = list_entry(sdp->sd_ail1_list.prev, struct gfs2_ail, ai_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000461 tail = ai->ai_first;
462 }
463
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000464 spin_unlock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000465
466 return tail;
467}
468
Steven Whitehouse16615be2007-09-17 10:59:52 +0100469void gfs2_log_incr_head(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000470{
Steven Whitehouse47ac5532012-02-03 15:21:59 +0000471 BUG_ON((sdp->sd_log_flush_head == sdp->sd_log_tail) &&
472 (sdp->sd_log_flush_head != sdp->sd_log_head));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000473
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
Robert Peterson2332c442007-06-18 14:50:20 -0500480static void log_pull_tail(struct gfs2_sbd *sdp, unsigned int new_tail)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000481{
482 unsigned int dist = log_distance(sdp, new_tail, sdp->sd_log_tail);
483
484 ail2_empty(sdp, new_tail);
485
Steven Whitehousefd041f02007-11-08 14:55:03 +0000486 atomic_add(dist, &sdp->sd_log_blks_free);
Steven Whitehouse63997772009-06-12 08:49:20 +0100487 trace_gfs2_log_blocks(sdp, dist);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500488 gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <=
489 sdp->sd_jdesc->jd_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000490
491 sdp->sd_log_tail = new_tail;
492}
493
David Teiglandb3b94fa2006-01-16 16:50:04 +0000494
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000495static void log_flush_wait(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000496{
Steven Whitehouse16615be2007-09-17 10:59:52 +0100497 DEFINE_WAIT(wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498
Steven Whitehouse16615be2007-09-17 10:59:52 +0100499 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);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000507 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000508}
509
Steven Whitehouse08728f22012-02-21 11:14:00 +0000510static int bd_cmp(void *priv, struct list_head *a, struct list_head *b)
Bob Peterson4a36d082012-02-14 14:49:57 -0500511{
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
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100524static 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);
Bob Peterson4a36d082012-02-14 14:49:57 -0500531 list_sort(NULL, &sdp->sd_log_le_ordered, &bd_cmp);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100532 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);
Steven Whitehouseb8e7cbb2007-10-17 09:04:24 +0100541 if (buffer_mapped(bh) && test_clear_buffer_dirty(bh)) {
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100542 bh->b_end_io = end_buffer_write_sync;
Jens Axboe721a9602011-03-09 11:56:30 +0100543 submit_bh(WRITE_SYNC, bh);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100544 } 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
David Teiglandb3b94fa2006-01-16 16:50:04 +0000576/**
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000577 * 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
638/**
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400639 * gfs2_log_flush - flush incore transaction(s)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000640 * @sdp: the filesystem
641 * @gl: The glock structure to flush. If NULL, flush the whole incore log
642 *
643 */
644
Bob Petersoned4878e2010-05-20 23:30:11 -0400645void gfs2_log_flush(struct gfs2_sbd *sdp, struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000646{
647 struct gfs2_ail *ai;
648
Steven Whitehouse484adff2006-03-29 09:12:12 -0500649 down_write(&sdp->sd_log_flush_lock);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000650
Steven Whitehouse2bcd6102007-11-08 14:25:12 +0000651 /* 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;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000655 }
Steven Whitehouse63997772009-06-12 08:49:20 +0100656 trace_gfs2_log_flush(sdp, 1);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000657
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400658 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);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000661
Steven Whitehouse16615be2007-09-17 10:59:52 +0100662 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 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000672 gfs2_assert_withdraw(sdp,
673 sdp->sd_log_num_revoke == sdp->sd_log_commited_revoke);
674
David Teiglandb3b94fa2006-01-16 16:50:04 +0000675 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
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100679 gfs2_ordered_write(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000680 lops_before_commit(sdp);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100681
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000682 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){
Robert Peterson2332c442007-06-18 14:50:20 -0500685 gfs2_log_lock(sdp);
Steven Whitehousefd041f02007-11-08 14:55:03 +0000686 atomic_dec(&sdp->sd_log_blks_free); /* Adjust for unreserved buffer */
Steven Whitehouse63997772009-06-12 08:49:20 +0100687 trace_gfs2_log_blocks(sdp, -1);
Robert Peterson2332c442007-06-18 14:50:20 -0500688 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000689 log_write_header(sdp, 0, PULL);
Robert Peterson2332c442007-06-18 14:50:20 -0500690 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691 lops_after_commit(sdp, ai);
Steven Whitehousefe1a6982006-10-11 13:34:59 -0400692
693 gfs2_log_lock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000694 sdp->sd_log_head = sdp->sd_log_flush_head;
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400695 sdp->sd_log_blks_reserved = 0;
696 sdp->sd_log_commited_buf = 0;
Robert Peterson2332c442007-06-18 14:50:20 -0500697 sdp->sd_log_commited_databuf = 0;
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400698 sdp->sd_log_commited_revoke = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000699
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000700 spin_lock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000701 if (!list_empty(&ai->ai_ail1_list)) {
702 list_add(&ai->ai_list, &sdp->sd_ail1_list);
703 ai = NULL;
704 }
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000705 spin_unlock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000706 gfs2_log_unlock(sdp);
Steven Whitehouse63997772009-06-12 08:49:20 +0100707 trace_gfs2_log_flush(sdp, 0);
Steven Whitehouse484adff2006-03-29 09:12:12 -0500708 up_write(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000709
710 kfree(ai);
711}
712
713static void log_refund(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
714{
Robert Peterson2332c442007-06-18 14:50:20 -0500715 unsigned int reserved;
Steven Whitehouseac39aad2008-01-10 14:49:43 +0000716 unsigned int unused;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000717
718 gfs2_log_lock(sdp);
719
720 sdp->sd_log_commited_buf += tr->tr_num_buf_new - tr->tr_num_buf_rm;
Robert Peterson2332c442007-06-18 14:50:20 -0500721 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));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000725 sdp->sd_log_commited_revoke += tr->tr_num_revoke - tr->tr_num_revoke_rm;
Robert Peterson2332c442007-06-18 14:50:20 -0500726 reserved = calc_reserved(sdp);
Roel Kluin62be1f72008-04-17 17:25:37 +0200727 gfs2_assert_withdraw(sdp, sdp->sd_log_blks_reserved + tr->tr_reserved >= reserved);
Steven Whitehouseac39aad2008-01-10 14:49:43 +0000728 unused = sdp->sd_log_blks_reserved - reserved + tr->tr_reserved;
Steven Whitehouseac39aad2008-01-10 14:49:43 +0000729 atomic_add(unused, &sdp->sd_log_blks_free);
Steven Whitehouse63997772009-06-12 08:49:20 +0100730 trace_gfs2_log_blocks(sdp, unused);
Steven Whitehousefd041f02007-11-08 14:55:03 +0000731 gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <=
Robert Peterson2332c442007-06-18 14:50:20 -0500732 sdp->sd_jdesc->jd_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000733 sdp->sd_log_blks_reserved = reserved;
734
735 gfs2_log_unlock(sdp);
736}
737
Bob Petersond0109bf2008-01-28 11:20:10 -0600738static 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
David Teiglandb3b94fa2006-01-16 16:50:04 +0000753/**
754 * gfs2_log_commit - Commit a transaction to the log
755 * @sdp: the filesystem
756 * @tr: the transaction
757 *
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500758 * 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 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765 * Returns: errno
766 */
767
768void gfs2_log_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
769{
770 log_refund(sdp, tr);
Bob Petersond0109bf2008-01-28 11:20:10 -0600771 buf_lo_incore_commit(sdp, tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000772
Steven Whitehouse484adff2006-03-29 09:12:12 -0500773 up_read(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500775 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);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779}
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{
Steven Whitehouse484adff2006-03-29 09:12:12 -0500789 down_write(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790
David Teiglandb3b94fa2006-01-16 16:50:04 +0000791 gfs2_assert_withdraw(sdp, !sdp->sd_log_blks_reserved);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000792 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000793 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
Robert Peterson2332c442007-06-18 14:50:20 -0500801 log_write_header(sdp, GFS2_LOG_HEAD_UNMOUNT,
802 (sdp->sd_log_tail == current_tail(sdp)) ? 0 : PULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000803
Steven Whitehousefd041f02007-11-08 14:55:03 +0000804 gfs2_assert_warn(sdp, atomic_read(&sdp->sd_log_blks_free) == sdp->sd_jdesc->jd_blocks);
Steven Whitehousea74604b2006-04-21 15:10:46 -0400805 gfs2_assert_warn(sdp, sdp->sd_log_head == sdp->sd_log_tail);
806 gfs2_assert_warn(sdp, list_empty(&sdp->sd_ail2_list));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000807
808 sdp->sd_log_head = sdp->sd_log_flush_head;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000809 sdp->sd_log_tail = sdp->sd_log_head;
810
Steven Whitehouse484adff2006-03-29 09:12:12 -0500811 up_write(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000812}
813
Steven Whitehousea25311c2006-11-23 11:06:35 -0500814
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 (;;) {
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500825 gfs2_ail1_start(sdp);
Steven Whitehouse26b06a62011-05-21 19:21:07 +0100826 gfs2_ail1_wait(sdp);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100827 if (gfs2_ail1_empty(sdp))
Steven Whitehousea25311c2006-11-23 11:06:35 -0500828 break;
Steven Whitehousea25311c2006-11-23 11:06:35 -0500829 }
Steven Whitehouse380f7c62011-07-14 08:59:44 +0100830 gfs2_log_flush(sdp, NULL);
Steven Whitehousea25311c2006-11-23 11:06:35 -0500831}
832
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500833static 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}
Steven Whitehouseec69b182007-11-09 10:01:41 +0000843
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;
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500855 unsigned long t = 1;
856 DEFINE_WAIT(wait);
857 unsigned preflush;
Steven Whitehouseec69b182007-11-09 10:01:41 +0000858
859 while (!kthread_should_stop()) {
Steven Whitehouseec69b182007-11-09 10:01:41 +0000860
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500861 preflush = atomic_read(&sdp->sd_log_pinned);
862 if (gfs2_jrnl_flush_reqd(sdp) || t == 0) {
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100863 gfs2_ail1_empty(sdp);
Steven Whitehouseec69b182007-11-09 10:01:41 +0000864 gfs2_log_flush(sdp, NULL);
Steven Whitehouseec69b182007-11-09 10:01:41 +0000865 }
866
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500867 if (gfs2_ail_flush_reqd(sdp)) {
868 gfs2_ail1_start(sdp);
Steven Whitehouse26b06a62011-05-21 19:21:07 +0100869 gfs2_ail1_wait(sdp);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100870 gfs2_ail1_empty(sdp);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500871 gfs2_log_flush(sdp, NULL);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500872 }
873
Steven Whitehouse26b06a62011-05-21 19:21:07 +0100874 if (!gfs2_ail_flush_reqd(sdp))
875 wake_up(&sdp->sd_log_waitq);
876
Steven Whitehouseec69b182007-11-09 10:01:41 +0000877 t = gfs2_tune_get(sdp, gt_logd_secs) * HZ;
Tejun Heoa0acae02011-11-21 12:32:22 -0800878
879 try_to_freeze();
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500880
881 do {
882 prepare_to_wait(&sdp->sd_logd_waitq, &wait,
Steven Whitehouse5f487492010-09-09 14:45:00 +0100883 TASK_INTERRUPTIBLE);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500884 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);
Steven Whitehouseec69b182007-11-09 10:01:41 +0000892 }
893
894 return 0;
895}
896