blob: ec34e11d685484b77050a584440f9a096d0f4e37 [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
Theodore Ts'o343d9c22013-02-08 13:00:22 -050033#include <trace/events/jbd2.h>
34
Adrian Bunk7ddae862006-12-06 20:38:27 -080035static void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh);
Jan Karade1b7942011-06-13 15:38:22 -040036static void __jbd2_journal_unfile_buffer(struct journal_head *jh);
Adrian Bunk7ddae862006-12-06 20:38:27 -080037
Yongqiang Yang0c2022e2012-02-20 17:53:02 -050038static struct kmem_cache *transaction_cache;
39int __init jbd2_journal_init_transaction_cache(void)
40{
41 J_ASSERT(!transaction_cache);
42 transaction_cache = kmem_cache_create("jbd2_transaction_s",
43 sizeof(transaction_t),
44 0,
45 SLAB_HWCACHE_ALIGN|SLAB_TEMPORARY,
46 NULL);
47 if (transaction_cache)
48 return 0;
49 return -ENOMEM;
50}
51
52void jbd2_journal_destroy_transaction_cache(void)
53{
54 if (transaction_cache) {
55 kmem_cache_destroy(transaction_cache);
56 transaction_cache = NULL;
57 }
58}
59
60void jbd2_journal_free_transaction(transaction_t *transaction)
61{
62 if (unlikely(ZERO_OR_NULL_PTR(transaction)))
63 return;
64 kmem_cache_free(transaction_cache, transaction);
65}
66
Dave Kleikamp470decc2006-10-11 01:20:57 -070067/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -070068 * jbd2_get_transaction: obtain a new transaction_t object.
Dave Kleikamp470decc2006-10-11 01:20:57 -070069 *
70 * Simply allocate and initialise a new transaction. Create it in
71 * RUNNING state and add it to the current journal (which should not
72 * have an existing running transaction: we only make a new transaction
73 * once we have started to commit the old one).
74 *
75 * Preconditions:
76 * The journal MUST be locked. We don't perform atomic mallocs on the
77 * new transaction and we can't block without protecting against other
78 * processes trying to touch the journal while it is in transition.
79 *
Dave Kleikamp470decc2006-10-11 01:20:57 -070080 */
81
82static transaction_t *
Mingming Caof7f4bcc2006-10-11 01:20:59 -070083jbd2_get_transaction(journal_t *journal, transaction_t *transaction)
Dave Kleikamp470decc2006-10-11 01:20:57 -070084{
85 transaction->t_journal = journal;
86 transaction->t_state = T_RUNNING;
Josef Bacike07f7182008-11-26 01:14:26 -050087 transaction->t_start_time = ktime_get();
Dave Kleikamp470decc2006-10-11 01:20:57 -070088 transaction->t_tid = journal->j_transaction_sequence++;
89 transaction->t_expires = jiffies + journal->j_commit_interval;
90 spin_lock_init(&transaction->t_handle_lock);
Theodore Ts'oa51dca92010-08-02 08:43:25 -040091 atomic_set(&transaction->t_updates, 0);
92 atomic_set(&transaction->t_outstanding_credits, 0);
Theodore Ts'o8dd42042010-08-03 21:38:29 -040093 atomic_set(&transaction->t_handle_count, 0);
Jan Karac851ed52008-07-11 19:27:31 -040094 INIT_LIST_HEAD(&transaction->t_inode_list);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -040095 INIT_LIST_HEAD(&transaction->t_private_list);
Dave Kleikamp470decc2006-10-11 01:20:57 -070096
97 /* Set up the commit timer for the new transaction. */
Andreas Dilgerb1f485f2009-08-10 22:51:53 -040098 journal->j_commit_timer.expires = round_jiffies_up(transaction->t_expires);
Dave Kleikamp470decc2006-10-11 01:20:57 -070099 add_timer(&journal->j_commit_timer);
100
101 J_ASSERT(journal->j_running_transaction == NULL);
102 journal->j_running_transaction = transaction;
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500103 transaction->t_max_wait = 0;
104 transaction->t_start = jiffies;
Theodore Ts'o9fff24a2013-02-06 22:30:23 -0500105 transaction->t_requested = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700106
107 return transaction;
108}
109
110/*
111 * Handle management.
112 *
113 * A handle_t is an object which represents a single atomic update to a
114 * filesystem, and which tracks all of the modifications which form part
115 * of that one update.
116 */
117
118/*
Tao Ma28e35e42011-05-22 21:45:26 -0400119 * Update transaction's maximum wait time, if debugging is enabled.
Theodore Ts'o6d0bf002010-08-09 17:28:38 -0400120 *
121 * In order for t_max_wait to be reliable, it must be protected by a
122 * lock. But doing so will mean that start_this_handle() can not be
123 * run in parallel on SMP systems, which limits our scalability. So
124 * unless debugging is enabled, we no longer update t_max_wait, which
125 * means that maximum wait time reported by the jbd2_run_stats
126 * tracepoint will always be zero.
127 */
Tao Ma28e35e42011-05-22 21:45:26 -0400128static inline void update_t_max_wait(transaction_t *transaction,
129 unsigned long ts)
Theodore Ts'o6d0bf002010-08-09 17:28:38 -0400130{
131#ifdef CONFIG_JBD2_DEBUG
Theodore Ts'o6d0bf002010-08-09 17:28:38 -0400132 if (jbd2_journal_enable_debug &&
133 time_after(transaction->t_start, ts)) {
134 ts = jbd2_time_diff(ts, transaction->t_start);
135 spin_lock(&transaction->t_handle_lock);
136 if (ts > transaction->t_max_wait)
137 transaction->t_max_wait = ts;
138 spin_unlock(&transaction->t_handle_lock);
139 }
140#endif
141}
142
143/*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700144 * start_this_handle: Given a handle, deal with any locking or stalling
145 * needed to make sure that there is enough journal space for the handle
146 * to begin. Attach the handle to a transaction and set up the
147 * transaction's buffer credits.
148 */
149
Theodore Ts'o47def822010-07-27 11:56:05 -0400150static int start_this_handle(journal_t *journal, handle_t *handle,
Dan Carpenterd2159fb2011-09-04 10:20:14 -0400151 gfp_t gfp_mask)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700152{
Theodore Ts'oe4471832011-02-12 08:18:24 -0500153 transaction_t *transaction, *new_transaction = NULL;
154 tid_t tid;
155 int needed, need_to_start;
156 int nblocks = handle->h_buffer_credits;
Tao Ma28e35e42011-05-22 21:45:26 -0400157 unsigned long ts = jiffies;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700158
159 if (nblocks > journal->j_max_transaction_buffers) {
Eryu Guanf2a44522011-11-01 19:09:18 -0400160 printk(KERN_ERR "JBD2: %s wants too many credits (%d > %d)\n",
Dave Kleikamp470decc2006-10-11 01:20:57 -0700161 current->comm, nblocks,
162 journal->j_max_transaction_buffers);
Theodore Ts'o47def822010-07-27 11:56:05 -0400163 return -ENOSPC;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700164 }
165
166alloc_transaction:
167 if (!journal->j_running_transaction) {
Wanlong Gaob2f4edb2012-06-01 00:10:32 -0400168 new_transaction = kmem_cache_zalloc(transaction_cache,
169 gfp_mask);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700170 if (!new_transaction) {
Theodore Ts'o47def822010-07-27 11:56:05 -0400171 /*
172 * If __GFP_FS is not present, then we may be
173 * being called from inside the fs writeback
174 * layer, so we MUST NOT fail. Since
175 * __GFP_NOFAIL is going away, we will arrange
176 * to retry the allocation ourselves.
177 */
178 if ((gfp_mask & __GFP_FS) == 0) {
179 congestion_wait(BLK_RW_ASYNC, HZ/50);
180 goto alloc_transaction;
181 }
182 return -ENOMEM;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700183 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700184 }
185
186 jbd_debug(3, "New handle %p going live.\n", handle);
187
Dave Kleikamp470decc2006-10-11 01:20:57 -0700188 /*
189 * We need to hold j_state_lock until t_updates has been incremented,
190 * for proper journal barrier handling
191 */
Theodore Ts'oa931da62010-08-03 21:35:12 -0400192repeat:
193 read_lock(&journal->j_state_lock);
Theodore Ts'o5c2178e2010-10-27 21:30:04 -0400194 BUG_ON(journal->j_flags & JBD2_UNMOUNT);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700195 if (is_journal_aborted(journal) ||
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700196 (journal->j_errno != 0 && !(journal->j_flags & JBD2_ACK_ERR))) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400197 read_unlock(&journal->j_state_lock);
Yongqiang Yang0c2022e2012-02-20 17:53:02 -0500198 jbd2_journal_free_transaction(new_transaction);
Theodore Ts'o47def822010-07-27 11:56:05 -0400199 return -EROFS;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700200 }
201
202 /* Wait on the journal's transaction barrier if necessary */
203 if (journal->j_barrier_count) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400204 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700205 wait_event(journal->j_wait_transaction_locked,
206 journal->j_barrier_count == 0);
207 goto repeat;
208 }
209
210 if (!journal->j_running_transaction) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400211 read_unlock(&journal->j_state_lock);
212 if (!new_transaction)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700213 goto alloc_transaction;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400214 write_lock(&journal->j_state_lock);
Jan Karad7961c72012-12-21 00:15:51 -0500215 if (!journal->j_running_transaction &&
216 !journal->j_barrier_count) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400217 jbd2_get_transaction(journal, new_transaction);
218 new_transaction = NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700219 }
Theodore Ts'oa931da62010-08-03 21:35:12 -0400220 write_unlock(&journal->j_state_lock);
221 goto repeat;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700222 }
223
224 transaction = journal->j_running_transaction;
225
226 /*
227 * If the current transaction is locked down for commit, wait for the
228 * lock to be released.
229 */
230 if (transaction->t_state == T_LOCKED) {
231 DEFINE_WAIT(wait);
232
233 prepare_to_wait(&journal->j_wait_transaction_locked,
234 &wait, TASK_UNINTERRUPTIBLE);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400235 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700236 schedule();
237 finish_wait(&journal->j_wait_transaction_locked, &wait);
238 goto repeat;
239 }
240
241 /*
242 * If there is not enough space left in the log to write all potential
243 * buffers requested by this operation, we need to stall pending a log
244 * checkpoint to free some more log space.
245 */
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400246 needed = atomic_add_return(nblocks,
247 &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700248
249 if (needed > journal->j_max_transaction_buffers) {
250 /*
251 * If the current transaction is already too large, then start
252 * to commit it: we can then go back and attach this handle to
253 * a new transaction.
254 */
255 DEFINE_WAIT(wait);
256
257 jbd_debug(2, "Handle %p starting new commit...\n", handle);
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400258 atomic_sub(nblocks, &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700259 prepare_to_wait(&journal->j_wait_transaction_locked, &wait,
260 TASK_UNINTERRUPTIBLE);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500261 tid = transaction->t_tid;
262 need_to_start = !tid_geq(journal->j_commit_request, tid);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400263 read_unlock(&journal->j_state_lock);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500264 if (need_to_start)
265 jbd2_log_start_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700266 schedule();
267 finish_wait(&journal->j_wait_transaction_locked, &wait);
268 goto repeat;
269 }
270
271 /*
272 * The commit code assumes that it can get enough log space
273 * without forcing a checkpoint. This is *critical* for
274 * correctness: a checkpoint of a buffer which is also
275 * associated with a committing transaction creates a deadlock,
276 * so commit simply cannot force through checkpoints.
277 *
278 * We must therefore ensure the necessary space in the journal
279 * *before* starting to dirty potentially checkpointed buffers
280 * in the new transaction.
281 *
282 * The worst part is, any transaction currently committing can
283 * reduce the free space arbitrarily. Be careful to account for
284 * those buffers when checkpointing.
285 */
286
287 /*
288 * @@@ AKPM: This seems rather over-defensive. We're giving commit
289 * a _lot_ of headroom: 1/4 of the journal plus the size of
290 * the committing transaction. Really, we only need to give it
291 * committing_transaction->t_outstanding_credits plus "enough" for
292 * the log control blocks.
Uwe Kleine-Königa34f0b32010-12-10 14:55:42 +0100293 * Also, this test is inconsistent with the matching one in
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700294 * jbd2_journal_extend().
Dave Kleikamp470decc2006-10-11 01:20:57 -0700295 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700296 if (__jbd2_log_space_left(journal) < jbd_space_needed(journal)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700297 jbd_debug(2, "Handle %p waiting for checkpoint...\n", handle);
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400298 atomic_sub(nblocks, &transaction->t_outstanding_credits);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400299 read_unlock(&journal->j_state_lock);
300 write_lock(&journal->j_state_lock);
301 if (__jbd2_log_space_left(journal) < jbd_space_needed(journal))
302 __jbd2_log_wait_for_space(journal);
303 write_unlock(&journal->j_state_lock);
304 goto repeat;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700305 }
306
307 /* OK, account for the buffers that this operation expects to
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400308 * use and add the handle to the running transaction.
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400309 */
Tao Ma28e35e42011-05-22 21:45:26 -0400310 update_t_max_wait(transaction, ts);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700311 handle->h_transaction = transaction;
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500312 handle->h_requested_credits = nblocks;
313 handle->h_start_jiffies = jiffies;
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400314 atomic_inc(&transaction->t_updates);
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400315 atomic_inc(&transaction->t_handle_count);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700316 jbd_debug(4, "Handle %p given %d credits (total %d, free %d)\n",
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400317 handle, nblocks,
318 atomic_read(&transaction->t_outstanding_credits),
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700319 __jbd2_log_space_left(journal));
Theodore Ts'oa931da62010-08-03 21:35:12 -0400320 read_unlock(&journal->j_state_lock);
Jan Kara9599b0e2009-08-17 21:23:17 -0400321
322 lock_map_acquire(&handle->h_lockdep_map);
Yongqiang Yang0c2022e2012-02-20 17:53:02 -0500323 jbd2_journal_free_transaction(new_transaction);
Theodore Ts'o47def822010-07-27 11:56:05 -0400324 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700325}
326
Mingming Cao7b751062008-01-28 23:58:27 -0500327static struct lock_class_key jbd2_handle_key;
328
Dave Kleikamp470decc2006-10-11 01:20:57 -0700329/* Allocate a new handle. This should probably be in a slab... */
330static handle_t *new_handle(int nblocks)
331{
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400332 handle_t *handle = jbd2_alloc_handle(GFP_NOFS);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700333 if (!handle)
334 return NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700335 handle->h_buffer_credits = nblocks;
336 handle->h_ref = 1;
337
Mingming Cao7b751062008-01-28 23:58:27 -0500338 lockdep_init_map(&handle->h_lockdep_map, "jbd2_handle",
339 &jbd2_handle_key, 0);
340
Dave Kleikamp470decc2006-10-11 01:20:57 -0700341 return handle;
342}
343
344/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700345 * handle_t *jbd2_journal_start() - Obtain a new handle.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700346 * @journal: Journal to start transaction on.
347 * @nblocks: number of block buffer we might modify
348 *
349 * We make sure that the transaction can guarantee at least nblocks of
350 * modified buffers in the log. We block until the log can guarantee
351 * that much space.
352 *
353 * This function is visible to journal users (like ext3fs), so is not
354 * called with the journal already locked.
355 *
Eryu Guanc8675162011-05-24 17:09:58 -0400356 * Return a pointer to a newly allocated handle, or an ERR_PTR() value
357 * on failure.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700358 */
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500359handle_t *jbd2__journal_start(journal_t *journal, int nblocks, gfp_t gfp_mask,
360 unsigned int type, unsigned int line_no)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700361{
362 handle_t *handle = journal_current_handle();
363 int err;
364
365 if (!journal)
366 return ERR_PTR(-EROFS);
367
368 if (handle) {
369 J_ASSERT(handle->h_transaction->t_journal == journal);
370 handle->h_ref++;
371 return handle;
372 }
373
374 handle = new_handle(nblocks);
375 if (!handle)
376 return ERR_PTR(-ENOMEM);
377
378 current->journal_info = handle;
379
Theodore Ts'o47def822010-07-27 11:56:05 -0400380 err = start_this_handle(journal, handle, gfp_mask);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700381 if (err < 0) {
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400382 jbd2_free_handle(handle);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700383 current->journal_info = NULL;
Dmitry Monakhovdf05c1b82013-03-02 17:08:46 -0500384 return ERR_PTR(err);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700385 }
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500386 handle->h_type = type;
387 handle->h_line_no = line_no;
388 trace_jbd2_handle_start(journal->j_fs_dev->bd_dev,
389 handle->h_transaction->t_tid, type,
390 line_no, nblocks);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700391 return handle;
392}
Theodore Ts'o47def822010-07-27 11:56:05 -0400393EXPORT_SYMBOL(jbd2__journal_start);
394
395
396handle_t *jbd2_journal_start(journal_t *journal, int nblocks)
397{
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500398 return jbd2__journal_start(journal, nblocks, GFP_NOFS, 0, 0);
Theodore Ts'o47def822010-07-27 11:56:05 -0400399}
400EXPORT_SYMBOL(jbd2_journal_start);
401
Dave Kleikamp470decc2006-10-11 01:20:57 -0700402
403/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700404 * int jbd2_journal_extend() - extend buffer credits.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700405 * @handle: handle to 'extend'
406 * @nblocks: nr blocks to try to extend by.
407 *
408 * Some transactions, such as large extends and truncates, can be done
409 * atomically all at once or in several stages. The operation requests
410 * a credit for a number of buffer modications in advance, but can
411 * extend its credit if it needs more.
412 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700413 * jbd2_journal_extend tries to give the running handle more buffer credits.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700414 * It does not guarantee that allocation - this is a best-effort only.
415 * The calling process MUST be able to deal cleanly with a failure to
416 * extend here.
417 *
418 * Return 0 on success, non-zero on failure.
419 *
420 * return code < 0 implies an error
421 * return code > 0 implies normal transaction-full status.
422 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700423int jbd2_journal_extend(handle_t *handle, int nblocks)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700424{
425 transaction_t *transaction = handle->h_transaction;
426 journal_t *journal = transaction->t_journal;
427 int result;
428 int wanted;
429
430 result = -EIO;
431 if (is_handle_aborted(handle))
432 goto out;
433
434 result = 1;
435
Theodore Ts'oa931da62010-08-03 21:35:12 -0400436 read_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700437
438 /* Don't extend a locked-down transaction! */
439 if (handle->h_transaction->t_state != T_RUNNING) {
440 jbd_debug(3, "denied handle %p %d blocks: "
441 "transaction not running\n", handle, nblocks);
442 goto error_out;
443 }
444
445 spin_lock(&transaction->t_handle_lock);
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400446 wanted = atomic_read(&transaction->t_outstanding_credits) + nblocks;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700447
448 if (wanted > journal->j_max_transaction_buffers) {
449 jbd_debug(3, "denied handle %p %d blocks: "
450 "transaction too large\n", handle, nblocks);
451 goto unlock;
452 }
453
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700454 if (wanted > __jbd2_log_space_left(journal)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700455 jbd_debug(3, "denied handle %p %d blocks: "
456 "insufficient log space\n", handle, nblocks);
457 goto unlock;
458 }
459
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500460 trace_jbd2_handle_extend(journal->j_fs_dev->bd_dev,
461 handle->h_transaction->t_tid,
462 handle->h_type, handle->h_line_no,
463 handle->h_buffer_credits,
464 nblocks);
465
Dave Kleikamp470decc2006-10-11 01:20:57 -0700466 handle->h_buffer_credits += nblocks;
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500467 handle->h_requested_credits += nblocks;
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400468 atomic_add(nblocks, &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700469 result = 0;
470
471 jbd_debug(3, "extended handle %p by %d\n", handle, nblocks);
472unlock:
473 spin_unlock(&transaction->t_handle_lock);
474error_out:
Theodore Ts'oa931da62010-08-03 21:35:12 -0400475 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700476out:
477 return result;
478}
479
480
481/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700482 * int jbd2_journal_restart() - restart a handle .
Dave Kleikamp470decc2006-10-11 01:20:57 -0700483 * @handle: handle to restart
484 * @nblocks: nr credits requested
485 *
486 * Restart a handle for a multi-transaction filesystem
487 * operation.
488 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700489 * If the jbd2_journal_extend() call above fails to grant new buffer credits
490 * to a running handle, a call to jbd2_journal_restart will commit the
Dave Kleikamp470decc2006-10-11 01:20:57 -0700491 * handle's transaction so far and reattach the handle to a new
492 * transaction capabable of guaranteeing the requested number of
493 * credits.
494 */
Dan Carpenterd2159fb2011-09-04 10:20:14 -0400495int jbd2__journal_restart(handle_t *handle, int nblocks, gfp_t gfp_mask)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700496{
497 transaction_t *transaction = handle->h_transaction;
498 journal_t *journal = transaction->t_journal;
Theodore Ts'oe4471832011-02-12 08:18:24 -0500499 tid_t tid;
500 int need_to_start, ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700501
502 /* If we've had an abort of any type, don't even think about
503 * actually doing the restart! */
504 if (is_handle_aborted(handle))
505 return 0;
506
507 /*
508 * First unlink the handle from its current transaction, and start the
509 * commit on that.
510 */
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400511 J_ASSERT(atomic_read(&transaction->t_updates) > 0);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700512 J_ASSERT(journal_current_handle() == handle);
513
Theodore Ts'oa931da62010-08-03 21:35:12 -0400514 read_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700515 spin_lock(&transaction->t_handle_lock);
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400516 atomic_sub(handle->h_buffer_credits,
517 &transaction->t_outstanding_credits);
518 if (atomic_dec_and_test(&transaction->t_updates))
Dave Kleikamp470decc2006-10-11 01:20:57 -0700519 wake_up(&journal->j_wait_updates);
Theodore Ts'o15f26a42013-07-01 08:12:40 -0400520 tid = transaction->t_tid;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700521 spin_unlock(&transaction->t_handle_lock);
522
523 jbd_debug(2, "restarting handle %p\n", handle);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500524 need_to_start = !tid_geq(journal->j_commit_request, tid);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400525 read_unlock(&journal->j_state_lock);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500526 if (need_to_start)
527 jbd2_log_start_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700528
Jan Kara9599b0e2009-08-17 21:23:17 -0400529 lock_map_release(&handle->h_lockdep_map);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700530 handle->h_buffer_credits = nblocks;
Theodore Ts'o47def822010-07-27 11:56:05 -0400531 ret = start_this_handle(journal, handle, gfp_mask);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700532 return ret;
533}
Theodore Ts'o47def822010-07-27 11:56:05 -0400534EXPORT_SYMBOL(jbd2__journal_restart);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700535
536
Theodore Ts'o47def822010-07-27 11:56:05 -0400537int jbd2_journal_restart(handle_t *handle, int nblocks)
538{
539 return jbd2__journal_restart(handle, nblocks, GFP_NOFS);
540}
541EXPORT_SYMBOL(jbd2_journal_restart);
542
Dave Kleikamp470decc2006-10-11 01:20:57 -0700543/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700544 * void jbd2_journal_lock_updates () - establish a transaction barrier.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700545 * @journal: Journal to establish a barrier on.
546 *
547 * This locks out any further updates from being started, and blocks
548 * until all existing updates have completed, returning only once the
549 * journal is in a quiescent state with no updates running.
550 *
551 * The journal lock should not be held on entry.
552 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700553void jbd2_journal_lock_updates(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700554{
555 DEFINE_WAIT(wait);
556
Theodore Ts'oa931da62010-08-03 21:35:12 -0400557 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700558 ++journal->j_barrier_count;
559
560 /* Wait until there are no running updates */
561 while (1) {
562 transaction_t *transaction = journal->j_running_transaction;
563
564 if (!transaction)
565 break;
566
567 spin_lock(&transaction->t_handle_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700568 prepare_to_wait(&journal->j_wait_updates, &wait,
569 TASK_UNINTERRUPTIBLE);
Jan Kara9837d8e2012-01-04 22:03:11 -0500570 if (!atomic_read(&transaction->t_updates)) {
571 spin_unlock(&transaction->t_handle_lock);
572 finish_wait(&journal->j_wait_updates, &wait);
573 break;
574 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700575 spin_unlock(&transaction->t_handle_lock);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400576 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700577 schedule();
578 finish_wait(&journal->j_wait_updates, &wait);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400579 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700580 }
Theodore Ts'oa931da62010-08-03 21:35:12 -0400581 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700582
583 /*
584 * We have now established a barrier against other normal updates, but
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700585 * we also need to barrier against other jbd2_journal_lock_updates() calls
Dave Kleikamp470decc2006-10-11 01:20:57 -0700586 * to make sure that we serialise special journal-locked operations
587 * too.
588 */
589 mutex_lock(&journal->j_barrier);
590}
591
592/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700593 * void jbd2_journal_unlock_updates (journal_t* journal) - release barrier
Dave Kleikamp470decc2006-10-11 01:20:57 -0700594 * @journal: Journal to release the barrier on.
595 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700596 * Release a transaction barrier obtained with jbd2_journal_lock_updates().
Dave Kleikamp470decc2006-10-11 01:20:57 -0700597 *
598 * Should be called without the journal lock held.
599 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700600void jbd2_journal_unlock_updates (journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700601{
602 J_ASSERT(journal->j_barrier_count != 0);
603
604 mutex_unlock(&journal->j_barrier);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400605 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700606 --journal->j_barrier_count;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400607 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700608 wake_up(&journal->j_wait_transaction_locked);
609}
610
Jan Karaf91d1d02009-07-13 16:16:20 -0400611static void warn_dirty_buffer(struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700612{
Jan Karaf91d1d02009-07-13 16:16:20 -0400613 char b[BDEVNAME_SIZE];
Dave Kleikamp470decc2006-10-11 01:20:57 -0700614
Jan Karaf91d1d02009-07-13 16:16:20 -0400615 printk(KERN_WARNING
Eryu Guanf2a44522011-11-01 19:09:18 -0400616 "JBD2: Spotted dirty metadata buffer (dev = %s, blocknr = %llu). "
Jan Karaf91d1d02009-07-13 16:16:20 -0400617 "There's a risk of filesystem corruption in case of system "
618 "crash.\n",
619 bdevname(bh->b_bdev, b), (unsigned long long)bh->b_blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700620}
621
622/*
623 * If the buffer is already part of the current transaction, then there
624 * is nothing we need to do. If it is already part of a prior
625 * transaction which we are still committing to disk, then we need to
626 * make sure that we do not overwrite the old copy: we do copy-out to
627 * preserve the copy going to disk. We also account the buffer against
628 * the handle's metadata buffer credits (unless the buffer is already
629 * part of the transaction, that is).
630 *
631 */
632static int
633do_get_write_access(handle_t *handle, struct journal_head *jh,
634 int force_copy)
635{
636 struct buffer_head *bh;
637 transaction_t *transaction;
638 journal_t *journal;
639 int error;
640 char *frozen_buffer = NULL;
641 int need_copy = 0;
Theodore Ts'of783f092013-04-21 16:47:54 -0400642 unsigned long start_lock, time_lock;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700643
644 if (is_handle_aborted(handle))
645 return -EROFS;
646
647 transaction = handle->h_transaction;
648 journal = transaction->t_journal;
649
Theodore Ts'ocfef2c62010-12-18 13:07:34 -0500650 jbd_debug(5, "journal_head %p, force_copy %d\n", jh, force_copy);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700651
652 JBUFFER_TRACE(jh, "entry");
653repeat:
654 bh = jh2bh(jh);
655
656 /* @@@ Need to check for errors here at some point. */
657
Theodore Ts'of783f092013-04-21 16:47:54 -0400658 start_lock = jiffies;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700659 lock_buffer(bh);
660 jbd_lock_bh_state(bh);
661
Theodore Ts'of783f092013-04-21 16:47:54 -0400662 /* If it takes too long to lock the buffer, trace it */
663 time_lock = jbd2_time_diff(start_lock, jiffies);
664 if (time_lock > HZ/10)
665 trace_jbd2_lock_buffer_stall(bh->b_bdev->bd_dev,
666 jiffies_to_msecs(time_lock));
667
Dave Kleikamp470decc2006-10-11 01:20:57 -0700668 /* We now hold the buffer lock so it is safe to query the buffer
669 * state. Is the buffer dirty?
670 *
671 * If so, there are two possibilities. The buffer may be
672 * non-journaled, and undergoing a quite legitimate writeback.
673 * Otherwise, it is journaled, and we don't expect dirty buffers
674 * in that state (the buffers should be marked JBD_Dirty
675 * instead.) So either the IO is being done under our own
676 * control and this is a bug, or it's a third party IO such as
677 * dump(8) (which may leave the buffer scheduled for read ---
678 * ie. locked but not dirty) or tune2fs (which may actually have
679 * the buffer dirtied, ugh.) */
680
681 if (buffer_dirty(bh)) {
682 /*
683 * First question: is this buffer already part of the current
684 * transaction or the existing committing transaction?
685 */
686 if (jh->b_transaction) {
687 J_ASSERT_JH(jh,
688 jh->b_transaction == transaction ||
689 jh->b_transaction ==
690 journal->j_committing_transaction);
691 if (jh->b_next_transaction)
692 J_ASSERT_JH(jh, jh->b_next_transaction ==
693 transaction);
Jan Karaf91d1d02009-07-13 16:16:20 -0400694 warn_dirty_buffer(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700695 }
696 /*
697 * In any case we need to clean the dirty flag and we must
698 * do it under the buffer lock to be sure we don't race
699 * with running write-out.
700 */
Jan Karaf91d1d02009-07-13 16:16:20 -0400701 JBUFFER_TRACE(jh, "Journalling dirty buffer");
702 clear_buffer_dirty(bh);
703 set_buffer_jbddirty(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700704 }
705
706 unlock_buffer(bh);
707
708 error = -EROFS;
709 if (is_handle_aborted(handle)) {
710 jbd_unlock_bh_state(bh);
711 goto out;
712 }
713 error = 0;
714
715 /*
716 * The buffer is already part of this transaction if b_transaction or
717 * b_next_transaction points to it
718 */
719 if (jh->b_transaction == transaction ||
720 jh->b_next_transaction == transaction)
721 goto done;
722
723 /*
Josef Bacik9fc7c632008-04-17 10:38:59 -0400724 * this is the first time this transaction is touching this buffer,
725 * reset the modified flag
726 */
727 jh->b_modified = 0;
728
729 /*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700730 * If there is already a copy-out version of this buffer, then we don't
731 * need to make another one
732 */
733 if (jh->b_frozen_data) {
734 JBUFFER_TRACE(jh, "has frozen data");
735 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
736 jh->b_next_transaction = transaction;
737 goto done;
738 }
739
740 /* Is there data here we need to preserve? */
741
742 if (jh->b_transaction && jh->b_transaction != transaction) {
743 JBUFFER_TRACE(jh, "owned by older transaction");
744 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
745 J_ASSERT_JH(jh, jh->b_transaction ==
746 journal->j_committing_transaction);
747
748 /* There is one case we have to be very careful about.
749 * If the committing transaction is currently writing
750 * this buffer out to disk and has NOT made a copy-out,
751 * then we cannot modify the buffer contents at all
752 * right now. The essence of copy-out is that it is the
753 * extra copy, not the primary copy, which gets
754 * journaled. If the primary copy is already going to
755 * disk then we cannot do copy-out here. */
756
757 if (jh->b_jlist == BJ_Shadow) {
758 DEFINE_WAIT_BIT(wait, &bh->b_state, BH_Unshadow);
759 wait_queue_head_t *wqh;
760
761 wqh = bit_waitqueue(&bh->b_state, BH_Unshadow);
762
763 JBUFFER_TRACE(jh, "on shadow: sleep");
764 jbd_unlock_bh_state(bh);
765 /* commit wakes up all shadow buffers after IO */
766 for ( ; ; ) {
767 prepare_to_wait(wqh, &wait.wait,
768 TASK_UNINTERRUPTIBLE);
769 if (jh->b_jlist != BJ_Shadow)
770 break;
771 schedule();
772 }
773 finish_wait(wqh, &wait.wait);
774 goto repeat;
775 }
776
777 /* Only do the copy if the currently-owning transaction
778 * still needs it. If it is on the Forget list, the
779 * committing transaction is past that stage. The
780 * buffer had better remain locked during the kmalloc,
781 * but that should be true --- we hold the journal lock
782 * still and the buffer is already on the BUF_JOURNAL
783 * list so won't be flushed.
784 *
785 * Subtle point, though: if this is a get_undo_access,
786 * then we will be relying on the frozen_data to contain
787 * the new value of the committed_data record after the
788 * transaction, so we HAVE to force the frozen_data copy
789 * in that case. */
790
791 if (jh->b_jlist != BJ_Forget || force_copy) {
792 JBUFFER_TRACE(jh, "generate frozen data");
793 if (!frozen_buffer) {
794 JBUFFER_TRACE(jh, "allocate memory for buffer");
795 jbd_unlock_bh_state(bh);
796 frozen_buffer =
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400797 jbd2_alloc(jh2bh(jh)->b_size,
Dave Kleikamp470decc2006-10-11 01:20:57 -0700798 GFP_NOFS);
799 if (!frozen_buffer) {
800 printk(KERN_EMERG
801 "%s: OOM for frozen_buffer\n",
Harvey Harrison329d2912008-04-17 10:38:59 -0400802 __func__);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700803 JBUFFER_TRACE(jh, "oom!");
804 error = -ENOMEM;
805 jbd_lock_bh_state(bh);
806 goto done;
807 }
808 goto repeat;
809 }
810 jh->b_frozen_data = frozen_buffer;
811 frozen_buffer = NULL;
812 need_copy = 1;
813 }
814 jh->b_next_transaction = transaction;
815 }
816
817
818 /*
819 * Finally, if the buffer is not journaled right now, we need to make
820 * sure it doesn't get written to disk before the caller actually
821 * commits the new data
822 */
823 if (!jh->b_transaction) {
824 JBUFFER_TRACE(jh, "no transaction");
825 J_ASSERT_JH(jh, !jh->b_next_transaction);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700826 JBUFFER_TRACE(jh, "file as BJ_Reserved");
827 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700828 __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700829 spin_unlock(&journal->j_list_lock);
830 }
831
832done:
833 if (need_copy) {
834 struct page *page;
835 int offset;
836 char *source;
837
838 J_EXPECT_JH(jh, buffer_uptodate(jh2bh(jh)),
839 "Possible IO failure.\n");
840 page = jh2bh(jh)->b_page;
Theodore Ts'oa1dd5332010-12-18 13:13:40 -0500841 offset = offset_in_page(jh2bh(jh)->b_data);
Cong Wang303a8f22011-11-25 23:14:31 +0800842 source = kmap_atomic(page);
Jan Kara13ceef02010-07-14 07:56:33 +0200843 /* Fire data frozen trigger just before we copy the data */
844 jbd2_buffer_frozen_trigger(jh, source + offset,
845 jh->b_triggers);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700846 memcpy(jh->b_frozen_data, source+offset, jh2bh(jh)->b_size);
Cong Wang303a8f22011-11-25 23:14:31 +0800847 kunmap_atomic(source);
Joel Beckere06c8222008-09-11 15:35:47 -0700848
849 /*
850 * Now that the frozen data is saved off, we need to store
851 * any matching triggers.
852 */
853 jh->b_frozen_triggers = jh->b_triggers;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700854 }
855 jbd_unlock_bh_state(bh);
856
857 /*
858 * If we are about to journal a buffer, then any revoke pending on it is
859 * no longer valid
860 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700861 jbd2_journal_cancel_revoke(handle, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700862
863out:
864 if (unlikely(frozen_buffer)) /* It's usually NULL */
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400865 jbd2_free(frozen_buffer, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700866
867 JBUFFER_TRACE(jh, "exit");
868 return error;
869}
870
871/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700872 * int jbd2_journal_get_write_access() - notify intent to modify a buffer for metadata (not data) update.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700873 * @handle: transaction to add buffer modifications to
874 * @bh: bh to be used for metadata writes
Dave Kleikamp470decc2006-10-11 01:20:57 -0700875 *
876 * Returns an error code or 0 on success.
877 *
878 * In full data journalling mode the buffer may be of type BJ_AsyncData,
879 * because we're write()ing a buffer which is also part of a shared mapping.
880 */
881
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700882int jbd2_journal_get_write_access(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700883{
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700884 struct journal_head *jh = jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700885 int rc;
886
887 /* We do not want to get caught playing with fields which the
888 * log thread also manipulates. Make sure that the buffer
889 * completes any outstanding IO before proceeding. */
890 rc = do_get_write_access(handle, jh, 0);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700891 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700892 return rc;
893}
894
895
896/*
897 * When the user wants to journal a newly created buffer_head
898 * (ie. getblk() returned a new buffer and we are going to populate it
899 * manually rather than reading off disk), then we need to keep the
900 * buffer_head locked until it has been completely filled with new
901 * data. In this case, we should be able to make the assertion that
902 * the bh is not already part of an existing transaction.
903 *
904 * The buffer should already be locked by the caller by this point.
905 * There is no lock ranking violation: it was a newly created,
906 * unlocked buffer beforehand. */
907
908/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700909 * int jbd2_journal_get_create_access () - notify intent to use newly created bh
Dave Kleikamp470decc2006-10-11 01:20:57 -0700910 * @handle: transaction to new buffer to
911 * @bh: new buffer.
912 *
913 * Call this if you create a new bh.
914 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700915int jbd2_journal_get_create_access(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700916{
917 transaction_t *transaction = handle->h_transaction;
918 journal_t *journal = transaction->t_journal;
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700919 struct journal_head *jh = jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700920 int err;
921
922 jbd_debug(5, "journal_head %p\n", jh);
923 err = -EROFS;
924 if (is_handle_aborted(handle))
925 goto out;
926 err = 0;
927
928 JBUFFER_TRACE(jh, "entry");
929 /*
930 * The buffer may already belong to this transaction due to pre-zeroing
931 * in the filesystem's new_block code. It may also be on the previous,
932 * committing transaction's lists, but it HAS to be in Forget state in
933 * that case: the transaction must have deleted the buffer for it to be
934 * reused here.
935 */
936 jbd_lock_bh_state(bh);
937 spin_lock(&journal->j_list_lock);
938 J_ASSERT_JH(jh, (jh->b_transaction == transaction ||
939 jh->b_transaction == NULL ||
940 (jh->b_transaction == journal->j_committing_transaction &&
941 jh->b_jlist == BJ_Forget)));
942
943 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
944 J_ASSERT_JH(jh, buffer_locked(jh2bh(jh)));
945
946 if (jh->b_transaction == NULL) {
Jan Karaf91d1d02009-07-13 16:16:20 -0400947 /*
948 * Previous jbd2_journal_forget() could have left the buffer
949 * with jbddirty bit set because it was being committed. When
950 * the commit finished, we've filed the buffer for
951 * checkpointing and marked it dirty. Now we are reallocating
952 * the buffer so the transaction freeing it must have
953 * committed and so it's safe to clear the dirty bit.
954 */
955 clear_buffer_dirty(jh2bh(jh));
Josef Bacik9fc7c632008-04-17 10:38:59 -0400956 /* first access by this transaction */
957 jh->b_modified = 0;
958
Dave Kleikamp470decc2006-10-11 01:20:57 -0700959 JBUFFER_TRACE(jh, "file as BJ_Reserved");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700960 __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700961 } else if (jh->b_transaction == journal->j_committing_transaction) {
Josef Bacik9fc7c632008-04-17 10:38:59 -0400962 /* first access by this transaction */
963 jh->b_modified = 0;
964
Dave Kleikamp470decc2006-10-11 01:20:57 -0700965 JBUFFER_TRACE(jh, "set next transaction");
966 jh->b_next_transaction = transaction;
967 }
968 spin_unlock(&journal->j_list_lock);
969 jbd_unlock_bh_state(bh);
970
971 /*
972 * akpm: I added this. ext3_alloc_branch can pick up new indirect
973 * blocks which contain freed but then revoked metadata. We need
974 * to cancel the revoke in case we end up freeing it yet again
975 * and the reallocating as data - this would cause a second revoke,
976 * which hits an assertion error.
977 */
978 JBUFFER_TRACE(jh, "cancelling revoke");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700979 jbd2_journal_cancel_revoke(handle, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700980out:
Ding Dinghua3991b402011-05-25 17:43:48 -0400981 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700982 return err;
983}
984
985/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700986 * int jbd2_journal_get_undo_access() - Notify intent to modify metadata with
Dave Kleikamp470decc2006-10-11 01:20:57 -0700987 * non-rewindable consequences
988 * @handle: transaction
989 * @bh: buffer to undo
Dave Kleikamp470decc2006-10-11 01:20:57 -0700990 *
991 * Sometimes there is a need to distinguish between metadata which has
992 * been committed to disk and that which has not. The ext3fs code uses
993 * this for freeing and allocating space, we have to make sure that we
994 * do not reuse freed space until the deallocation has been committed,
995 * since if we overwrote that space we would make the delete
996 * un-rewindable in case of a crash.
997 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700998 * To deal with that, jbd2_journal_get_undo_access requests write access to a
Dave Kleikamp470decc2006-10-11 01:20:57 -0700999 * buffer for parts of non-rewindable operations such as delete
1000 * operations on the bitmaps. The journaling code must keep a copy of
1001 * the buffer's contents prior to the undo_access call until such time
1002 * as we know that the buffer has definitely been committed to disk.
1003 *
1004 * We never need to know which transaction the committed data is part
1005 * of, buffers touched here are guaranteed to be dirtied later and so
1006 * will be committed to a new transaction in due course, at which point
1007 * we can discard the old committed data pointer.
1008 *
1009 * Returns error number or 0 on success.
1010 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001011int jbd2_journal_get_undo_access(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001012{
1013 int err;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001014 struct journal_head *jh = jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001015 char *committed_data = NULL;
1016
1017 JBUFFER_TRACE(jh, "entry");
1018
1019 /*
1020 * Do this first --- it can drop the journal lock, so we want to
1021 * make sure that obtaining the committed_data is done
1022 * atomically wrt. completion of any outstanding commits.
1023 */
1024 err = do_get_write_access(handle, jh, 1);
1025 if (err)
1026 goto out;
1027
1028repeat:
1029 if (!jh->b_committed_data) {
Mingming Caoaf1e76d2007-10-16 18:38:25 -04001030 committed_data = jbd2_alloc(jh2bh(jh)->b_size, GFP_NOFS);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001031 if (!committed_data) {
1032 printk(KERN_EMERG "%s: No memory for committed data\n",
Harvey Harrison329d2912008-04-17 10:38:59 -04001033 __func__);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001034 err = -ENOMEM;
1035 goto out;
1036 }
1037 }
1038
1039 jbd_lock_bh_state(bh);
1040 if (!jh->b_committed_data) {
1041 /* Copy out the current buffer contents into the
1042 * preserved, committed copy. */
1043 JBUFFER_TRACE(jh, "generate b_committed data");
1044 if (!committed_data) {
1045 jbd_unlock_bh_state(bh);
1046 goto repeat;
1047 }
1048
1049 jh->b_committed_data = committed_data;
1050 committed_data = NULL;
1051 memcpy(jh->b_committed_data, bh->b_data, bh->b_size);
1052 }
1053 jbd_unlock_bh_state(bh);
1054out:
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001055 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001056 if (unlikely(committed_data))
Mingming Caoaf1e76d2007-10-16 18:38:25 -04001057 jbd2_free(committed_data, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001058 return err;
1059}
1060
1061/**
Joel Beckere06c8222008-09-11 15:35:47 -07001062 * void jbd2_journal_set_triggers() - Add triggers for commit writeout
1063 * @bh: buffer to trigger on
1064 * @type: struct jbd2_buffer_trigger_type containing the trigger(s).
1065 *
1066 * Set any triggers on this journal_head. This is always safe, because
1067 * triggers for a committing buffer will be saved off, and triggers for
1068 * a running transaction will match the buffer in that transaction.
1069 *
1070 * Call with NULL to clear the triggers.
1071 */
1072void jbd2_journal_set_triggers(struct buffer_head *bh,
1073 struct jbd2_buffer_trigger_type *type)
1074{
Jan Karaad56edad2013-03-11 13:24:56 -04001075 struct journal_head *jh = jbd2_journal_grab_journal_head(bh);
Joel Beckere06c8222008-09-11 15:35:47 -07001076
Jan Karaad56edad2013-03-11 13:24:56 -04001077 if (WARN_ON(!jh))
1078 return;
Joel Beckere06c8222008-09-11 15:35:47 -07001079 jh->b_triggers = type;
Jan Karaad56edad2013-03-11 13:24:56 -04001080 jbd2_journal_put_journal_head(jh);
Joel Beckere06c8222008-09-11 15:35:47 -07001081}
1082
Jan Kara13ceef02010-07-14 07:56:33 +02001083void jbd2_buffer_frozen_trigger(struct journal_head *jh, void *mapped_data,
Joel Beckere06c8222008-09-11 15:35:47 -07001084 struct jbd2_buffer_trigger_type *triggers)
1085{
1086 struct buffer_head *bh = jh2bh(jh);
1087
Jan Kara13ceef02010-07-14 07:56:33 +02001088 if (!triggers || !triggers->t_frozen)
Joel Beckere06c8222008-09-11 15:35:47 -07001089 return;
1090
Jan Kara13ceef02010-07-14 07:56:33 +02001091 triggers->t_frozen(triggers, bh, mapped_data, bh->b_size);
Joel Beckere06c8222008-09-11 15:35:47 -07001092}
1093
1094void jbd2_buffer_abort_trigger(struct journal_head *jh,
1095 struct jbd2_buffer_trigger_type *triggers)
1096{
1097 if (!triggers || !triggers->t_abort)
1098 return;
1099
1100 triggers->t_abort(triggers, jh2bh(jh));
1101}
1102
1103
1104
1105/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001106 * int jbd2_journal_dirty_metadata() - mark a buffer as containing dirty metadata
Dave Kleikamp470decc2006-10-11 01:20:57 -07001107 * @handle: transaction to add buffer to.
1108 * @bh: buffer to mark
1109 *
1110 * mark dirty metadata which needs to be journaled as part of the current
1111 * transaction.
1112 *
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001113 * The buffer must have previously had jbd2_journal_get_write_access()
1114 * called so that it has a valid journal_head attached to the buffer
1115 * head.
1116 *
Dave Kleikamp470decc2006-10-11 01:20:57 -07001117 * The buffer is placed on the transaction's metadata list and is marked
1118 * as belonging to the transaction.
1119 *
1120 * Returns error number or 0 on success.
1121 *
1122 * Special care needs to be taken if the buffer already belongs to the
1123 * current committing transaction (in which case we should have frozen
1124 * data present for that commit). In that case, we don't relink the
1125 * buffer: that only gets done when the old transaction finally
1126 * completes its commit.
1127 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001128int jbd2_journal_dirty_metadata(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001129{
1130 transaction_t *transaction = handle->h_transaction;
1131 journal_t *journal = transaction->t_journal;
Jan Karaad56edad2013-03-11 13:24:56 -04001132 struct journal_head *jh;
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001133 int ret = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001134
Dave Kleikamp470decc2006-10-11 01:20:57 -07001135 if (is_handle_aborted(handle))
1136 goto out;
Jan Karaad56edad2013-03-11 13:24:56 -04001137 jh = jbd2_journal_grab_journal_head(bh);
1138 if (!jh) {
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001139 ret = -EUCLEAN;
1140 goto out;
1141 }
Jan Karaad56edad2013-03-11 13:24:56 -04001142 jbd_debug(5, "journal_head %p\n", jh);
1143 JBUFFER_TRACE(jh, "entry");
Dave Kleikamp470decc2006-10-11 01:20:57 -07001144
1145 jbd_lock_bh_state(bh);
1146
1147 if (jh->b_modified == 0) {
1148 /*
1149 * This buffer's got modified and becoming part
1150 * of the transaction. This needs to be done
1151 * once a transaction -bzzz
1152 */
1153 jh->b_modified = 1;
Theodore Ts'oceed0852013-12-08 21:12:59 -05001154 if (handle->h_buffer_credits <= 0) {
1155 ret = -ENOSPC;
1156 goto out_unlock_bh;
1157 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001158 handle->h_buffer_credits--;
1159 }
1160
1161 /*
1162 * fastpath, to avoid expensive locking. If this buffer is already
1163 * on the running transaction's metadata list there is nothing to do.
1164 * Nobody can take it off again because there is a handle open.
1165 * I _think_ we're OK here with SMP barriers - a mistaken decision will
1166 * result in this test being false, so we go in and take the locks.
1167 */
1168 if (jh->b_transaction == transaction && jh->b_jlist == BJ_Metadata) {
1169 JBUFFER_TRACE(jh, "fastpath");
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001170 if (unlikely(jh->b_transaction !=
1171 journal->j_running_transaction)) {
1172 printk(KERN_EMERG "JBD: %s: "
1173 "jh->b_transaction (%llu, %p, %u) != "
1174 "journal->j_running_transaction (%p, %u)",
1175 journal->j_devname,
1176 (unsigned long long) bh->b_blocknr,
1177 jh->b_transaction,
1178 jh->b_transaction ? jh->b_transaction->t_tid : 0,
1179 journal->j_running_transaction,
1180 journal->j_running_transaction ?
1181 journal->j_running_transaction->t_tid : 0);
1182 ret = -EINVAL;
1183 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001184 goto out_unlock_bh;
1185 }
1186
1187 set_buffer_jbddirty(bh);
1188
1189 /*
1190 * Metadata already on the current transaction list doesn't
1191 * need to be filed. Metadata on another transaction's list must
1192 * be committing, and will be refiled once the commit completes:
1193 * leave it alone for now.
1194 */
1195 if (jh->b_transaction != transaction) {
1196 JBUFFER_TRACE(jh, "already on other transaction");
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001197 if (unlikely(jh->b_transaction !=
1198 journal->j_committing_transaction)) {
1199 printk(KERN_EMERG "JBD: %s: "
1200 "jh->b_transaction (%llu, %p, %u) != "
1201 "journal->j_committing_transaction (%p, %u)",
1202 journal->j_devname,
1203 (unsigned long long) bh->b_blocknr,
1204 jh->b_transaction,
1205 jh->b_transaction ? jh->b_transaction->t_tid : 0,
1206 journal->j_committing_transaction,
1207 journal->j_committing_transaction ?
1208 journal->j_committing_transaction->t_tid : 0);
1209 ret = -EINVAL;
1210 }
1211 if (unlikely(jh->b_next_transaction != transaction)) {
1212 printk(KERN_EMERG "JBD: %s: "
1213 "jh->b_next_transaction (%llu, %p, %u) != "
1214 "transaction (%p, %u)",
1215 journal->j_devname,
1216 (unsigned long long) bh->b_blocknr,
1217 jh->b_next_transaction,
1218 jh->b_next_transaction ?
1219 jh->b_next_transaction->t_tid : 0,
1220 transaction, transaction->t_tid);
1221 ret = -EINVAL;
1222 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001223 /* And this case is illegal: we can't reuse another
1224 * transaction's data buffer, ever. */
1225 goto out_unlock_bh;
1226 }
1227
1228 /* That test should have eliminated the following case: */
Mingming Cao40191912008-01-28 23:58:27 -05001229 J_ASSERT_JH(jh, jh->b_frozen_data == NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001230
1231 JBUFFER_TRACE(jh, "file as BJ_Metadata");
1232 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001233 __jbd2_journal_file_buffer(jh, handle->h_transaction, BJ_Metadata);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001234 spin_unlock(&journal->j_list_lock);
1235out_unlock_bh:
1236 jbd_unlock_bh_state(bh);
Jan Karaad56edad2013-03-11 13:24:56 -04001237 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001238out:
1239 JBUFFER_TRACE(jh, "exit");
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001240 return ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001241}
1242
Dave Kleikamp470decc2006-10-11 01:20:57 -07001243/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001244 * void jbd2_journal_forget() - bforget() for potentially-journaled buffers.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001245 * @handle: transaction handle
1246 * @bh: bh to 'forget'
1247 *
1248 * We can only do the bforget if there are no commits pending against the
1249 * buffer. If the buffer is dirty in the current running transaction we
1250 * can safely unlink it.
1251 *
1252 * bh may not be a journalled buffer at all - it may be a non-JBD
1253 * buffer which came off the hashtable. Check for this.
1254 *
1255 * Decrements bh->b_count by one.
1256 *
1257 * Allow this call even if the handle has aborted --- it may be part of
1258 * the caller's cleanup after an abort.
1259 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001260int jbd2_journal_forget (handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001261{
1262 transaction_t *transaction = handle->h_transaction;
1263 journal_t *journal = transaction->t_journal;
1264 struct journal_head *jh;
1265 int drop_reserve = 0;
1266 int err = 0;
Josef Bacik1dfc3222008-04-17 10:38:59 -04001267 int was_modified = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001268
1269 BUFFER_TRACE(bh, "entry");
1270
1271 jbd_lock_bh_state(bh);
1272 spin_lock(&journal->j_list_lock);
1273
1274 if (!buffer_jbd(bh))
1275 goto not_jbd;
1276 jh = bh2jh(bh);
1277
1278 /* Critical error: attempting to delete a bitmap buffer, maybe?
1279 * Don't do any jbd operations, and return an error. */
1280 if (!J_EXPECT_JH(jh, !jh->b_committed_data,
1281 "inconsistent data on disk")) {
1282 err = -EIO;
1283 goto not_jbd;
1284 }
1285
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04001286 /* keep track of whether or not this transaction modified us */
Josef Bacik1dfc3222008-04-17 10:38:59 -04001287 was_modified = jh->b_modified;
1288
Dave Kleikamp470decc2006-10-11 01:20:57 -07001289 /*
1290 * The buffer's going from the transaction, we must drop
1291 * all references -bzzz
1292 */
1293 jh->b_modified = 0;
1294
1295 if (jh->b_transaction == handle->h_transaction) {
1296 J_ASSERT_JH(jh, !jh->b_frozen_data);
1297
1298 /* If we are forgetting a buffer which is already part
1299 * of this transaction, then we can just drop it from
1300 * the transaction immediately. */
1301 clear_buffer_dirty(bh);
1302 clear_buffer_jbddirty(bh);
1303
1304 JBUFFER_TRACE(jh, "belongs to current transaction: unfile");
1305
Josef Bacik1dfc3222008-04-17 10:38:59 -04001306 /*
1307 * we only want to drop a reference if this transaction
1308 * modified the buffer
1309 */
1310 if (was_modified)
1311 drop_reserve = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001312
1313 /*
1314 * We are no longer going to journal this buffer.
1315 * However, the commit of this transaction is still
1316 * important to the buffer: the delete that we are now
1317 * processing might obsolete an old log entry, so by
1318 * committing, we can satisfy the buffer's checkpoint.
1319 *
1320 * So, if we have a checkpoint on the buffer, we should
1321 * now refile the buffer on our BJ_Forget list so that
1322 * we know to remove the checkpoint after we commit.
1323 */
1324
1325 if (jh->b_cp_transaction) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001326 __jbd2_journal_temp_unlink_buffer(jh);
1327 __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001328 } else {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001329 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001330 if (!buffer_jbd(bh)) {
1331 spin_unlock(&journal->j_list_lock);
1332 jbd_unlock_bh_state(bh);
1333 __bforget(bh);
1334 goto drop;
1335 }
1336 }
1337 } else if (jh->b_transaction) {
1338 J_ASSERT_JH(jh, (jh->b_transaction ==
1339 journal->j_committing_transaction));
1340 /* However, if the buffer is still owned by a prior
1341 * (committing) transaction, we can't drop it yet... */
1342 JBUFFER_TRACE(jh, "belongs to older transaction");
1343 /* ... but we CAN drop it from the new transaction if we
1344 * have also modified it since the original commit. */
1345
1346 if (jh->b_next_transaction) {
1347 J_ASSERT(jh->b_next_transaction == transaction);
1348 jh->b_next_transaction = NULL;
Josef Bacik1dfc3222008-04-17 10:38:59 -04001349
1350 /*
1351 * only drop a reference if this transaction modified
1352 * the buffer
1353 */
1354 if (was_modified)
1355 drop_reserve = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001356 }
1357 }
1358
1359not_jbd:
1360 spin_unlock(&journal->j_list_lock);
1361 jbd_unlock_bh_state(bh);
1362 __brelse(bh);
1363drop:
1364 if (drop_reserve) {
1365 /* no need to reserve log space for this block -bzzz */
1366 handle->h_buffer_credits++;
1367 }
1368 return err;
1369}
1370
1371/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001372 * int jbd2_journal_stop() - complete a transaction
Dave Kleikamp470decc2006-10-11 01:20:57 -07001373 * @handle: tranaction to complete.
1374 *
1375 * All done for a particular handle.
1376 *
1377 * There is not much action needed here. We just return any remaining
1378 * buffer credits to the transaction and remove the handle. The only
1379 * complication is that we need to start a commit operation if the
1380 * filesystem is marked for synchronous update.
1381 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001382 * jbd2_journal_stop itself will not usually return an error, but it may
Dave Kleikamp470decc2006-10-11 01:20:57 -07001383 * do so in unusual circumstances. In particular, expect it to
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001384 * return -EIO if a jbd2_journal_abort has been executed since the
Dave Kleikamp470decc2006-10-11 01:20:57 -07001385 * transaction began.
1386 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001387int jbd2_journal_stop(handle_t *handle)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001388{
1389 transaction_t *transaction = handle->h_transaction;
1390 journal_t *journal = transaction->t_journal;
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001391 int err, wait_for_commit = 0;
1392 tid_t tid;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001393 pid_t pid;
1394
Dave Kleikamp470decc2006-10-11 01:20:57 -07001395 J_ASSERT(journal_current_handle() == handle);
1396
1397 if (is_handle_aborted(handle))
1398 err = -EIO;
OGAWA Hirofumi3e2a5322006-10-19 23:29:11 -07001399 else {
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001400 J_ASSERT(atomic_read(&transaction->t_updates) > 0);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001401 err = 0;
OGAWA Hirofumi3e2a5322006-10-19 23:29:11 -07001402 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001403
1404 if (--handle->h_ref > 0) {
1405 jbd_debug(4, "h_ref %d -> %d\n", handle->h_ref + 1,
1406 handle->h_ref);
1407 return err;
1408 }
1409
1410 jbd_debug(4, "Handle %p going down\n", handle);
Theodore Ts'o343d9c22013-02-08 13:00:22 -05001411 trace_jbd2_handle_stats(journal->j_fs_dev->bd_dev,
1412 handle->h_transaction->t_tid,
1413 handle->h_type, handle->h_line_no,
1414 jiffies - handle->h_start_jiffies,
1415 handle->h_sync, handle->h_requested_credits,
1416 (handle->h_requested_credits -
1417 handle->h_buffer_credits));
Dave Kleikamp470decc2006-10-11 01:20:57 -07001418
1419 /*
1420 * Implement synchronous transaction batching. If the handle
1421 * was synchronous, don't force a commit immediately. Let's
Josef Bacike07f7182008-11-26 01:14:26 -05001422 * yield and let another thread piggyback onto this
1423 * transaction. Keep doing that while new threads continue to
1424 * arrive. It doesn't cost much - we're about to run a commit
1425 * and sleep on IO anyway. Speeds up many-threaded, many-dir
1426 * operations by 30x or more...
Dave Kleikamp470decc2006-10-11 01:20:57 -07001427 *
Josef Bacike07f7182008-11-26 01:14:26 -05001428 * We try and optimize the sleep time against what the
1429 * underlying disk can do, instead of having a static sleep
1430 * time. This is useful for the case where our storage is so
1431 * fast that it is more optimal to go ahead and force a flush
1432 * and wait for the transaction to be committed than it is to
1433 * wait for an arbitrary amount of time for new writers to
1434 * join the transaction. We achieve this by measuring how
1435 * long it takes to commit a transaction, and compare it with
1436 * how long this transaction has been running, and if run time
1437 * < commit time then we sleep for the delta and commit. This
1438 * greatly helps super fast disks that would see slowdowns as
1439 * more threads started doing fsyncs.
1440 *
1441 * But don't do this if this process was the most recent one
1442 * to perform a synchronous write. We do this to detect the
1443 * case where a single process is doing a stream of sync
1444 * writes. No point in waiting for joiners in that case.
Eric Sandeen39f9c0e2014-07-05 19:18:22 -04001445 *
1446 * Setting max_batch_time to 0 disables this completely.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001447 */
1448 pid = current->pid;
Eric Sandeen39f9c0e2014-07-05 19:18:22 -04001449 if (handle->h_sync && journal->j_last_sync_writer != pid &&
1450 journal->j_max_batch_time) {
Josef Bacike07f7182008-11-26 01:14:26 -05001451 u64 commit_time, trans_time;
1452
Dave Kleikamp470decc2006-10-11 01:20:57 -07001453 journal->j_last_sync_writer = pid;
Josef Bacike07f7182008-11-26 01:14:26 -05001454
Theodore Ts'oa931da62010-08-03 21:35:12 -04001455 read_lock(&journal->j_state_lock);
Josef Bacike07f7182008-11-26 01:14:26 -05001456 commit_time = journal->j_average_commit_time;
Theodore Ts'oa931da62010-08-03 21:35:12 -04001457 read_unlock(&journal->j_state_lock);
Josef Bacike07f7182008-11-26 01:14:26 -05001458
1459 trans_time = ktime_to_ns(ktime_sub(ktime_get(),
1460 transaction->t_start_time));
1461
Theodore Ts'o30773842009-01-03 20:27:38 -05001462 commit_time = max_t(u64, commit_time,
1463 1000*journal->j_min_batch_time);
Josef Bacike07f7182008-11-26 01:14:26 -05001464 commit_time = min_t(u64, commit_time,
Theodore Ts'o30773842009-01-03 20:27:38 -05001465 1000*journal->j_max_batch_time);
Josef Bacike07f7182008-11-26 01:14:26 -05001466
1467 if (trans_time < commit_time) {
1468 ktime_t expires = ktime_add_ns(ktime_get(),
1469 commit_time);
1470 set_current_state(TASK_UNINTERRUPTIBLE);
1471 schedule_hrtimeout(&expires, HRTIMER_MODE_ABS);
1472 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001473 }
1474
Theodore Ts'o70585482009-03-25 23:35:46 -04001475 if (handle->h_sync)
1476 transaction->t_synchronous_commit = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001477 current->journal_info = NULL;
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001478 atomic_sub(handle->h_buffer_credits,
1479 &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001480
1481 /*
1482 * If the handle is marked SYNC, we need to set another commit
1483 * going! We also want to force a commit if the current
1484 * transaction is occupying too much of the log, or if the
1485 * transaction is too old now.
1486 */
1487 if (handle->h_sync ||
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001488 (atomic_read(&transaction->t_outstanding_credits) >
1489 journal->j_max_transaction_buffers) ||
1490 time_after_eq(jiffies, transaction->t_expires)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001491 /* Do this even for aborted journals: an abort still
1492 * completes the commit thread, it just doesn't write
1493 * anything to disk. */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001494
Dave Kleikamp470decc2006-10-11 01:20:57 -07001495 jbd_debug(2, "transaction too old, requesting commit for "
1496 "handle %p\n", handle);
1497 /* This is non-blocking */
Theodore Ts'oc35a56a2010-05-16 05:00:00 -04001498 jbd2_log_start_commit(journal, transaction->t_tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001499
1500 /*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001501 * Special case: JBD2_SYNC synchronous updates require us
Dave Kleikamp470decc2006-10-11 01:20:57 -07001502 * to wait for the commit to complete.
1503 */
1504 if (handle->h_sync && !(current->flags & PF_MEMALLOC))
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001505 wait_for_commit = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001506 }
1507
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001508 /*
1509 * Once we drop t_updates, if it goes to zero the transaction
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001510 * could start committing on us and eventually disappear. So
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001511 * once we do this, we must not dereference transaction
1512 * pointer again.
1513 */
1514 tid = transaction->t_tid;
1515 if (atomic_dec_and_test(&transaction->t_updates)) {
1516 wake_up(&journal->j_wait_updates);
1517 if (journal->j_barrier_count)
1518 wake_up(&journal->j_wait_transaction_locked);
1519 }
1520
1521 if (wait_for_commit)
1522 err = jbd2_log_wait_commit(journal, tid);
1523
Ingo Molnar3295f0e2008-08-11 10:30:30 +02001524 lock_map_release(&handle->h_lockdep_map);
Mingming Cao7b751062008-01-28 23:58:27 -05001525
Mingming Caoaf1e76d2007-10-16 18:38:25 -04001526 jbd2_free_handle(handle);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001527 return err;
1528}
1529
Randy Dunlap5648ba52008-04-17 10:38:59 -04001530/**
1531 * int jbd2_journal_force_commit() - force any uncommitted transactions
Dave Kleikamp470decc2006-10-11 01:20:57 -07001532 * @journal: journal to force
1533 *
1534 * For synchronous operations: force any uncommitted transactions
1535 * to disk. May seem kludgy, but it reuses all the handle batching
1536 * code in a very simple manner.
1537 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001538int jbd2_journal_force_commit(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001539{
1540 handle_t *handle;
1541 int ret;
1542
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001543 handle = jbd2_journal_start(journal, 1);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001544 if (IS_ERR(handle)) {
1545 ret = PTR_ERR(handle);
1546 } else {
1547 handle->h_sync = 1;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001548 ret = jbd2_journal_stop(handle);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001549 }
1550 return ret;
1551}
1552
1553/*
1554 *
1555 * List management code snippets: various functions for manipulating the
1556 * transaction buffer lists.
1557 *
1558 */
1559
1560/*
1561 * Append a buffer to a transaction list, given the transaction's list head
1562 * pointer.
1563 *
1564 * j_list_lock is held.
1565 *
1566 * jbd_lock_bh_state(jh2bh(jh)) is held.
1567 */
1568
1569static inline void
1570__blist_add_buffer(struct journal_head **list, struct journal_head *jh)
1571{
1572 if (!*list) {
1573 jh->b_tnext = jh->b_tprev = jh;
1574 *list = jh;
1575 } else {
1576 /* Insert at the tail of the list to preserve order */
1577 struct journal_head *first = *list, *last = first->b_tprev;
1578 jh->b_tprev = last;
1579 jh->b_tnext = first;
1580 last->b_tnext = first->b_tprev = jh;
1581 }
1582}
1583
1584/*
1585 * Remove a buffer from a transaction list, given the transaction's list
1586 * head pointer.
1587 *
1588 * Called with j_list_lock held, and the journal may not be locked.
1589 *
1590 * jbd_lock_bh_state(jh2bh(jh)) is held.
1591 */
1592
1593static inline void
1594__blist_del_buffer(struct journal_head **list, struct journal_head *jh)
1595{
1596 if (*list == jh) {
1597 *list = jh->b_tnext;
1598 if (*list == jh)
1599 *list = NULL;
1600 }
1601 jh->b_tprev->b_tnext = jh->b_tnext;
1602 jh->b_tnext->b_tprev = jh->b_tprev;
1603}
1604
1605/*
1606 * Remove a buffer from the appropriate transaction list.
1607 *
1608 * Note that this function can *change* the value of
Jan Kara87c89c22008-07-11 19:27:31 -04001609 * bh->b_transaction->t_buffers, t_forget, t_iobuf_list, t_shadow_list,
1610 * t_log_list or t_reserved_list. If the caller is holding onto a copy of one
1611 * of these pointers, it could go bad. Generally the caller needs to re-read
1612 * the pointer from the transaction_t.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001613 *
Jan Kara5bebccf2012-03-13 22:25:06 -04001614 * Called under j_list_lock.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001615 */
Jan Kara5bebccf2012-03-13 22:25:06 -04001616static void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001617{
1618 struct journal_head **list = NULL;
1619 transaction_t *transaction;
1620 struct buffer_head *bh = jh2bh(jh);
1621
1622 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
1623 transaction = jh->b_transaction;
1624 if (transaction)
1625 assert_spin_locked(&transaction->t_journal->j_list_lock);
1626
1627 J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
1628 if (jh->b_jlist != BJ_None)
Mingming Cao40191912008-01-28 23:58:27 -05001629 J_ASSERT_JH(jh, transaction != NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001630
1631 switch (jh->b_jlist) {
1632 case BJ_None:
1633 return;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001634 case BJ_Metadata:
1635 transaction->t_nr_buffers--;
1636 J_ASSERT_JH(jh, transaction->t_nr_buffers >= 0);
1637 list = &transaction->t_buffers;
1638 break;
1639 case BJ_Forget:
1640 list = &transaction->t_forget;
1641 break;
1642 case BJ_IO:
1643 list = &transaction->t_iobuf_list;
1644 break;
1645 case BJ_Shadow:
1646 list = &transaction->t_shadow_list;
1647 break;
1648 case BJ_LogCtl:
1649 list = &transaction->t_log_list;
1650 break;
1651 case BJ_Reserved:
1652 list = &transaction->t_reserved_list;
1653 break;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001654 }
1655
1656 __blist_del_buffer(list, jh);
1657 jh->b_jlist = BJ_None;
1658 if (test_clear_buffer_jbddirty(bh))
1659 mark_buffer_dirty(bh); /* Expose it to the VM */
1660}
1661
Jan Karade1b7942011-06-13 15:38:22 -04001662/*
1663 * Remove buffer from all transactions.
1664 *
1665 * Called with bh_state lock and j_list_lock
1666 *
1667 * jh and bh may be already freed when this function returns.
1668 */
1669static void __jbd2_journal_unfile_buffer(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001670{
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001671 __jbd2_journal_temp_unlink_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001672 jh->b_transaction = NULL;
Jan Karade1b7942011-06-13 15:38:22 -04001673 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001674}
1675
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001676void jbd2_journal_unfile_buffer(journal_t *journal, struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001677{
Jan Karade1b7942011-06-13 15:38:22 -04001678 struct buffer_head *bh = jh2bh(jh);
1679
1680 /* Get reference so that buffer cannot be freed before we unlock it */
1681 get_bh(bh);
1682 jbd_lock_bh_state(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001683 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001684 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001685 spin_unlock(&journal->j_list_lock);
Jan Karade1b7942011-06-13 15:38:22 -04001686 jbd_unlock_bh_state(bh);
1687 __brelse(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001688}
1689
1690/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001691 * Called from jbd2_journal_try_to_free_buffers().
Dave Kleikamp470decc2006-10-11 01:20:57 -07001692 *
1693 * Called under jbd_lock_bh_state(bh)
1694 */
1695static void
1696__journal_try_to_free_buffer(journal_t *journal, struct buffer_head *bh)
1697{
1698 struct journal_head *jh;
1699
1700 jh = bh2jh(bh);
1701
1702 if (buffer_locked(bh) || buffer_dirty(bh))
1703 goto out;
1704
Mingming Cao40191912008-01-28 23:58:27 -05001705 if (jh->b_next_transaction != NULL)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001706 goto out;
1707
1708 spin_lock(&journal->j_list_lock);
Jan Kara87c89c22008-07-11 19:27:31 -04001709 if (jh->b_cp_transaction != NULL && jh->b_transaction == NULL) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001710 /* written-back checkpointed metadata buffer */
Jan Karac254c9e2012-03-13 22:27:44 -04001711 JBUFFER_TRACE(jh, "remove from checkpoint list");
1712 __jbd2_journal_remove_checkpoint(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001713 }
1714 spin_unlock(&journal->j_list_lock);
1715out:
1716 return;
1717}
1718
Dave Kleikamp470decc2006-10-11 01:20:57 -07001719/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001720 * int jbd2_journal_try_to_free_buffers() - try to free page buffers.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001721 * @journal: journal for operation
1722 * @page: to try and free
Mingming Cao530576b2008-07-13 21:06:39 -04001723 * @gfp_mask: we use the mask to detect how hard should we try to release
1724 * buffers. If __GFP_WAIT and __GFP_FS is set, we wait for commit code to
1725 * release the buffers.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001726 *
1727 *
1728 * For all the buffers on this page,
1729 * if they are fully written out ordered data, move them onto BUF_CLEAN
1730 * so try_to_free_buffers() can reap them.
1731 *
1732 * This function returns non-zero if we wish try_to_free_buffers()
1733 * to be called. We do this if the page is releasable by try_to_free_buffers().
1734 * We also do it if the page has locked or dirty buffers and the caller wants
1735 * us to perform sync or async writeout.
1736 *
1737 * This complicates JBD locking somewhat. We aren't protected by the
1738 * BKL here. We wish to remove the buffer from its committing or
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001739 * running transaction's ->t_datalist via __jbd2_journal_unfile_buffer.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001740 *
1741 * This may *change* the value of transaction_t->t_datalist, so anyone
1742 * who looks at t_datalist needs to lock against this function.
1743 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001744 * Even worse, someone may be doing a jbd2_journal_dirty_data on this
1745 * buffer. So we need to lock against that. jbd2_journal_dirty_data()
Dave Kleikamp470decc2006-10-11 01:20:57 -07001746 * will come out of the lock with the buffer dirty, which makes it
1747 * ineligible for release here.
1748 *
1749 * Who else is affected by this? hmm... Really the only contender
1750 * is do_get_write_access() - it could be looking at the buffer while
1751 * journal_try_to_free_buffer() is changing its state. But that
1752 * cannot happen because we never reallocate freed data as metadata
1753 * while the data is part of a transaction. Yes?
Mingming Cao530576b2008-07-13 21:06:39 -04001754 *
1755 * Return 0 on failure, 1 on success
Dave Kleikamp470decc2006-10-11 01:20:57 -07001756 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001757int jbd2_journal_try_to_free_buffers(journal_t *journal,
Mingming Cao530576b2008-07-13 21:06:39 -04001758 struct page *page, gfp_t gfp_mask)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001759{
1760 struct buffer_head *head;
1761 struct buffer_head *bh;
1762 int ret = 0;
1763
1764 J_ASSERT(PageLocked(page));
1765
1766 head = page_buffers(page);
1767 bh = head;
1768 do {
1769 struct journal_head *jh;
1770
1771 /*
1772 * We take our own ref against the journal_head here to avoid
1773 * having to add tons of locking around each instance of
Mingming Cao530576b2008-07-13 21:06:39 -04001774 * jbd2_journal_put_journal_head().
Dave Kleikamp470decc2006-10-11 01:20:57 -07001775 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001776 jh = jbd2_journal_grab_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001777 if (!jh)
1778 continue;
1779
1780 jbd_lock_bh_state(bh);
1781 __journal_try_to_free_buffer(journal, bh);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001782 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001783 jbd_unlock_bh_state(bh);
1784 if (buffer_jbd(bh))
1785 goto busy;
1786 } while ((bh = bh->b_this_page) != head);
Mingming Cao530576b2008-07-13 21:06:39 -04001787
Dave Kleikamp470decc2006-10-11 01:20:57 -07001788 ret = try_to_free_buffers(page);
Mingming Cao530576b2008-07-13 21:06:39 -04001789
Dave Kleikamp470decc2006-10-11 01:20:57 -07001790busy:
1791 return ret;
1792}
1793
1794/*
1795 * This buffer is no longer needed. If it is on an older transaction's
1796 * checkpoint list we need to record it on this transaction's forget list
1797 * to pin this buffer (and hence its checkpointing transaction) down until
1798 * this transaction commits. If the buffer isn't on a checkpoint list, we
1799 * release it.
1800 * Returns non-zero if JBD no longer has an interest in the buffer.
1801 *
1802 * Called under j_list_lock.
1803 *
1804 * Called under jbd_lock_bh_state(bh).
1805 */
1806static int __dispose_buffer(struct journal_head *jh, transaction_t *transaction)
1807{
1808 int may_free = 1;
1809 struct buffer_head *bh = jh2bh(jh);
1810
Dave Kleikamp470decc2006-10-11 01:20:57 -07001811 if (jh->b_cp_transaction) {
1812 JBUFFER_TRACE(jh, "on running+cp transaction");
Jan Karade1b7942011-06-13 15:38:22 -04001813 __jbd2_journal_temp_unlink_buffer(jh);
Jan Karaf91d1d02009-07-13 16:16:20 -04001814 /*
1815 * We don't want to write the buffer anymore, clear the
1816 * bit so that we don't confuse checks in
1817 * __journal_file_buffer
1818 */
1819 clear_buffer_dirty(bh);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001820 __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001821 may_free = 0;
1822 } else {
1823 JBUFFER_TRACE(jh, "on running transaction");
Jan Karade1b7942011-06-13 15:38:22 -04001824 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001825 }
1826 return may_free;
1827}
1828
1829/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001830 * jbd2_journal_invalidatepage
Dave Kleikamp470decc2006-10-11 01:20:57 -07001831 *
1832 * This code is tricky. It has a number of cases to deal with.
1833 *
1834 * There are two invariants which this code relies on:
1835 *
1836 * i_size must be updated on disk before we start calling invalidatepage on the
1837 * data.
1838 *
1839 * This is done in ext3 by defining an ext3_setattr method which
1840 * updates i_size before truncate gets going. By maintaining this
1841 * invariant, we can be sure that it is safe to throw away any buffers
1842 * attached to the current transaction: once the transaction commits,
1843 * we know that the data will not be needed.
1844 *
1845 * Note however that we can *not* throw away data belonging to the
1846 * previous, committing transaction!
1847 *
1848 * Any disk blocks which *are* part of the previous, committing
1849 * transaction (and which therefore cannot be discarded immediately) are
1850 * not going to be reused in the new running transaction
1851 *
1852 * The bitmap committed_data images guarantee this: any block which is
1853 * allocated in one transaction and removed in the next will be marked
1854 * as in-use in the committed_data bitmap, so cannot be reused until
1855 * the next transaction to delete the block commits. This means that
1856 * leaving committing buffers dirty is quite safe: the disk blocks
1857 * cannot be reallocated to a different file and so buffer aliasing is
1858 * not possible.
1859 *
1860 *
1861 * The above applies mainly to ordered data mode. In writeback mode we
1862 * don't make guarantees about the order in which data hits disk --- in
1863 * particular we don't guarantee that new dirty data is flushed before
1864 * transaction commit --- so it is always safe just to discard data
1865 * immediately in that mode. --sct
1866 */
1867
1868/*
1869 * The journal_unmap_buffer helper function returns zero if the buffer
1870 * concerned remains pinned as an anonymous buffer belonging to an older
1871 * transaction.
1872 *
1873 * We're outside-transaction here. Either or both of j_running_transaction
1874 * and j_committing_transaction may be NULL.
1875 */
Jan Karab794e7a2012-09-26 23:11:13 -04001876static int journal_unmap_buffer(journal_t *journal, struct buffer_head *bh,
1877 int partial_page)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001878{
1879 transaction_t *transaction;
1880 struct journal_head *jh;
1881 int may_free = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001882
1883 BUFFER_TRACE(bh, "entry");
1884
1885 /*
1886 * It is safe to proceed here without the j_list_lock because the
1887 * buffers cannot be stolen by try_to_free_buffers as long as we are
1888 * holding the page lock. --sct
1889 */
1890
1891 if (!buffer_jbd(bh))
1892 goto zap_buffer_unlocked;
1893
Jan Kara87c89c22008-07-11 19:27:31 -04001894 /* OK, we have data buffer in journaled mode */
Theodore Ts'oa931da62010-08-03 21:35:12 -04001895 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001896 jbd_lock_bh_state(bh);
1897 spin_lock(&journal->j_list_lock);
1898
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001899 jh = jbd2_journal_grab_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001900 if (!jh)
1901 goto zap_buffer_no_jh;
1902
dingdinghuaba869022010-02-15 16:35:42 -05001903 /*
1904 * We cannot remove the buffer from checkpoint lists until the
1905 * transaction adding inode to orphan list (let's call it T)
1906 * is committed. Otherwise if the transaction changing the
1907 * buffer would be cleaned from the journal before T is
1908 * committed, a crash will cause that the correct contents of
1909 * the buffer will be lost. On the other hand we have to
1910 * clear the buffer dirty bit at latest at the moment when the
1911 * transaction marking the buffer as freed in the filesystem
1912 * structures is committed because from that moment on the
Jan Karab794e7a2012-09-26 23:11:13 -04001913 * block can be reallocated and used by a different page.
dingdinghuaba869022010-02-15 16:35:42 -05001914 * Since the block hasn't been freed yet but the inode has
1915 * already been added to orphan list, it is safe for us to add
1916 * the buffer to BJ_Forget list of the newest transaction.
Jan Karab794e7a2012-09-26 23:11:13 -04001917 *
1918 * Also we have to clear buffer_mapped flag of a truncated buffer
1919 * because the buffer_head may be attached to the page straddling
1920 * i_size (can happen only when blocksize < pagesize) and thus the
1921 * buffer_head can be reused when the file is extended again. So we end
1922 * up keeping around invalidated buffers attached to transactions'
1923 * BJ_Forget list just to stop checkpointing code from cleaning up
1924 * the transaction this buffer was modified in.
dingdinghuaba869022010-02-15 16:35:42 -05001925 */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001926 transaction = jh->b_transaction;
1927 if (transaction == NULL) {
1928 /* First case: not on any transaction. If it
1929 * has no checkpoint link, then we can zap it:
1930 * it's a writeback-mode buffer so we don't care
1931 * if it hits disk safely. */
1932 if (!jh->b_cp_transaction) {
1933 JBUFFER_TRACE(jh, "not on any transaction: zap");
1934 goto zap_buffer;
1935 }
1936
1937 if (!buffer_dirty(bh)) {
1938 /* bdflush has written it. We can drop it now */
1939 goto zap_buffer;
1940 }
1941
1942 /* OK, it must be in the journal but still not
1943 * written fully to disk: it's metadata or
1944 * journaled data... */
1945
1946 if (journal->j_running_transaction) {
1947 /* ... and once the current transaction has
1948 * committed, the buffer won't be needed any
1949 * longer. */
1950 JBUFFER_TRACE(jh, "checkpointed: add to BJ_Forget");
Jan Karab794e7a2012-09-26 23:11:13 -04001951 may_free = __dispose_buffer(jh,
Dave Kleikamp470decc2006-10-11 01:20:57 -07001952 journal->j_running_transaction);
Jan Karab794e7a2012-09-26 23:11:13 -04001953 goto zap_buffer;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001954 } else {
1955 /* There is no currently-running transaction. So the
1956 * orphan record which we wrote for this file must have
1957 * passed into commit. We must attach this buffer to
1958 * the committing transaction, if it exists. */
1959 if (journal->j_committing_transaction) {
1960 JBUFFER_TRACE(jh, "give to committing trans");
Jan Karab794e7a2012-09-26 23:11:13 -04001961 may_free = __dispose_buffer(jh,
Dave Kleikamp470decc2006-10-11 01:20:57 -07001962 journal->j_committing_transaction);
Jan Karab794e7a2012-09-26 23:11:13 -04001963 goto zap_buffer;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001964 } else {
1965 /* The orphan record's transaction has
1966 * committed. We can cleanse this buffer */
1967 clear_buffer_jbddirty(bh);
1968 goto zap_buffer;
1969 }
1970 }
1971 } else if (transaction == journal->j_committing_transaction) {
Eric Sandeen9b579882006-10-28 10:38:28 -07001972 JBUFFER_TRACE(jh, "on committing transaction");
Dave Kleikamp470decc2006-10-11 01:20:57 -07001973 /*
dingdinghuaba869022010-02-15 16:35:42 -05001974 * The buffer is committing, we simply cannot touch
Jan Karab794e7a2012-09-26 23:11:13 -04001975 * it. If the page is straddling i_size we have to wait
1976 * for commit and try again.
1977 */
1978 if (partial_page) {
Jan Karab794e7a2012-09-26 23:11:13 -04001979 jbd2_journal_put_journal_head(jh);
1980 spin_unlock(&journal->j_list_lock);
1981 jbd_unlock_bh_state(bh);
1982 write_unlock(&journal->j_state_lock);
Jan Kara53e87262012-12-25 13:29:52 -05001983 return -EBUSY;
Jan Karab794e7a2012-09-26 23:11:13 -04001984 }
1985 /*
1986 * OK, buffer won't be reachable after truncate. We just set
1987 * j_next_transaction to the running transaction (if there is
1988 * one) and mark buffer as freed so that commit code knows it
1989 * should clear dirty bits when it is done with the buffer.
dingdinghuaba869022010-02-15 16:35:42 -05001990 */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001991 set_buffer_freed(bh);
dingdinghuaba869022010-02-15 16:35:42 -05001992 if (journal->j_running_transaction && buffer_jbddirty(bh))
1993 jh->b_next_transaction = journal->j_running_transaction;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001994 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001995 spin_unlock(&journal->j_list_lock);
1996 jbd_unlock_bh_state(bh);
Theodore Ts'oa931da62010-08-03 21:35:12 -04001997 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001998 return 0;
1999 } else {
2000 /* Good, the buffer belongs to the running transaction.
2001 * We are writing our own transaction's data, not any
2002 * previous one's, so it is safe to throw it away
2003 * (remember that we expect the filesystem to have set
2004 * i_size already for this truncate so recovery will not
2005 * expose the disk blocks we are discarding here.) */
2006 J_ASSERT_JH(jh, transaction == journal->j_running_transaction);
Eric Sandeen9b579882006-10-28 10:38:28 -07002007 JBUFFER_TRACE(jh, "on running transaction");
Dave Kleikamp470decc2006-10-11 01:20:57 -07002008 may_free = __dispose_buffer(jh, transaction);
2009 }
2010
2011zap_buffer:
Jan Karab794e7a2012-09-26 23:11:13 -04002012 /*
2013 * This is tricky. Although the buffer is truncated, it may be reused
2014 * if blocksize < pagesize and it is attached to the page straddling
2015 * EOF. Since the buffer might have been added to BJ_Forget list of the
2016 * running transaction, journal_get_write_access() won't clear
2017 * b_modified and credit accounting gets confused. So clear b_modified
2018 * here.
2019 */
2020 jh->b_modified = 0;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002021 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002022zap_buffer_no_jh:
2023 spin_unlock(&journal->j_list_lock);
2024 jbd_unlock_bh_state(bh);
Theodore Ts'oa931da62010-08-03 21:35:12 -04002025 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002026zap_buffer_unlocked:
2027 clear_buffer_dirty(bh);
2028 J_ASSERT_BH(bh, !buffer_jbddirty(bh));
2029 clear_buffer_mapped(bh);
2030 clear_buffer_req(bh);
2031 clear_buffer_new(bh);
Eric Sandeen15291162012-02-20 17:53:01 -05002032 clear_buffer_delay(bh);
2033 clear_buffer_unwritten(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002034 bh->b_bdev = NULL;
2035 return may_free;
2036}
2037
2038/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002039 * void jbd2_journal_invalidatepage()
Dave Kleikamp470decc2006-10-11 01:20:57 -07002040 * @journal: journal to use for flush...
2041 * @page: page to flush
2042 * @offset: length of page to invalidate.
2043 *
Jan Kara53e87262012-12-25 13:29:52 -05002044 * Reap page buffers containing data after offset in page. Can return -EBUSY
2045 * if buffers are part of the committing transaction and the page is straddling
2046 * i_size. Caller then has to wait for current commit and try again.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002047 */
Jan Kara53e87262012-12-25 13:29:52 -05002048int jbd2_journal_invalidatepage(journal_t *journal,
2049 struct page *page,
2050 unsigned long offset)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002051{
2052 struct buffer_head *head, *bh, *next;
2053 unsigned int curr_off = 0;
2054 int may_free = 1;
Jan Kara53e87262012-12-25 13:29:52 -05002055 int ret = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002056
2057 if (!PageLocked(page))
2058 BUG();
2059 if (!page_has_buffers(page))
Jan Kara53e87262012-12-25 13:29:52 -05002060 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002061
2062 /* We will potentially be playing with lists other than just the
2063 * data lists (especially for journaled data mode), so be
2064 * cautious in our locking. */
2065
2066 head = bh = page_buffers(page);
2067 do {
2068 unsigned int next_off = curr_off + bh->b_size;
2069 next = bh->b_this_page;
2070
2071 if (offset <= curr_off) {
2072 /* This block is wholly outside the truncation point */
2073 lock_buffer(bh);
Jan Kara53e87262012-12-25 13:29:52 -05002074 ret = journal_unmap_buffer(journal, bh, offset > 0);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002075 unlock_buffer(bh);
Jan Kara53e87262012-12-25 13:29:52 -05002076 if (ret < 0)
2077 return ret;
2078 may_free &= ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002079 }
2080 curr_off = next_off;
2081 bh = next;
2082
2083 } while (bh != head);
2084
2085 if (!offset) {
2086 if (may_free && try_to_free_buffers(page))
2087 J_ASSERT(!page_has_buffers(page));
2088 }
Jan Kara53e87262012-12-25 13:29:52 -05002089 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002090}
2091
2092/*
2093 * File a buffer on the given transaction list.
2094 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002095void __jbd2_journal_file_buffer(struct journal_head *jh,
Dave Kleikamp470decc2006-10-11 01:20:57 -07002096 transaction_t *transaction, int jlist)
2097{
2098 struct journal_head **list = NULL;
2099 int was_dirty = 0;
2100 struct buffer_head *bh = jh2bh(jh);
2101
2102 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
2103 assert_spin_locked(&transaction->t_journal->j_list_lock);
2104
2105 J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
2106 J_ASSERT_JH(jh, jh->b_transaction == transaction ||
Mingming Cao40191912008-01-28 23:58:27 -05002107 jh->b_transaction == NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002108
2109 if (jh->b_transaction && jh->b_jlist == jlist)
2110 return;
2111
Dave Kleikamp470decc2006-10-11 01:20:57 -07002112 if (jlist == BJ_Metadata || jlist == BJ_Reserved ||
2113 jlist == BJ_Shadow || jlist == BJ_Forget) {
Jan Karaf91d1d02009-07-13 16:16:20 -04002114 /*
2115 * For metadata buffers, we track dirty bit in buffer_jbddirty
2116 * instead of buffer_dirty. We should not see a dirty bit set
2117 * here because we clear it in do_get_write_access but e.g.
2118 * tune2fs can modify the sb and set the dirty bit at any time
2119 * so we try to gracefully handle that.
2120 */
2121 if (buffer_dirty(bh))
2122 warn_dirty_buffer(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002123 if (test_clear_buffer_dirty(bh) ||
2124 test_clear_buffer_jbddirty(bh))
2125 was_dirty = 1;
2126 }
2127
2128 if (jh->b_transaction)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002129 __jbd2_journal_temp_unlink_buffer(jh);
Jan Karade1b7942011-06-13 15:38:22 -04002130 else
2131 jbd2_journal_grab_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002132 jh->b_transaction = transaction;
2133
2134 switch (jlist) {
2135 case BJ_None:
2136 J_ASSERT_JH(jh, !jh->b_committed_data);
2137 J_ASSERT_JH(jh, !jh->b_frozen_data);
2138 return;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002139 case BJ_Metadata:
2140 transaction->t_nr_buffers++;
2141 list = &transaction->t_buffers;
2142 break;
2143 case BJ_Forget:
2144 list = &transaction->t_forget;
2145 break;
2146 case BJ_IO:
2147 list = &transaction->t_iobuf_list;
2148 break;
2149 case BJ_Shadow:
2150 list = &transaction->t_shadow_list;
2151 break;
2152 case BJ_LogCtl:
2153 list = &transaction->t_log_list;
2154 break;
2155 case BJ_Reserved:
2156 list = &transaction->t_reserved_list;
2157 break;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002158 }
2159
2160 __blist_add_buffer(list, jh);
2161 jh->b_jlist = jlist;
2162
2163 if (was_dirty)
2164 set_buffer_jbddirty(bh);
2165}
2166
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002167void jbd2_journal_file_buffer(struct journal_head *jh,
Dave Kleikamp470decc2006-10-11 01:20:57 -07002168 transaction_t *transaction, int jlist)
2169{
2170 jbd_lock_bh_state(jh2bh(jh));
2171 spin_lock(&transaction->t_journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002172 __jbd2_journal_file_buffer(jh, transaction, jlist);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002173 spin_unlock(&transaction->t_journal->j_list_lock);
2174 jbd_unlock_bh_state(jh2bh(jh));
2175}
2176
2177/*
2178 * Remove a buffer from its current buffer list in preparation for
2179 * dropping it from its current transaction entirely. If the buffer has
2180 * already started to be used by a subsequent transaction, refile the
2181 * buffer on that transaction's metadata list.
2182 *
Jan Karade1b7942011-06-13 15:38:22 -04002183 * Called under j_list_lock
Dave Kleikamp470decc2006-10-11 01:20:57 -07002184 * Called under jbd_lock_bh_state(jh2bh(jh))
Jan Karade1b7942011-06-13 15:38:22 -04002185 *
2186 * jh and bh may be already free when this function returns
Dave Kleikamp470decc2006-10-11 01:20:57 -07002187 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002188void __jbd2_journal_refile_buffer(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002189{
dingdinghuaba869022010-02-15 16:35:42 -05002190 int was_dirty, jlist;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002191 struct buffer_head *bh = jh2bh(jh);
2192
2193 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
2194 if (jh->b_transaction)
2195 assert_spin_locked(&jh->b_transaction->t_journal->j_list_lock);
2196
2197 /* If the buffer is now unused, just drop it. */
2198 if (jh->b_next_transaction == NULL) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002199 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002200 return;
2201 }
2202
2203 /*
2204 * It has been modified by a later transaction: add it to the new
2205 * transaction's metadata list.
2206 */
2207
2208 was_dirty = test_clear_buffer_jbddirty(bh);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002209 __jbd2_journal_temp_unlink_buffer(jh);
Jan Karade1b7942011-06-13 15:38:22 -04002210 /*
2211 * We set b_transaction here because b_next_transaction will inherit
2212 * our jh reference and thus __jbd2_journal_file_buffer() must not
2213 * take a new one.
2214 */
Dave Kleikamp470decc2006-10-11 01:20:57 -07002215 jh->b_transaction = jh->b_next_transaction;
2216 jh->b_next_transaction = NULL;
dingdinghuaba869022010-02-15 16:35:42 -05002217 if (buffer_freed(bh))
2218 jlist = BJ_Forget;
2219 else if (jh->b_modified)
2220 jlist = BJ_Metadata;
2221 else
2222 jlist = BJ_Reserved;
2223 __jbd2_journal_file_buffer(jh, jh->b_transaction, jlist);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002224 J_ASSERT_JH(jh, jh->b_transaction->t_state == T_RUNNING);
2225
2226 if (was_dirty)
2227 set_buffer_jbddirty(bh);
2228}
2229
2230/*
Jan Karade1b7942011-06-13 15:38:22 -04002231 * __jbd2_journal_refile_buffer() with necessary locking added. We take our
2232 * bh reference so that we can safely unlock bh.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002233 *
Jan Karade1b7942011-06-13 15:38:22 -04002234 * The jh and bh may be freed by this call.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002235 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002236void jbd2_journal_refile_buffer(journal_t *journal, struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002237{
2238 struct buffer_head *bh = jh2bh(jh);
2239
Jan Karade1b7942011-06-13 15:38:22 -04002240 /* Get reference so that buffer cannot be freed before we unlock it */
2241 get_bh(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002242 jbd_lock_bh_state(bh);
2243 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002244 __jbd2_journal_refile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002245 jbd_unlock_bh_state(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002246 spin_unlock(&journal->j_list_lock);
2247 __brelse(bh);
2248}
Jan Karac851ed52008-07-11 19:27:31 -04002249
2250/*
2251 * File inode in the inode list of the handle's transaction
2252 */
2253int jbd2_journal_file_inode(handle_t *handle, struct jbd2_inode *jinode)
2254{
2255 transaction_t *transaction = handle->h_transaction;
2256 journal_t *journal = transaction->t_journal;
2257
2258 if (is_handle_aborted(handle))
2259 return -EIO;
2260
2261 jbd_debug(4, "Adding inode %lu, tid:%d\n", jinode->i_vfs_inode->i_ino,
2262 transaction->t_tid);
2263
2264 /*
2265 * First check whether inode isn't already on the transaction's
2266 * lists without taking the lock. Note that this check is safe
2267 * without the lock as we cannot race with somebody removing inode
2268 * from the transaction. The reason is that we remove inode from the
2269 * transaction only in journal_release_jbd_inode() and when we commit
2270 * the transaction. We are guarded from the first case by holding
2271 * a reference to the inode. We are safe against the second case
2272 * because if jinode->i_transaction == transaction, commit code
2273 * cannot touch the transaction because we hold reference to it,
2274 * and if jinode->i_next_transaction == transaction, commit code
2275 * will only file the inode where we want it.
2276 */
2277 if (jinode->i_transaction == transaction ||
2278 jinode->i_next_transaction == transaction)
2279 return 0;
2280
2281 spin_lock(&journal->j_list_lock);
2282
2283 if (jinode->i_transaction == transaction ||
2284 jinode->i_next_transaction == transaction)
2285 goto done;
2286
Jan Kara81be12c2011-05-24 11:52:40 -04002287 /*
2288 * We only ever set this variable to 1 so the test is safe. Since
2289 * t_need_data_flush is likely to be set, we do the test to save some
2290 * cacheline bouncing
2291 */
2292 if (!transaction->t_need_data_flush)
2293 transaction->t_need_data_flush = 1;
Jan Karac851ed52008-07-11 19:27:31 -04002294 /* On some different transaction's list - should be
2295 * the committing one */
2296 if (jinode->i_transaction) {
2297 J_ASSERT(jinode->i_next_transaction == NULL);
2298 J_ASSERT(jinode->i_transaction ==
2299 journal->j_committing_transaction);
2300 jinode->i_next_transaction = transaction;
2301 goto done;
2302 }
2303 /* Not on any transaction list... */
2304 J_ASSERT(!jinode->i_next_transaction);
2305 jinode->i_transaction = transaction;
2306 list_add(&jinode->i_list, &transaction->t_inode_list);
2307done:
2308 spin_unlock(&journal->j_list_lock);
2309
2310 return 0;
2311}
2312
2313/*
Jan Kara7f5aa212009-02-10 11:15:34 -05002314 * File truncate and transaction commit interact with each other in a
2315 * non-trivial way. If a transaction writing data block A is
2316 * committing, we cannot discard the data by truncate until we have
2317 * written them. Otherwise if we crashed after the transaction with
2318 * write has committed but before the transaction with truncate has
2319 * committed, we could see stale data in block A. This function is a
2320 * helper to solve this problem. It starts writeout of the truncated
2321 * part in case it is in the committing transaction.
2322 *
2323 * Filesystem code must call this function when inode is journaled in
2324 * ordered mode before truncation happens and after the inode has been
2325 * placed on orphan list with the new inode size. The second condition
2326 * avoids the race that someone writes new data and we start
2327 * committing the transaction after this function has been called but
2328 * before a transaction for truncate is started (and furthermore it
2329 * allows us to optimize the case where the addition to orphan list
2330 * happens in the same transaction as write --- we don't have to write
2331 * any data in such case).
Jan Karac851ed52008-07-11 19:27:31 -04002332 */
Jan Kara7f5aa212009-02-10 11:15:34 -05002333int jbd2_journal_begin_ordered_truncate(journal_t *journal,
2334 struct jbd2_inode *jinode,
Jan Karac851ed52008-07-11 19:27:31 -04002335 loff_t new_size)
2336{
Jan Kara7f5aa212009-02-10 11:15:34 -05002337 transaction_t *inode_trans, *commit_trans;
Jan Karac851ed52008-07-11 19:27:31 -04002338 int ret = 0;
2339
Jan Kara7f5aa212009-02-10 11:15:34 -05002340 /* This is a quick check to avoid locking if not necessary */
2341 if (!jinode->i_transaction)
Jan Karac851ed52008-07-11 19:27:31 -04002342 goto out;
Jan Kara7f5aa212009-02-10 11:15:34 -05002343 /* Locks are here just to force reading of recent values, it is
2344 * enough that the transaction was not committing before we started
2345 * a transaction adding the inode to orphan list */
Theodore Ts'oa931da62010-08-03 21:35:12 -04002346 read_lock(&journal->j_state_lock);
Jan Karac851ed52008-07-11 19:27:31 -04002347 commit_trans = journal->j_committing_transaction;
Theodore Ts'oa931da62010-08-03 21:35:12 -04002348 read_unlock(&journal->j_state_lock);
Jan Kara7f5aa212009-02-10 11:15:34 -05002349 spin_lock(&journal->j_list_lock);
2350 inode_trans = jinode->i_transaction;
2351 spin_unlock(&journal->j_list_lock);
2352 if (inode_trans == commit_trans) {
2353 ret = filemap_fdatawrite_range(jinode->i_vfs_inode->i_mapping,
Jan Karac851ed52008-07-11 19:27:31 -04002354 new_size, LLONG_MAX);
2355 if (ret)
2356 jbd2_journal_abort(journal, ret);
2357 }
2358out:
2359 return ret;
2360}