blob: 50f88059c3d5aac2a93c8fb46b2437588a167cf3 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 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>
David Teiglandb3b94fa2006-01-16 16:50:04 +000017
18#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include "lm_interface.h"
20#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include "bmap.h"
22#include "glock.h"
23#include "log.h"
24#include "lops.h"
25#include "meta_io.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050026#include "util.h"
Steven Whitehouse71b86f52006-03-28 14:14:04 -050027#include "dir.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000028
29#define PULL 1
30
David Teiglandb3b94fa2006-01-16 16:50:04 +000031/**
32 * gfs2_struct2blk - compute stuff
33 * @sdp: the filesystem
34 * @nstruct: the number of structures
35 * @ssize: the size of the structures
36 *
37 * Compute the number of log descriptor blocks needed to hold a certain number
38 * of structures of a certain size.
39 *
40 * Returns: the number of blocks needed (minimum is always 1)
41 */
42
43unsigned int gfs2_struct2blk(struct gfs2_sbd *sdp, unsigned int nstruct,
44 unsigned int ssize)
45{
46 unsigned int blks;
47 unsigned int first, second;
48
49 blks = 1;
Steven Whitehousefaa31ce2006-09-13 11:13:27 -040050 first = (sdp->sd_sb.sb_bsize - sizeof(struct gfs2_log_descriptor)) / ssize;
David Teiglandb3b94fa2006-01-16 16:50:04 +000051
52 if (nstruct > first) {
Steven Whitehouse568f4c92006-02-27 12:00:42 -050053 second = (sdp->sd_sb.sb_bsize -
54 sizeof(struct gfs2_meta_header)) / ssize;
Steven Whitehouse5c676f62006-02-27 17:23:27 -050055 blks += DIV_ROUND_UP(nstruct - first, second);
David Teiglandb3b94fa2006-01-16 16:50:04 +000056 }
57
58 return blks;
59}
60
61void gfs2_ail1_start(struct gfs2_sbd *sdp, int flags)
62{
63 struct list_head *head = &sdp->sd_ail1_list;
Steven Whitehousecd915492006-09-04 12:49:07 -040064 u64 sync_gen;
David Teiglandb3b94fa2006-01-16 16:50:04 +000065 struct list_head *first, *tmp;
66 struct gfs2_ail *first_ai, *ai;
67
68 gfs2_log_lock(sdp);
69 if (list_empty(head)) {
70 gfs2_log_unlock(sdp);
71 return;
72 }
73 sync_gen = sdp->sd_ail_sync_gen++;
74
75 first = head->prev;
76 first_ai = list_entry(first, struct gfs2_ail, ai_list);
77 first_ai->ai_sync_gen = sync_gen;
78 gfs2_ail1_start_one(sdp, first_ai);
79
80 if (flags & DIO_ALL)
81 first = NULL;
82
83 for (;;) {
Steven Whitehouse484adff2006-03-29 09:12:12 -050084 if (first && (head->prev != first ||
85 gfs2_ail1_empty_one(sdp, first_ai, 0)))
David Teiglandb3b94fa2006-01-16 16:50:04 +000086 break;
87
88 for (tmp = head->prev; tmp != head; tmp = tmp->prev) {
89 ai = list_entry(tmp, struct gfs2_ail, ai_list);
90 if (ai->ai_sync_gen >= sync_gen)
91 continue;
92 ai->ai_sync_gen = sync_gen;
93 gfs2_ail1_start_one(sdp, ai);
94 break;
95 }
96
97 if (tmp == head)
98 break;
99 }
100
101 gfs2_log_unlock(sdp);
102}
103
104int gfs2_ail1_empty(struct gfs2_sbd *sdp, int flags)
105{
106 struct gfs2_ail *ai, *s;
107 int ret;
108
109 gfs2_log_lock(sdp);
110
111 list_for_each_entry_safe_reverse(ai, s, &sdp->sd_ail1_list, ai_list) {
112 if (gfs2_ail1_empty_one(sdp, ai, flags))
113 list_move(&ai->ai_list, &sdp->sd_ail2_list);
114 else if (!(flags & DIO_ALL))
115 break;
116 }
117
118 ret = list_empty(&sdp->sd_ail1_list);
119
120 gfs2_log_unlock(sdp);
121
122 return ret;
123}
124
125static void ail2_empty(struct gfs2_sbd *sdp, unsigned int new_tail)
126{
127 struct gfs2_ail *ai, *safe;
128 unsigned int old_tail = sdp->sd_log_tail;
129 int wrap = (new_tail < old_tail);
130 int a, b, rm;
131
132 gfs2_log_lock(sdp);
133
134 list_for_each_entry_safe(ai, safe, &sdp->sd_ail2_list, ai_list) {
135 a = (old_tail <= ai->ai_first);
136 b = (ai->ai_first < new_tail);
137 rm = (wrap) ? (a || b) : (a && b);
138 if (!rm)
139 continue;
140
141 gfs2_ail2_empty_one(sdp, ai);
142 list_del(&ai->ai_list);
143 gfs2_assert_warn(sdp, list_empty(&ai->ai_ail1_list));
144 gfs2_assert_warn(sdp, list_empty(&ai->ai_ail2_list));
145 kfree(ai);
146 }
147
148 gfs2_log_unlock(sdp);
149}
150
151/**
152 * gfs2_log_reserve - Make a log reservation
153 * @sdp: The GFS2 superblock
154 * @blks: The number of blocks to reserve
155 *
156 * Returns: errno
157 */
158
159int gfs2_log_reserve(struct gfs2_sbd *sdp, unsigned int blks)
160{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161 unsigned int try = 0;
162
163 if (gfs2_assert_warn(sdp, blks) ||
164 gfs2_assert_warn(sdp, blks <= sdp->sd_jdesc->jd_blocks))
165 return -EINVAL;
166
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500167 mutex_lock(&sdp->sd_log_reserve_mutex);
Steven Whitehouse484adff2006-03-29 09:12:12 -0500168 gfs2_log_lock(sdp);
169 while(sdp->sd_log_blks_free <= blks) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000170 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000171 gfs2_ail1_empty(sdp, 0);
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400172 gfs2_log_flush(sdp, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000173
174 if (try++)
175 gfs2_ail1_start(sdp, 0);
Steven Whitehouse484adff2006-03-29 09:12:12 -0500176 gfs2_log_lock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000177 }
Steven Whitehouse484adff2006-03-29 09:12:12 -0500178 sdp->sd_log_blks_free -= blks;
179 gfs2_log_unlock(sdp);
180 mutex_unlock(&sdp->sd_log_reserve_mutex);
181
182 down_read(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000183
184 return 0;
185}
186
187/**
188 * gfs2_log_release - Release a given number of log blocks
189 * @sdp: The GFS2 superblock
190 * @blks: The number of blocks
191 *
192 */
193
194void gfs2_log_release(struct gfs2_sbd *sdp, unsigned int blks)
195{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000196
197 gfs2_log_lock(sdp);
198 sdp->sd_log_blks_free += blks;
199 gfs2_assert_withdraw(sdp,
200 sdp->sd_log_blks_free <= sdp->sd_jdesc->jd_blocks);
201 gfs2_log_unlock(sdp);
Steven Whitehouseed386502006-04-07 16:28:07 -0400202 up_read(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000203}
204
Steven Whitehousecd915492006-09-04 12:49:07 -0400205static u64 log_bmap(struct gfs2_sbd *sdp, unsigned int lbn)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000206{
207 int new = 0;
Steven Whitehousecd915492006-09-04 12:49:07 -0400208 u64 dbn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209 int error;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400210 int bdy;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000211
Steven Whitehousefd88de562006-05-05 16:59:11 -0400212 error = gfs2_block_map(sdp->sd_jdesc->jd_inode, lbn, &new, &dbn, &bdy);
Steven Whitehousea67cdbd2006-09-05 14:41:30 -0400213 if (error || !dbn)
Steven Whitehousefd4de2d2006-07-05 13:14:59 -0400214 printk(KERN_INFO "error=%d, dbn=%llu lbn=%u", error, (unsigned long long)dbn, lbn);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000215 gfs2_assert_withdraw(sdp, !error && dbn);
216
217 return dbn;
218}
219
220/**
221 * log_distance - Compute distance between two journal blocks
222 * @sdp: The GFS2 superblock
223 * @newer: The most recent journal block of the pair
224 * @older: The older journal block of the pair
225 *
226 * Compute the distance (in the journal direction) between two
227 * blocks in the journal
228 *
229 * Returns: the distance in blocks
230 */
231
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400232static inline unsigned int log_distance(struct gfs2_sbd *sdp, unsigned int newer,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000233 unsigned int older)
234{
235 int dist;
236
237 dist = newer - older;
238 if (dist < 0)
239 dist += sdp->sd_jdesc->jd_blocks;
240
241 return dist;
242}
243
244static unsigned int current_tail(struct gfs2_sbd *sdp)
245{
246 struct gfs2_ail *ai;
247 unsigned int tail;
248
249 gfs2_log_lock(sdp);
250
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400251 if (list_empty(&sdp->sd_ail1_list)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000252 tail = sdp->sd_log_head;
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400253 } else {
254 ai = list_entry(sdp->sd_ail1_list.prev, struct gfs2_ail, ai_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000255 tail = ai->ai_first;
256 }
257
258 gfs2_log_unlock(sdp);
259
260 return tail;
261}
262
263static inline void log_incr_head(struct gfs2_sbd *sdp)
264{
265 if (sdp->sd_log_flush_head == sdp->sd_log_tail)
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400266 gfs2_assert_withdraw(sdp, sdp->sd_log_flush_head == sdp->sd_log_head);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000267
268 if (++sdp->sd_log_flush_head == sdp->sd_jdesc->jd_blocks) {
269 sdp->sd_log_flush_head = 0;
270 sdp->sd_log_flush_wrapped = 1;
271 }
272}
273
274/**
275 * gfs2_log_get_buf - Get and initialize a buffer to use for log control data
276 * @sdp: The GFS2 superblock
277 *
278 * Returns: the buffer_head
279 */
280
281struct buffer_head *gfs2_log_get_buf(struct gfs2_sbd *sdp)
282{
Steven Whitehousecd915492006-09-04 12:49:07 -0400283 u64 blkno = log_bmap(sdp, sdp->sd_log_flush_head);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000284 struct gfs2_log_buf *lb;
285 struct buffer_head *bh;
286
Steven Whitehouse4f3df042006-01-18 13:20:16 +0000287 lb = kzalloc(sizeof(struct gfs2_log_buf), GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000288 list_add(&lb->lb_list, &sdp->sd_log_flush_list);
289
290 bh = lb->lb_bh = sb_getblk(sdp->sd_vfs, blkno);
291 lock_buffer(bh);
292 memset(bh->b_data, 0, bh->b_size);
293 set_buffer_uptodate(bh);
294 clear_buffer_dirty(bh);
295 unlock_buffer(bh);
296
297 log_incr_head(sdp);
298
299 return bh;
300}
301
302/**
303 * gfs2_log_fake_buf - Build a fake buffer head to write metadata buffer to log
304 * @sdp: the filesystem
305 * @data: the data the buffer_head should point to
306 *
307 * Returns: the log buffer descriptor
308 */
309
310struct buffer_head *gfs2_log_fake_buf(struct gfs2_sbd *sdp,
311 struct buffer_head *real)
312{
Steven Whitehousecd915492006-09-04 12:49:07 -0400313 u64 blkno = log_bmap(sdp, sdp->sd_log_flush_head);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000314 struct gfs2_log_buf *lb;
315 struct buffer_head *bh;
316
Steven Whitehouse4f3df042006-01-18 13:20:16 +0000317 lb = kzalloc(sizeof(struct gfs2_log_buf), GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318 list_add(&lb->lb_list, &sdp->sd_log_flush_list);
319 lb->lb_real = real;
320
321 bh = lb->lb_bh = alloc_buffer_head(GFP_NOFS | __GFP_NOFAIL);
322 atomic_set(&bh->b_count, 1);
323 bh->b_state = (1 << BH_Mapped) | (1 << BH_Uptodate);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000324 set_bh_page(bh, real->b_page, bh_offset(real));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325 bh->b_blocknr = blkno;
326 bh->b_size = sdp->sd_sb.sb_bsize;
327 bh->b_bdev = sdp->sd_vfs->s_bdev;
328
329 log_incr_head(sdp);
330
331 return bh;
332}
333
334static void log_pull_tail(struct gfs2_sbd *sdp, unsigned int new_tail, int pull)
335{
336 unsigned int dist = log_distance(sdp, new_tail, sdp->sd_log_tail);
337
338 ail2_empty(sdp, new_tail);
339
340 gfs2_log_lock(sdp);
Jan Engelhardtc53921242006-09-05 14:30:40 +0200341 sdp->sd_log_blks_free += dist - (pull ? 1 : 0);
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400342 gfs2_assert_withdraw(sdp, sdp->sd_log_blks_free <= sdp->sd_jdesc->jd_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000343 gfs2_log_unlock(sdp);
344
345 sdp->sd_log_tail = new_tail;
346}
347
348/**
349 * log_write_header - Get and initialize a journal header buffer
350 * @sdp: The GFS2 superblock
351 *
352 * Returns: the initialized log buffer descriptor
353 */
354
Steven Whitehousecd915492006-09-04 12:49:07 -0400355static void log_write_header(struct gfs2_sbd *sdp, u32 flags, int pull)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000356{
Steven Whitehousecd915492006-09-04 12:49:07 -0400357 u64 blkno = log_bmap(sdp, sdp->sd_log_flush_head);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000358 struct buffer_head *bh;
359 struct gfs2_log_header *lh;
360 unsigned int tail;
Steven Whitehousecd915492006-09-04 12:49:07 -0400361 u32 hash;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000362
David Teiglandb3b94fa2006-01-16 16:50:04 +0000363 bh = sb_getblk(sdp->sd_vfs, blkno);
364 lock_buffer(bh);
365 memset(bh->b_data, 0, bh->b_size);
366 set_buffer_uptodate(bh);
367 clear_buffer_dirty(bh);
368 unlock_buffer(bh);
369
370 gfs2_ail1_empty(sdp, 0);
371 tail = current_tail(sdp);
372
373 lh = (struct gfs2_log_header *)bh->b_data;
374 memset(lh, 0, sizeof(struct gfs2_log_header));
375 lh->lh_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
Steven Whitehousee3167de2006-03-30 15:46:23 -0500376 lh->lh_header.mh_type = cpu_to_be32(GFS2_METATYPE_LH);
377 lh->lh_header.mh_format = cpu_to_be32(GFS2_FORMAT_LH);
Steven Whitehousee0f2bf72006-07-17 09:36:28 -0400378 lh->lh_sequence = cpu_to_be64(sdp->sd_log_sequence++);
379 lh->lh_flags = cpu_to_be32(flags);
380 lh->lh_tail = cpu_to_be32(tail);
381 lh->lh_blkno = cpu_to_be32(sdp->sd_log_flush_head);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000382 hash = gfs2_disk_hash(bh->b_data, sizeof(struct gfs2_log_header));
383 lh->lh_hash = cpu_to_be32(hash);
384
385 set_buffer_dirty(bh);
386 if (sync_dirty_buffer(bh))
387 gfs2_io_error_bh(sdp, bh);
388 brelse(bh);
389
390 if (sdp->sd_log_tail != tail)
391 log_pull_tail(sdp, tail, pull);
392 else
393 gfs2_assert_withdraw(sdp, !pull);
394
395 sdp->sd_log_idle = (tail == sdp->sd_log_flush_head);
396 log_incr_head(sdp);
397}
398
399static void log_flush_commit(struct gfs2_sbd *sdp)
400{
401 struct list_head *head = &sdp->sd_log_flush_list;
402 struct gfs2_log_buf *lb;
403 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404
405 while (!list_empty(head)) {
406 lb = list_entry(head->next, struct gfs2_log_buf, lb_list);
407 list_del(&lb->lb_list);
408 bh = lb->lb_bh;
409
410 wait_on_buffer(bh);
411 if (!buffer_uptodate(bh))
412 gfs2_io_error_bh(sdp, bh);
413 if (lb->lb_real) {
414 while (atomic_read(&bh->b_count) != 1) /* Grrrr... */
415 schedule();
416 free_buffer_head(bh);
417 } else
418 brelse(bh);
419 kfree(lb);
420 }
421
422 log_write_header(sdp, 0, 0);
423}
424
425/**
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400426 * gfs2_log_flush - flush incore transaction(s)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000427 * @sdp: the filesystem
428 * @gl: The glock structure to flush. If NULL, flush the whole incore log
429 *
430 */
431
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400432void gfs2_log_flush(struct gfs2_sbd *sdp, struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000433{
434 struct gfs2_ail *ai;
435
Steven Whitehouse484adff2006-03-29 09:12:12 -0500436 down_write(&sdp->sd_log_flush_lock);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000437
438 if (gl) {
439 gfs2_log_lock(sdp);
440 if (list_empty(&gl->gl_le.le_list)) {
441 gfs2_log_unlock(sdp);
Steven Whitehouse484adff2006-03-29 09:12:12 -0500442 up_write(&sdp->sd_log_flush_lock);
Steven Whitehousef55ab262006-02-21 12:51:39 +0000443 return;
444 }
445 gfs2_log_unlock(sdp);
446 }
447
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400448 ai = kzalloc(sizeof(struct gfs2_ail), GFP_NOFS | __GFP_NOFAIL);
449 INIT_LIST_HEAD(&ai->ai_ail1_list);
450 INIT_LIST_HEAD(&ai->ai_ail2_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000451
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400452 gfs2_assert_withdraw(sdp, sdp->sd_log_num_buf == sdp->sd_log_commited_buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000453 gfs2_assert_withdraw(sdp,
454 sdp->sd_log_num_revoke == sdp->sd_log_commited_revoke);
455
David Teiglandb3b94fa2006-01-16 16:50:04 +0000456 sdp->sd_log_flush_head = sdp->sd_log_head;
457 sdp->sd_log_flush_wrapped = 0;
458 ai->ai_first = sdp->sd_log_flush_head;
459
460 lops_before_commit(sdp);
461 if (!list_empty(&sdp->sd_log_flush_list))
462 log_flush_commit(sdp);
463 else if (sdp->sd_log_tail != current_tail(sdp) && !sdp->sd_log_idle)
464 log_write_header(sdp, 0, PULL);
465 lops_after_commit(sdp, ai);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000466 sdp->sd_log_head = sdp->sd_log_flush_head;
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400467
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400468 sdp->sd_log_blks_free -= sdp->sd_log_num_hdrs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000469
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400470 sdp->sd_log_blks_reserved = 0;
471 sdp->sd_log_commited_buf = 0;
472 sdp->sd_log_num_hdrs = 0;
473 sdp->sd_log_commited_revoke = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474
475 gfs2_log_lock(sdp);
476 if (!list_empty(&ai->ai_ail1_list)) {
477 list_add(&ai->ai_list, &sdp->sd_ail1_list);
478 ai = NULL;
479 }
480 gfs2_log_unlock(sdp);
481
David Teiglandb3b94fa2006-01-16 16:50:04 +0000482 sdp->sd_vfs->s_dirt = 0;
Steven Whitehouse484adff2006-03-29 09:12:12 -0500483 up_write(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484
485 kfree(ai);
486}
487
488static void log_refund(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
489{
Benjamin Marzinski5dc39fe2006-08-24 14:47:17 -0500490 unsigned int reserved = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000491 unsigned int old;
492
493 gfs2_log_lock(sdp);
494
495 sdp->sd_log_commited_buf += tr->tr_num_buf_new - tr->tr_num_buf_rm;
496 gfs2_assert_withdraw(sdp, ((int)sdp->sd_log_commited_buf) >= 0);
497 sdp->sd_log_commited_revoke += tr->tr_num_revoke - tr->tr_num_revoke_rm;
498 gfs2_assert_withdraw(sdp, ((int)sdp->sd_log_commited_revoke) >= 0);
499
500 if (sdp->sd_log_commited_buf)
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400501 reserved += sdp->sd_log_commited_buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000502 if (sdp->sd_log_commited_revoke)
503 reserved += gfs2_struct2blk(sdp, sdp->sd_log_commited_revoke,
Steven Whitehousecd915492006-09-04 12:49:07 -0400504 sizeof(u64));
Benjamin Marzinski5dc39fe2006-08-24 14:47:17 -0500505 if (reserved)
506 reserved++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000507
508 old = sdp->sd_log_blks_free;
509 sdp->sd_log_blks_free += tr->tr_reserved -
510 (reserved - sdp->sd_log_blks_reserved);
511
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400512 gfs2_assert_withdraw(sdp, sdp->sd_log_blks_free >= old);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000513 gfs2_assert_withdraw(sdp,
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400514 sdp->sd_log_blks_free <= sdp->sd_jdesc->jd_blocks +
515 sdp->sd_log_num_hdrs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000516
517 sdp->sd_log_blks_reserved = reserved;
518
519 gfs2_log_unlock(sdp);
520}
521
522/**
523 * gfs2_log_commit - Commit a transaction to the log
524 * @sdp: the filesystem
525 * @tr: the transaction
526 *
527 * Returns: errno
528 */
529
530void gfs2_log_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
531{
532 log_refund(sdp, tr);
533 lops_incore_commit(sdp, tr);
534
535 sdp->sd_vfs->s_dirt = 1;
Steven Whitehouse484adff2006-03-29 09:12:12 -0500536 up_read(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000537
David Teiglandb3b94fa2006-01-16 16:50:04 +0000538 gfs2_log_lock(sdp);
539 if (sdp->sd_log_num_buf > gfs2_tune_get(sdp, gt_incore_log_blocks)) {
540 gfs2_log_unlock(sdp);
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400541 gfs2_log_flush(sdp, NULL);
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400542 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000543 gfs2_log_unlock(sdp);
Steven Whitehousefaa31ce2006-09-13 11:13:27 -0400544 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000545}
546
547/**
548 * gfs2_log_shutdown - write a shutdown header into a journal
549 * @sdp: the filesystem
550 *
551 */
552
553void gfs2_log_shutdown(struct gfs2_sbd *sdp)
554{
Steven Whitehouse484adff2006-03-29 09:12:12 -0500555 down_write(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556
David Teiglandb3b94fa2006-01-16 16:50:04 +0000557 gfs2_assert_withdraw(sdp, !sdp->sd_log_blks_reserved);
558 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_gl);
559 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_buf);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000560 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_jdata);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000561 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_revoke);
562 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_rg);
563 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_databuf);
Steven Whitehouse190562b2006-04-20 16:57:23 -0400564 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_hdrs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000565 gfs2_assert_withdraw(sdp, list_empty(&sdp->sd_ail1_list));
566
567 sdp->sd_log_flush_head = sdp->sd_log_head;
568 sdp->sd_log_flush_wrapped = 0;
569
570 log_write_header(sdp, GFS2_LOG_HEAD_UNMOUNT, 0);
571
Steven Whitehousea74604b2006-04-21 15:10:46 -0400572 gfs2_assert_warn(sdp, sdp->sd_log_blks_free == sdp->sd_jdesc->jd_blocks);
573 gfs2_assert_warn(sdp, sdp->sd_log_head == sdp->sd_log_tail);
574 gfs2_assert_warn(sdp, list_empty(&sdp->sd_ail2_list));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000575
576 sdp->sd_log_head = sdp->sd_log_flush_head;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000577 sdp->sd_log_tail = sdp->sd_log_head;
578
Steven Whitehouse484adff2006-03-29 09:12:12 -0500579 up_write(&sdp->sd_log_flush_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000580}
581