blob: 610613fb65b552dccfdf9853ac96d2f667bd36d4 [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
David Teiglandb3b94fa2006-01-16 16:50:04 +000035/**
36 * gfs2_struct2blk - compute stuff
37 * @sdp: the filesystem
38 * @nstruct: the number of structures
39 * @ssize: the size of the structures
40 *
41 * Compute the number of log descriptor blocks needed to hold a certain number
42 * of structures of a certain size.
43 *
44 * Returns: the number of blocks needed (minimum is always 1)
45 */
46
47unsigned int gfs2_struct2blk(struct gfs2_sbd *sdp, unsigned int nstruct,
48 unsigned int ssize)
49{
50 unsigned int blks;
51 unsigned int first, second;
52
53 blks = 1;
Steven Whitehousefaa31ce2006-09-13 11:13:27 -040054 first = (sdp->sd_sb.sb_bsize - sizeof(struct gfs2_log_descriptor)) / ssize;
David Teiglandb3b94fa2006-01-16 16:50:04 +000055
56 if (nstruct > first) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -050057 second = (sdp->sd_sb.sb_bsize -
58 sizeof(struct gfs2_meta_header)) / ssize;
Steven Whitehouse5c676f62006-02-27 17:23:27 -050059 blks += DIV_ROUND_UP(nstruct - first, second);
David Teiglandb3b94fa2006-01-16 16:50:04 +000060 }
61
62 return blks;
63}
64
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040065/**
Steven Whitehouse1e1a3d02007-08-27 09:45:26 +010066 * gfs2_remove_from_ail - Remove an entry from the ail lists, updating counters
67 * @mapping: The associated mapping (maybe NULL)
68 * @bd: The gfs2_bufdata to remove
69 *
Steven Whitehousec618e872011-03-14 12:40:29 +000070 * The ail lock _must_ be held when calling this function
Steven Whitehouse1e1a3d02007-08-27 09:45:26 +010071 *
72 */
73
Steven Whitehousef91a0d32007-10-15 16:29:05 +010074void gfs2_remove_from_ail(struct gfs2_bufdata *bd)
Steven Whitehouse1e1a3d02007-08-27 09:45:26 +010075{
Benjamin Marzinski16ca9412013-04-05 20:31:46 -050076 bd->bd_tr = NULL;
Steven Whitehouse1ad38c42007-09-03 11:01:33 +010077 list_del_init(&bd->bd_ail_st_list);
78 list_del_init(&bd->bd_ail_gl_list);
Steven Whitehouse1e1a3d02007-08-27 09:45:26 +010079 atomic_dec(&bd->bd_gl->gl_ail_count);
Steven Whitehouse1e1a3d02007-08-27 09:45:26 +010080 brelse(bd->bd_bh);
81}
82
83/**
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040084 * gfs2_ail1_start_one - Start I/O on a part of the AIL
85 * @sdp: the filesystem
Steven Whitehouse4667a0e2011-04-18 14:18:09 +010086 * @wbc: The writeback control structure
87 * @ai: The ail structure
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040088 *
89 */
90
Steven Whitehouse4f1de012011-04-26 10:23:56 +010091static int gfs2_ail1_start_one(struct gfs2_sbd *sdp,
92 struct writeback_control *wbc,
Benjamin Marzinski16ca9412013-04-05 20:31:46 -050093 struct gfs2_trans *tr)
Dave Chinnerd6a079e2011-03-11 11:52:25 +000094__releases(&sdp->sd_ail_lock)
95__acquires(&sdp->sd_ail_lock)
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040096{
Steven Whitehouse5ac048b2011-03-30 16:25:51 +010097 struct gfs2_glock *gl = NULL;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +010098 struct address_space *mapping;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -040099 struct gfs2_bufdata *bd, *s;
100 struct buffer_head *bh;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400101
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500102 list_for_each_entry_safe_reverse(bd, s, &tr->tr_ail1_list, bd_ail_st_list) {
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100103 bh = bd->bd_bh;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400104
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500105 gfs2_assert(sdp, bd->bd_tr == tr);
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400106
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100107 if (!buffer_busy(bh)) {
108 if (!buffer_uptodate(bh))
109 gfs2_io_error_bh(sdp, bh);
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500110 list_move(&bd->bd_ail_st_list, &tr->tr_ail2_list);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100111 continue;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400112 }
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100113
114 if (!buffer_dirty(bh))
115 continue;
116 if (gl == bd->bd_gl)
117 continue;
118 gl = bd->bd_gl;
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500119 list_move(&bd->bd_ail_st_list, &tr->tr_ail1_list);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100120 mapping = bh->b_page->mapping;
Steven Whitehouse4f1de012011-04-26 10:23:56 +0100121 if (!mapping)
122 continue;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100123 spin_unlock(&sdp->sd_ail_lock);
124 generic_writepages(mapping, wbc);
125 spin_lock(&sdp->sd_ail_lock);
126 if (wbc->nr_to_write <= 0)
127 break;
Steven Whitehouse4f1de012011-04-26 10:23:56 +0100128 return 1;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100129 }
Steven Whitehouse4f1de012011-04-26 10:23:56 +0100130
131 return 0;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100132}
133
134
135/**
136 * gfs2_ail1_flush - start writeback of some ail1 entries
137 * @sdp: The super block
138 * @wbc: The writeback control structure
139 *
140 * Writes back some ail1 entries, according to the limits in the
141 * writeback control structure
142 */
143
144void gfs2_ail1_flush(struct gfs2_sbd *sdp, struct writeback_control *wbc)
145{
146 struct list_head *head = &sdp->sd_ail1_list;
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500147 struct gfs2_trans *tr;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100148
Steven Whitehousec83ae9c2011-04-18 14:18:38 +0100149 trace_gfs2_ail_flush(sdp, wbc, 1);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100150 spin_lock(&sdp->sd_ail_lock);
Steven Whitehouse4f1de012011-04-26 10:23:56 +0100151restart:
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500152 list_for_each_entry_reverse(tr, head, tr_list) {
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100153 if (wbc->nr_to_write <= 0)
154 break;
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500155 if (gfs2_ail1_start_one(sdp, wbc, tr))
Steven Whitehouse4f1de012011-04-26 10:23:56 +0100156 goto restart;
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100157 }
158 spin_unlock(&sdp->sd_ail_lock);
Steven Whitehousec83ae9c2011-04-18 14:18:38 +0100159 trace_gfs2_ail_flush(sdp, wbc, 0);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100160}
161
162/**
163 * gfs2_ail1_start - start writeback of all ail1 entries
164 * @sdp: The superblock
165 */
166
167static void gfs2_ail1_start(struct gfs2_sbd *sdp)
168{
169 struct writeback_control wbc = {
170 .sync_mode = WB_SYNC_NONE,
171 .nr_to_write = LONG_MAX,
172 .range_start = 0,
173 .range_end = LLONG_MAX,
174 };
175
176 return gfs2_ail1_flush(sdp, &wbc);
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400177}
178
179/**
180 * gfs2_ail1_empty_one - Check whether or not a trans in the AIL has been synced
181 * @sdp: the filesystem
182 * @ai: the AIL entry
183 *
184 */
185
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500186static void gfs2_ail1_empty_one(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400187{
188 struct gfs2_bufdata *bd, *s;
189 struct buffer_head *bh;
190
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500191 list_for_each_entry_safe_reverse(bd, s, &tr->tr_ail1_list,
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400192 bd_ail_st_list) {
193 bh = bd->bd_bh;
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500194 gfs2_assert(sdp, bd->bd_tr == tr);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100195 if (buffer_busy(bh))
196 continue;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400197 if (!buffer_uptodate(bh))
198 gfs2_io_error_bh(sdp, bh);
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500199 list_move(&bd->bd_ail_st_list, &tr->tr_ail2_list);
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400200 }
201
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400202}
203
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100204/**
205 * gfs2_ail1_empty - Try to empty the ail1 lists
206 * @sdp: The superblock
207 *
208 * Tries to empty the ail1 lists, starting with the oldest first
209 */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000210
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100211static int gfs2_ail1_empty(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000212{
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500213 struct gfs2_trans *tr, *s;
Benjamin Marzinski5d054962013-06-14 11:38:29 -0500214 int oldest_tr = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000215 int ret;
216
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000217 spin_lock(&sdp->sd_ail_lock);
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500218 list_for_each_entry_safe_reverse(tr, s, &sdp->sd_ail1_list, tr_list) {
219 gfs2_ail1_empty_one(sdp, tr);
Benjamin Marzinski5d054962013-06-14 11:38:29 -0500220 if (list_empty(&tr->tr_ail1_list) && oldest_tr)
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500221 list_move(&tr->tr_list, &sdp->sd_ail2_list);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100222 else
Benjamin Marzinski5d054962013-06-14 11:38:29 -0500223 oldest_tr = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000225 ret = list_empty(&sdp->sd_ail1_list);
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000226 spin_unlock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000227
228 return ret;
229}
230
Steven Whitehouse26b06a62011-05-21 19:21:07 +0100231static void gfs2_ail1_wait(struct gfs2_sbd *sdp)
232{
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500233 struct gfs2_trans *tr;
Steven Whitehouse26b06a62011-05-21 19:21:07 +0100234 struct gfs2_bufdata *bd;
235 struct buffer_head *bh;
236
237 spin_lock(&sdp->sd_ail_lock);
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500238 list_for_each_entry_reverse(tr, &sdp->sd_ail1_list, tr_list) {
239 list_for_each_entry(bd, &tr->tr_ail1_list, bd_ail_st_list) {
Steven Whitehouse26b06a62011-05-21 19:21:07 +0100240 bh = bd->bd_bh;
241 if (!buffer_locked(bh))
242 continue;
243 get_bh(bh);
244 spin_unlock(&sdp->sd_ail_lock);
245 wait_on_buffer(bh);
246 brelse(bh);
247 return;
248 }
249 }
250 spin_unlock(&sdp->sd_ail_lock);
251}
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400252
253/**
254 * gfs2_ail2_empty_one - Check whether or not a trans in the AIL has been synced
255 * @sdp: the filesystem
256 * @ai: the AIL entry
257 *
258 */
259
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500260static void gfs2_ail2_empty_one(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400261{
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500262 struct list_head *head = &tr->tr_ail2_list;
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400263 struct gfs2_bufdata *bd;
264
265 while (!list_empty(head)) {
266 bd = list_entry(head->prev, struct gfs2_bufdata,
267 bd_ail_st_list);
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500268 gfs2_assert(sdp, bd->bd_tr == tr);
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100269 gfs2_remove_from_ail(bd);
Steven Whitehouseddacfaf2006-10-03 11:10:41 -0400270 }
271}
272
David Teiglandb3b94fa2006-01-16 16:50:04 +0000273static void ail2_empty(struct gfs2_sbd *sdp, unsigned int new_tail)
274{
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500275 struct gfs2_trans *tr, *safe;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000276 unsigned int old_tail = sdp->sd_log_tail;
277 int wrap = (new_tail < old_tail);
278 int a, b, rm;
279
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000280 spin_lock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500282 list_for_each_entry_safe(tr, safe, &sdp->sd_ail2_list, tr_list) {
283 a = (old_tail <= tr->tr_first);
284 b = (tr->tr_first < new_tail);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000285 rm = (wrap) ? (a || b) : (a && b);
286 if (!rm)
287 continue;
288
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500289 gfs2_ail2_empty_one(sdp, tr);
290 list_del(&tr->tr_list);
291 gfs2_assert_warn(sdp, list_empty(&tr->tr_ail1_list));
292 gfs2_assert_warn(sdp, list_empty(&tr->tr_ail2_list));
293 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000294 }
295
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000296 spin_unlock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000297}
298
299/**
300 * gfs2_log_reserve - Make a log reservation
301 * @sdp: The GFS2 superblock
302 * @blks: The number of blocks to reserve
303 *
Steven Whitehouse89918642007-06-01 15:19:33 +0100304 * Note that we never give out the last few blocks of the journal. Thats
Robert Peterson2332c442007-06-18 14:50:20 -0500305 * due to the fact that there is a small number of header blocks
Steven Whitehouseb0041572006-11-23 10:51:34 -0500306 * associated with each log flush. The exact number can't be known until
307 * flush time, so we ensure that we have just enough free blocks at all
308 * times to avoid running out during a log flush.
309 *
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500310 * We no longer flush the log here, instead we wake up logd to do that
311 * for us. To avoid the thundering herd and to ensure that we deal fairly
312 * with queued waiters, we use an exclusive wait. This means that when we
313 * get woken with enough journal space to get our reservation, we need to
314 * wake the next waiter on the list.
315 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000316 * Returns: errno
317 */
318
319int gfs2_log_reserve(struct gfs2_sbd *sdp, unsigned int blks)
320{
Benjamin Marzinski5d054962013-06-14 11:38:29 -0500321 unsigned reserved_blks = 7 * (4096 / sdp->sd_vfs->s_blocksize);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500322 unsigned wanted = blks + reserved_blks;
323 DEFINE_WAIT(wait);
324 int did_wait = 0;
325 unsigned int free_blocks;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000326
327 if (gfs2_assert_warn(sdp, blks) ||
328 gfs2_assert_warn(sdp, blks <= sdp->sd_jdesc->jd_blocks))
329 return -EINVAL;
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500330retry:
331 free_blocks = atomic_read(&sdp->sd_log_blks_free);
332 if (unlikely(free_blocks <= wanted)) {
333 do {
334 prepare_to_wait_exclusive(&sdp->sd_log_waitq, &wait,
335 TASK_UNINTERRUPTIBLE);
336 wake_up(&sdp->sd_logd_waitq);
337 did_wait = 1;
338 if (atomic_read(&sdp->sd_log_blks_free) <= wanted)
339 io_schedule();
340 free_blocks = atomic_read(&sdp->sd_log_blks_free);
341 } while(free_blocks <= wanted);
342 finish_wait(&sdp->sd_log_waitq, &wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000343 }
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500344 if (atomic_cmpxchg(&sdp->sd_log_blks_free, free_blocks,
345 free_blocks - blks) != free_blocks)
346 goto retry;
Steven Whitehouse63997772009-06-12 08:49:20 +0100347 trace_gfs2_log_blocks(sdp, -blks);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500348
349 /*
350 * If we waited, then so might others, wake them up _after_ we get
351 * our share of the log.
352 */
353 if (unlikely(did_wait))
354 wake_up(&sdp->sd_log_waitq);
Steven Whitehouse484adff2006-03-29 09:12:12 -0500355
356 down_read(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357
358 return 0;
359}
360
David Teiglandb3b94fa2006-01-16 16:50:04 +0000361/**
362 * log_distance - Compute distance between two journal blocks
363 * @sdp: The GFS2 superblock
364 * @newer: The most recent journal block of the pair
365 * @older: The older journal block of the pair
366 *
367 * Compute the distance (in the journal direction) between two
368 * blocks in the journal
369 *
370 * Returns: the distance in blocks
371 */
372
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400373static inline unsigned int log_distance(struct gfs2_sbd *sdp, unsigned int newer,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000374 unsigned int older)
375{
376 int dist;
377
378 dist = newer - older;
379 if (dist < 0)
380 dist += sdp->sd_jdesc->jd_blocks;
381
382 return dist;
383}
384
Robert Peterson2332c442007-06-18 14:50:20 -0500385/**
386 * calc_reserved - Calculate the number of blocks to reserve when
387 * refunding a transaction's unused buffers.
388 * @sdp: The GFS2 superblock
389 *
390 * This is complex. We need to reserve room for all our currently used
391 * metadata buffers (e.g. normal file I/O rewriting file time stamps) and
392 * all our journaled data buffers for journaled files (e.g. files in the
393 * meta_fs like rindex, or files for which chattr +j was done.)
394 * If we don't reserve enough space, gfs2_log_refund and gfs2_log_flush
395 * will count it as free space (sd_log_blks_free) and corruption will follow.
396 *
397 * We can have metadata bufs and jdata bufs in the same journal. So each
398 * type gets its own log header, for which we need to reserve a block.
399 * In fact, each type has the potential for needing more than one header
400 * in cases where we have more buffers than will fit on a journal page.
401 * Metadata journal entries take up half the space of journaled buffer entries.
402 * Thus, metadata entries have buf_limit (502) and journaled buffers have
403 * databuf_limit (251) before they cause a wrap around.
404 *
405 * Also, we need to reserve blocks for revoke journal entries and one for an
406 * overall header for the lot.
407 *
408 * Returns: the number of blocks reserved
409 */
410static unsigned int calc_reserved(struct gfs2_sbd *sdp)
411{
412 unsigned int reserved = 0;
413 unsigned int mbuf_limit, metabufhdrs_needed;
414 unsigned int dbuf_limit, databufhdrs_needed;
415 unsigned int revokes = 0;
416
417 mbuf_limit = buf_limit(sdp);
418 metabufhdrs_needed = (sdp->sd_log_commited_buf +
419 (mbuf_limit - 1)) / mbuf_limit;
420 dbuf_limit = databuf_limit(sdp);
421 databufhdrs_needed = (sdp->sd_log_commited_databuf +
422 (dbuf_limit - 1)) / dbuf_limit;
423
Benjamin Marzinski2e95e3f2010-03-10 18:10:19 -0600424 if (sdp->sd_log_commited_revoke > 0)
Robert Peterson2332c442007-06-18 14:50:20 -0500425 revokes = gfs2_struct2blk(sdp, sdp->sd_log_commited_revoke,
426 sizeof(u64));
427
428 reserved = sdp->sd_log_commited_buf + metabufhdrs_needed +
429 sdp->sd_log_commited_databuf + databufhdrs_needed +
430 revokes;
431 /* One for the overall header */
432 if (reserved)
433 reserved++;
434 return reserved;
435}
436
David Teiglandb3b94fa2006-01-16 16:50:04 +0000437static unsigned int current_tail(struct gfs2_sbd *sdp)
438{
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500439 struct gfs2_trans *tr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000440 unsigned int tail;
441
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000442 spin_lock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000443
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400444 if (list_empty(&sdp->sd_ail1_list)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000445 tail = sdp->sd_log_head;
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400446 } else {
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500447 tr = list_entry(sdp->sd_ail1_list.prev, struct gfs2_trans,
448 tr_list);
449 tail = tr->tr_first;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450 }
451
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000452 spin_unlock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000453
454 return tail;
455}
456
Robert Peterson2332c442007-06-18 14:50:20 -0500457static void log_pull_tail(struct gfs2_sbd *sdp, unsigned int new_tail)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000458{
459 unsigned int dist = log_distance(sdp, new_tail, sdp->sd_log_tail);
460
461 ail2_empty(sdp, new_tail);
462
Steven Whitehousefd041f02007-11-08 14:55:03 +0000463 atomic_add(dist, &sdp->sd_log_blks_free);
Steven Whitehouse63997772009-06-12 08:49:20 +0100464 trace_gfs2_log_blocks(sdp, dist);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500465 gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <=
466 sdp->sd_jdesc->jd_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000467
468 sdp->sd_log_tail = new_tail;
469}
470
David Teiglandb3b94fa2006-01-16 16:50:04 +0000471
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000472static void log_flush_wait(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000473{
Steven Whitehouse16615be2007-09-17 10:59:52 +0100474 DEFINE_WAIT(wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475
Steven Whitehouse16615be2007-09-17 10:59:52 +0100476 if (atomic_read(&sdp->sd_log_in_flight)) {
477 do {
478 prepare_to_wait(&sdp->sd_log_flush_wait, &wait,
479 TASK_UNINTERRUPTIBLE);
480 if (atomic_read(&sdp->sd_log_in_flight))
481 io_schedule();
482 } while(atomic_read(&sdp->sd_log_in_flight));
483 finish_wait(&sdp->sd_log_flush_wait, &wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000485}
486
Steven Whitehouse45138992013-01-28 09:30:07 +0000487static int ip_cmp(void *priv, struct list_head *a, struct list_head *b)
Bob Peterson4a36d082012-02-14 14:49:57 -0500488{
Steven Whitehouse45138992013-01-28 09:30:07 +0000489 struct gfs2_inode *ipa, *ipb;
Bob Peterson4a36d082012-02-14 14:49:57 -0500490
Steven Whitehouse45138992013-01-28 09:30:07 +0000491 ipa = list_entry(a, struct gfs2_inode, i_ordered);
492 ipb = list_entry(b, struct gfs2_inode, i_ordered);
Bob Peterson4a36d082012-02-14 14:49:57 -0500493
Steven Whitehouse45138992013-01-28 09:30:07 +0000494 if (ipa->i_no_addr < ipb->i_no_addr)
Bob Peterson4a36d082012-02-14 14:49:57 -0500495 return -1;
Steven Whitehouse45138992013-01-28 09:30:07 +0000496 if (ipa->i_no_addr > ipb->i_no_addr)
Bob Peterson4a36d082012-02-14 14:49:57 -0500497 return 1;
498 return 0;
499}
500
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100501static void gfs2_ordered_write(struct gfs2_sbd *sdp)
502{
Steven Whitehouse45138992013-01-28 09:30:07 +0000503 struct gfs2_inode *ip;
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100504 LIST_HEAD(written);
505
Steven Whitehouse45138992013-01-28 09:30:07 +0000506 spin_lock(&sdp->sd_ordered_lock);
507 list_sort(NULL, &sdp->sd_log_le_ordered, &ip_cmp);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100508 while (!list_empty(&sdp->sd_log_le_ordered)) {
Steven Whitehouse45138992013-01-28 09:30:07 +0000509 ip = list_entry(sdp->sd_log_le_ordered.next, struct gfs2_inode, i_ordered);
510 list_move(&ip->i_ordered, &written);
511 if (ip->i_inode.i_mapping->nrpages == 0)
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100512 continue;
Steven Whitehouse45138992013-01-28 09:30:07 +0000513 spin_unlock(&sdp->sd_ordered_lock);
514 filemap_fdatawrite(ip->i_inode.i_mapping);
515 spin_lock(&sdp->sd_ordered_lock);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100516 }
517 list_splice(&written, &sdp->sd_log_le_ordered);
Steven Whitehouse45138992013-01-28 09:30:07 +0000518 spin_unlock(&sdp->sd_ordered_lock);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100519}
520
521static void gfs2_ordered_wait(struct gfs2_sbd *sdp)
522{
Steven Whitehouse45138992013-01-28 09:30:07 +0000523 struct gfs2_inode *ip;
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100524
Steven Whitehouse45138992013-01-28 09:30:07 +0000525 spin_lock(&sdp->sd_ordered_lock);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100526 while (!list_empty(&sdp->sd_log_le_ordered)) {
Steven Whitehouse45138992013-01-28 09:30:07 +0000527 ip = list_entry(sdp->sd_log_le_ordered.next, struct gfs2_inode, i_ordered);
528 list_del(&ip->i_ordered);
529 WARN_ON(!test_and_clear_bit(GIF_ORDERED, &ip->i_flags));
530 if (ip->i_inode.i_mapping->nrpages == 0)
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100531 continue;
Steven Whitehouse45138992013-01-28 09:30:07 +0000532 spin_unlock(&sdp->sd_ordered_lock);
533 filemap_fdatawait(ip->i_inode.i_mapping);
534 spin_lock(&sdp->sd_ordered_lock);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100535 }
Steven Whitehouse45138992013-01-28 09:30:07 +0000536 spin_unlock(&sdp->sd_ordered_lock);
537}
538
539void gfs2_ordered_del_inode(struct gfs2_inode *ip)
540{
541 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
542
543 spin_lock(&sdp->sd_ordered_lock);
544 if (test_and_clear_bit(GIF_ORDERED, &ip->i_flags))
545 list_del(&ip->i_ordered);
546 spin_unlock(&sdp->sd_ordered_lock);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100547}
548
Benjamin Marzinski5d054962013-06-14 11:38:29 -0500549void gfs2_add_revoke(struct gfs2_sbd *sdp, struct gfs2_bufdata *bd)
550{
551 struct buffer_head *bh = bd->bd_bh;
552 struct gfs2_glock *gl = bd->bd_gl;
553
554 gfs2_remove_from_ail(bd);
555 bd->bd_bh = NULL;
556 bh->b_private = NULL;
557 bd->bd_blkno = bh->b_blocknr;
558 bd->bd_ops = &gfs2_revoke_lops;
559 sdp->sd_log_num_revoke++;
560 atomic_inc(&gl->gl_revokes);
561 set_bit(GLF_LFLUSH, &gl->gl_flags);
562 list_add(&bd->bd_list, &sdp->sd_log_le_revoke);
563}
564
565void gfs2_write_revokes(struct gfs2_sbd *sdp)
566{
567 struct gfs2_trans *tr;
568 struct gfs2_bufdata *bd, *tmp;
569 int have_revokes = 0;
570 int max_revokes = (sdp->sd_sb.sb_bsize - sizeof(struct gfs2_log_descriptor)) / sizeof(u64);
571
572 gfs2_ail1_empty(sdp);
573 spin_lock(&sdp->sd_ail_lock);
574 list_for_each_entry(tr, &sdp->sd_ail1_list, tr_list) {
575 list_for_each_entry(bd, &tr->tr_ail2_list, bd_ail_st_list) {
576 if (list_empty(&bd->bd_list)) {
577 have_revokes = 1;
578 goto done;
579 }
580 }
581 }
582done:
583 spin_unlock(&sdp->sd_ail_lock);
584 if (have_revokes == 0)
585 return;
586 while (sdp->sd_log_num_revoke > max_revokes)
587 max_revokes += (sdp->sd_sb.sb_bsize - sizeof(struct gfs2_meta_header)) / sizeof(u64);
588 max_revokes -= sdp->sd_log_num_revoke;
589 if (!sdp->sd_log_num_revoke) {
590 atomic_dec(&sdp->sd_log_blks_free);
591 /* If no blocks have been reserved, we need to also
592 * reserve a block for the header */
593 if (!sdp->sd_log_blks_reserved)
594 atomic_dec(&sdp->sd_log_blks_free);
595 }
596 gfs2_log_lock(sdp);
597 spin_lock(&sdp->sd_ail_lock);
598 list_for_each_entry(tr, &sdp->sd_ail1_list, tr_list) {
599 list_for_each_entry_safe(bd, tmp, &tr->tr_ail2_list, bd_ail_st_list) {
600 if (max_revokes == 0)
601 goto out_of_blocks;
602 if (!list_empty(&bd->bd_list))
603 continue;
604 gfs2_add_revoke(sdp, bd);
605 max_revokes--;
606 }
607 }
608out_of_blocks:
609 spin_unlock(&sdp->sd_ail_lock);
610 gfs2_log_unlock(sdp);
611
612 if (!sdp->sd_log_num_revoke) {
613 atomic_inc(&sdp->sd_log_blks_free);
614 if (!sdp->sd_log_blks_reserved)
615 atomic_inc(&sdp->sd_log_blks_free);
616 }
617}
618
David Teiglandb3b94fa2006-01-16 16:50:04 +0000619/**
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000620 * log_write_header - Get and initialize a journal header buffer
621 * @sdp: The GFS2 superblock
622 *
623 * Returns: the initialized log buffer descriptor
624 */
625
Steven Whitehousefdb76a42012-04-02 15:34:36 +0100626static void log_write_header(struct gfs2_sbd *sdp, u32 flags)
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000627{
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000628 struct gfs2_log_header *lh;
629 unsigned int tail;
630 u32 hash;
Steven Whitehousee8c92ed2012-04-16 09:28:31 +0100631 int rw = WRITE_FLUSH_FUA | REQ_META;
632 struct page *page = mempool_alloc(gfs2_page_pool, GFP_NOIO);
633 lh = page_address(page);
634 clear_page(lh);
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000635
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000636 tail = current_tail(sdp);
637
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000638 lh->lh_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
639 lh->lh_header.mh_type = cpu_to_be32(GFS2_METATYPE_LH);
640 lh->lh_header.__pad0 = cpu_to_be64(0);
641 lh->lh_header.mh_format = cpu_to_be32(GFS2_FORMAT_LH);
642 lh->lh_header.mh_jid = cpu_to_be32(sdp->sd_jdesc->jd_jid);
643 lh->lh_sequence = cpu_to_be64(sdp->sd_log_sequence++);
644 lh->lh_flags = cpu_to_be32(flags);
645 lh->lh_tail = cpu_to_be32(tail);
646 lh->lh_blkno = cpu_to_be32(sdp->sd_log_flush_head);
Steven Whitehousee8c92ed2012-04-16 09:28:31 +0100647 hash = gfs2_disk_hash(page_address(page), sizeof(struct gfs2_log_header));
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000648 lh->lh_hash = cpu_to_be32(hash);
649
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000650 if (test_bit(SDF_NOBARRIERS, &sdp->sd_flags)) {
651 gfs2_ordered_wait(sdp);
652 log_flush_wait(sdp);
Steven Whitehousee8c92ed2012-04-16 09:28:31 +0100653 rw = WRITE_SYNC | REQ_META | REQ_PRIO;
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000654 }
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000655
Steven Whitehousee8c92ed2012-04-16 09:28:31 +0100656 sdp->sd_log_idle = (tail == sdp->sd_log_flush_head);
657 gfs2_log_write_page(sdp, page);
658 gfs2_log_flush_bio(sdp, rw);
659 log_flush_wait(sdp);
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000660
661 if (sdp->sd_log_tail != tail)
662 log_pull_tail(sdp, tail);
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000663}
664
665/**
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400666 * gfs2_log_flush - flush incore transaction(s)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000667 * @sdp: the filesystem
668 * @gl: The glock structure to flush. If NULL, flush the whole incore log
669 *
670 */
671
Bob Petersoned4878e2010-05-20 23:30:11 -0400672void gfs2_log_flush(struct gfs2_sbd *sdp, struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000673{
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500674 struct gfs2_trans *tr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000675
Steven Whitehouse484adff2006-03-29 09:12:12 -0500676 down_write(&sdp->sd_log_flush_lock);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000677
Steven Whitehouse2bcd6102007-11-08 14:25:12 +0000678 /* Log might have been flushed while we waited for the flush lock */
679 if (gl && !test_bit(GLF_LFLUSH, &gl->gl_flags)) {
680 up_write(&sdp->sd_log_flush_lock);
681 return;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000682 }
Steven Whitehouse63997772009-06-12 08:49:20 +0100683 trace_gfs2_log_flush(sdp, 1);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000684
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500685 tr = sdp->sd_log_tr;
686 if (tr) {
687 sdp->sd_log_tr = NULL;
688 INIT_LIST_HEAD(&tr->tr_ail1_list);
689 INIT_LIST_HEAD(&tr->tr_ail2_list);
690 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691
Steven Whitehouse16615be2007-09-17 10:59:52 +0100692 if (sdp->sd_log_num_buf != sdp->sd_log_commited_buf) {
693 printk(KERN_INFO "GFS2: log buf %u %u\n", sdp->sd_log_num_buf,
694 sdp->sd_log_commited_buf);
695 gfs2_assert_withdraw(sdp, 0);
696 }
697 if (sdp->sd_log_num_databuf != sdp->sd_log_commited_databuf) {
698 printk(KERN_INFO "GFS2: log databuf %u %u\n",
699 sdp->sd_log_num_databuf, sdp->sd_log_commited_databuf);
700 gfs2_assert_withdraw(sdp, 0);
701 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000702 gfs2_assert_withdraw(sdp,
703 sdp->sd_log_num_revoke == sdp->sd_log_commited_revoke);
704
David Teiglandb3b94fa2006-01-16 16:50:04 +0000705 sdp->sd_log_flush_head = sdp->sd_log_head;
706 sdp->sd_log_flush_wrapped = 0;
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500707 if (tr)
708 tr->tr_first = sdp->sd_log_flush_head;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000709
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100710 gfs2_ordered_write(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000711 lops_before_commit(sdp);
Steven Whitehousee8c92ed2012-04-16 09:28:31 +0100712 gfs2_log_flush_bio(sdp, WRITE);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100713
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000714 if (sdp->sd_log_head != sdp->sd_log_flush_head) {
Steven Whitehousefdb76a42012-04-02 15:34:36 +0100715 log_write_header(sdp, 0);
Steven Whitehouse34cc1782012-03-09 10:45:56 +0000716 } else if (sdp->sd_log_tail != current_tail(sdp) && !sdp->sd_log_idle){
Steven Whitehousefd041f02007-11-08 14:55:03 +0000717 atomic_dec(&sdp->sd_log_blks_free); /* Adjust for unreserved buffer */
Steven Whitehouse63997772009-06-12 08:49:20 +0100718 trace_gfs2_log_blocks(sdp, -1);
Steven Whitehousefdb76a42012-04-02 15:34:36 +0100719 log_write_header(sdp, 0);
Robert Peterson2332c442007-06-18 14:50:20 -0500720 }
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500721 lops_after_commit(sdp, tr);
Steven Whitehousefe1a6982006-10-11 13:34:59 -0400722
723 gfs2_log_lock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000724 sdp->sd_log_head = sdp->sd_log_flush_head;
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400725 sdp->sd_log_blks_reserved = 0;
726 sdp->sd_log_commited_buf = 0;
Robert Peterson2332c442007-06-18 14:50:20 -0500727 sdp->sd_log_commited_databuf = 0;
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400728 sdp->sd_log_commited_revoke = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000729
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000730 spin_lock(&sdp->sd_ail_lock);
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500731 if (tr && !list_empty(&tr->tr_ail1_list)) {
732 list_add(&tr->tr_list, &sdp->sd_ail1_list);
733 tr = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000734 }
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000735 spin_unlock(&sdp->sd_ail_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000736 gfs2_log_unlock(sdp);
Steven Whitehouse63997772009-06-12 08:49:20 +0100737 trace_gfs2_log_flush(sdp, 0);
Steven Whitehouse484adff2006-03-29 09:12:12 -0500738 up_write(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500740 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000741}
742
743static void log_refund(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
744{
Robert Peterson2332c442007-06-18 14:50:20 -0500745 unsigned int reserved;
Steven Whitehouseac39aad2008-01-10 14:49:43 +0000746 unsigned int unused;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000747
748 gfs2_log_lock(sdp);
749
750 sdp->sd_log_commited_buf += tr->tr_num_buf_new - tr->tr_num_buf_rm;
Robert Peterson2332c442007-06-18 14:50:20 -0500751 sdp->sd_log_commited_databuf += tr->tr_num_databuf_new -
752 tr->tr_num_databuf_rm;
753 gfs2_assert_withdraw(sdp, (((int)sdp->sd_log_commited_buf) >= 0) ||
754 (((int)sdp->sd_log_commited_databuf) >= 0));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000755 sdp->sd_log_commited_revoke += tr->tr_num_revoke - tr->tr_num_revoke_rm;
Robert Peterson2332c442007-06-18 14:50:20 -0500756 reserved = calc_reserved(sdp);
Roel Kluin62be1f72008-04-17 17:25:37 +0200757 gfs2_assert_withdraw(sdp, sdp->sd_log_blks_reserved + tr->tr_reserved >= reserved);
Steven Whitehouseac39aad2008-01-10 14:49:43 +0000758 unused = sdp->sd_log_blks_reserved - reserved + tr->tr_reserved;
Steven Whitehouseac39aad2008-01-10 14:49:43 +0000759 atomic_add(unused, &sdp->sd_log_blks_free);
Steven Whitehouse63997772009-06-12 08:49:20 +0100760 trace_gfs2_log_blocks(sdp, unused);
Steven Whitehousefd041f02007-11-08 14:55:03 +0000761 gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <=
Robert Peterson2332c442007-06-18 14:50:20 -0500762 sdp->sd_jdesc->jd_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763 sdp->sd_log_blks_reserved = reserved;
764
Benjamin Marzinski16ca9412013-04-05 20:31:46 -0500765 if (sdp->sd_log_tr == NULL &&
766 (tr->tr_num_buf_new || tr->tr_num_databuf_new)) {
767 gfs2_assert_withdraw(sdp, tr->tr_t_gh.gh_gl);
768 sdp->sd_log_tr = tr;
769 tr->tr_attached = 1;
770 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000771 gfs2_log_unlock(sdp);
772}
773
774/**
775 * gfs2_log_commit - Commit a transaction to the log
776 * @sdp: the filesystem
777 * @tr: the transaction
778 *
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500779 * We wake up gfs2_logd if the number of pinned blocks exceed thresh1
780 * or the total number of used blocks (pinned blocks plus AIL blocks)
781 * is greater than thresh2.
782 *
783 * At mount time thresh1 is 1/3rd of journal size, thresh2 is 2/3rd of
784 * journal size.
785 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786 * Returns: errno
787 */
788
789void gfs2_log_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
790{
791 log_refund(sdp, tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000792
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500793 if (atomic_read(&sdp->sd_log_pinned) > atomic_read(&sdp->sd_log_thresh1) ||
794 ((sdp->sd_jdesc->jd_blocks - atomic_read(&sdp->sd_log_blks_free)) >
795 atomic_read(&sdp->sd_log_thresh2)))
796 wake_up(&sdp->sd_logd_waitq);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797}
798
799/**
800 * gfs2_log_shutdown - write a shutdown header into a journal
801 * @sdp: the filesystem
802 *
803 */
804
805void gfs2_log_shutdown(struct gfs2_sbd *sdp)
806{
Steven Whitehouse484adff2006-03-29 09:12:12 -0500807 down_write(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000808
David Teiglandb3b94fa2006-01-16 16:50:04 +0000809 gfs2_assert_withdraw(sdp, !sdp->sd_log_blks_reserved);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000810 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000811 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_revoke);
812 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_rg);
813 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_databuf);
814 gfs2_assert_withdraw(sdp, list_empty(&sdp->sd_ail1_list));
815
816 sdp->sd_log_flush_head = sdp->sd_log_head;
817 sdp->sd_log_flush_wrapped = 0;
818
Steven Whitehousefdb76a42012-04-02 15:34:36 +0100819 log_write_header(sdp, GFS2_LOG_HEAD_UNMOUNT);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820
Steven Whitehousefd041f02007-11-08 14:55:03 +0000821 gfs2_assert_warn(sdp, atomic_read(&sdp->sd_log_blks_free) == sdp->sd_jdesc->jd_blocks);
Steven Whitehousea74604b2006-04-21 15:10:46 -0400822 gfs2_assert_warn(sdp, sdp->sd_log_head == sdp->sd_log_tail);
823 gfs2_assert_warn(sdp, list_empty(&sdp->sd_ail2_list));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824
825 sdp->sd_log_head = sdp->sd_log_flush_head;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000826 sdp->sd_log_tail = sdp->sd_log_head;
827
Steven Whitehouse484adff2006-03-29 09:12:12 -0500828 up_write(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000829}
830
Steven Whitehousea25311c2006-11-23 11:06:35 -0500831
832/**
833 * gfs2_meta_syncfs - sync all the buffers in a filesystem
834 * @sdp: the filesystem
835 *
836 */
837
838void gfs2_meta_syncfs(struct gfs2_sbd *sdp)
839{
840 gfs2_log_flush(sdp, NULL);
841 for (;;) {
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500842 gfs2_ail1_start(sdp);
Steven Whitehouse26b06a62011-05-21 19:21:07 +0100843 gfs2_ail1_wait(sdp);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100844 if (gfs2_ail1_empty(sdp))
Steven Whitehousea25311c2006-11-23 11:06:35 -0500845 break;
Steven Whitehousea25311c2006-11-23 11:06:35 -0500846 }
Steven Whitehouse380f7c62011-07-14 08:59:44 +0100847 gfs2_log_flush(sdp, NULL);
Steven Whitehousea25311c2006-11-23 11:06:35 -0500848}
849
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500850static inline int gfs2_jrnl_flush_reqd(struct gfs2_sbd *sdp)
851{
852 return (atomic_read(&sdp->sd_log_pinned) >= atomic_read(&sdp->sd_log_thresh1));
853}
854
855static inline int gfs2_ail_flush_reqd(struct gfs2_sbd *sdp)
856{
857 unsigned int used_blocks = sdp->sd_jdesc->jd_blocks - atomic_read(&sdp->sd_log_blks_free);
858 return used_blocks >= atomic_read(&sdp->sd_log_thresh2);
859}
Steven Whitehouseec69b182007-11-09 10:01:41 +0000860
861/**
862 * gfs2_logd - Update log tail as Active Items get flushed to in-place blocks
863 * @sdp: Pointer to GFS2 superblock
864 *
865 * Also, periodically check to make sure that we're using the most recent
866 * journal index.
867 */
868
869int gfs2_logd(void *data)
870{
871 struct gfs2_sbd *sdp = data;
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500872 unsigned long t = 1;
873 DEFINE_WAIT(wait);
Steven Whitehouseec69b182007-11-09 10:01:41 +0000874
875 while (!kthread_should_stop()) {
Steven Whitehouseec69b182007-11-09 10:01:41 +0000876
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500877 if (gfs2_jrnl_flush_reqd(sdp) || t == 0) {
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100878 gfs2_ail1_empty(sdp);
Steven Whitehouseec69b182007-11-09 10:01:41 +0000879 gfs2_log_flush(sdp, NULL);
Steven Whitehouseec69b182007-11-09 10:01:41 +0000880 }
881
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500882 if (gfs2_ail_flush_reqd(sdp)) {
883 gfs2_ail1_start(sdp);
Steven Whitehouse26b06a62011-05-21 19:21:07 +0100884 gfs2_ail1_wait(sdp);
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100885 gfs2_ail1_empty(sdp);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500886 gfs2_log_flush(sdp, NULL);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500887 }
888
Steven Whitehouse26b06a62011-05-21 19:21:07 +0100889 if (!gfs2_ail_flush_reqd(sdp))
890 wake_up(&sdp->sd_log_waitq);
891
Steven Whitehouseec69b182007-11-09 10:01:41 +0000892 t = gfs2_tune_get(sdp, gt_logd_secs) * HZ;
Tejun Heoa0acae02011-11-21 12:32:22 -0800893
894 try_to_freeze();
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500895
896 do {
897 prepare_to_wait(&sdp->sd_logd_waitq, &wait,
Steven Whitehouse5f487492010-09-09 14:45:00 +0100898 TASK_INTERRUPTIBLE);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500899 if (!gfs2_ail_flush_reqd(sdp) &&
900 !gfs2_jrnl_flush_reqd(sdp) &&
901 !kthread_should_stop())
902 t = schedule_timeout(t);
903 } while(t && !gfs2_ail_flush_reqd(sdp) &&
904 !gfs2_jrnl_flush_reqd(sdp) &&
905 !kthread_should_stop());
906 finish_wait(&sdp->sd_logd_waitq, &wait);
Steven Whitehouseec69b182007-11-09 10:01:41 +0000907 }
908
909 return 0;
910}
911