blob: de8b4cb7c31e73e6d48b46ccb1686a7a67a83cd9 [file] [log] [blame]
Dave Kleikamp470decc2006-10-11 01:20:57 -07001/*
Uwe Kleine-König58862692007-05-09 07:51:49 +02002 * linux/fs/jbd2/transaction.c
Dave Kleikamp470decc2006-10-11 01:20:57 -07003 *
4 * Written by Stephen C. Tweedie <sct@redhat.com>, 1998
5 *
6 * Copyright 1998 Red Hat corp --- All Rights Reserved
7 *
8 * This file is part of the Linux kernel and is made available under
9 * the terms of the GNU General Public License, version 2, or at your
10 * option, any later version, incorporated herein by reference.
11 *
12 * Generic filesystem transaction handling code; part of the ext2fs
13 * journaling system.
14 *
15 * This file manages transactions (compound commits managed by the
16 * journaling code) and handles (individual atomic operations by the
17 * filesystem).
18 */
19
20#include <linux/time.h>
21#include <linux/fs.h>
Mingming Caof7f4bcc2006-10-11 01:20:59 -070022#include <linux/jbd2.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070023#include <linux/errno.h>
24#include <linux/slab.h>
25#include <linux/timer.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070026#include <linux/mm.h>
27#include <linux/highmem.h>
Josef Bacike07f7182008-11-26 01:14:26 -050028#include <linux/hrtimer.h>
Theodore Ts'o47def822010-07-27 11:56:05 -040029#include <linux/backing-dev.h>
Randy Dunlap44705752011-10-27 04:05:13 -040030#include <linux/bug.h>
Theodore Ts'o47def822010-07-27 11:56:05 -040031#include <linux/module.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070032
Adrian Bunk7ddae862006-12-06 20:38:27 -080033static void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh);
Jan Karade1b7942011-06-13 15:38:22 -040034static void __jbd2_journal_unfile_buffer(struct journal_head *jh);
Adrian Bunk7ddae862006-12-06 20:38:27 -080035
Yongqiang Yang0c2022e2012-02-20 17:53:02 -050036static struct kmem_cache *transaction_cache;
37int __init jbd2_journal_init_transaction_cache(void)
38{
39 J_ASSERT(!transaction_cache);
40 transaction_cache = kmem_cache_create("jbd2_transaction_s",
41 sizeof(transaction_t),
42 0,
43 SLAB_HWCACHE_ALIGN|SLAB_TEMPORARY,
44 NULL);
45 if (transaction_cache)
46 return 0;
47 return -ENOMEM;
48}
49
50void jbd2_journal_destroy_transaction_cache(void)
51{
52 if (transaction_cache) {
53 kmem_cache_destroy(transaction_cache);
54 transaction_cache = NULL;
55 }
56}
57
58void jbd2_journal_free_transaction(transaction_t *transaction)
59{
60 if (unlikely(ZERO_OR_NULL_PTR(transaction)))
61 return;
62 kmem_cache_free(transaction_cache, transaction);
63}
64
Dave Kleikamp470decc2006-10-11 01:20:57 -070065/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -070066 * jbd2_get_transaction: obtain a new transaction_t object.
Dave Kleikamp470decc2006-10-11 01:20:57 -070067 *
68 * Simply allocate and initialise a new transaction. Create it in
69 * RUNNING state and add it to the current journal (which should not
70 * have an existing running transaction: we only make a new transaction
71 * once we have started to commit the old one).
72 *
73 * Preconditions:
74 * The journal MUST be locked. We don't perform atomic mallocs on the
75 * new transaction and we can't block without protecting against other
76 * processes trying to touch the journal while it is in transition.
77 *
Dave Kleikamp470decc2006-10-11 01:20:57 -070078 */
79
80static transaction_t *
Mingming Caof7f4bcc2006-10-11 01:20:59 -070081jbd2_get_transaction(journal_t *journal, transaction_t *transaction)
Dave Kleikamp470decc2006-10-11 01:20:57 -070082{
83 transaction->t_journal = journal;
84 transaction->t_state = T_RUNNING;
Josef Bacike07f7182008-11-26 01:14:26 -050085 transaction->t_start_time = ktime_get();
Dave Kleikamp470decc2006-10-11 01:20:57 -070086 transaction->t_tid = journal->j_transaction_sequence++;
87 transaction->t_expires = jiffies + journal->j_commit_interval;
88 spin_lock_init(&transaction->t_handle_lock);
Theodore Ts'oa51dca92010-08-02 08:43:25 -040089 atomic_set(&transaction->t_updates, 0);
90 atomic_set(&transaction->t_outstanding_credits, 0);
Theodore Ts'o8dd42042010-08-03 21:38:29 -040091 atomic_set(&transaction->t_handle_count, 0);
Jan Karac851ed52008-07-11 19:27:31 -040092 INIT_LIST_HEAD(&transaction->t_inode_list);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -040093 INIT_LIST_HEAD(&transaction->t_private_list);
Dave Kleikamp470decc2006-10-11 01:20:57 -070094
95 /* Set up the commit timer for the new transaction. */
Andreas Dilgerb1f485f2009-08-10 22:51:53 -040096 journal->j_commit_timer.expires = round_jiffies_up(transaction->t_expires);
Dave Kleikamp470decc2006-10-11 01:20:57 -070097 add_timer(&journal->j_commit_timer);
98
99 J_ASSERT(journal->j_running_transaction == NULL);
100 journal->j_running_transaction = transaction;
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500101 transaction->t_max_wait = 0;
102 transaction->t_start = jiffies;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700103
104 return transaction;
105}
106
107/*
108 * Handle management.
109 *
110 * A handle_t is an object which represents a single atomic update to a
111 * filesystem, and which tracks all of the modifications which form part
112 * of that one update.
113 */
114
115/*
Tao Ma28e35e42011-05-22 21:45:26 -0400116 * Update transaction's maximum wait time, if debugging is enabled.
Theodore Ts'o6d0bf002010-08-09 17:28:38 -0400117 *
118 * In order for t_max_wait to be reliable, it must be protected by a
119 * lock. But doing so will mean that start_this_handle() can not be
120 * run in parallel on SMP systems, which limits our scalability. So
121 * unless debugging is enabled, we no longer update t_max_wait, which
122 * means that maximum wait time reported by the jbd2_run_stats
123 * tracepoint will always be zero.
124 */
Tao Ma28e35e42011-05-22 21:45:26 -0400125static inline void update_t_max_wait(transaction_t *transaction,
126 unsigned long ts)
Theodore Ts'o6d0bf002010-08-09 17:28:38 -0400127{
128#ifdef CONFIG_JBD2_DEBUG
Theodore Ts'o6d0bf002010-08-09 17:28:38 -0400129 if (jbd2_journal_enable_debug &&
130 time_after(transaction->t_start, ts)) {
131 ts = jbd2_time_diff(ts, transaction->t_start);
132 spin_lock(&transaction->t_handle_lock);
133 if (ts > transaction->t_max_wait)
134 transaction->t_max_wait = ts;
135 spin_unlock(&transaction->t_handle_lock);
136 }
137#endif
138}
139
140/*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700141 * start_this_handle: Given a handle, deal with any locking or stalling
142 * needed to make sure that there is enough journal space for the handle
143 * to begin. Attach the handle to a transaction and set up the
144 * transaction's buffer credits.
145 */
146
Theodore Ts'o47def822010-07-27 11:56:05 -0400147static int start_this_handle(journal_t *journal, handle_t *handle,
Dan Carpenterd2159fb2011-09-04 10:20:14 -0400148 gfp_t gfp_mask)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700149{
Theodore Ts'oe4471832011-02-12 08:18:24 -0500150 transaction_t *transaction, *new_transaction = NULL;
151 tid_t tid;
152 int needed, need_to_start;
153 int nblocks = handle->h_buffer_credits;
Tao Ma28e35e42011-05-22 21:45:26 -0400154 unsigned long ts = jiffies;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700155
156 if (nblocks > journal->j_max_transaction_buffers) {
Eryu Guanf2a44522011-11-01 19:09:18 -0400157 printk(KERN_ERR "JBD2: %s wants too many credits (%d > %d)\n",
Dave Kleikamp470decc2006-10-11 01:20:57 -0700158 current->comm, nblocks,
159 journal->j_max_transaction_buffers);
Theodore Ts'o47def822010-07-27 11:56:05 -0400160 return -ENOSPC;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700161 }
162
163alloc_transaction:
164 if (!journal->j_running_transaction) {
Yongqiang Yang0c2022e2012-02-20 17:53:02 -0500165 new_transaction = kmem_cache_alloc(transaction_cache,
166 gfp_mask | __GFP_ZERO);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700167 if (!new_transaction) {
Theodore Ts'o47def822010-07-27 11:56:05 -0400168 /*
169 * If __GFP_FS is not present, then we may be
170 * being called from inside the fs writeback
171 * layer, so we MUST NOT fail. Since
172 * __GFP_NOFAIL is going away, we will arrange
173 * to retry the allocation ourselves.
174 */
175 if ((gfp_mask & __GFP_FS) == 0) {
176 congestion_wait(BLK_RW_ASYNC, HZ/50);
177 goto alloc_transaction;
178 }
179 return -ENOMEM;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700180 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700181 }
182
183 jbd_debug(3, "New handle %p going live.\n", handle);
184
Dave Kleikamp470decc2006-10-11 01:20:57 -0700185 /*
186 * We need to hold j_state_lock until t_updates has been incremented,
187 * for proper journal barrier handling
188 */
Theodore Ts'oa931da62010-08-03 21:35:12 -0400189repeat:
190 read_lock(&journal->j_state_lock);
Theodore Ts'o5c2178e2010-10-27 21:30:04 -0400191 BUG_ON(journal->j_flags & JBD2_UNMOUNT);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700192 if (is_journal_aborted(journal) ||
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700193 (journal->j_errno != 0 && !(journal->j_flags & JBD2_ACK_ERR))) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400194 read_unlock(&journal->j_state_lock);
Yongqiang Yang0c2022e2012-02-20 17:53:02 -0500195 jbd2_journal_free_transaction(new_transaction);
Theodore Ts'o47def822010-07-27 11:56:05 -0400196 return -EROFS;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700197 }
198
199 /* Wait on the journal's transaction barrier if necessary */
200 if (journal->j_barrier_count) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400201 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700202 wait_event(journal->j_wait_transaction_locked,
203 journal->j_barrier_count == 0);
204 goto repeat;
205 }
206
207 if (!journal->j_running_transaction) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400208 read_unlock(&journal->j_state_lock);
209 if (!new_transaction)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700210 goto alloc_transaction;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400211 write_lock(&journal->j_state_lock);
Jan Karaed9074c2012-12-21 00:15:51 -0500212 if (!journal->j_running_transaction &&
213 !journal->j_barrier_count) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400214 jbd2_get_transaction(journal, new_transaction);
215 new_transaction = NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700216 }
Theodore Ts'oa931da62010-08-03 21:35:12 -0400217 write_unlock(&journal->j_state_lock);
218 goto repeat;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700219 }
220
221 transaction = journal->j_running_transaction;
222
223 /*
224 * If the current transaction is locked down for commit, wait for the
225 * lock to be released.
226 */
227 if (transaction->t_state == T_LOCKED) {
228 DEFINE_WAIT(wait);
229
230 prepare_to_wait(&journal->j_wait_transaction_locked,
231 &wait, TASK_UNINTERRUPTIBLE);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400232 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700233 schedule();
234 finish_wait(&journal->j_wait_transaction_locked, &wait);
235 goto repeat;
236 }
237
238 /*
239 * If there is not enough space left in the log to write all potential
240 * buffers requested by this operation, we need to stall pending a log
241 * checkpoint to free some more log space.
242 */
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400243 needed = atomic_add_return(nblocks,
244 &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700245
246 if (needed > journal->j_max_transaction_buffers) {
247 /*
248 * If the current transaction is already too large, then start
249 * to commit it: we can then go back and attach this handle to
250 * a new transaction.
251 */
252 DEFINE_WAIT(wait);
253
254 jbd_debug(2, "Handle %p starting new commit...\n", handle);
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400255 atomic_sub(nblocks, &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700256 prepare_to_wait(&journal->j_wait_transaction_locked, &wait,
257 TASK_UNINTERRUPTIBLE);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500258 tid = transaction->t_tid;
259 need_to_start = !tid_geq(journal->j_commit_request, tid);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400260 read_unlock(&journal->j_state_lock);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500261 if (need_to_start)
262 jbd2_log_start_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700263 schedule();
264 finish_wait(&journal->j_wait_transaction_locked, &wait);
265 goto repeat;
266 }
267
268 /*
269 * The commit code assumes that it can get enough log space
270 * without forcing a checkpoint. This is *critical* for
271 * correctness: a checkpoint of a buffer which is also
272 * associated with a committing transaction creates a deadlock,
273 * so commit simply cannot force through checkpoints.
274 *
275 * We must therefore ensure the necessary space in the journal
276 * *before* starting to dirty potentially checkpointed buffers
277 * in the new transaction.
278 *
279 * The worst part is, any transaction currently committing can
280 * reduce the free space arbitrarily. Be careful to account for
281 * those buffers when checkpointing.
282 */
283
284 /*
285 * @@@ AKPM: This seems rather over-defensive. We're giving commit
286 * a _lot_ of headroom: 1/4 of the journal plus the size of
287 * the committing transaction. Really, we only need to give it
288 * committing_transaction->t_outstanding_credits plus "enough" for
289 * the log control blocks.
Uwe Kleine-Königa34f0b32010-12-10 14:55:42 +0100290 * Also, this test is inconsistent with the matching one in
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700291 * jbd2_journal_extend().
Dave Kleikamp470decc2006-10-11 01:20:57 -0700292 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700293 if (__jbd2_log_space_left(journal) < jbd_space_needed(journal)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700294 jbd_debug(2, "Handle %p waiting for checkpoint...\n", handle);
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400295 atomic_sub(nblocks, &transaction->t_outstanding_credits);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400296 read_unlock(&journal->j_state_lock);
297 write_lock(&journal->j_state_lock);
298 if (__jbd2_log_space_left(journal) < jbd_space_needed(journal))
299 __jbd2_log_wait_for_space(journal);
300 write_unlock(&journal->j_state_lock);
301 goto repeat;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700302 }
303
304 /* OK, account for the buffers that this operation expects to
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400305 * use and add the handle to the running transaction.
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400306 */
Tao Ma28e35e42011-05-22 21:45:26 -0400307 update_t_max_wait(transaction, ts);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700308 handle->h_transaction = transaction;
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400309 atomic_inc(&transaction->t_updates);
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400310 atomic_inc(&transaction->t_handle_count);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700311 jbd_debug(4, "Handle %p given %d credits (total %d, free %d)\n",
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400312 handle, nblocks,
313 atomic_read(&transaction->t_outstanding_credits),
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700314 __jbd2_log_space_left(journal));
Theodore Ts'oa931da62010-08-03 21:35:12 -0400315 read_unlock(&journal->j_state_lock);
Jan Kara9599b0e2009-08-17 21:23:17 -0400316
317 lock_map_acquire(&handle->h_lockdep_map);
Yongqiang Yang0c2022e2012-02-20 17:53:02 -0500318 jbd2_journal_free_transaction(new_transaction);
Theodore Ts'o47def822010-07-27 11:56:05 -0400319 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700320}
321
Mingming Cao7b751062008-01-28 23:58:27 -0500322static struct lock_class_key jbd2_handle_key;
323
Dave Kleikamp470decc2006-10-11 01:20:57 -0700324/* Allocate a new handle. This should probably be in a slab... */
325static handle_t *new_handle(int nblocks)
326{
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400327 handle_t *handle = jbd2_alloc_handle(GFP_NOFS);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700328 if (!handle)
329 return NULL;
330 memset(handle, 0, sizeof(*handle));
331 handle->h_buffer_credits = nblocks;
332 handle->h_ref = 1;
333
Mingming Cao7b751062008-01-28 23:58:27 -0500334 lockdep_init_map(&handle->h_lockdep_map, "jbd2_handle",
335 &jbd2_handle_key, 0);
336
Dave Kleikamp470decc2006-10-11 01:20:57 -0700337 return handle;
338}
339
340/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700341 * handle_t *jbd2_journal_start() - Obtain a new handle.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700342 * @journal: Journal to start transaction on.
343 * @nblocks: number of block buffer we might modify
344 *
345 * We make sure that the transaction can guarantee at least nblocks of
346 * modified buffers in the log. We block until the log can guarantee
347 * that much space.
348 *
349 * This function is visible to journal users (like ext3fs), so is not
350 * called with the journal already locked.
351 *
Eryu Guanc8675162011-05-24 17:09:58 -0400352 * Return a pointer to a newly allocated handle, or an ERR_PTR() value
353 * on failure.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700354 */
Dan Carpenterd2159fb2011-09-04 10:20:14 -0400355handle_t *jbd2__journal_start(journal_t *journal, int nblocks, gfp_t gfp_mask)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700356{
357 handle_t *handle = journal_current_handle();
358 int err;
359
360 if (!journal)
361 return ERR_PTR(-EROFS);
362
363 if (handle) {
364 J_ASSERT(handle->h_transaction->t_journal == journal);
365 handle->h_ref++;
366 return handle;
367 }
368
369 handle = new_handle(nblocks);
370 if (!handle)
371 return ERR_PTR(-ENOMEM);
372
373 current->journal_info = handle;
374
Theodore Ts'o47def822010-07-27 11:56:05 -0400375 err = start_this_handle(journal, handle, gfp_mask);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700376 if (err < 0) {
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400377 jbd2_free_handle(handle);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700378 current->journal_info = NULL;
379 handle = ERR_PTR(err);
380 }
381 return handle;
382}
Theodore Ts'o47def822010-07-27 11:56:05 -0400383EXPORT_SYMBOL(jbd2__journal_start);
384
385
386handle_t *jbd2_journal_start(journal_t *journal, int nblocks)
387{
388 return jbd2__journal_start(journal, nblocks, GFP_NOFS);
389}
390EXPORT_SYMBOL(jbd2_journal_start);
391
Dave Kleikamp470decc2006-10-11 01:20:57 -0700392
393/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700394 * int jbd2_journal_extend() - extend buffer credits.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700395 * @handle: handle to 'extend'
396 * @nblocks: nr blocks to try to extend by.
397 *
398 * Some transactions, such as large extends and truncates, can be done
399 * atomically all at once or in several stages. The operation requests
400 * a credit for a number of buffer modications in advance, but can
401 * extend its credit if it needs more.
402 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700403 * jbd2_journal_extend tries to give the running handle more buffer credits.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700404 * It does not guarantee that allocation - this is a best-effort only.
405 * The calling process MUST be able to deal cleanly with a failure to
406 * extend here.
407 *
408 * Return 0 on success, non-zero on failure.
409 *
410 * return code < 0 implies an error
411 * return code > 0 implies normal transaction-full status.
412 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700413int jbd2_journal_extend(handle_t *handle, int nblocks)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700414{
415 transaction_t *transaction = handle->h_transaction;
416 journal_t *journal = transaction->t_journal;
417 int result;
418 int wanted;
419
420 result = -EIO;
421 if (is_handle_aborted(handle))
422 goto out;
423
424 result = 1;
425
Theodore Ts'oa931da62010-08-03 21:35:12 -0400426 read_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700427
428 /* Don't extend a locked-down transaction! */
429 if (handle->h_transaction->t_state != T_RUNNING) {
430 jbd_debug(3, "denied handle %p %d blocks: "
431 "transaction not running\n", handle, nblocks);
432 goto error_out;
433 }
434
435 spin_lock(&transaction->t_handle_lock);
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400436 wanted = atomic_read(&transaction->t_outstanding_credits) + nblocks;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700437
438 if (wanted > journal->j_max_transaction_buffers) {
439 jbd_debug(3, "denied handle %p %d blocks: "
440 "transaction too large\n", handle, nblocks);
441 goto unlock;
442 }
443
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700444 if (wanted > __jbd2_log_space_left(journal)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700445 jbd_debug(3, "denied handle %p %d blocks: "
446 "insufficient log space\n", handle, nblocks);
447 goto unlock;
448 }
449
450 handle->h_buffer_credits += nblocks;
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400451 atomic_add(nblocks, &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700452 result = 0;
453
454 jbd_debug(3, "extended handle %p by %d\n", handle, nblocks);
455unlock:
456 spin_unlock(&transaction->t_handle_lock);
457error_out:
Theodore Ts'oa931da62010-08-03 21:35:12 -0400458 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700459out:
460 return result;
461}
462
463
464/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700465 * int jbd2_journal_restart() - restart a handle .
Dave Kleikamp470decc2006-10-11 01:20:57 -0700466 * @handle: handle to restart
467 * @nblocks: nr credits requested
468 *
469 * Restart a handle for a multi-transaction filesystem
470 * operation.
471 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700472 * If the jbd2_journal_extend() call above fails to grant new buffer credits
473 * to a running handle, a call to jbd2_journal_restart will commit the
Dave Kleikamp470decc2006-10-11 01:20:57 -0700474 * handle's transaction so far and reattach the handle to a new
475 * transaction capabable of guaranteeing the requested number of
476 * credits.
477 */
Dan Carpenterd2159fb2011-09-04 10:20:14 -0400478int jbd2__journal_restart(handle_t *handle, int nblocks, gfp_t gfp_mask)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700479{
480 transaction_t *transaction = handle->h_transaction;
481 journal_t *journal = transaction->t_journal;
Theodore Ts'oe4471832011-02-12 08:18:24 -0500482 tid_t tid;
483 int need_to_start, ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700484
485 /* If we've had an abort of any type, don't even think about
486 * actually doing the restart! */
487 if (is_handle_aborted(handle))
488 return 0;
489
490 /*
491 * First unlink the handle from its current transaction, and start the
492 * commit on that.
493 */
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400494 J_ASSERT(atomic_read(&transaction->t_updates) > 0);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700495 J_ASSERT(journal_current_handle() == handle);
496
Theodore Ts'oa931da62010-08-03 21:35:12 -0400497 read_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700498 spin_lock(&transaction->t_handle_lock);
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400499 atomic_sub(handle->h_buffer_credits,
500 &transaction->t_outstanding_credits);
501 if (atomic_dec_and_test(&transaction->t_updates))
Dave Kleikamp470decc2006-10-11 01:20:57 -0700502 wake_up(&journal->j_wait_updates);
503 spin_unlock(&transaction->t_handle_lock);
504
505 jbd_debug(2, "restarting handle %p\n", handle);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500506 tid = transaction->t_tid;
507 need_to_start = !tid_geq(journal->j_commit_request, tid);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400508 read_unlock(&journal->j_state_lock);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500509 if (need_to_start)
510 jbd2_log_start_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700511
Jan Kara9599b0e2009-08-17 21:23:17 -0400512 lock_map_release(&handle->h_lockdep_map);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700513 handle->h_buffer_credits = nblocks;
Theodore Ts'o47def822010-07-27 11:56:05 -0400514 ret = start_this_handle(journal, handle, gfp_mask);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700515 return ret;
516}
Theodore Ts'o47def822010-07-27 11:56:05 -0400517EXPORT_SYMBOL(jbd2__journal_restart);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700518
519
Theodore Ts'o47def822010-07-27 11:56:05 -0400520int jbd2_journal_restart(handle_t *handle, int nblocks)
521{
522 return jbd2__journal_restart(handle, nblocks, GFP_NOFS);
523}
524EXPORT_SYMBOL(jbd2_journal_restart);
525
Dave Kleikamp470decc2006-10-11 01:20:57 -0700526/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700527 * void jbd2_journal_lock_updates () - establish a transaction barrier.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700528 * @journal: Journal to establish a barrier on.
529 *
530 * This locks out any further updates from being started, and blocks
531 * until all existing updates have completed, returning only once the
532 * journal is in a quiescent state with no updates running.
533 *
534 * The journal lock should not be held on entry.
535 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700536void jbd2_journal_lock_updates(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700537{
538 DEFINE_WAIT(wait);
539
Theodore Ts'oa931da62010-08-03 21:35:12 -0400540 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700541 ++journal->j_barrier_count;
542
543 /* Wait until there are no running updates */
544 while (1) {
545 transaction_t *transaction = journal->j_running_transaction;
546
547 if (!transaction)
548 break;
549
550 spin_lock(&transaction->t_handle_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700551 prepare_to_wait(&journal->j_wait_updates, &wait,
552 TASK_UNINTERRUPTIBLE);
Jan Kara9837d8e2012-01-04 22:03:11 -0500553 if (!atomic_read(&transaction->t_updates)) {
554 spin_unlock(&transaction->t_handle_lock);
555 finish_wait(&journal->j_wait_updates, &wait);
556 break;
557 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700558 spin_unlock(&transaction->t_handle_lock);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400559 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700560 schedule();
561 finish_wait(&journal->j_wait_updates, &wait);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400562 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700563 }
Theodore Ts'oa931da62010-08-03 21:35:12 -0400564 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700565
566 /*
567 * We have now established a barrier against other normal updates, but
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700568 * we also need to barrier against other jbd2_journal_lock_updates() calls
Dave Kleikamp470decc2006-10-11 01:20:57 -0700569 * to make sure that we serialise special journal-locked operations
570 * too.
571 */
572 mutex_lock(&journal->j_barrier);
573}
574
575/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700576 * void jbd2_journal_unlock_updates (journal_t* journal) - release barrier
Dave Kleikamp470decc2006-10-11 01:20:57 -0700577 * @journal: Journal to release the barrier on.
578 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700579 * Release a transaction barrier obtained with jbd2_journal_lock_updates().
Dave Kleikamp470decc2006-10-11 01:20:57 -0700580 *
581 * Should be called without the journal lock held.
582 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700583void jbd2_journal_unlock_updates (journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700584{
585 J_ASSERT(journal->j_barrier_count != 0);
586
587 mutex_unlock(&journal->j_barrier);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400588 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700589 --journal->j_barrier_count;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400590 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700591 wake_up(&journal->j_wait_transaction_locked);
592}
593
Jan Karaf91d1d02009-07-13 16:16:20 -0400594static void warn_dirty_buffer(struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700595{
Jan Karaf91d1d02009-07-13 16:16:20 -0400596 char b[BDEVNAME_SIZE];
Dave Kleikamp470decc2006-10-11 01:20:57 -0700597
Jan Karaf91d1d02009-07-13 16:16:20 -0400598 printk(KERN_WARNING
Eryu Guanf2a44522011-11-01 19:09:18 -0400599 "JBD2: Spotted dirty metadata buffer (dev = %s, blocknr = %llu). "
Jan Karaf91d1d02009-07-13 16:16:20 -0400600 "There's a risk of filesystem corruption in case of system "
601 "crash.\n",
602 bdevname(bh->b_bdev, b), (unsigned long long)bh->b_blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700603}
604
605/*
606 * If the buffer is already part of the current transaction, then there
607 * is nothing we need to do. If it is already part of a prior
608 * transaction which we are still committing to disk, then we need to
609 * make sure that we do not overwrite the old copy: we do copy-out to
610 * preserve the copy going to disk. We also account the buffer against
611 * the handle's metadata buffer credits (unless the buffer is already
612 * part of the transaction, that is).
613 *
614 */
615static int
616do_get_write_access(handle_t *handle, struct journal_head *jh,
617 int force_copy)
618{
619 struct buffer_head *bh;
620 transaction_t *transaction;
621 journal_t *journal;
622 int error;
623 char *frozen_buffer = NULL;
624 int need_copy = 0;
625
626 if (is_handle_aborted(handle))
627 return -EROFS;
628
629 transaction = handle->h_transaction;
630 journal = transaction->t_journal;
631
Theodore Ts'ocfef2c62010-12-18 13:07:34 -0500632 jbd_debug(5, "journal_head %p, force_copy %d\n", jh, force_copy);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700633
634 JBUFFER_TRACE(jh, "entry");
635repeat:
636 bh = jh2bh(jh);
637
638 /* @@@ Need to check for errors here at some point. */
639
640 lock_buffer(bh);
641 jbd_lock_bh_state(bh);
642
643 /* We now hold the buffer lock so it is safe to query the buffer
644 * state. Is the buffer dirty?
645 *
646 * If so, there are two possibilities. The buffer may be
647 * non-journaled, and undergoing a quite legitimate writeback.
648 * Otherwise, it is journaled, and we don't expect dirty buffers
649 * in that state (the buffers should be marked JBD_Dirty
650 * instead.) So either the IO is being done under our own
651 * control and this is a bug, or it's a third party IO such as
652 * dump(8) (which may leave the buffer scheduled for read ---
653 * ie. locked but not dirty) or tune2fs (which may actually have
654 * the buffer dirtied, ugh.) */
655
656 if (buffer_dirty(bh)) {
657 /*
658 * First question: is this buffer already part of the current
659 * transaction or the existing committing transaction?
660 */
661 if (jh->b_transaction) {
662 J_ASSERT_JH(jh,
663 jh->b_transaction == transaction ||
664 jh->b_transaction ==
665 journal->j_committing_transaction);
666 if (jh->b_next_transaction)
667 J_ASSERT_JH(jh, jh->b_next_transaction ==
668 transaction);
Jan Karaf91d1d02009-07-13 16:16:20 -0400669 warn_dirty_buffer(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700670 }
671 /*
672 * In any case we need to clean the dirty flag and we must
673 * do it under the buffer lock to be sure we don't race
674 * with running write-out.
675 */
Jan Karaf91d1d02009-07-13 16:16:20 -0400676 JBUFFER_TRACE(jh, "Journalling dirty buffer");
677 clear_buffer_dirty(bh);
678 set_buffer_jbddirty(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700679 }
680
681 unlock_buffer(bh);
682
683 error = -EROFS;
684 if (is_handle_aborted(handle)) {
685 jbd_unlock_bh_state(bh);
686 goto out;
687 }
688 error = 0;
689
690 /*
691 * The buffer is already part of this transaction if b_transaction or
692 * b_next_transaction points to it
693 */
694 if (jh->b_transaction == transaction ||
695 jh->b_next_transaction == transaction)
696 goto done;
697
698 /*
Josef Bacik9fc7c632008-04-17 10:38:59 -0400699 * this is the first time this transaction is touching this buffer,
700 * reset the modified flag
701 */
702 jh->b_modified = 0;
703
704 /*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700705 * If there is already a copy-out version of this buffer, then we don't
706 * need to make another one
707 */
708 if (jh->b_frozen_data) {
709 JBUFFER_TRACE(jh, "has frozen data");
710 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
711 jh->b_next_transaction = transaction;
712 goto done;
713 }
714
715 /* Is there data here we need to preserve? */
716
717 if (jh->b_transaction && jh->b_transaction != transaction) {
718 JBUFFER_TRACE(jh, "owned by older transaction");
719 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
720 J_ASSERT_JH(jh, jh->b_transaction ==
721 journal->j_committing_transaction);
722
723 /* There is one case we have to be very careful about.
724 * If the committing transaction is currently writing
725 * this buffer out to disk and has NOT made a copy-out,
726 * then we cannot modify the buffer contents at all
727 * right now. The essence of copy-out is that it is the
728 * extra copy, not the primary copy, which gets
729 * journaled. If the primary copy is already going to
730 * disk then we cannot do copy-out here. */
731
732 if (jh->b_jlist == BJ_Shadow) {
733 DEFINE_WAIT_BIT(wait, &bh->b_state, BH_Unshadow);
734 wait_queue_head_t *wqh;
735
736 wqh = bit_waitqueue(&bh->b_state, BH_Unshadow);
737
738 JBUFFER_TRACE(jh, "on shadow: sleep");
739 jbd_unlock_bh_state(bh);
740 /* commit wakes up all shadow buffers after IO */
741 for ( ; ; ) {
742 prepare_to_wait(wqh, &wait.wait,
743 TASK_UNINTERRUPTIBLE);
744 if (jh->b_jlist != BJ_Shadow)
745 break;
746 schedule();
747 }
748 finish_wait(wqh, &wait.wait);
749 goto repeat;
750 }
751
752 /* Only do the copy if the currently-owning transaction
753 * still needs it. If it is on the Forget list, the
754 * committing transaction is past that stage. The
755 * buffer had better remain locked during the kmalloc,
756 * but that should be true --- we hold the journal lock
757 * still and the buffer is already on the BUF_JOURNAL
758 * list so won't be flushed.
759 *
760 * Subtle point, though: if this is a get_undo_access,
761 * then we will be relying on the frozen_data to contain
762 * the new value of the committed_data record after the
763 * transaction, so we HAVE to force the frozen_data copy
764 * in that case. */
765
766 if (jh->b_jlist != BJ_Forget || force_copy) {
767 JBUFFER_TRACE(jh, "generate frozen data");
768 if (!frozen_buffer) {
769 JBUFFER_TRACE(jh, "allocate memory for buffer");
770 jbd_unlock_bh_state(bh);
771 frozen_buffer =
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400772 jbd2_alloc(jh2bh(jh)->b_size,
Dave Kleikamp470decc2006-10-11 01:20:57 -0700773 GFP_NOFS);
774 if (!frozen_buffer) {
775 printk(KERN_EMERG
776 "%s: OOM for frozen_buffer\n",
Harvey Harrison329d2912008-04-17 10:38:59 -0400777 __func__);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700778 JBUFFER_TRACE(jh, "oom!");
779 error = -ENOMEM;
780 jbd_lock_bh_state(bh);
781 goto done;
782 }
783 goto repeat;
784 }
785 jh->b_frozen_data = frozen_buffer;
786 frozen_buffer = NULL;
787 need_copy = 1;
788 }
789 jh->b_next_transaction = transaction;
790 }
791
792
793 /*
794 * Finally, if the buffer is not journaled right now, we need to make
795 * sure it doesn't get written to disk before the caller actually
796 * commits the new data
797 */
798 if (!jh->b_transaction) {
799 JBUFFER_TRACE(jh, "no transaction");
800 J_ASSERT_JH(jh, !jh->b_next_transaction);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700801 JBUFFER_TRACE(jh, "file as BJ_Reserved");
802 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700803 __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700804 spin_unlock(&journal->j_list_lock);
805 }
806
807done:
808 if (need_copy) {
809 struct page *page;
810 int offset;
811 char *source;
812
813 J_EXPECT_JH(jh, buffer_uptodate(jh2bh(jh)),
814 "Possible IO failure.\n");
815 page = jh2bh(jh)->b_page;
Theodore Ts'oa1dd5332010-12-18 13:13:40 -0500816 offset = offset_in_page(jh2bh(jh)->b_data);
Cong Wang303a8f22011-11-25 23:14:31 +0800817 source = kmap_atomic(page);
Jan Kara13ceef02010-07-14 07:56:33 +0200818 /* Fire data frozen trigger just before we copy the data */
819 jbd2_buffer_frozen_trigger(jh, source + offset,
820 jh->b_triggers);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700821 memcpy(jh->b_frozen_data, source+offset, jh2bh(jh)->b_size);
Cong Wang303a8f22011-11-25 23:14:31 +0800822 kunmap_atomic(source);
Joel Beckere06c8222008-09-11 15:35:47 -0700823
824 /*
825 * Now that the frozen data is saved off, we need to store
826 * any matching triggers.
827 */
828 jh->b_frozen_triggers = jh->b_triggers;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700829 }
830 jbd_unlock_bh_state(bh);
831
832 /*
833 * If we are about to journal a buffer, then any revoke pending on it is
834 * no longer valid
835 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700836 jbd2_journal_cancel_revoke(handle, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700837
838out:
839 if (unlikely(frozen_buffer)) /* It's usually NULL */
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400840 jbd2_free(frozen_buffer, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700841
842 JBUFFER_TRACE(jh, "exit");
843 return error;
844}
845
846/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700847 * int jbd2_journal_get_write_access() - notify intent to modify a buffer for metadata (not data) update.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700848 * @handle: transaction to add buffer modifications to
849 * @bh: bh to be used for metadata writes
Dave Kleikamp470decc2006-10-11 01:20:57 -0700850 *
851 * Returns an error code or 0 on success.
852 *
853 * In full data journalling mode the buffer may be of type BJ_AsyncData,
854 * because we're write()ing a buffer which is also part of a shared mapping.
855 */
856
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700857int jbd2_journal_get_write_access(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700858{
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700859 struct journal_head *jh = jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700860 int rc;
861
862 /* We do not want to get caught playing with fields which the
863 * log thread also manipulates. Make sure that the buffer
864 * completes any outstanding IO before proceeding. */
865 rc = do_get_write_access(handle, jh, 0);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700866 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700867 return rc;
868}
869
870
871/*
872 * When the user wants to journal a newly created buffer_head
873 * (ie. getblk() returned a new buffer and we are going to populate it
874 * manually rather than reading off disk), then we need to keep the
875 * buffer_head locked until it has been completely filled with new
876 * data. In this case, we should be able to make the assertion that
877 * the bh is not already part of an existing transaction.
878 *
879 * The buffer should already be locked by the caller by this point.
880 * There is no lock ranking violation: it was a newly created,
881 * unlocked buffer beforehand. */
882
883/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700884 * int jbd2_journal_get_create_access () - notify intent to use newly created bh
Dave Kleikamp470decc2006-10-11 01:20:57 -0700885 * @handle: transaction to new buffer to
886 * @bh: new buffer.
887 *
888 * Call this if you create a new bh.
889 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700890int jbd2_journal_get_create_access(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700891{
892 transaction_t *transaction = handle->h_transaction;
893 journal_t *journal = transaction->t_journal;
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700894 struct journal_head *jh = jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700895 int err;
896
897 jbd_debug(5, "journal_head %p\n", jh);
898 err = -EROFS;
899 if (is_handle_aborted(handle))
900 goto out;
901 err = 0;
902
903 JBUFFER_TRACE(jh, "entry");
904 /*
905 * The buffer may already belong to this transaction due to pre-zeroing
906 * in the filesystem's new_block code. It may also be on the previous,
907 * committing transaction's lists, but it HAS to be in Forget state in
908 * that case: the transaction must have deleted the buffer for it to be
909 * reused here.
910 */
911 jbd_lock_bh_state(bh);
912 spin_lock(&journal->j_list_lock);
913 J_ASSERT_JH(jh, (jh->b_transaction == transaction ||
914 jh->b_transaction == NULL ||
915 (jh->b_transaction == journal->j_committing_transaction &&
916 jh->b_jlist == BJ_Forget)));
917
918 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
919 J_ASSERT_JH(jh, buffer_locked(jh2bh(jh)));
920
921 if (jh->b_transaction == NULL) {
Jan Karaf91d1d02009-07-13 16:16:20 -0400922 /*
923 * Previous jbd2_journal_forget() could have left the buffer
924 * with jbddirty bit set because it was being committed. When
925 * the commit finished, we've filed the buffer for
926 * checkpointing and marked it dirty. Now we are reallocating
927 * the buffer so the transaction freeing it must have
928 * committed and so it's safe to clear the dirty bit.
929 */
930 clear_buffer_dirty(jh2bh(jh));
Josef Bacik9fc7c632008-04-17 10:38:59 -0400931 /* first access by this transaction */
932 jh->b_modified = 0;
933
Dave Kleikamp470decc2006-10-11 01:20:57 -0700934 JBUFFER_TRACE(jh, "file as BJ_Reserved");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700935 __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700936 } else if (jh->b_transaction == journal->j_committing_transaction) {
Josef Bacik9fc7c632008-04-17 10:38:59 -0400937 /* first access by this transaction */
938 jh->b_modified = 0;
939
Dave Kleikamp470decc2006-10-11 01:20:57 -0700940 JBUFFER_TRACE(jh, "set next transaction");
941 jh->b_next_transaction = transaction;
942 }
943 spin_unlock(&journal->j_list_lock);
944 jbd_unlock_bh_state(bh);
945
946 /*
947 * akpm: I added this. ext3_alloc_branch can pick up new indirect
948 * blocks which contain freed but then revoked metadata. We need
949 * to cancel the revoke in case we end up freeing it yet again
950 * and the reallocating as data - this would cause a second revoke,
951 * which hits an assertion error.
952 */
953 JBUFFER_TRACE(jh, "cancelling revoke");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700954 jbd2_journal_cancel_revoke(handle, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700955out:
Ding Dinghua3991b402011-05-25 17:43:48 -0400956 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700957 return err;
958}
959
960/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700961 * int jbd2_journal_get_undo_access() - Notify intent to modify metadata with
Dave Kleikamp470decc2006-10-11 01:20:57 -0700962 * non-rewindable consequences
963 * @handle: transaction
964 * @bh: buffer to undo
Dave Kleikamp470decc2006-10-11 01:20:57 -0700965 *
966 * Sometimes there is a need to distinguish between metadata which has
967 * been committed to disk and that which has not. The ext3fs code uses
968 * this for freeing and allocating space, we have to make sure that we
969 * do not reuse freed space until the deallocation has been committed,
970 * since if we overwrote that space we would make the delete
971 * un-rewindable in case of a crash.
972 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700973 * To deal with that, jbd2_journal_get_undo_access requests write access to a
Dave Kleikamp470decc2006-10-11 01:20:57 -0700974 * buffer for parts of non-rewindable operations such as delete
975 * operations on the bitmaps. The journaling code must keep a copy of
976 * the buffer's contents prior to the undo_access call until such time
977 * as we know that the buffer has definitely been committed to disk.
978 *
979 * We never need to know which transaction the committed data is part
980 * of, buffers touched here are guaranteed to be dirtied later and so
981 * will be committed to a new transaction in due course, at which point
982 * we can discard the old committed data pointer.
983 *
984 * Returns error number or 0 on success.
985 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700986int jbd2_journal_get_undo_access(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700987{
988 int err;
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700989 struct journal_head *jh = jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700990 char *committed_data = NULL;
991
992 JBUFFER_TRACE(jh, "entry");
993
994 /*
995 * Do this first --- it can drop the journal lock, so we want to
996 * make sure that obtaining the committed_data is done
997 * atomically wrt. completion of any outstanding commits.
998 */
999 err = do_get_write_access(handle, jh, 1);
1000 if (err)
1001 goto out;
1002
1003repeat:
1004 if (!jh->b_committed_data) {
Mingming Caoaf1e76d2007-10-16 18:38:25 -04001005 committed_data = jbd2_alloc(jh2bh(jh)->b_size, GFP_NOFS);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001006 if (!committed_data) {
1007 printk(KERN_EMERG "%s: No memory for committed data\n",
Harvey Harrison329d2912008-04-17 10:38:59 -04001008 __func__);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001009 err = -ENOMEM;
1010 goto out;
1011 }
1012 }
1013
1014 jbd_lock_bh_state(bh);
1015 if (!jh->b_committed_data) {
1016 /* Copy out the current buffer contents into the
1017 * preserved, committed copy. */
1018 JBUFFER_TRACE(jh, "generate b_committed data");
1019 if (!committed_data) {
1020 jbd_unlock_bh_state(bh);
1021 goto repeat;
1022 }
1023
1024 jh->b_committed_data = committed_data;
1025 committed_data = NULL;
1026 memcpy(jh->b_committed_data, bh->b_data, bh->b_size);
1027 }
1028 jbd_unlock_bh_state(bh);
1029out:
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001030 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001031 if (unlikely(committed_data))
Mingming Caoaf1e76d2007-10-16 18:38:25 -04001032 jbd2_free(committed_data, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001033 return err;
1034}
1035
1036/**
Joel Beckere06c8222008-09-11 15:35:47 -07001037 * void jbd2_journal_set_triggers() - Add triggers for commit writeout
1038 * @bh: buffer to trigger on
1039 * @type: struct jbd2_buffer_trigger_type containing the trigger(s).
1040 *
1041 * Set any triggers on this journal_head. This is always safe, because
1042 * triggers for a committing buffer will be saved off, and triggers for
1043 * a running transaction will match the buffer in that transaction.
1044 *
1045 * Call with NULL to clear the triggers.
1046 */
1047void jbd2_journal_set_triggers(struct buffer_head *bh,
1048 struct jbd2_buffer_trigger_type *type)
1049{
1050 struct journal_head *jh = bh2jh(bh);
1051
1052 jh->b_triggers = type;
1053}
1054
Jan Kara13ceef02010-07-14 07:56:33 +02001055void jbd2_buffer_frozen_trigger(struct journal_head *jh, void *mapped_data,
Joel Beckere06c8222008-09-11 15:35:47 -07001056 struct jbd2_buffer_trigger_type *triggers)
1057{
1058 struct buffer_head *bh = jh2bh(jh);
1059
Jan Kara13ceef02010-07-14 07:56:33 +02001060 if (!triggers || !triggers->t_frozen)
Joel Beckere06c8222008-09-11 15:35:47 -07001061 return;
1062
Jan Kara13ceef02010-07-14 07:56:33 +02001063 triggers->t_frozen(triggers, bh, mapped_data, bh->b_size);
Joel Beckere06c8222008-09-11 15:35:47 -07001064}
1065
1066void jbd2_buffer_abort_trigger(struct journal_head *jh,
1067 struct jbd2_buffer_trigger_type *triggers)
1068{
1069 if (!triggers || !triggers->t_abort)
1070 return;
1071
1072 triggers->t_abort(triggers, jh2bh(jh));
1073}
1074
1075
1076
1077/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001078 * int jbd2_journal_dirty_metadata() - mark a buffer as containing dirty metadata
Dave Kleikamp470decc2006-10-11 01:20:57 -07001079 * @handle: transaction to add buffer to.
1080 * @bh: buffer to mark
1081 *
1082 * mark dirty metadata which needs to be journaled as part of the current
1083 * transaction.
1084 *
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001085 * The buffer must have previously had jbd2_journal_get_write_access()
1086 * called so that it has a valid journal_head attached to the buffer
1087 * head.
1088 *
Dave Kleikamp470decc2006-10-11 01:20:57 -07001089 * The buffer is placed on the transaction's metadata list and is marked
1090 * as belonging to the transaction.
1091 *
1092 * Returns error number or 0 on success.
1093 *
1094 * Special care needs to be taken if the buffer already belongs to the
1095 * current committing transaction (in which case we should have frozen
1096 * data present for that commit). In that case, we don't relink the
1097 * buffer: that only gets done when the old transaction finally
1098 * completes its commit.
1099 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001100int jbd2_journal_dirty_metadata(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001101{
1102 transaction_t *transaction = handle->h_transaction;
1103 journal_t *journal = transaction->t_journal;
1104 struct journal_head *jh = bh2jh(bh);
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001105 int ret = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001106
1107 jbd_debug(5, "journal_head %p\n", jh);
1108 JBUFFER_TRACE(jh, "entry");
1109 if (is_handle_aborted(handle))
1110 goto out;
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001111 if (!buffer_jbd(bh)) {
1112 ret = -EUCLEAN;
1113 goto out;
1114 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001115
1116 jbd_lock_bh_state(bh);
1117
1118 if (jh->b_modified == 0) {
1119 /*
1120 * This buffer's got modified and becoming part
1121 * of the transaction. This needs to be done
1122 * once a transaction -bzzz
1123 */
1124 jh->b_modified = 1;
1125 J_ASSERT_JH(jh, handle->h_buffer_credits > 0);
1126 handle->h_buffer_credits--;
1127 }
1128
1129 /*
1130 * fastpath, to avoid expensive locking. If this buffer is already
1131 * on the running transaction's metadata list there is nothing to do.
1132 * Nobody can take it off again because there is a handle open.
1133 * I _think_ we're OK here with SMP barriers - a mistaken decision will
1134 * result in this test being false, so we go in and take the locks.
1135 */
1136 if (jh->b_transaction == transaction && jh->b_jlist == BJ_Metadata) {
1137 JBUFFER_TRACE(jh, "fastpath");
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001138 if (unlikely(jh->b_transaction !=
1139 journal->j_running_transaction)) {
1140 printk(KERN_EMERG "JBD: %s: "
1141 "jh->b_transaction (%llu, %p, %u) != "
1142 "journal->j_running_transaction (%p, %u)",
1143 journal->j_devname,
1144 (unsigned long long) bh->b_blocknr,
1145 jh->b_transaction,
1146 jh->b_transaction ? jh->b_transaction->t_tid : 0,
1147 journal->j_running_transaction,
1148 journal->j_running_transaction ?
1149 journal->j_running_transaction->t_tid : 0);
1150 ret = -EINVAL;
1151 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001152 goto out_unlock_bh;
1153 }
1154
1155 set_buffer_jbddirty(bh);
1156
1157 /*
1158 * Metadata already on the current transaction list doesn't
1159 * need to be filed. Metadata on another transaction's list must
1160 * be committing, and will be refiled once the commit completes:
1161 * leave it alone for now.
1162 */
1163 if (jh->b_transaction != transaction) {
1164 JBUFFER_TRACE(jh, "already on other transaction");
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001165 if (unlikely(jh->b_transaction !=
1166 journal->j_committing_transaction)) {
1167 printk(KERN_EMERG "JBD: %s: "
1168 "jh->b_transaction (%llu, %p, %u) != "
1169 "journal->j_committing_transaction (%p, %u)",
1170 journal->j_devname,
1171 (unsigned long long) bh->b_blocknr,
1172 jh->b_transaction,
1173 jh->b_transaction ? jh->b_transaction->t_tid : 0,
1174 journal->j_committing_transaction,
1175 journal->j_committing_transaction ?
1176 journal->j_committing_transaction->t_tid : 0);
1177 ret = -EINVAL;
1178 }
1179 if (unlikely(jh->b_next_transaction != transaction)) {
1180 printk(KERN_EMERG "JBD: %s: "
1181 "jh->b_next_transaction (%llu, %p, %u) != "
1182 "transaction (%p, %u)",
1183 journal->j_devname,
1184 (unsigned long long) bh->b_blocknr,
1185 jh->b_next_transaction,
1186 jh->b_next_transaction ?
1187 jh->b_next_transaction->t_tid : 0,
1188 transaction, transaction->t_tid);
1189 ret = -EINVAL;
1190 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001191 /* And this case is illegal: we can't reuse another
1192 * transaction's data buffer, ever. */
1193 goto out_unlock_bh;
1194 }
1195
1196 /* That test should have eliminated the following case: */
Mingming Cao40191912008-01-28 23:58:27 -05001197 J_ASSERT_JH(jh, jh->b_frozen_data == NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001198
1199 JBUFFER_TRACE(jh, "file as BJ_Metadata");
1200 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001201 __jbd2_journal_file_buffer(jh, handle->h_transaction, BJ_Metadata);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001202 spin_unlock(&journal->j_list_lock);
1203out_unlock_bh:
1204 jbd_unlock_bh_state(bh);
1205out:
1206 JBUFFER_TRACE(jh, "exit");
Randy Dunlap44705752011-10-27 04:05:13 -04001207 WARN_ON(ret); /* All errors are bugs, so dump the stack */
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001208 return ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001209}
1210
1211/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001212 * jbd2_journal_release_buffer: undo a get_write_access without any buffer
Dave Kleikamp470decc2006-10-11 01:20:57 -07001213 * updates, if the update decided in the end that it didn't need access.
1214 *
1215 */
1216void
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001217jbd2_journal_release_buffer(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001218{
1219 BUFFER_TRACE(bh, "entry");
1220}
1221
1222/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001223 * void jbd2_journal_forget() - bforget() for potentially-journaled buffers.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001224 * @handle: transaction handle
1225 * @bh: bh to 'forget'
1226 *
1227 * We can only do the bforget if there are no commits pending against the
1228 * buffer. If the buffer is dirty in the current running transaction we
1229 * can safely unlink it.
1230 *
1231 * bh may not be a journalled buffer at all - it may be a non-JBD
1232 * buffer which came off the hashtable. Check for this.
1233 *
1234 * Decrements bh->b_count by one.
1235 *
1236 * Allow this call even if the handle has aborted --- it may be part of
1237 * the caller's cleanup after an abort.
1238 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001239int jbd2_journal_forget (handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001240{
1241 transaction_t *transaction = handle->h_transaction;
1242 journal_t *journal = transaction->t_journal;
1243 struct journal_head *jh;
1244 int drop_reserve = 0;
1245 int err = 0;
Josef Bacik1dfc3222008-04-17 10:38:59 -04001246 int was_modified = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001247
1248 BUFFER_TRACE(bh, "entry");
1249
1250 jbd_lock_bh_state(bh);
1251 spin_lock(&journal->j_list_lock);
1252
1253 if (!buffer_jbd(bh))
1254 goto not_jbd;
1255 jh = bh2jh(bh);
1256
1257 /* Critical error: attempting to delete a bitmap buffer, maybe?
1258 * Don't do any jbd operations, and return an error. */
1259 if (!J_EXPECT_JH(jh, !jh->b_committed_data,
1260 "inconsistent data on disk")) {
1261 err = -EIO;
1262 goto not_jbd;
1263 }
1264
Josef Bacik1dfc3222008-04-17 10:38:59 -04001265 /* keep track of wether or not this transaction modified us */
1266 was_modified = jh->b_modified;
1267
Dave Kleikamp470decc2006-10-11 01:20:57 -07001268 /*
1269 * The buffer's going from the transaction, we must drop
1270 * all references -bzzz
1271 */
1272 jh->b_modified = 0;
1273
1274 if (jh->b_transaction == handle->h_transaction) {
1275 J_ASSERT_JH(jh, !jh->b_frozen_data);
1276
1277 /* If we are forgetting a buffer which is already part
1278 * of this transaction, then we can just drop it from
1279 * the transaction immediately. */
1280 clear_buffer_dirty(bh);
1281 clear_buffer_jbddirty(bh);
1282
1283 JBUFFER_TRACE(jh, "belongs to current transaction: unfile");
1284
Josef Bacik1dfc3222008-04-17 10:38:59 -04001285 /*
1286 * we only want to drop a reference if this transaction
1287 * modified the buffer
1288 */
1289 if (was_modified)
1290 drop_reserve = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001291
1292 /*
1293 * We are no longer going to journal this buffer.
1294 * However, the commit of this transaction is still
1295 * important to the buffer: the delete that we are now
1296 * processing might obsolete an old log entry, so by
1297 * committing, we can satisfy the buffer's checkpoint.
1298 *
1299 * So, if we have a checkpoint on the buffer, we should
1300 * now refile the buffer on our BJ_Forget list so that
1301 * we know to remove the checkpoint after we commit.
1302 */
1303
1304 if (jh->b_cp_transaction) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001305 __jbd2_journal_temp_unlink_buffer(jh);
1306 __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001307 } else {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001308 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001309 if (!buffer_jbd(bh)) {
1310 spin_unlock(&journal->j_list_lock);
1311 jbd_unlock_bh_state(bh);
1312 __bforget(bh);
1313 goto drop;
1314 }
1315 }
1316 } else if (jh->b_transaction) {
1317 J_ASSERT_JH(jh, (jh->b_transaction ==
1318 journal->j_committing_transaction));
1319 /* However, if the buffer is still owned by a prior
1320 * (committing) transaction, we can't drop it yet... */
1321 JBUFFER_TRACE(jh, "belongs to older transaction");
1322 /* ... but we CAN drop it from the new transaction if we
1323 * have also modified it since the original commit. */
1324
1325 if (jh->b_next_transaction) {
1326 J_ASSERT(jh->b_next_transaction == transaction);
1327 jh->b_next_transaction = NULL;
Josef Bacik1dfc3222008-04-17 10:38:59 -04001328
1329 /*
1330 * only drop a reference if this transaction modified
1331 * the buffer
1332 */
1333 if (was_modified)
1334 drop_reserve = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001335 }
1336 }
1337
1338not_jbd:
1339 spin_unlock(&journal->j_list_lock);
1340 jbd_unlock_bh_state(bh);
1341 __brelse(bh);
1342drop:
1343 if (drop_reserve) {
1344 /* no need to reserve log space for this block -bzzz */
1345 handle->h_buffer_credits++;
1346 }
1347 return err;
1348}
1349
1350/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001351 * int jbd2_journal_stop() - complete a transaction
Dave Kleikamp470decc2006-10-11 01:20:57 -07001352 * @handle: tranaction to complete.
1353 *
1354 * All done for a particular handle.
1355 *
1356 * There is not much action needed here. We just return any remaining
1357 * buffer credits to the transaction and remove the handle. The only
1358 * complication is that we need to start a commit operation if the
1359 * filesystem is marked for synchronous update.
1360 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001361 * jbd2_journal_stop itself will not usually return an error, but it may
Dave Kleikamp470decc2006-10-11 01:20:57 -07001362 * do so in unusual circumstances. In particular, expect it to
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001363 * return -EIO if a jbd2_journal_abort has been executed since the
Dave Kleikamp470decc2006-10-11 01:20:57 -07001364 * transaction began.
1365 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001366int jbd2_journal_stop(handle_t *handle)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001367{
1368 transaction_t *transaction = handle->h_transaction;
1369 journal_t *journal = transaction->t_journal;
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001370 int err, wait_for_commit = 0;
1371 tid_t tid;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001372 pid_t pid;
1373
Dave Kleikamp470decc2006-10-11 01:20:57 -07001374 J_ASSERT(journal_current_handle() == handle);
1375
1376 if (is_handle_aborted(handle))
1377 err = -EIO;
OGAWA Hirofumi3e2a5322006-10-19 23:29:11 -07001378 else {
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001379 J_ASSERT(atomic_read(&transaction->t_updates) > 0);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001380 err = 0;
OGAWA Hirofumi3e2a5322006-10-19 23:29:11 -07001381 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001382
1383 if (--handle->h_ref > 0) {
1384 jbd_debug(4, "h_ref %d -> %d\n", handle->h_ref + 1,
1385 handle->h_ref);
1386 return err;
1387 }
1388
1389 jbd_debug(4, "Handle %p going down\n", handle);
1390
1391 /*
1392 * Implement synchronous transaction batching. If the handle
1393 * was synchronous, don't force a commit immediately. Let's
Josef Bacike07f7182008-11-26 01:14:26 -05001394 * yield and let another thread piggyback onto this
1395 * transaction. Keep doing that while new threads continue to
1396 * arrive. It doesn't cost much - we're about to run a commit
1397 * and sleep on IO anyway. Speeds up many-threaded, many-dir
1398 * operations by 30x or more...
Dave Kleikamp470decc2006-10-11 01:20:57 -07001399 *
Josef Bacike07f7182008-11-26 01:14:26 -05001400 * We try and optimize the sleep time against what the
1401 * underlying disk can do, instead of having a static sleep
1402 * time. This is useful for the case where our storage is so
1403 * fast that it is more optimal to go ahead and force a flush
1404 * and wait for the transaction to be committed than it is to
1405 * wait for an arbitrary amount of time for new writers to
1406 * join the transaction. We achieve this by measuring how
1407 * long it takes to commit a transaction, and compare it with
1408 * how long this transaction has been running, and if run time
1409 * < commit time then we sleep for the delta and commit. This
1410 * greatly helps super fast disks that would see slowdowns as
1411 * more threads started doing fsyncs.
1412 *
1413 * But don't do this if this process was the most recent one
1414 * to perform a synchronous write. We do this to detect the
1415 * case where a single process is doing a stream of sync
1416 * writes. No point in waiting for joiners in that case.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001417 */
1418 pid = current->pid;
1419 if (handle->h_sync && journal->j_last_sync_writer != pid) {
Josef Bacike07f7182008-11-26 01:14:26 -05001420 u64 commit_time, trans_time;
1421
Dave Kleikamp470decc2006-10-11 01:20:57 -07001422 journal->j_last_sync_writer = pid;
Josef Bacike07f7182008-11-26 01:14:26 -05001423
Theodore Ts'oa931da62010-08-03 21:35:12 -04001424 read_lock(&journal->j_state_lock);
Josef Bacike07f7182008-11-26 01:14:26 -05001425 commit_time = journal->j_average_commit_time;
Theodore Ts'oa931da62010-08-03 21:35:12 -04001426 read_unlock(&journal->j_state_lock);
Josef Bacike07f7182008-11-26 01:14:26 -05001427
1428 trans_time = ktime_to_ns(ktime_sub(ktime_get(),
1429 transaction->t_start_time));
1430
Theodore Ts'o30773842009-01-03 20:27:38 -05001431 commit_time = max_t(u64, commit_time,
1432 1000*journal->j_min_batch_time);
Josef Bacike07f7182008-11-26 01:14:26 -05001433 commit_time = min_t(u64, commit_time,
Theodore Ts'o30773842009-01-03 20:27:38 -05001434 1000*journal->j_max_batch_time);
Josef Bacike07f7182008-11-26 01:14:26 -05001435
1436 if (trans_time < commit_time) {
1437 ktime_t expires = ktime_add_ns(ktime_get(),
1438 commit_time);
1439 set_current_state(TASK_UNINTERRUPTIBLE);
1440 schedule_hrtimeout(&expires, HRTIMER_MODE_ABS);
1441 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001442 }
1443
Theodore Ts'o70585482009-03-25 23:35:46 -04001444 if (handle->h_sync)
1445 transaction->t_synchronous_commit = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001446 current->journal_info = NULL;
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001447 atomic_sub(handle->h_buffer_credits,
1448 &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001449
1450 /*
1451 * If the handle is marked SYNC, we need to set another commit
1452 * going! We also want to force a commit if the current
1453 * transaction is occupying too much of the log, or if the
1454 * transaction is too old now.
1455 */
1456 if (handle->h_sync ||
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001457 (atomic_read(&transaction->t_outstanding_credits) >
1458 journal->j_max_transaction_buffers) ||
1459 time_after_eq(jiffies, transaction->t_expires)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001460 /* Do this even for aborted journals: an abort still
1461 * completes the commit thread, it just doesn't write
1462 * anything to disk. */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001463
Dave Kleikamp470decc2006-10-11 01:20:57 -07001464 jbd_debug(2, "transaction too old, requesting commit for "
1465 "handle %p\n", handle);
1466 /* This is non-blocking */
Theodore Ts'oc35a56a2010-05-16 05:00:00 -04001467 jbd2_log_start_commit(journal, transaction->t_tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001468
1469 /*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001470 * Special case: JBD2_SYNC synchronous updates require us
Dave Kleikamp470decc2006-10-11 01:20:57 -07001471 * to wait for the commit to complete.
1472 */
1473 if (handle->h_sync && !(current->flags & PF_MEMALLOC))
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001474 wait_for_commit = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001475 }
1476
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001477 /*
1478 * Once we drop t_updates, if it goes to zero the transaction
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001479 * could start committing on us and eventually disappear. So
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001480 * once we do this, we must not dereference transaction
1481 * pointer again.
1482 */
1483 tid = transaction->t_tid;
1484 if (atomic_dec_and_test(&transaction->t_updates)) {
1485 wake_up(&journal->j_wait_updates);
1486 if (journal->j_barrier_count)
1487 wake_up(&journal->j_wait_transaction_locked);
1488 }
1489
1490 if (wait_for_commit)
1491 err = jbd2_log_wait_commit(journal, tid);
1492
Ingo Molnar3295f0e2008-08-11 10:30:30 +02001493 lock_map_release(&handle->h_lockdep_map);
Mingming Cao7b751062008-01-28 23:58:27 -05001494
Mingming Caoaf1e76d2007-10-16 18:38:25 -04001495 jbd2_free_handle(handle);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001496 return err;
1497}
1498
Randy Dunlap5648ba52008-04-17 10:38:59 -04001499/**
1500 * int jbd2_journal_force_commit() - force any uncommitted transactions
Dave Kleikamp470decc2006-10-11 01:20:57 -07001501 * @journal: journal to force
1502 *
1503 * For synchronous operations: force any uncommitted transactions
1504 * to disk. May seem kludgy, but it reuses all the handle batching
1505 * code in a very simple manner.
1506 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001507int jbd2_journal_force_commit(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001508{
1509 handle_t *handle;
1510 int ret;
1511
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001512 handle = jbd2_journal_start(journal, 1);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001513 if (IS_ERR(handle)) {
1514 ret = PTR_ERR(handle);
1515 } else {
1516 handle->h_sync = 1;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001517 ret = jbd2_journal_stop(handle);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001518 }
1519 return ret;
1520}
1521
1522/*
1523 *
1524 * List management code snippets: various functions for manipulating the
1525 * transaction buffer lists.
1526 *
1527 */
1528
1529/*
1530 * Append a buffer to a transaction list, given the transaction's list head
1531 * pointer.
1532 *
1533 * j_list_lock is held.
1534 *
1535 * jbd_lock_bh_state(jh2bh(jh)) is held.
1536 */
1537
1538static inline void
1539__blist_add_buffer(struct journal_head **list, struct journal_head *jh)
1540{
1541 if (!*list) {
1542 jh->b_tnext = jh->b_tprev = jh;
1543 *list = jh;
1544 } else {
1545 /* Insert at the tail of the list to preserve order */
1546 struct journal_head *first = *list, *last = first->b_tprev;
1547 jh->b_tprev = last;
1548 jh->b_tnext = first;
1549 last->b_tnext = first->b_tprev = jh;
1550 }
1551}
1552
1553/*
1554 * Remove a buffer from a transaction list, given the transaction's list
1555 * head pointer.
1556 *
1557 * Called with j_list_lock held, and the journal may not be locked.
1558 *
1559 * jbd_lock_bh_state(jh2bh(jh)) is held.
1560 */
1561
1562static inline void
1563__blist_del_buffer(struct journal_head **list, struct journal_head *jh)
1564{
1565 if (*list == jh) {
1566 *list = jh->b_tnext;
1567 if (*list == jh)
1568 *list = NULL;
1569 }
1570 jh->b_tprev->b_tnext = jh->b_tnext;
1571 jh->b_tnext->b_tprev = jh->b_tprev;
1572}
1573
1574/*
1575 * Remove a buffer from the appropriate transaction list.
1576 *
1577 * Note that this function can *change* the value of
Jan Kara87c89c22008-07-11 19:27:31 -04001578 * bh->b_transaction->t_buffers, t_forget, t_iobuf_list, t_shadow_list,
1579 * t_log_list or t_reserved_list. If the caller is holding onto a copy of one
1580 * of these pointers, it could go bad. Generally the caller needs to re-read
1581 * the pointer from the transaction_t.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001582 *
Jan Kara5bebccf2012-03-13 22:25:06 -04001583 * Called under j_list_lock.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001584 */
Jan Kara5bebccf2012-03-13 22:25:06 -04001585static void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001586{
1587 struct journal_head **list = NULL;
1588 transaction_t *transaction;
1589 struct buffer_head *bh = jh2bh(jh);
1590
1591 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
1592 transaction = jh->b_transaction;
1593 if (transaction)
1594 assert_spin_locked(&transaction->t_journal->j_list_lock);
1595
1596 J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
1597 if (jh->b_jlist != BJ_None)
Mingming Cao40191912008-01-28 23:58:27 -05001598 J_ASSERT_JH(jh, transaction != NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001599
1600 switch (jh->b_jlist) {
1601 case BJ_None:
1602 return;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001603 case BJ_Metadata:
1604 transaction->t_nr_buffers--;
1605 J_ASSERT_JH(jh, transaction->t_nr_buffers >= 0);
1606 list = &transaction->t_buffers;
1607 break;
1608 case BJ_Forget:
1609 list = &transaction->t_forget;
1610 break;
1611 case BJ_IO:
1612 list = &transaction->t_iobuf_list;
1613 break;
1614 case BJ_Shadow:
1615 list = &transaction->t_shadow_list;
1616 break;
1617 case BJ_LogCtl:
1618 list = &transaction->t_log_list;
1619 break;
1620 case BJ_Reserved:
1621 list = &transaction->t_reserved_list;
1622 break;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001623 }
1624
1625 __blist_del_buffer(list, jh);
1626 jh->b_jlist = BJ_None;
1627 if (test_clear_buffer_jbddirty(bh))
1628 mark_buffer_dirty(bh); /* Expose it to the VM */
1629}
1630
Jan Karade1b7942011-06-13 15:38:22 -04001631/*
1632 * Remove buffer from all transactions.
1633 *
1634 * Called with bh_state lock and j_list_lock
1635 *
1636 * jh and bh may be already freed when this function returns.
1637 */
1638static void __jbd2_journal_unfile_buffer(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001639{
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001640 __jbd2_journal_temp_unlink_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001641 jh->b_transaction = NULL;
Jan Karade1b7942011-06-13 15:38:22 -04001642 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001643}
1644
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001645void jbd2_journal_unfile_buffer(journal_t *journal, struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001646{
Jan Karade1b7942011-06-13 15:38:22 -04001647 struct buffer_head *bh = jh2bh(jh);
1648
1649 /* Get reference so that buffer cannot be freed before we unlock it */
1650 get_bh(bh);
1651 jbd_lock_bh_state(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001652 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001653 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001654 spin_unlock(&journal->j_list_lock);
Jan Karade1b7942011-06-13 15:38:22 -04001655 jbd_unlock_bh_state(bh);
1656 __brelse(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001657}
1658
1659/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001660 * Called from jbd2_journal_try_to_free_buffers().
Dave Kleikamp470decc2006-10-11 01:20:57 -07001661 *
1662 * Called under jbd_lock_bh_state(bh)
1663 */
1664static void
1665__journal_try_to_free_buffer(journal_t *journal, struct buffer_head *bh)
1666{
1667 struct journal_head *jh;
1668
1669 jh = bh2jh(bh);
1670
1671 if (buffer_locked(bh) || buffer_dirty(bh))
1672 goto out;
1673
Mingming Cao40191912008-01-28 23:58:27 -05001674 if (jh->b_next_transaction != NULL)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001675 goto out;
1676
1677 spin_lock(&journal->j_list_lock);
Jan Kara87c89c22008-07-11 19:27:31 -04001678 if (jh->b_cp_transaction != NULL && jh->b_transaction == NULL) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001679 /* written-back checkpointed metadata buffer */
Jan Karac254c9e2012-03-13 22:27:44 -04001680 JBUFFER_TRACE(jh, "remove from checkpoint list");
1681 __jbd2_journal_remove_checkpoint(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001682 }
1683 spin_unlock(&journal->j_list_lock);
1684out:
1685 return;
1686}
1687
Dave Kleikamp470decc2006-10-11 01:20:57 -07001688/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001689 * int jbd2_journal_try_to_free_buffers() - try to free page buffers.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001690 * @journal: journal for operation
1691 * @page: to try and free
Mingming Cao530576b2008-07-13 21:06:39 -04001692 * @gfp_mask: we use the mask to detect how hard should we try to release
1693 * buffers. If __GFP_WAIT and __GFP_FS is set, we wait for commit code to
1694 * release the buffers.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001695 *
1696 *
1697 * For all the buffers on this page,
1698 * if they are fully written out ordered data, move them onto BUF_CLEAN
1699 * so try_to_free_buffers() can reap them.
1700 *
1701 * This function returns non-zero if we wish try_to_free_buffers()
1702 * to be called. We do this if the page is releasable by try_to_free_buffers().
1703 * We also do it if the page has locked or dirty buffers and the caller wants
1704 * us to perform sync or async writeout.
1705 *
1706 * This complicates JBD locking somewhat. We aren't protected by the
1707 * BKL here. We wish to remove the buffer from its committing or
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001708 * running transaction's ->t_datalist via __jbd2_journal_unfile_buffer.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001709 *
1710 * This may *change* the value of transaction_t->t_datalist, so anyone
1711 * who looks at t_datalist needs to lock against this function.
1712 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001713 * Even worse, someone may be doing a jbd2_journal_dirty_data on this
1714 * buffer. So we need to lock against that. jbd2_journal_dirty_data()
Dave Kleikamp470decc2006-10-11 01:20:57 -07001715 * will come out of the lock with the buffer dirty, which makes it
1716 * ineligible for release here.
1717 *
1718 * Who else is affected by this? hmm... Really the only contender
1719 * is do_get_write_access() - it could be looking at the buffer while
1720 * journal_try_to_free_buffer() is changing its state. But that
1721 * cannot happen because we never reallocate freed data as metadata
1722 * while the data is part of a transaction. Yes?
Mingming Cao530576b2008-07-13 21:06:39 -04001723 *
1724 * Return 0 on failure, 1 on success
Dave Kleikamp470decc2006-10-11 01:20:57 -07001725 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001726int jbd2_journal_try_to_free_buffers(journal_t *journal,
Mingming Cao530576b2008-07-13 21:06:39 -04001727 struct page *page, gfp_t gfp_mask)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001728{
1729 struct buffer_head *head;
1730 struct buffer_head *bh;
1731 int ret = 0;
1732
1733 J_ASSERT(PageLocked(page));
1734
1735 head = page_buffers(page);
1736 bh = head;
1737 do {
1738 struct journal_head *jh;
1739
1740 /*
1741 * We take our own ref against the journal_head here to avoid
1742 * having to add tons of locking around each instance of
Mingming Cao530576b2008-07-13 21:06:39 -04001743 * jbd2_journal_put_journal_head().
Dave Kleikamp470decc2006-10-11 01:20:57 -07001744 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001745 jh = jbd2_journal_grab_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001746 if (!jh)
1747 continue;
1748
1749 jbd_lock_bh_state(bh);
1750 __journal_try_to_free_buffer(journal, bh);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001751 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001752 jbd_unlock_bh_state(bh);
1753 if (buffer_jbd(bh))
1754 goto busy;
1755 } while ((bh = bh->b_this_page) != head);
Mingming Cao530576b2008-07-13 21:06:39 -04001756
Dave Kleikamp470decc2006-10-11 01:20:57 -07001757 ret = try_to_free_buffers(page);
Mingming Cao530576b2008-07-13 21:06:39 -04001758
Dave Kleikamp470decc2006-10-11 01:20:57 -07001759busy:
1760 return ret;
1761}
1762
1763/*
1764 * This buffer is no longer needed. If it is on an older transaction's
1765 * checkpoint list we need to record it on this transaction's forget list
1766 * to pin this buffer (and hence its checkpointing transaction) down until
1767 * this transaction commits. If the buffer isn't on a checkpoint list, we
1768 * release it.
1769 * Returns non-zero if JBD no longer has an interest in the buffer.
1770 *
1771 * Called under j_list_lock.
1772 *
1773 * Called under jbd_lock_bh_state(bh).
1774 */
1775static int __dispose_buffer(struct journal_head *jh, transaction_t *transaction)
1776{
1777 int may_free = 1;
1778 struct buffer_head *bh = jh2bh(jh);
1779
Dave Kleikamp470decc2006-10-11 01:20:57 -07001780 if (jh->b_cp_transaction) {
1781 JBUFFER_TRACE(jh, "on running+cp transaction");
Jan Karade1b7942011-06-13 15:38:22 -04001782 __jbd2_journal_temp_unlink_buffer(jh);
Jan Karaf91d1d02009-07-13 16:16:20 -04001783 /*
1784 * We don't want to write the buffer anymore, clear the
1785 * bit so that we don't confuse checks in
1786 * __journal_file_buffer
1787 */
1788 clear_buffer_dirty(bh);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001789 __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001790 may_free = 0;
1791 } else {
1792 JBUFFER_TRACE(jh, "on running transaction");
Jan Karade1b7942011-06-13 15:38:22 -04001793 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001794 }
1795 return may_free;
1796}
1797
1798/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001799 * jbd2_journal_invalidatepage
Dave Kleikamp470decc2006-10-11 01:20:57 -07001800 *
1801 * This code is tricky. It has a number of cases to deal with.
1802 *
1803 * There are two invariants which this code relies on:
1804 *
1805 * i_size must be updated on disk before we start calling invalidatepage on the
1806 * data.
1807 *
1808 * This is done in ext3 by defining an ext3_setattr method which
1809 * updates i_size before truncate gets going. By maintaining this
1810 * invariant, we can be sure that it is safe to throw away any buffers
1811 * attached to the current transaction: once the transaction commits,
1812 * we know that the data will not be needed.
1813 *
1814 * Note however that we can *not* throw away data belonging to the
1815 * previous, committing transaction!
1816 *
1817 * Any disk blocks which *are* part of the previous, committing
1818 * transaction (and which therefore cannot be discarded immediately) are
1819 * not going to be reused in the new running transaction
1820 *
1821 * The bitmap committed_data images guarantee this: any block which is
1822 * allocated in one transaction and removed in the next will be marked
1823 * as in-use in the committed_data bitmap, so cannot be reused until
1824 * the next transaction to delete the block commits. This means that
1825 * leaving committing buffers dirty is quite safe: the disk blocks
1826 * cannot be reallocated to a different file and so buffer aliasing is
1827 * not possible.
1828 *
1829 *
1830 * The above applies mainly to ordered data mode. In writeback mode we
1831 * don't make guarantees about the order in which data hits disk --- in
1832 * particular we don't guarantee that new dirty data is flushed before
1833 * transaction commit --- so it is always safe just to discard data
1834 * immediately in that mode. --sct
1835 */
1836
1837/*
1838 * The journal_unmap_buffer helper function returns zero if the buffer
1839 * concerned remains pinned as an anonymous buffer belonging to an older
1840 * transaction.
1841 *
1842 * We're outside-transaction here. Either or both of j_running_transaction
1843 * and j_committing_transaction may be NULL.
1844 */
1845static int journal_unmap_buffer(journal_t *journal, struct buffer_head *bh)
1846{
1847 transaction_t *transaction;
1848 struct journal_head *jh;
1849 int may_free = 1;
1850 int ret;
1851
1852 BUFFER_TRACE(bh, "entry");
1853
1854 /*
1855 * It is safe to proceed here without the j_list_lock because the
1856 * buffers cannot be stolen by try_to_free_buffers as long as we are
1857 * holding the page lock. --sct
1858 */
1859
1860 if (!buffer_jbd(bh))
1861 goto zap_buffer_unlocked;
1862
Jan Kara87c89c22008-07-11 19:27:31 -04001863 /* OK, we have data buffer in journaled mode */
Theodore Ts'oa931da62010-08-03 21:35:12 -04001864 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001865 jbd_lock_bh_state(bh);
1866 spin_lock(&journal->j_list_lock);
1867
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001868 jh = jbd2_journal_grab_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001869 if (!jh)
1870 goto zap_buffer_no_jh;
1871
dingdinghuaba869022010-02-15 16:35:42 -05001872 /*
1873 * We cannot remove the buffer from checkpoint lists until the
1874 * transaction adding inode to orphan list (let's call it T)
1875 * is committed. Otherwise if the transaction changing the
1876 * buffer would be cleaned from the journal before T is
1877 * committed, a crash will cause that the correct contents of
1878 * the buffer will be lost. On the other hand we have to
1879 * clear the buffer dirty bit at latest at the moment when the
1880 * transaction marking the buffer as freed in the filesystem
1881 * structures is committed because from that moment on the
1882 * buffer can be reallocated and used by a different page.
1883 * Since the block hasn't been freed yet but the inode has
1884 * already been added to orphan list, it is safe for us to add
1885 * the buffer to BJ_Forget list of the newest transaction.
1886 */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001887 transaction = jh->b_transaction;
1888 if (transaction == NULL) {
1889 /* First case: not on any transaction. If it
1890 * has no checkpoint link, then we can zap it:
1891 * it's a writeback-mode buffer so we don't care
1892 * if it hits disk safely. */
1893 if (!jh->b_cp_transaction) {
1894 JBUFFER_TRACE(jh, "not on any transaction: zap");
1895 goto zap_buffer;
1896 }
1897
1898 if (!buffer_dirty(bh)) {
1899 /* bdflush has written it. We can drop it now */
1900 goto zap_buffer;
1901 }
1902
1903 /* OK, it must be in the journal but still not
1904 * written fully to disk: it's metadata or
1905 * journaled data... */
1906
1907 if (journal->j_running_transaction) {
1908 /* ... and once the current transaction has
1909 * committed, the buffer won't be needed any
1910 * longer. */
1911 JBUFFER_TRACE(jh, "checkpointed: add to BJ_Forget");
1912 ret = __dispose_buffer(jh,
1913 journal->j_running_transaction);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001914 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001915 spin_unlock(&journal->j_list_lock);
1916 jbd_unlock_bh_state(bh);
Theodore Ts'oa931da62010-08-03 21:35:12 -04001917 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001918 return ret;
1919 } else {
1920 /* There is no currently-running transaction. So the
1921 * orphan record which we wrote for this file must have
1922 * passed into commit. We must attach this buffer to
1923 * the committing transaction, if it exists. */
1924 if (journal->j_committing_transaction) {
1925 JBUFFER_TRACE(jh, "give to committing trans");
1926 ret = __dispose_buffer(jh,
1927 journal->j_committing_transaction);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001928 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001929 spin_unlock(&journal->j_list_lock);
1930 jbd_unlock_bh_state(bh);
Theodore Ts'oa931da62010-08-03 21:35:12 -04001931 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001932 return ret;
1933 } else {
1934 /* The orphan record's transaction has
1935 * committed. We can cleanse this buffer */
1936 clear_buffer_jbddirty(bh);
1937 goto zap_buffer;
1938 }
1939 }
1940 } else if (transaction == journal->j_committing_transaction) {
Eric Sandeen9b579882006-10-28 10:38:28 -07001941 JBUFFER_TRACE(jh, "on committing transaction");
Dave Kleikamp470decc2006-10-11 01:20:57 -07001942 /*
dingdinghuaba869022010-02-15 16:35:42 -05001943 * The buffer is committing, we simply cannot touch
1944 * it. So we just set j_next_transaction to the
1945 * running transaction (if there is one) and mark
1946 * buffer as freed so that commit code knows it should
1947 * clear dirty bits when it is done with the buffer.
1948 */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001949 set_buffer_freed(bh);
dingdinghuaba869022010-02-15 16:35:42 -05001950 if (journal->j_running_transaction && buffer_jbddirty(bh))
1951 jh->b_next_transaction = journal->j_running_transaction;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001952 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001953 spin_unlock(&journal->j_list_lock);
1954 jbd_unlock_bh_state(bh);
Theodore Ts'oa931da62010-08-03 21:35:12 -04001955 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001956 return 0;
1957 } else {
1958 /* Good, the buffer belongs to the running transaction.
1959 * We are writing our own transaction's data, not any
1960 * previous one's, so it is safe to throw it away
1961 * (remember that we expect the filesystem to have set
1962 * i_size already for this truncate so recovery will not
1963 * expose the disk blocks we are discarding here.) */
1964 J_ASSERT_JH(jh, transaction == journal->j_running_transaction);
Eric Sandeen9b579882006-10-28 10:38:28 -07001965 JBUFFER_TRACE(jh, "on running transaction");
Dave Kleikamp470decc2006-10-11 01:20:57 -07001966 may_free = __dispose_buffer(jh, transaction);
1967 }
1968
1969zap_buffer:
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001970 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001971zap_buffer_no_jh:
1972 spin_unlock(&journal->j_list_lock);
1973 jbd_unlock_bh_state(bh);
Theodore Ts'oa931da62010-08-03 21:35:12 -04001974 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001975zap_buffer_unlocked:
1976 clear_buffer_dirty(bh);
1977 J_ASSERT_BH(bh, !buffer_jbddirty(bh));
1978 clear_buffer_mapped(bh);
1979 clear_buffer_req(bh);
1980 clear_buffer_new(bh);
Eric Sandeen15291162012-02-20 17:53:01 -05001981 clear_buffer_delay(bh);
1982 clear_buffer_unwritten(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001983 bh->b_bdev = NULL;
1984 return may_free;
1985}
1986
1987/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001988 * void jbd2_journal_invalidatepage()
Dave Kleikamp470decc2006-10-11 01:20:57 -07001989 * @journal: journal to use for flush...
1990 * @page: page to flush
1991 * @offset: length of page to invalidate.
1992 *
1993 * Reap page buffers containing data after offset in page.
1994 *
1995 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001996void jbd2_journal_invalidatepage(journal_t *journal,
Dave Kleikamp470decc2006-10-11 01:20:57 -07001997 struct page *page,
1998 unsigned long offset)
1999{
2000 struct buffer_head *head, *bh, *next;
2001 unsigned int curr_off = 0;
2002 int may_free = 1;
2003
2004 if (!PageLocked(page))
2005 BUG();
2006 if (!page_has_buffers(page))
2007 return;
2008
2009 /* We will potentially be playing with lists other than just the
2010 * data lists (especially for journaled data mode), so be
2011 * cautious in our locking. */
2012
2013 head = bh = page_buffers(page);
2014 do {
2015 unsigned int next_off = curr_off + bh->b_size;
2016 next = bh->b_this_page;
2017
2018 if (offset <= curr_off) {
2019 /* This block is wholly outside the truncation point */
2020 lock_buffer(bh);
2021 may_free &= journal_unmap_buffer(journal, bh);
2022 unlock_buffer(bh);
2023 }
2024 curr_off = next_off;
2025 bh = next;
2026
2027 } while (bh != head);
2028
2029 if (!offset) {
2030 if (may_free && try_to_free_buffers(page))
2031 J_ASSERT(!page_has_buffers(page));
2032 }
2033}
2034
2035/*
2036 * File a buffer on the given transaction list.
2037 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002038void __jbd2_journal_file_buffer(struct journal_head *jh,
Dave Kleikamp470decc2006-10-11 01:20:57 -07002039 transaction_t *transaction, int jlist)
2040{
2041 struct journal_head **list = NULL;
2042 int was_dirty = 0;
2043 struct buffer_head *bh = jh2bh(jh);
2044
2045 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
2046 assert_spin_locked(&transaction->t_journal->j_list_lock);
2047
2048 J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
2049 J_ASSERT_JH(jh, jh->b_transaction == transaction ||
Mingming Cao40191912008-01-28 23:58:27 -05002050 jh->b_transaction == NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002051
2052 if (jh->b_transaction && jh->b_jlist == jlist)
2053 return;
2054
Dave Kleikamp470decc2006-10-11 01:20:57 -07002055 if (jlist == BJ_Metadata || jlist == BJ_Reserved ||
2056 jlist == BJ_Shadow || jlist == BJ_Forget) {
Jan Karaf91d1d02009-07-13 16:16:20 -04002057 /*
2058 * For metadata buffers, we track dirty bit in buffer_jbddirty
2059 * instead of buffer_dirty. We should not see a dirty bit set
2060 * here because we clear it in do_get_write_access but e.g.
2061 * tune2fs can modify the sb and set the dirty bit at any time
2062 * so we try to gracefully handle that.
2063 */
2064 if (buffer_dirty(bh))
2065 warn_dirty_buffer(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002066 if (test_clear_buffer_dirty(bh) ||
2067 test_clear_buffer_jbddirty(bh))
2068 was_dirty = 1;
2069 }
2070
2071 if (jh->b_transaction)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002072 __jbd2_journal_temp_unlink_buffer(jh);
Jan Karade1b7942011-06-13 15:38:22 -04002073 else
2074 jbd2_journal_grab_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002075 jh->b_transaction = transaction;
2076
2077 switch (jlist) {
2078 case BJ_None:
2079 J_ASSERT_JH(jh, !jh->b_committed_data);
2080 J_ASSERT_JH(jh, !jh->b_frozen_data);
2081 return;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002082 case BJ_Metadata:
2083 transaction->t_nr_buffers++;
2084 list = &transaction->t_buffers;
2085 break;
2086 case BJ_Forget:
2087 list = &transaction->t_forget;
2088 break;
2089 case BJ_IO:
2090 list = &transaction->t_iobuf_list;
2091 break;
2092 case BJ_Shadow:
2093 list = &transaction->t_shadow_list;
2094 break;
2095 case BJ_LogCtl:
2096 list = &transaction->t_log_list;
2097 break;
2098 case BJ_Reserved:
2099 list = &transaction->t_reserved_list;
2100 break;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002101 }
2102
2103 __blist_add_buffer(list, jh);
2104 jh->b_jlist = jlist;
2105
2106 if (was_dirty)
2107 set_buffer_jbddirty(bh);
2108}
2109
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002110void jbd2_journal_file_buffer(struct journal_head *jh,
Dave Kleikamp470decc2006-10-11 01:20:57 -07002111 transaction_t *transaction, int jlist)
2112{
2113 jbd_lock_bh_state(jh2bh(jh));
2114 spin_lock(&transaction->t_journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002115 __jbd2_journal_file_buffer(jh, transaction, jlist);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002116 spin_unlock(&transaction->t_journal->j_list_lock);
2117 jbd_unlock_bh_state(jh2bh(jh));
2118}
2119
2120/*
2121 * Remove a buffer from its current buffer list in preparation for
2122 * dropping it from its current transaction entirely. If the buffer has
2123 * already started to be used by a subsequent transaction, refile the
2124 * buffer on that transaction's metadata list.
2125 *
Jan Karade1b7942011-06-13 15:38:22 -04002126 * Called under j_list_lock
Dave Kleikamp470decc2006-10-11 01:20:57 -07002127 * Called under jbd_lock_bh_state(jh2bh(jh))
Jan Karade1b7942011-06-13 15:38:22 -04002128 *
2129 * jh and bh may be already free when this function returns
Dave Kleikamp470decc2006-10-11 01:20:57 -07002130 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002131void __jbd2_journal_refile_buffer(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002132{
dingdinghuaba869022010-02-15 16:35:42 -05002133 int was_dirty, jlist;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002134 struct buffer_head *bh = jh2bh(jh);
2135
2136 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
2137 if (jh->b_transaction)
2138 assert_spin_locked(&jh->b_transaction->t_journal->j_list_lock);
2139
2140 /* If the buffer is now unused, just drop it. */
2141 if (jh->b_next_transaction == NULL) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002142 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002143 return;
2144 }
2145
2146 /*
2147 * It has been modified by a later transaction: add it to the new
2148 * transaction's metadata list.
2149 */
2150
2151 was_dirty = test_clear_buffer_jbddirty(bh);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002152 __jbd2_journal_temp_unlink_buffer(jh);
Jan Karade1b7942011-06-13 15:38:22 -04002153 /*
2154 * We set b_transaction here because b_next_transaction will inherit
2155 * our jh reference and thus __jbd2_journal_file_buffer() must not
2156 * take a new one.
2157 */
Dave Kleikamp470decc2006-10-11 01:20:57 -07002158 jh->b_transaction = jh->b_next_transaction;
2159 jh->b_next_transaction = NULL;
dingdinghuaba869022010-02-15 16:35:42 -05002160 if (buffer_freed(bh))
2161 jlist = BJ_Forget;
2162 else if (jh->b_modified)
2163 jlist = BJ_Metadata;
2164 else
2165 jlist = BJ_Reserved;
2166 __jbd2_journal_file_buffer(jh, jh->b_transaction, jlist);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002167 J_ASSERT_JH(jh, jh->b_transaction->t_state == T_RUNNING);
2168
2169 if (was_dirty)
2170 set_buffer_jbddirty(bh);
2171}
2172
2173/*
Jan Karade1b7942011-06-13 15:38:22 -04002174 * __jbd2_journal_refile_buffer() with necessary locking added. We take our
2175 * bh reference so that we can safely unlock bh.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002176 *
Jan Karade1b7942011-06-13 15:38:22 -04002177 * The jh and bh may be freed by this call.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002178 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002179void jbd2_journal_refile_buffer(journal_t *journal, struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002180{
2181 struct buffer_head *bh = jh2bh(jh);
2182
Jan Karade1b7942011-06-13 15:38:22 -04002183 /* Get reference so that buffer cannot be freed before we unlock it */
2184 get_bh(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002185 jbd_lock_bh_state(bh);
2186 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002187 __jbd2_journal_refile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002188 jbd_unlock_bh_state(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002189 spin_unlock(&journal->j_list_lock);
2190 __brelse(bh);
2191}
Jan Karac851ed52008-07-11 19:27:31 -04002192
2193/*
2194 * File inode in the inode list of the handle's transaction
2195 */
2196int jbd2_journal_file_inode(handle_t *handle, struct jbd2_inode *jinode)
2197{
2198 transaction_t *transaction = handle->h_transaction;
2199 journal_t *journal = transaction->t_journal;
2200
2201 if (is_handle_aborted(handle))
2202 return -EIO;
2203
2204 jbd_debug(4, "Adding inode %lu, tid:%d\n", jinode->i_vfs_inode->i_ino,
2205 transaction->t_tid);
2206
2207 /*
2208 * First check whether inode isn't already on the transaction's
2209 * lists without taking the lock. Note that this check is safe
2210 * without the lock as we cannot race with somebody removing inode
2211 * from the transaction. The reason is that we remove inode from the
2212 * transaction only in journal_release_jbd_inode() and when we commit
2213 * the transaction. We are guarded from the first case by holding
2214 * a reference to the inode. We are safe against the second case
2215 * because if jinode->i_transaction == transaction, commit code
2216 * cannot touch the transaction because we hold reference to it,
2217 * and if jinode->i_next_transaction == transaction, commit code
2218 * will only file the inode where we want it.
2219 */
2220 if (jinode->i_transaction == transaction ||
2221 jinode->i_next_transaction == transaction)
2222 return 0;
2223
2224 spin_lock(&journal->j_list_lock);
2225
2226 if (jinode->i_transaction == transaction ||
2227 jinode->i_next_transaction == transaction)
2228 goto done;
2229
Jan Kara81be12c2011-05-24 11:52:40 -04002230 /*
2231 * We only ever set this variable to 1 so the test is safe. Since
2232 * t_need_data_flush is likely to be set, we do the test to save some
2233 * cacheline bouncing
2234 */
2235 if (!transaction->t_need_data_flush)
2236 transaction->t_need_data_flush = 1;
Jan Karac851ed52008-07-11 19:27:31 -04002237 /* On some different transaction's list - should be
2238 * the committing one */
2239 if (jinode->i_transaction) {
2240 J_ASSERT(jinode->i_next_transaction == NULL);
2241 J_ASSERT(jinode->i_transaction ==
2242 journal->j_committing_transaction);
2243 jinode->i_next_transaction = transaction;
2244 goto done;
2245 }
2246 /* Not on any transaction list... */
2247 J_ASSERT(!jinode->i_next_transaction);
2248 jinode->i_transaction = transaction;
2249 list_add(&jinode->i_list, &transaction->t_inode_list);
2250done:
2251 spin_unlock(&journal->j_list_lock);
2252
2253 return 0;
2254}
2255
2256/*
Jan Kara7f5aa212009-02-10 11:15:34 -05002257 * File truncate and transaction commit interact with each other in a
2258 * non-trivial way. If a transaction writing data block A is
2259 * committing, we cannot discard the data by truncate until we have
2260 * written them. Otherwise if we crashed after the transaction with
2261 * write has committed but before the transaction with truncate has
2262 * committed, we could see stale data in block A. This function is a
2263 * helper to solve this problem. It starts writeout of the truncated
2264 * part in case it is in the committing transaction.
2265 *
2266 * Filesystem code must call this function when inode is journaled in
2267 * ordered mode before truncation happens and after the inode has been
2268 * placed on orphan list with the new inode size. The second condition
2269 * avoids the race that someone writes new data and we start
2270 * committing the transaction after this function has been called but
2271 * before a transaction for truncate is started (and furthermore it
2272 * allows us to optimize the case where the addition to orphan list
2273 * happens in the same transaction as write --- we don't have to write
2274 * any data in such case).
Jan Karac851ed52008-07-11 19:27:31 -04002275 */
Jan Kara7f5aa212009-02-10 11:15:34 -05002276int jbd2_journal_begin_ordered_truncate(journal_t *journal,
2277 struct jbd2_inode *jinode,
Jan Karac851ed52008-07-11 19:27:31 -04002278 loff_t new_size)
2279{
Jan Kara7f5aa212009-02-10 11:15:34 -05002280 transaction_t *inode_trans, *commit_trans;
Jan Karac851ed52008-07-11 19:27:31 -04002281 int ret = 0;
2282
Jan Kara7f5aa212009-02-10 11:15:34 -05002283 /* This is a quick check to avoid locking if not necessary */
2284 if (!jinode->i_transaction)
Jan Karac851ed52008-07-11 19:27:31 -04002285 goto out;
Jan Kara7f5aa212009-02-10 11:15:34 -05002286 /* Locks are here just to force reading of recent values, it is
2287 * enough that the transaction was not committing before we started
2288 * a transaction adding the inode to orphan list */
Theodore Ts'oa931da62010-08-03 21:35:12 -04002289 read_lock(&journal->j_state_lock);
Jan Karac851ed52008-07-11 19:27:31 -04002290 commit_trans = journal->j_committing_transaction;
Theodore Ts'oa931da62010-08-03 21:35:12 -04002291 read_unlock(&journal->j_state_lock);
Jan Kara7f5aa212009-02-10 11:15:34 -05002292 spin_lock(&journal->j_list_lock);
2293 inode_trans = jinode->i_transaction;
2294 spin_unlock(&journal->j_list_lock);
2295 if (inode_trans == commit_trans) {
2296 ret = filemap_fdatawrite_range(jinode->i_vfs_inode->i_mapping,
Jan Karac851ed52008-07-11 19:27:31 -04002297 new_size, LLONG_MAX);
2298 if (ret)
2299 jbd2_journal_abort(journal, ret);
2300 }
2301out:
2302 return ret;
2303}