blob: 3cdd285df204fd299cfae0e7c94ecf783eafac49 [file] [log] [blame]
Dave Kleikamp470decc2006-10-11 01:20:57 -07001/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002 * linux/fs/jbd2/journal.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 journal-writing code; part of the ext2fs
13 * journaling system.
14 *
15 * This file manages journals: areas of disk reserved for logging
16 * transactional updates. This includes the kernel journaling thread
17 * which is responsible for scheduling updates to the log.
18 *
19 * We do not actually manage the physical storage of the journal in this
20 * file: that is left to a per-journal policy function, which allows us
21 * to store the journal within a filesystem-specified area for ext2
22 * journaling (ext2 can use a reserved inode for storing the log).
23 */
24
25#include <linux/module.h>
26#include <linux/time.h>
27#include <linux/fs.h>
Mingming Caof7f4bcc2006-10-11 01:20:59 -070028#include <linux/jbd2.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070029#include <linux/errno.h>
30#include <linux/slab.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070031#include <linux/init.h>
32#include <linux/mm.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080033#include <linux/freezer.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070034#include <linux/pagemap.h>
35#include <linux/kthread.h>
36#include <linux/poison.h>
37#include <linux/proc_fs.h>
Johann Lombardi8e85fb32008-01-28 23:58:27 -050038#include <linux/seq_file.h>
Simon Holm Thøgersenc225aa52009-01-11 22:34:01 -050039#include <linux/math64.h>
Theodore Ts'o879c5e62009-06-17 11:47:48 -040040#include <linux/hash.h>
Theodore Ts'od2eecb02009-12-07 10:36:20 -050041#include <linux/log2.h>
42#include <linux/vmalloc.h>
Theodore Ts'o47def822010-07-27 11:56:05 -040043#include <linux/backing-dev.h>
Brian King39e3ac22010-10-27 21:25:12 -040044#include <linux/bitops.h>
Theodore Ts'o670be5a2010-12-17 10:44:16 -050045#include <linux/ratelimit.h>
Theodore Ts'o879c5e62009-06-17 11:47:48 -040046
47#define CREATE_TRACE_POINTS
48#include <trace/events/jbd2.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070049
50#include <asm/uaccess.h>
51#include <asm/page.h>
52
Theodore Ts'ob6e96d02013-02-09 16:29:20 -050053#ifdef CONFIG_JBD2_DEBUG
54ushort jbd2_journal_enable_debug __read_mostly;
55EXPORT_SYMBOL(jbd2_journal_enable_debug);
56
57module_param_named(jbd2_debug, jbd2_journal_enable_debug, ushort, 0644);
58MODULE_PARM_DESC(jbd2_debug, "Debugging level for jbd2");
59#endif
60
Mingming Caof7f4bcc2006-10-11 01:20:59 -070061EXPORT_SYMBOL(jbd2_journal_extend);
62EXPORT_SYMBOL(jbd2_journal_stop);
63EXPORT_SYMBOL(jbd2_journal_lock_updates);
64EXPORT_SYMBOL(jbd2_journal_unlock_updates);
65EXPORT_SYMBOL(jbd2_journal_get_write_access);
66EXPORT_SYMBOL(jbd2_journal_get_create_access);
67EXPORT_SYMBOL(jbd2_journal_get_undo_access);
Joel Beckere06c8222008-09-11 15:35:47 -070068EXPORT_SYMBOL(jbd2_journal_set_triggers);
Mingming Caof7f4bcc2006-10-11 01:20:59 -070069EXPORT_SYMBOL(jbd2_journal_dirty_metadata);
Mingming Caof7f4bcc2006-10-11 01:20:59 -070070EXPORT_SYMBOL(jbd2_journal_forget);
Dave Kleikamp470decc2006-10-11 01:20:57 -070071#if 0
72EXPORT_SYMBOL(journal_sync_buffer);
73#endif
Mingming Caof7f4bcc2006-10-11 01:20:59 -070074EXPORT_SYMBOL(jbd2_journal_flush);
75EXPORT_SYMBOL(jbd2_journal_revoke);
Dave Kleikamp470decc2006-10-11 01:20:57 -070076
Mingming Caof7f4bcc2006-10-11 01:20:59 -070077EXPORT_SYMBOL(jbd2_journal_init_dev);
78EXPORT_SYMBOL(jbd2_journal_init_inode);
Mingming Caof7f4bcc2006-10-11 01:20:59 -070079EXPORT_SYMBOL(jbd2_journal_check_used_features);
80EXPORT_SYMBOL(jbd2_journal_check_available_features);
81EXPORT_SYMBOL(jbd2_journal_set_features);
Mingming Caof7f4bcc2006-10-11 01:20:59 -070082EXPORT_SYMBOL(jbd2_journal_load);
83EXPORT_SYMBOL(jbd2_journal_destroy);
Mingming Caof7f4bcc2006-10-11 01:20:59 -070084EXPORT_SYMBOL(jbd2_journal_abort);
85EXPORT_SYMBOL(jbd2_journal_errno);
86EXPORT_SYMBOL(jbd2_journal_ack_err);
87EXPORT_SYMBOL(jbd2_journal_clear_err);
88EXPORT_SYMBOL(jbd2_log_wait_commit);
Theodore Ts'o3b799d12009-12-09 20:42:53 -050089EXPORT_SYMBOL(jbd2_log_start_commit);
Mingming Caof7f4bcc2006-10-11 01:20:59 -070090EXPORT_SYMBOL(jbd2_journal_start_commit);
91EXPORT_SYMBOL(jbd2_journal_force_commit_nested);
92EXPORT_SYMBOL(jbd2_journal_wipe);
93EXPORT_SYMBOL(jbd2_journal_blocks_per_page);
94EXPORT_SYMBOL(jbd2_journal_invalidatepage);
95EXPORT_SYMBOL(jbd2_journal_try_to_free_buffers);
96EXPORT_SYMBOL(jbd2_journal_force_commit);
Jan Karac851ed52008-07-11 19:27:31 -040097EXPORT_SYMBOL(jbd2_journal_file_inode);
98EXPORT_SYMBOL(jbd2_journal_init_jbd_inode);
99EXPORT_SYMBOL(jbd2_journal_release_jbd_inode);
100EXPORT_SYMBOL(jbd2_journal_begin_ordered_truncate);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500101EXPORT_SYMBOL(jbd2_inode_cache);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700102
Dave Kleikamp470decc2006-10-11 01:20:57 -0700103static void __journal_abort_soft (journal_t *journal, int errno);
Theodore Ts'od2eecb02009-12-07 10:36:20 -0500104static int jbd2_journal_create_slab(size_t slab_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700105
Darrick J. Wong25ed6e82012-05-27 07:48:56 -0400106/* Checksumming functions */
107int jbd2_verify_csum_type(journal_t *j, journal_superblock_t *sb)
108{
109 if (!JBD2_HAS_INCOMPAT_FEATURE(j, JBD2_FEATURE_INCOMPAT_CSUM_V2))
110 return 1;
111
112 return sb->s_checksum_type == JBD2_CRC32C_CHKSUM;
113}
114
Darrick J. Wong4fd5ea42012-05-27 08:08:22 -0400115static __u32 jbd2_superblock_csum(journal_t *j, journal_superblock_t *sb)
116{
117 __u32 csum, old_csum;
118
119 old_csum = sb->s_checksum;
120 sb->s_checksum = 0;
121 csum = jbd2_chksum(j, ~0, (char *)sb, sizeof(journal_superblock_t));
122 sb->s_checksum = old_csum;
123
124 return cpu_to_be32(csum);
125}
126
127int jbd2_superblock_csum_verify(journal_t *j, journal_superblock_t *sb)
128{
129 if (!JBD2_HAS_INCOMPAT_FEATURE(j, JBD2_FEATURE_INCOMPAT_CSUM_V2))
130 return 1;
131
132 return sb->s_checksum == jbd2_superblock_csum(j, sb);
133}
134
135void jbd2_superblock_csum_set(journal_t *j, journal_superblock_t *sb)
136{
137 if (!JBD2_HAS_INCOMPAT_FEATURE(j, JBD2_FEATURE_INCOMPAT_CSUM_V2))
138 return;
139
140 sb->s_checksum = jbd2_superblock_csum(j, sb);
141}
142
Dave Kleikamp470decc2006-10-11 01:20:57 -0700143/*
144 * Helper function used to manage commit timeouts
145 */
146
147static void commit_timeout(unsigned long __data)
148{
149 struct task_struct * p = (struct task_struct *) __data;
150
151 wake_up_process(p);
152}
153
154/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700155 * kjournald2: The main thread function used to manage a logging device
Dave Kleikamp470decc2006-10-11 01:20:57 -0700156 * journal.
157 *
158 * This kernel thread is responsible for two things:
159 *
160 * 1) COMMIT: Every so often we need to commit the current state of the
161 * filesystem to disk. The journal thread is responsible for writing
162 * all of the metadata buffers to disk.
163 *
164 * 2) CHECKPOINT: We cannot reuse a used section of the log file until all
165 * of the data in that part of the log has been rewritten elsewhere on
166 * the disk. Flushing these old buffers to reclaim space in the log is
167 * known as checkpointing, and this thread is responsible for that job.
168 */
169
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700170static int kjournald2(void *arg)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700171{
172 journal_t *journal = arg;
173 transaction_t *transaction;
174
175 /*
176 * Set up an interval timer which can be used to trigger a commit wakeup
177 * after the commit interval expires
178 */
179 setup_timer(&journal->j_commit_timer, commit_timeout,
180 (unsigned long)current);
181
Nigel Cunningham35c80422012-02-03 19:59:41 +1100182 set_freezable();
183
Dave Kleikamp470decc2006-10-11 01:20:57 -0700184 /* Record that the journal thread is running */
185 journal->j_task = current;
186 wake_up(&journal->j_wait_done_commit);
187
Dave Kleikamp470decc2006-10-11 01:20:57 -0700188 /*
189 * And now, wait forever for commit wakeup events.
190 */
Theodore Ts'oa931da62010-08-03 21:35:12 -0400191 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700192
193loop:
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700194 if (journal->j_flags & JBD2_UNMOUNT)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700195 goto end_loop;
196
197 jbd_debug(1, "commit_sequence=%d, commit_request=%d\n",
198 journal->j_commit_sequence, journal->j_commit_request);
199
200 if (journal->j_commit_sequence != journal->j_commit_request) {
201 jbd_debug(1, "OK, requests differ\n");
Theodore Ts'oa931da62010-08-03 21:35:12 -0400202 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700203 del_timer_sync(&journal->j_commit_timer);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700204 jbd2_journal_commit_transaction(journal);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400205 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700206 goto loop;
207 }
208
209 wake_up(&journal->j_wait_done_commit);
210 if (freezing(current)) {
211 /*
212 * The simpler the better. Flushing journal isn't a
213 * good idea, because that depends on threads that may
214 * be already stopped.
215 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700216 jbd_debug(1, "Now suspending kjournald2\n");
Theodore Ts'oa931da62010-08-03 21:35:12 -0400217 write_unlock(&journal->j_state_lock);
Tejun Heoa0acae02011-11-21 12:32:22 -0800218 try_to_freeze();
Theodore Ts'oa931da62010-08-03 21:35:12 -0400219 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700220 } else {
221 /*
222 * We assume on resume that commits are already there,
223 * so we don't sleep
224 */
225 DEFINE_WAIT(wait);
226 int should_sleep = 1;
227
228 prepare_to_wait(&journal->j_wait_commit, &wait,
229 TASK_INTERRUPTIBLE);
230 if (journal->j_commit_sequence != journal->j_commit_request)
231 should_sleep = 0;
232 transaction = journal->j_running_transaction;
233 if (transaction && time_after_eq(jiffies,
234 transaction->t_expires))
235 should_sleep = 0;
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700236 if (journal->j_flags & JBD2_UNMOUNT)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700237 should_sleep = 0;
238 if (should_sleep) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400239 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700240 schedule();
Theodore Ts'oa931da62010-08-03 21:35:12 -0400241 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700242 }
243 finish_wait(&journal->j_wait_commit, &wait);
244 }
245
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700246 jbd_debug(1, "kjournald2 wakes\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -0700247
248 /*
249 * Were we woken up by a commit wakeup event?
250 */
251 transaction = journal->j_running_transaction;
252 if (transaction && time_after_eq(jiffies, transaction->t_expires)) {
253 journal->j_commit_request = transaction->t_tid;
254 jbd_debug(1, "woke because of timeout\n");
255 }
256 goto loop;
257
258end_loop:
Theodore Ts'oa931da62010-08-03 21:35:12 -0400259 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700260 del_timer_sync(&journal->j_commit_timer);
261 journal->j_task = NULL;
262 wake_up(&journal->j_wait_done_commit);
263 jbd_debug(1, "Journal thread exiting.\n");
264 return 0;
265}
266
Pavel Emelianov97f06782007-05-08 00:30:42 -0700267static int jbd2_journal_start_thread(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700268{
Pavel Emelianov97f06782007-05-08 00:30:42 -0700269 struct task_struct *t;
270
Theodore Ts'o90576c02009-09-29 15:51:30 -0400271 t = kthread_run(kjournald2, journal, "jbd2/%s",
272 journal->j_devname);
Pavel Emelianov97f06782007-05-08 00:30:42 -0700273 if (IS_ERR(t))
274 return PTR_ERR(t);
275
Al Viro1076d172008-03-29 03:07:18 +0000276 wait_event(journal->j_wait_done_commit, journal->j_task != NULL);
Pavel Emelianov97f06782007-05-08 00:30:42 -0700277 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700278}
279
280static void journal_kill_thread(journal_t *journal)
281{
Theodore Ts'oa931da62010-08-03 21:35:12 -0400282 write_lock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700283 journal->j_flags |= JBD2_UNMOUNT;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700284
285 while (journal->j_task) {
286 wake_up(&journal->j_wait_commit);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400287 write_unlock(&journal->j_state_lock);
Al Viro1076d172008-03-29 03:07:18 +0000288 wait_event(journal->j_wait_done_commit, journal->j_task == NULL);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400289 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700290 }
Theodore Ts'oa931da62010-08-03 21:35:12 -0400291 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700292}
293
294/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700295 * jbd2_journal_write_metadata_buffer: write a metadata buffer to the journal.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700296 *
297 * Writes a metadata buffer to a given disk block. The actual IO is not
298 * performed but a new buffer_head is constructed which labels the data
299 * to be written with the correct destination disk block.
300 *
301 * Any magic-number escaping which needs to be done will cause a
302 * copy-out here. If the buffer happens to start with the
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700303 * JBD2_MAGIC_NUMBER, then we can't write it to the log directly: the
Dave Kleikamp470decc2006-10-11 01:20:57 -0700304 * magic number is only written to the log for descripter blocks. In
305 * this case, we copy the data and replace the first word with 0, and we
306 * return a result code which indicates that this buffer needs to be
307 * marked as an escaped buffer in the corresponding log descriptor
308 * block. The missing word can then be restored when the block is read
309 * during recovery.
310 *
311 * If the source buffer has already been modified by a new transaction
312 * since we took the last commit snapshot, we use the frozen copy of
313 * that data for IO. If we end up using the existing buffer_head's data
314 * for the write, then we *have* to lock the buffer to prevent anyone
315 * else from using and possibly modifying it while the IO is in
316 * progress.
317 *
318 * The function returns a pointer to the buffer_heads to be used for IO.
319 *
320 * We assume that the journal has already been locked in this function.
321 *
322 * Return value:
323 * <0: Error
324 * >=0: Finished OK
325 *
326 * On success:
327 * Bit 0 set == escape performed on the data
328 * Bit 1 set == buffer copy-out performed (kfree the data after IO)
329 */
330
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700331int jbd2_journal_write_metadata_buffer(transaction_t *transaction,
Dave Kleikamp470decc2006-10-11 01:20:57 -0700332 struct journal_head *jh_in,
333 struct journal_head **jh_out,
Mingming Cao18eba7a2006-10-11 01:21:13 -0700334 unsigned long long blocknr)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700335{
336 int need_copy_out = 0;
337 int done_copy_out = 0;
338 int do_escape = 0;
339 char *mapped_data;
340 struct buffer_head *new_bh;
341 struct journal_head *new_jh;
342 struct page *new_page;
343 unsigned int new_offset;
344 struct buffer_head *bh_in = jh2bh(jh_in);
dingdinghua96577c42009-07-13 17:55:35 -0400345 journal_t *journal = transaction->t_journal;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700346
347 /*
348 * The buffer really shouldn't be locked: only the current committing
349 * transaction is allowed to write it, so nobody else is allowed
350 * to do any IO.
351 *
352 * akpm: except if we're journalling data, and write() output is
353 * also part of a shared mapping, and another thread has
354 * decided to launch a writepage() against this buffer.
355 */
356 J_ASSERT_BH(bh_in, buffer_jbddirty(bh_in));
357
Theodore Ts'o47def822010-07-27 11:56:05 -0400358retry_alloc:
359 new_bh = alloc_buffer_head(GFP_NOFS);
360 if (!new_bh) {
361 /*
362 * Failure is not an option, but __GFP_NOFAIL is going
363 * away; so we retry ourselves here.
364 */
365 congestion_wait(BLK_RW_ASYNC, HZ/50);
366 goto retry_alloc;
367 }
368
dingdinghua96577c42009-07-13 17:55:35 -0400369 /* keep subsequent assertions sane */
dingdinghua96577c42009-07-13 17:55:35 -0400370 atomic_set(&new_bh->b_count, 1);
371 new_jh = jbd2_journal_add_journal_head(new_bh); /* This sleeps */
Dave Kleikamp470decc2006-10-11 01:20:57 -0700372
373 /*
374 * If a new transaction has already done a buffer copy-out, then
375 * we use that version of the data for the commit.
376 */
377 jbd_lock_bh_state(bh_in);
378repeat:
379 if (jh_in->b_frozen_data) {
380 done_copy_out = 1;
381 new_page = virt_to_page(jh_in->b_frozen_data);
382 new_offset = offset_in_page(jh_in->b_frozen_data);
383 } else {
384 new_page = jh2bh(jh_in)->b_page;
385 new_offset = offset_in_page(jh2bh(jh_in)->b_data);
386 }
387
Cong Wang303a8f22011-11-25 23:14:31 +0800388 mapped_data = kmap_atomic(new_page);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700389 /*
Jan Kara13ceef02010-07-14 07:56:33 +0200390 * Fire data frozen trigger if data already wasn't frozen. Do this
391 * before checking for escaping, as the trigger may modify the magic
392 * offset. If a copy-out happens afterwards, it will have the correct
393 * data in the buffer.
Joel Beckere06c8222008-09-11 15:35:47 -0700394 */
Jan Kara13ceef02010-07-14 07:56:33 +0200395 if (!done_copy_out)
396 jbd2_buffer_frozen_trigger(jh_in, mapped_data + new_offset,
397 jh_in->b_triggers);
Joel Beckere06c8222008-09-11 15:35:47 -0700398
399 /*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700400 * Check for escaping
401 */
402 if (*((__be32 *)(mapped_data + new_offset)) ==
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700403 cpu_to_be32(JBD2_MAGIC_NUMBER)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700404 need_copy_out = 1;
405 do_escape = 1;
406 }
Cong Wang303a8f22011-11-25 23:14:31 +0800407 kunmap_atomic(mapped_data);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700408
409 /*
410 * Do we need to do a data copy?
411 */
412 if (need_copy_out && !done_copy_out) {
413 char *tmp;
414
415 jbd_unlock_bh_state(bh_in);
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400416 tmp = jbd2_alloc(bh_in->b_size, GFP_NOFS);
Theodore Ts'oe6ec1162009-12-01 09:04:42 -0500417 if (!tmp) {
418 jbd2_journal_put_journal_head(new_jh);
419 return -ENOMEM;
420 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700421 jbd_lock_bh_state(bh_in);
422 if (jh_in->b_frozen_data) {
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400423 jbd2_free(tmp, bh_in->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700424 goto repeat;
425 }
426
427 jh_in->b_frozen_data = tmp;
Cong Wang303a8f22011-11-25 23:14:31 +0800428 mapped_data = kmap_atomic(new_page);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700429 memcpy(tmp, mapped_data + new_offset, jh2bh(jh_in)->b_size);
Cong Wang303a8f22011-11-25 23:14:31 +0800430 kunmap_atomic(mapped_data);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700431
432 new_page = virt_to_page(tmp);
433 new_offset = offset_in_page(tmp);
434 done_copy_out = 1;
Joel Beckere06c8222008-09-11 15:35:47 -0700435
436 /*
437 * This isn't strictly necessary, as we're using frozen
438 * data for the escaping, but it keeps consistency with
439 * b_frozen_data usage.
440 */
441 jh_in->b_frozen_triggers = jh_in->b_triggers;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700442 }
443
444 /*
445 * Did we need to do an escaping? Now we've done all the
446 * copying, we can finally do so.
447 */
448 if (do_escape) {
Cong Wang303a8f22011-11-25 23:14:31 +0800449 mapped_data = kmap_atomic(new_page);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700450 *((unsigned int *)(mapped_data + new_offset)) = 0;
Cong Wang303a8f22011-11-25 23:14:31 +0800451 kunmap_atomic(mapped_data);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700452 }
453
Dave Kleikamp470decc2006-10-11 01:20:57 -0700454 set_bh_page(new_bh, new_page, new_offset);
455 new_jh->b_transaction = NULL;
456 new_bh->b_size = jh2bh(jh_in)->b_size;
457 new_bh->b_bdev = transaction->t_journal->j_dev;
458 new_bh->b_blocknr = blocknr;
459 set_buffer_mapped(new_bh);
460 set_buffer_dirty(new_bh);
461
462 *jh_out = new_jh;
463
464 /*
465 * The to-be-written buffer needs to get moved to the io queue,
466 * and the original buffer whose contents we are shadowing or
467 * copying is moved to the transaction's shadow queue.
468 */
469 JBUFFER_TRACE(jh_in, "file as BJ_Shadow");
dingdinghua96577c42009-07-13 17:55:35 -0400470 spin_lock(&journal->j_list_lock);
471 __jbd2_journal_file_buffer(jh_in, transaction, BJ_Shadow);
472 spin_unlock(&journal->j_list_lock);
473 jbd_unlock_bh_state(bh_in);
474
Dave Kleikamp470decc2006-10-11 01:20:57 -0700475 JBUFFER_TRACE(new_jh, "file as BJ_IO");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700476 jbd2_journal_file_buffer(new_jh, transaction, BJ_IO);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700477
478 return do_escape | (done_copy_out << 1);
479}
480
481/*
482 * Allocation code for the journal file. Manage the space left in the
483 * journal, so that we can begin checkpointing when appropriate.
484 */
485
486/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700487 * __jbd2_log_space_left: Return the number of free blocks left in the journal.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700488 *
489 * Called with the journal already locked.
490 *
491 * Called under j_state_lock
492 */
493
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700494int __jbd2_log_space_left(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700495{
496 int left = journal->j_free;
497
Theodore Ts'oa931da62010-08-03 21:35:12 -0400498 /* assert_spin_locked(&journal->j_state_lock); */
Dave Kleikamp470decc2006-10-11 01:20:57 -0700499
500 /*
501 * Be pessimistic here about the number of those free blocks which
502 * might be required for log descriptor control blocks.
503 */
504
505#define MIN_LOG_RESERVED_BLOCKS 32 /* Allow for rounding errors */
506
507 left -= MIN_LOG_RESERVED_BLOCKS;
508
509 if (left <= 0)
510 return 0;
511 left -= (left >> 3);
512 return left;
513}
514
515/*
Theodore Ts'oe4471832011-02-12 08:18:24 -0500516 * Called with j_state_lock locked for writing.
517 * Returns true if a transaction commit was started.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700518 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700519int __jbd2_log_start_commit(journal_t *journal, tid_t target)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700520{
Eric Sandeene7b04ac2013-01-30 00:39:28 -0500521 /* Return if the txn has already requested to be committed */
522 if (journal->j_commit_request == target)
523 return 0;
524
Dave Kleikamp470decc2006-10-11 01:20:57 -0700525 /*
Theodore Ts'odeeeaf12011-05-01 18:16:26 -0400526 * The only transaction we can possibly wait upon is the
527 * currently running transaction (if it exists). Otherwise,
528 * the target tid must be an old one.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700529 */
Theodore Ts'odeeeaf12011-05-01 18:16:26 -0400530 if (journal->j_running_transaction &&
531 journal->j_running_transaction->t_tid == target) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700532 /*
Andrea Gelminibcf3d0b2010-10-16 15:19:14 +0200533 * We want a new commit: OK, mark the request and wakeup the
Dave Kleikamp470decc2006-10-11 01:20:57 -0700534 * commit thread. We do _not_ do the commit ourselves.
535 */
536
537 journal->j_commit_request = target;
Eryu Guanf2a44522011-11-01 19:09:18 -0400538 jbd_debug(1, "JBD2: requesting commit %d/%d\n",
Dave Kleikamp470decc2006-10-11 01:20:57 -0700539 journal->j_commit_request,
540 journal->j_commit_sequence);
Theodore Ts'o9fff24a2013-02-06 22:30:23 -0500541 journal->j_running_transaction->t_requested = jiffies;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700542 wake_up(&journal->j_wait_commit);
543 return 1;
Theodore Ts'odeeeaf12011-05-01 18:16:26 -0400544 } else if (!tid_geq(journal->j_commit_request, target))
545 /* This should never happen, but if it does, preserve
546 the evidence before kjournald goes into a loop and
547 increments j_commit_sequence beyond all recognition. */
Eryu Guanf2a44522011-11-01 19:09:18 -0400548 WARN_ONCE(1, "JBD2: bad log_start_commit: %u %u %u %u\n",
Theodore Ts'o1be2add2011-05-08 19:37:54 -0400549 journal->j_commit_request,
550 journal->j_commit_sequence,
551 target, journal->j_running_transaction ?
552 journal->j_running_transaction->t_tid : 0);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700553 return 0;
554}
555
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700556int jbd2_log_start_commit(journal_t *journal, tid_t tid)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700557{
558 int ret;
559
Theodore Ts'oa931da62010-08-03 21:35:12 -0400560 write_lock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700561 ret = __jbd2_log_start_commit(journal, tid);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400562 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700563 return ret;
564}
565
566/*
567 * Force and wait upon a commit if the calling process is not within
568 * transaction. This is used for forcing out undo-protected data which contains
569 * bitmaps, when the fs is running out of space.
570 *
571 * We can only force the running transaction if we don't have an active handle;
572 * otherwise, we will deadlock.
573 *
574 * Returns true if a transaction was started.
575 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700576int jbd2_journal_force_commit_nested(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700577{
578 transaction_t *transaction = NULL;
579 tid_t tid;
Theodore Ts'oe4471832011-02-12 08:18:24 -0500580 int need_to_start = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700581
Theodore Ts'oa931da62010-08-03 21:35:12 -0400582 read_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700583 if (journal->j_running_transaction && !current->journal_info) {
584 transaction = journal->j_running_transaction;
Theodore Ts'oe4471832011-02-12 08:18:24 -0500585 if (!tid_geq(journal->j_commit_request, transaction->t_tid))
586 need_to_start = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700587 } else if (journal->j_committing_transaction)
588 transaction = journal->j_committing_transaction;
589
590 if (!transaction) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400591 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700592 return 0; /* Nothing to retry */
593 }
594
595 tid = transaction->t_tid;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400596 read_unlock(&journal->j_state_lock);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500597 if (need_to_start)
598 jbd2_log_start_commit(journal, tid);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700599 jbd2_log_wait_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700600 return 1;
601}
602
603/*
604 * Start a commit of the current running transaction (if any). Returns true
Jan Karac88ccea2009-02-10 11:27:46 -0500605 * if a transaction is going to be committed (or is currently already
606 * committing), and fills its tid in at *ptid
Dave Kleikamp470decc2006-10-11 01:20:57 -0700607 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700608int jbd2_journal_start_commit(journal_t *journal, tid_t *ptid)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700609{
610 int ret = 0;
611
Theodore Ts'oa931da62010-08-03 21:35:12 -0400612 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700613 if (journal->j_running_transaction) {
614 tid_t tid = journal->j_running_transaction->t_tid;
615
Jan Karac88ccea2009-02-10 11:27:46 -0500616 __jbd2_log_start_commit(journal, tid);
617 /* There's a running transaction and we've just made sure
618 * it's commit has been scheduled. */
619 if (ptid)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700620 *ptid = tid;
Jan Karac88ccea2009-02-10 11:27:46 -0500621 ret = 1;
622 } else if (journal->j_committing_transaction) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700623 /*
Artem Bityutskiy12810ad2012-07-25 18:12:07 +0300624 * If commit has been started, then we have to wait for
625 * completion of that transaction.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700626 */
Jan Karac88ccea2009-02-10 11:27:46 -0500627 if (ptid)
628 *ptid = journal->j_committing_transaction->t_tid;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700629 ret = 1;
630 }
Theodore Ts'oa931da62010-08-03 21:35:12 -0400631 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700632 return ret;
633}
634
635/*
Jan Karabbd2be32011-05-24 11:59:18 -0400636 * Return 1 if a given transaction has not yet sent barrier request
637 * connected with a transaction commit. If 0 is returned, transaction
638 * may or may not have sent the barrier. Used to avoid sending barrier
639 * twice in common cases.
640 */
641int jbd2_trans_will_send_data_barrier(journal_t *journal, tid_t tid)
642{
643 int ret = 0;
644 transaction_t *commit_trans;
645
646 if (!(journal->j_flags & JBD2_BARRIER))
647 return 0;
648 read_lock(&journal->j_state_lock);
649 /* Transaction already committed? */
650 if (tid_geq(journal->j_commit_sequence, tid))
651 goto out;
652 commit_trans = journal->j_committing_transaction;
653 if (!commit_trans || commit_trans->t_tid != tid) {
654 ret = 1;
655 goto out;
656 }
657 /*
658 * Transaction is being committed and we already proceeded to
659 * submitting a flush to fs partition?
660 */
661 if (journal->j_fs_dev != journal->j_dev) {
662 if (!commit_trans->t_need_data_flush ||
663 commit_trans->t_state >= T_COMMIT_DFLUSH)
664 goto out;
665 } else {
666 if (commit_trans->t_state >= T_COMMIT_JFLUSH)
667 goto out;
668 }
669 ret = 1;
670out:
671 read_unlock(&journal->j_state_lock);
672 return ret;
673}
674EXPORT_SYMBOL(jbd2_trans_will_send_data_barrier);
675
676/*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700677 * Wait for a specified commit to complete.
678 * The caller may not hold the journal lock.
679 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700680int jbd2_log_wait_commit(journal_t *journal, tid_t tid)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700681{
682 int err = 0;
683
Theodore Ts'oa931da62010-08-03 21:35:12 -0400684 read_lock(&journal->j_state_lock);
Jose R. Santose23291b2007-07-18 08:57:06 -0400685#ifdef CONFIG_JBD2_DEBUG
Dave Kleikamp470decc2006-10-11 01:20:57 -0700686 if (!tid_geq(journal->j_commit_request, tid)) {
687 printk(KERN_EMERG
688 "%s: error: j_commit_request=%d, tid=%d\n",
Harvey Harrison329d2912008-04-17 10:38:59 -0400689 __func__, journal->j_commit_request, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700690 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700691#endif
Dave Kleikamp470decc2006-10-11 01:20:57 -0700692 while (tid_gt(tid, journal->j_commit_sequence)) {
Eryu Guanf2a44522011-11-01 19:09:18 -0400693 jbd_debug(1, "JBD2: want %d, j_commit_sequence=%d\n",
Dave Kleikamp470decc2006-10-11 01:20:57 -0700694 tid, journal->j_commit_sequence);
695 wake_up(&journal->j_wait_commit);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400696 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700697 wait_event(journal->j_wait_done_commit,
698 !tid_gt(tid, journal->j_commit_sequence));
Theodore Ts'oa931da62010-08-03 21:35:12 -0400699 read_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700700 }
Theodore Ts'oa931da62010-08-03 21:35:12 -0400701 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700702
703 if (unlikely(is_journal_aborted(journal))) {
704 printk(KERN_EMERG "journal commit I/O error\n");
705 err = -EIO;
706 }
707 return err;
708}
709
710/*
Theodore Ts'od76a3a772013-04-03 22:02:52 -0400711 * When this function returns the transaction corresponding to tid
712 * will be completed. If the transaction has currently running, start
713 * committing that transaction before waiting for it to complete. If
714 * the transaction id is stale, it is by definition already completed,
715 * so just return SUCCESS.
716 */
717int jbd2_complete_transaction(journal_t *journal, tid_t tid)
718{
719 int need_to_wait = 1;
720
721 read_lock(&journal->j_state_lock);
722 if (journal->j_running_transaction &&
723 journal->j_running_transaction->t_tid == tid) {
724 if (journal->j_commit_request != tid) {
725 /* transaction not yet started, so request it */
726 read_unlock(&journal->j_state_lock);
727 jbd2_log_start_commit(journal, tid);
728 goto wait_commit;
729 }
730 } else if (!(journal->j_committing_transaction &&
731 journal->j_committing_transaction->t_tid == tid))
732 need_to_wait = 0;
733 read_unlock(&journal->j_state_lock);
734 if (!need_to_wait)
735 return 0;
736wait_commit:
737 return jbd2_log_wait_commit(journal, tid);
738}
739EXPORT_SYMBOL(jbd2_complete_transaction);
740
741/*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700742 * Log buffer allocation routines:
743 */
744
Mingming Cao18eba7a2006-10-11 01:21:13 -0700745int jbd2_journal_next_log_block(journal_t *journal, unsigned long long *retp)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700746{
747 unsigned long blocknr;
748
Theodore Ts'oa931da62010-08-03 21:35:12 -0400749 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700750 J_ASSERT(journal->j_free > 1);
751
752 blocknr = journal->j_head;
753 journal->j_head++;
754 journal->j_free--;
755 if (journal->j_head == journal->j_last)
756 journal->j_head = journal->j_first;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400757 write_unlock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700758 return jbd2_journal_bmap(journal, blocknr, retp);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700759}
760
761/*
762 * Conversion of logical to physical block numbers for the journal
763 *
764 * On external journals the journal blocks are identity-mapped, so
765 * this is a no-op. If needed, we can use j_blk_offset - everything is
766 * ready.
767 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700768int jbd2_journal_bmap(journal_t *journal, unsigned long blocknr,
Mingming Cao18eba7a2006-10-11 01:21:13 -0700769 unsigned long long *retp)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700770{
771 int err = 0;
Mingming Cao18eba7a2006-10-11 01:21:13 -0700772 unsigned long long ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700773
774 if (journal->j_inode) {
775 ret = bmap(journal->j_inode, blocknr);
776 if (ret)
777 *retp = ret;
778 else {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700779 printk(KERN_ALERT "%s: journal block not found "
780 "at offset %lu on %s\n",
Theodore Ts'o05496762008-09-16 14:36:17 -0400781 __func__, blocknr, journal->j_devname);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700782 err = -EIO;
783 __journal_abort_soft(journal, err);
784 }
785 } else {
786 *retp = blocknr; /* +journal->j_blk_offset */
787 }
788 return err;
789}
790
791/*
792 * We play buffer_head aliasing tricks to write data/metadata blocks to
793 * the journal without copying their contents, but for journal
794 * descriptor blocks we do need to generate bona fide buffers.
795 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700796 * After the caller of jbd2_journal_get_descriptor_buffer() has finished modifying
Dave Kleikamp470decc2006-10-11 01:20:57 -0700797 * the buffer's contents they really should run flush_dcache_page(bh->b_page).
798 * But we don't bother doing that, so there will be coherency problems with
799 * mmaps of blockdevs which hold live JBD-controlled filesystems.
800 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700801struct journal_head *jbd2_journal_get_descriptor_buffer(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700802{
803 struct buffer_head *bh;
Mingming Cao18eba7a2006-10-11 01:21:13 -0700804 unsigned long long blocknr;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700805 int err;
806
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700807 err = jbd2_journal_next_log_block(journal, &blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700808
809 if (err)
810 return NULL;
811
812 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
Jan Kara4b905672009-01-06 14:53:35 -0500813 if (!bh)
814 return NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700815 lock_buffer(bh);
816 memset(bh->b_data, 0, journal->j_blocksize);
817 set_buffer_uptodate(bh);
818 unlock_buffer(bh);
819 BUFFER_TRACE(bh, "return this buffer");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700820 return jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700821}
822
Jan Kara79feb522012-03-13 22:22:54 -0400823/*
824 * Return tid of the oldest transaction in the journal and block in the journal
825 * where the transaction starts.
826 *
827 * If the journal is now empty, return which will be the next transaction ID
828 * we will write and where will that transaction start.
829 *
830 * The return value is 0 if journal tail cannot be pushed any further, 1 if
831 * it can.
832 */
833int jbd2_journal_get_log_tail(journal_t *journal, tid_t *tid,
834 unsigned long *block)
835{
836 transaction_t *transaction;
837 int ret;
838
839 read_lock(&journal->j_state_lock);
840 spin_lock(&journal->j_list_lock);
841 transaction = journal->j_checkpoint_transactions;
842 if (transaction) {
843 *tid = transaction->t_tid;
844 *block = transaction->t_log_start;
845 } else if ((transaction = journal->j_committing_transaction) != NULL) {
846 *tid = transaction->t_tid;
847 *block = transaction->t_log_start;
848 } else if ((transaction = journal->j_running_transaction) != NULL) {
849 *tid = transaction->t_tid;
850 *block = journal->j_head;
851 } else {
852 *tid = journal->j_transaction_sequence;
853 *block = journal->j_head;
854 }
855 ret = tid_gt(*tid, journal->j_tail_sequence);
856 spin_unlock(&journal->j_list_lock);
857 read_unlock(&journal->j_state_lock);
858
859 return ret;
860}
861
862/*
863 * Update information in journal structure and in on disk journal superblock
864 * about log tail. This function does not check whether information passed in
865 * really pushes log tail further. It's responsibility of the caller to make
866 * sure provided log tail information is valid (e.g. by holding
867 * j_checkpoint_mutex all the time between computing log tail and calling this
868 * function as is the case with jbd2_cleanup_journal_tail()).
869 *
870 * Requires j_checkpoint_mutex
871 */
872void __jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block)
873{
874 unsigned long freed;
875
876 BUG_ON(!mutex_is_locked(&journal->j_checkpoint_mutex));
877
878 /*
879 * We cannot afford for write to remain in drive's caches since as
880 * soon as we update j_tail, next transaction can start reusing journal
881 * space and if we lose sb update during power failure we'd replay
882 * old transaction with possibly newly overwritten data.
883 */
884 jbd2_journal_update_sb_log_tail(journal, tid, block, WRITE_FUA);
885 write_lock(&journal->j_state_lock);
886 freed = block - journal->j_tail;
887 if (block < journal->j_tail)
888 freed += journal->j_last - journal->j_first;
889
890 trace_jbd2_update_log_tail(journal, tid, block, freed);
891 jbd_debug(1,
892 "Cleaning journal tail from %d to %d (offset %lu), "
893 "freeing %lu\n",
894 journal->j_tail_sequence, tid, block, freed);
895
896 journal->j_free += freed;
897 journal->j_tail_sequence = tid;
898 journal->j_tail = block;
899 write_unlock(&journal->j_state_lock);
900}
901
Jan Kara33395782012-03-13 22:45:38 -0400902/*
903 * This is a variaon of __jbd2_update_log_tail which checks for validity of
904 * provided log tail and locks j_checkpoint_mutex. So it is safe against races
905 * with other threads updating log tail.
906 */
907void jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block)
908{
909 mutex_lock(&journal->j_checkpoint_mutex);
910 if (tid_gt(tid, journal->j_tail_sequence))
911 __jbd2_update_log_tail(journal, tid, block);
912 mutex_unlock(&journal->j_checkpoint_mutex);
913}
914
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500915struct jbd2_stats_proc_session {
916 journal_t *journal;
917 struct transaction_stats_s *stats;
918 int start;
919 int max;
920};
921
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500922static void *jbd2_seq_info_start(struct seq_file *seq, loff_t *pos)
923{
924 return *pos ? NULL : SEQ_START_TOKEN;
925}
926
927static void *jbd2_seq_info_next(struct seq_file *seq, void *v, loff_t *pos)
928{
929 return NULL;
930}
931
932static int jbd2_seq_info_show(struct seq_file *seq, void *v)
933{
934 struct jbd2_stats_proc_session *s = seq->private;
935
936 if (v != SEQ_START_TOKEN)
937 return 0;
Theodore Ts'o9fff24a2013-02-06 22:30:23 -0500938 seq_printf(seq, "%lu transactions (%lu requested), "
939 "each up to %u blocks\n",
940 s->stats->ts_tid, s->stats->ts_requested,
941 s->journal->j_max_transaction_buffers);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500942 if (s->stats->ts_tid == 0)
943 return 0;
944 seq_printf(seq, "average: \n %ums waiting for transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400945 jiffies_to_msecs(s->stats->run.rs_wait / s->stats->ts_tid));
Theodore Ts'o9fff24a2013-02-06 22:30:23 -0500946 seq_printf(seq, " %ums request delay\n",
947 (s->stats->ts_requested == 0) ? 0 :
948 jiffies_to_msecs(s->stats->run.rs_request_delay /
949 s->stats->ts_requested));
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500950 seq_printf(seq, " %ums running transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400951 jiffies_to_msecs(s->stats->run.rs_running / s->stats->ts_tid));
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500952 seq_printf(seq, " %ums transaction was being locked\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400953 jiffies_to_msecs(s->stats->run.rs_locked / s->stats->ts_tid));
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500954 seq_printf(seq, " %ums flushing data (in ordered mode)\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400955 jiffies_to_msecs(s->stats->run.rs_flushing / s->stats->ts_tid));
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500956 seq_printf(seq, " %ums logging transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400957 jiffies_to_msecs(s->stats->run.rs_logging / s->stats->ts_tid));
Simon Holm Thøgersenc225aa52009-01-11 22:34:01 -0500958 seq_printf(seq, " %lluus average transaction commit time\n",
959 div_u64(s->journal->j_average_commit_time, 1000));
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500960 seq_printf(seq, " %lu handles per transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400961 s->stats->run.rs_handle_count / s->stats->ts_tid);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500962 seq_printf(seq, " %lu blocks per transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400963 s->stats->run.rs_blocks / s->stats->ts_tid);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500964 seq_printf(seq, " %lu logged blocks per transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400965 s->stats->run.rs_blocks_logged / s->stats->ts_tid);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500966 return 0;
967}
968
969static void jbd2_seq_info_stop(struct seq_file *seq, void *v)
970{
971}
972
James Morris88e9d342009-09-22 16:43:43 -0700973static const struct seq_operations jbd2_seq_info_ops = {
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500974 .start = jbd2_seq_info_start,
975 .next = jbd2_seq_info_next,
976 .stop = jbd2_seq_info_stop,
977 .show = jbd2_seq_info_show,
978};
979
980static int jbd2_seq_info_open(struct inode *inode, struct file *file)
981{
Al Virod9dda782013-03-31 18:16:14 -0400982 journal_t *journal = PDE_DATA(inode);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500983 struct jbd2_stats_proc_session *s;
984 int rc, size;
985
986 s = kmalloc(sizeof(*s), GFP_KERNEL);
987 if (s == NULL)
988 return -ENOMEM;
989 size = sizeof(struct transaction_stats_s);
990 s->stats = kmalloc(size, GFP_KERNEL);
991 if (s->stats == NULL) {
992 kfree(s);
993 return -ENOMEM;
994 }
995 spin_lock(&journal->j_history_lock);
996 memcpy(s->stats, &journal->j_stats, size);
997 s->journal = journal;
998 spin_unlock(&journal->j_history_lock);
999
1000 rc = seq_open(file, &jbd2_seq_info_ops);
1001 if (rc == 0) {
1002 struct seq_file *m = file->private_data;
1003 m->private = s;
1004 } else {
1005 kfree(s->stats);
1006 kfree(s);
1007 }
1008 return rc;
1009
1010}
1011
1012static int jbd2_seq_info_release(struct inode *inode, struct file *file)
1013{
1014 struct seq_file *seq = file->private_data;
1015 struct jbd2_stats_proc_session *s = seq->private;
1016 kfree(s->stats);
1017 kfree(s);
1018 return seq_release(inode, file);
1019}
1020
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001021static const struct file_operations jbd2_seq_info_fops = {
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001022 .owner = THIS_MODULE,
1023 .open = jbd2_seq_info_open,
1024 .read = seq_read,
1025 .llseek = seq_lseek,
1026 .release = jbd2_seq_info_release,
1027};
1028
1029static struct proc_dir_entry *proc_jbd2_stats;
1030
1031static void jbd2_stats_proc_init(journal_t *journal)
1032{
Theodore Ts'o05496762008-09-16 14:36:17 -04001033 journal->j_proc_entry = proc_mkdir(journal->j_devname, proc_jbd2_stats);
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001034 if (journal->j_proc_entry) {
Denis V. Lunev79da3662008-04-29 01:02:11 -07001035 proc_create_data("info", S_IRUGO, journal->j_proc_entry,
1036 &jbd2_seq_info_fops, journal);
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001037 }
1038}
1039
1040static void jbd2_stats_proc_exit(journal_t *journal)
1041{
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001042 remove_proc_entry("info", journal->j_proc_entry);
Theodore Ts'o05496762008-09-16 14:36:17 -04001043 remove_proc_entry(journal->j_devname, proc_jbd2_stats);
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001044}
1045
Dave Kleikamp470decc2006-10-11 01:20:57 -07001046/*
1047 * Management for journal control blocks: functions to create and
1048 * destroy journal_t structures, and to initialise and read existing
1049 * journal blocks from disk. */
1050
1051/* First: create and setup a journal_t object in memory. We initialise
1052 * very few fields yet: that has to wait until we have created the
1053 * journal structures from from scratch, or loaded them from disk. */
1054
1055static journal_t * journal_init_common (void)
1056{
1057 journal_t *journal;
1058 int err;
1059
Andrew Morton3ebfdf82009-12-23 08:05:15 -05001060 journal = kzalloc(sizeof(*journal), GFP_KERNEL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001061 if (!journal)
Theodore Ts'ob7271b02010-12-18 13:39:38 -05001062 return NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001063
1064 init_waitqueue_head(&journal->j_wait_transaction_locked);
1065 init_waitqueue_head(&journal->j_wait_logspace);
1066 init_waitqueue_head(&journal->j_wait_done_commit);
1067 init_waitqueue_head(&journal->j_wait_checkpoint);
1068 init_waitqueue_head(&journal->j_wait_commit);
1069 init_waitqueue_head(&journal->j_wait_updates);
1070 mutex_init(&journal->j_barrier);
1071 mutex_init(&journal->j_checkpoint_mutex);
1072 spin_lock_init(&journal->j_revoke_lock);
1073 spin_lock_init(&journal->j_list_lock);
Theodore Ts'oa931da62010-08-03 21:35:12 -04001074 rwlock_init(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001075
Mingming Caocd02ff02007-10-16 18:38:25 -04001076 journal->j_commit_interval = (HZ * JBD2_DEFAULT_MAX_COMMIT_AGE);
Theodore Ts'o30773842009-01-03 20:27:38 -05001077 journal->j_min_batch_time = 0;
1078 journal->j_max_batch_time = 15000; /* 15ms */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001079
1080 /* The journal is marked for error until we succeed with recovery! */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001081 journal->j_flags = JBD2_ABORT;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001082
1083 /* Set up a default-sized revoke table for the new mount. */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001084 err = jbd2_journal_init_revoke(journal, JOURNAL_REVOKE_DEFAULT_HASH);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001085 if (err) {
1086 kfree(journal);
Theodore Ts'ob7271b02010-12-18 13:39:38 -05001087 return NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001088 }
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001089
Theodore Ts'obf699322009-09-30 00:32:06 -04001090 spin_lock_init(&journal->j_history_lock);
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001091
Dave Kleikamp470decc2006-10-11 01:20:57 -07001092 return journal;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001093}
1094
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001095/* jbd2_journal_init_dev and jbd2_journal_init_inode:
Dave Kleikamp470decc2006-10-11 01:20:57 -07001096 *
1097 * Create a journal structure assigned some fixed set of disk blocks to
1098 * the journal. We don't actually touch those disk blocks yet, but we
1099 * need to set up all of the mapping information to tell the journaling
1100 * system where the journal blocks are.
1101 *
1102 */
1103
1104/**
Randy Dunlap5648ba52008-04-17 10:38:59 -04001105 * journal_t * jbd2_journal_init_dev() - creates and initialises a journal structure
Dave Kleikamp470decc2006-10-11 01:20:57 -07001106 * @bdev: Block device on which to create the journal
1107 * @fs_dev: Device which hold journalled filesystem for this journal.
1108 * @start: Block nr Start of journal.
1109 * @len: Length of the journal in blocks.
1110 * @blocksize: blocksize of journalling device
Randy Dunlap5648ba52008-04-17 10:38:59 -04001111 *
1112 * Returns: a newly created journal_t *
Dave Kleikamp470decc2006-10-11 01:20:57 -07001113 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001114 * jbd2_journal_init_dev creates a journal which maps a fixed contiguous
Dave Kleikamp470decc2006-10-11 01:20:57 -07001115 * range of blocks on an arbitrary block device.
1116 *
1117 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001118journal_t * jbd2_journal_init_dev(struct block_device *bdev,
Dave Kleikamp470decc2006-10-11 01:20:57 -07001119 struct block_device *fs_dev,
Mingming Cao18eba7a2006-10-11 01:21:13 -07001120 unsigned long long start, int len, int blocksize)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001121{
1122 journal_t *journal = journal_init_common();
1123 struct buffer_head *bh;
Theodore Ts'o05496762008-09-16 14:36:17 -04001124 char *p;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001125 int n;
1126
1127 if (!journal)
1128 return NULL;
1129
1130 /* journal descriptor can store up to n blocks -bzzz */
1131 journal->j_blocksize = blocksize;
yangsheng0587aa32010-11-17 21:46:26 -05001132 journal->j_dev = bdev;
1133 journal->j_fs_dev = fs_dev;
1134 journal->j_blk_offset = start;
1135 journal->j_maxlen = len;
1136 bdevname(journal->j_dev, journal->j_devname);
1137 p = journal->j_devname;
1138 while ((p = strchr(p, '/')))
1139 *p = '!';
Jan Kara4b905672009-01-06 14:53:35 -05001140 jbd2_stats_proc_init(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001141 n = journal->j_blocksize / sizeof(journal_block_tag_t);
1142 journal->j_wbufsize = n;
1143 journal->j_wbuf = kmalloc(n * sizeof(struct buffer_head*), GFP_KERNEL);
1144 if (!journal->j_wbuf) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001145 printk(KERN_ERR "%s: Can't allocate bhs for commit thread\n",
Harvey Harrison329d2912008-04-17 10:38:59 -04001146 __func__);
Jan Kara4b905672009-01-06 14:53:35 -05001147 goto out_err;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001148 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001149
1150 bh = __getblk(journal->j_dev, start, journal->j_blocksize);
Jan Kara4b905672009-01-06 14:53:35 -05001151 if (!bh) {
1152 printk(KERN_ERR
1153 "%s: Cannot get buffer for journal superblock\n",
1154 __func__);
1155 goto out_err;
1156 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001157 journal->j_sb_buffer = bh;
1158 journal->j_superblock = (journal_superblock_t *)bh->b_data;
Jan Kara4b905672009-01-06 14:53:35 -05001159
Dave Kleikamp470decc2006-10-11 01:20:57 -07001160 return journal;
Jan Kara4b905672009-01-06 14:53:35 -05001161out_err:
Tao Ma7b02bec2009-11-10 17:13:22 +08001162 kfree(journal->j_wbuf);
Jan Kara4b905672009-01-06 14:53:35 -05001163 jbd2_stats_proc_exit(journal);
1164 kfree(journal);
1165 return NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001166}
1167
1168/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001169 * journal_t * jbd2_journal_init_inode () - creates a journal which maps to a inode.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001170 * @inode: An inode to create the journal in
1171 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001172 * jbd2_journal_init_inode creates a journal which maps an on-disk inode as
Dave Kleikamp470decc2006-10-11 01:20:57 -07001173 * the journal. The inode must exist already, must support bmap() and
1174 * must have all data blocks preallocated.
1175 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001176journal_t * jbd2_journal_init_inode (struct inode *inode)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001177{
1178 struct buffer_head *bh;
1179 journal_t *journal = journal_init_common();
Theodore Ts'o05496762008-09-16 14:36:17 -04001180 char *p;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001181 int err;
1182 int n;
Mingming Cao18eba7a2006-10-11 01:21:13 -07001183 unsigned long long blocknr;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001184
1185 if (!journal)
1186 return NULL;
1187
1188 journal->j_dev = journal->j_fs_dev = inode->i_sb->s_bdev;
1189 journal->j_inode = inode;
Theodore Ts'o05496762008-09-16 14:36:17 -04001190 bdevname(journal->j_dev, journal->j_devname);
1191 p = journal->j_devname;
1192 while ((p = strchr(p, '/')))
1193 *p = '!';
1194 p = journal->j_devname + strlen(journal->j_devname);
Theodore Ts'o90576c02009-09-29 15:51:30 -04001195 sprintf(p, "-%lu", journal->j_inode->i_ino);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001196 jbd_debug(1,
1197 "journal %p: inode %s/%ld, size %Ld, bits %d, blksize %ld\n",
1198 journal, inode->i_sb->s_id, inode->i_ino,
1199 (long long) inode->i_size,
1200 inode->i_sb->s_blocksize_bits, inode->i_sb->s_blocksize);
1201
1202 journal->j_maxlen = inode->i_size >> inode->i_sb->s_blocksize_bits;
1203 journal->j_blocksize = inode->i_sb->s_blocksize;
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001204 jbd2_stats_proc_init(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001205
1206 /* journal descriptor can store up to n blocks -bzzz */
1207 n = journal->j_blocksize / sizeof(journal_block_tag_t);
1208 journal->j_wbufsize = n;
1209 journal->j_wbuf = kmalloc(n * sizeof(struct buffer_head*), GFP_KERNEL);
1210 if (!journal->j_wbuf) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001211 printk(KERN_ERR "%s: Can't allocate bhs for commit thread\n",
Harvey Harrison329d2912008-04-17 10:38:59 -04001212 __func__);
Jan Kara4b905672009-01-06 14:53:35 -05001213 goto out_err;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001214 }
1215
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001216 err = jbd2_journal_bmap(journal, 0, &blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001217 /* If that failed, give up */
1218 if (err) {
Justin P. Mattock3c26bdb2011-02-26 20:34:05 -08001219 printk(KERN_ERR "%s: Cannot locate journal superblock\n",
Harvey Harrison329d2912008-04-17 10:38:59 -04001220 __func__);
Jan Kara4b905672009-01-06 14:53:35 -05001221 goto out_err;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001222 }
1223
1224 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
Jan Kara4b905672009-01-06 14:53:35 -05001225 if (!bh) {
1226 printk(KERN_ERR
1227 "%s: Cannot get buffer for journal superblock\n",
1228 __func__);
1229 goto out_err;
1230 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001231 journal->j_sb_buffer = bh;
1232 journal->j_superblock = (journal_superblock_t *)bh->b_data;
1233
1234 return journal;
Jan Kara4b905672009-01-06 14:53:35 -05001235out_err:
Tao Ma7b02bec2009-11-10 17:13:22 +08001236 kfree(journal->j_wbuf);
Jan Kara4b905672009-01-06 14:53:35 -05001237 jbd2_stats_proc_exit(journal);
1238 kfree(journal);
1239 return NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001240}
1241
1242/*
1243 * If the journal init or create aborts, we need to mark the journal
1244 * superblock as being NULL to prevent the journal destroy from writing
1245 * back a bogus superblock.
1246 */
1247static void journal_fail_superblock (journal_t *journal)
1248{
1249 struct buffer_head *bh = journal->j_sb_buffer;
1250 brelse(bh);
1251 journal->j_sb_buffer = NULL;
1252}
1253
1254/*
1255 * Given a journal_t structure, initialise the various fields for
1256 * startup of a new journaling session. We use this both when creating
1257 * a journal, and after recovering an old journal to reset it for
1258 * subsequent use.
1259 */
1260
1261static int journal_reset(journal_t *journal)
1262{
1263 journal_superblock_t *sb = journal->j_superblock;
Mingming Cao18eba7a2006-10-11 01:21:13 -07001264 unsigned long long first, last;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001265
1266 first = be32_to_cpu(sb->s_first);
1267 last = be32_to_cpu(sb->s_maxlen);
Jan Karaf6f50e22009-07-17 10:40:01 -04001268 if (first + JBD2_MIN_JOURNAL_BLOCKS > last + 1) {
Eryu Guanf2a44522011-11-01 19:09:18 -04001269 printk(KERN_ERR "JBD2: Journal too short (blocks %llu-%llu).\n",
Jan Karaf6f50e22009-07-17 10:40:01 -04001270 first, last);
1271 journal_fail_superblock(journal);
1272 return -EINVAL;
1273 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001274
1275 journal->j_first = first;
1276 journal->j_last = last;
1277
1278 journal->j_head = first;
1279 journal->j_tail = first;
1280 journal->j_free = last - first;
1281
1282 journal->j_tail_sequence = journal->j_transaction_sequence;
1283 journal->j_commit_sequence = journal->j_transaction_sequence - 1;
1284 journal->j_commit_request = journal->j_commit_sequence;
1285
1286 journal->j_max_transaction_buffers = journal->j_maxlen / 4;
1287
Dave Kleikamp470decc2006-10-11 01:20:57 -07001288 /*
1289 * As a special case, if the on-disk copy is already marked as needing
Jan Kara24bcc892012-03-13 15:41:04 -04001290 * no recovery (s_start == 0), then we can safely defer the superblock
1291 * update until the next commit by setting JBD2_FLUSHED. This avoids
Dave Kleikamp470decc2006-10-11 01:20:57 -07001292 * attempting a write to a potential-readonly device.
1293 */
Jan Kara24bcc892012-03-13 15:41:04 -04001294 if (sb->s_start == 0) {
Eryu Guanf2a44522011-11-01 19:09:18 -04001295 jbd_debug(1, "JBD2: Skipping superblock update on recovered sb "
Dave Kleikamp470decc2006-10-11 01:20:57 -07001296 "(start %ld, seq %d, errno %d)\n",
1297 journal->j_tail, journal->j_tail_sequence,
1298 journal->j_errno);
Jan Kara24bcc892012-03-13 15:41:04 -04001299 journal->j_flags |= JBD2_FLUSHED;
1300 } else {
Jan Karaa78bb112012-03-13 15:43:04 -04001301 /* Lock here to make assertions happy... */
1302 mutex_lock(&journal->j_checkpoint_mutex);
Jan Kara79feb522012-03-13 22:22:54 -04001303 /*
1304 * Update log tail information. We use WRITE_FUA since new
1305 * transaction will start reusing journal space and so we
1306 * must make sure information about current log tail is on
1307 * disk before that.
1308 */
1309 jbd2_journal_update_sb_log_tail(journal,
1310 journal->j_tail_sequence,
1311 journal->j_tail,
1312 WRITE_FUA);
Jan Karaa78bb112012-03-13 15:43:04 -04001313 mutex_unlock(&journal->j_checkpoint_mutex);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001314 }
Jan Kara24bcc892012-03-13 15:41:04 -04001315 return jbd2_journal_start_thread(journal);
1316}
Dave Kleikamp470decc2006-10-11 01:20:57 -07001317
Jan Kara79feb522012-03-13 22:22:54 -04001318static void jbd2_write_superblock(journal_t *journal, int write_op)
Jan Kara24bcc892012-03-13 15:41:04 -04001319{
1320 struct buffer_head *bh = journal->j_sb_buffer;
Jan Kara79feb522012-03-13 22:22:54 -04001321 int ret;
Jan Kara24bcc892012-03-13 15:41:04 -04001322
Jan Kara79feb522012-03-13 22:22:54 -04001323 trace_jbd2_write_superblock(journal, write_op);
1324 if (!(journal->j_flags & JBD2_BARRIER))
1325 write_op &= ~(REQ_FUA | REQ_FLUSH);
1326 lock_buffer(bh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04001327 if (buffer_write_io_error(bh)) {
1328 /*
1329 * Oh, dear. A previous attempt to write the journal
1330 * superblock failed. This could happen because the
1331 * USB device was yanked out. Or it could happen to
1332 * be a transient write error and maybe the block will
1333 * be remapped. Nothing we can do but to retry the
1334 * write and hope for the best.
1335 */
1336 printk(KERN_ERR "JBD2: previous I/O error detected "
1337 "for journal superblock update for %s.\n",
1338 journal->j_devname);
1339 clear_buffer_write_io_error(bh);
1340 set_buffer_uptodate(bh);
1341 }
Jan Kara79feb522012-03-13 22:22:54 -04001342 get_bh(bh);
1343 bh->b_end_io = end_buffer_write_sync;
1344 ret = submit_bh(write_op, bh);
1345 wait_on_buffer(bh);
Jan Kara24bcc892012-03-13 15:41:04 -04001346 if (buffer_write_io_error(bh)) {
Jan Kara24bcc892012-03-13 15:41:04 -04001347 clear_buffer_write_io_error(bh);
1348 set_buffer_uptodate(bh);
Jan Kara79feb522012-03-13 22:22:54 -04001349 ret = -EIO;
1350 }
1351 if (ret) {
1352 printk(KERN_ERR "JBD2: Error %d detected when updating "
1353 "journal superblock for %s.\n", ret,
1354 journal->j_devname);
Jan Kara24bcc892012-03-13 15:41:04 -04001355 }
1356}
Theodore Ts'o914258b2008-10-06 21:35:40 -04001357
Jan Kara24bcc892012-03-13 15:41:04 -04001358/**
1359 * jbd2_journal_update_sb_log_tail() - Update log tail in journal sb on disk.
1360 * @journal: The journal to update.
Jan Kara79feb522012-03-13 22:22:54 -04001361 * @tail_tid: TID of the new transaction at the tail of the log
1362 * @tail_block: The first block of the transaction at the tail of the log
1363 * @write_op: With which operation should we write the journal sb
Jan Kara24bcc892012-03-13 15:41:04 -04001364 *
1365 * Update a journal's superblock information about log tail and write it to
1366 * disk, waiting for the IO to complete.
1367 */
Jan Kara79feb522012-03-13 22:22:54 -04001368void jbd2_journal_update_sb_log_tail(journal_t *journal, tid_t tail_tid,
1369 unsigned long tail_block, int write_op)
Jan Kara24bcc892012-03-13 15:41:04 -04001370{
1371 journal_superblock_t *sb = journal->j_superblock;
1372
Jan Karaa78bb112012-03-13 15:43:04 -04001373 BUG_ON(!mutex_is_locked(&journal->j_checkpoint_mutex));
Jan Kara79feb522012-03-13 22:22:54 -04001374 jbd_debug(1, "JBD2: updating superblock (start %lu, seq %u)\n",
1375 tail_block, tail_tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001376
Jan Kara79feb522012-03-13 22:22:54 -04001377 sb->s_sequence = cpu_to_be32(tail_tid);
1378 sb->s_start = cpu_to_be32(tail_block);
Jan Kara24bcc892012-03-13 15:41:04 -04001379
Jan Kara79feb522012-03-13 22:22:54 -04001380 jbd2_write_superblock(journal, write_op);
Jan Kara24bcc892012-03-13 15:41:04 -04001381
1382 /* Log is no longer empty */
1383 write_lock(&journal->j_state_lock);
1384 WARN_ON(!sb->s_sequence);
1385 journal->j_flags &= ~JBD2_FLUSHED;
1386 write_unlock(&journal->j_state_lock);
1387}
1388
1389/**
1390 * jbd2_mark_journal_empty() - Mark on disk journal as empty.
1391 * @journal: The journal to update.
1392 *
1393 * Update a journal's dynamic superblock fields to show that journal is empty.
1394 * Write updated superblock to disk waiting for IO to complete.
1395 */
1396static void jbd2_mark_journal_empty(journal_t *journal)
1397{
1398 journal_superblock_t *sb = journal->j_superblock;
1399
Jan Karaa78bb112012-03-13 15:43:04 -04001400 BUG_ON(!mutex_is_locked(&journal->j_checkpoint_mutex));
Dave Kleikamp470decc2006-10-11 01:20:57 -07001401 read_lock(&journal->j_state_lock);
Eric Sandeeneeecef02012-08-18 22:29:40 -04001402 /* Is it already empty? */
1403 if (sb->s_start == 0) {
1404 read_unlock(&journal->j_state_lock);
1405 return;
1406 }
Jan Kara24bcc892012-03-13 15:41:04 -04001407 jbd_debug(1, "JBD2: Marking journal as empty (seq %d)\n",
1408 journal->j_tail_sequence);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001409
1410 sb->s_sequence = cpu_to_be32(journal->j_tail_sequence);
Jan Kara24bcc892012-03-13 15:41:04 -04001411 sb->s_start = cpu_to_be32(0);
1412 read_unlock(&journal->j_state_lock);
1413
Jan Kara79feb522012-03-13 22:22:54 -04001414 jbd2_write_superblock(journal, WRITE_FUA);
Jan Kara24bcc892012-03-13 15:41:04 -04001415
1416 /* Log is no longer empty */
1417 write_lock(&journal->j_state_lock);
1418 journal->j_flags |= JBD2_FLUSHED;
1419 write_unlock(&journal->j_state_lock);
1420}
1421
1422
1423/**
1424 * jbd2_journal_update_sb_errno() - Update error in the journal.
1425 * @journal: The journal to update.
1426 *
1427 * Update a journal's errno. Write updated superblock to disk waiting for IO
1428 * to complete.
1429 */
Theodore Ts'od796c522012-08-05 19:04:57 -04001430void jbd2_journal_update_sb_errno(journal_t *journal)
Jan Kara24bcc892012-03-13 15:41:04 -04001431{
1432 journal_superblock_t *sb = journal->j_superblock;
1433
1434 read_lock(&journal->j_state_lock);
1435 jbd_debug(1, "JBD2: updating superblock error (errno %d)\n",
1436 journal->j_errno);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001437 sb->s_errno = cpu_to_be32(journal->j_errno);
Darrick J. Wong4fd5ea42012-05-27 08:08:22 -04001438 jbd2_superblock_csum_set(journal, sb);
Theodore Ts'oa931da62010-08-03 21:35:12 -04001439 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001440
Jan Kara79feb522012-03-13 22:22:54 -04001441 jbd2_write_superblock(journal, WRITE_SYNC);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001442}
Theodore Ts'od796c522012-08-05 19:04:57 -04001443EXPORT_SYMBOL(jbd2_journal_update_sb_errno);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001444
1445/*
1446 * Read the superblock for a given journal, performing initial
1447 * validation of the format.
1448 */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001449static int journal_get_superblock(journal_t *journal)
1450{
1451 struct buffer_head *bh;
1452 journal_superblock_t *sb;
1453 int err = -EIO;
1454
1455 bh = journal->j_sb_buffer;
1456
1457 J_ASSERT(bh != NULL);
1458 if (!buffer_uptodate(bh)) {
1459 ll_rw_block(READ, 1, &bh);
1460 wait_on_buffer(bh);
1461 if (!buffer_uptodate(bh)) {
Eryu Guanf2a44522011-11-01 19:09:18 -04001462 printk(KERN_ERR
1463 "JBD2: IO error reading journal superblock\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -07001464 goto out;
1465 }
1466 }
1467
Darrick J. Wong25ed6e82012-05-27 07:48:56 -04001468 if (buffer_verified(bh))
1469 return 0;
1470
Dave Kleikamp470decc2006-10-11 01:20:57 -07001471 sb = journal->j_superblock;
1472
1473 err = -EINVAL;
1474
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001475 if (sb->s_header.h_magic != cpu_to_be32(JBD2_MAGIC_NUMBER) ||
Dave Kleikamp470decc2006-10-11 01:20:57 -07001476 sb->s_blocksize != cpu_to_be32(journal->j_blocksize)) {
Eryu Guanf2a44522011-11-01 19:09:18 -04001477 printk(KERN_WARNING "JBD2: no valid journal superblock found\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -07001478 goto out;
1479 }
1480
1481 switch(be32_to_cpu(sb->s_header.h_blocktype)) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001482 case JBD2_SUPERBLOCK_V1:
Dave Kleikamp470decc2006-10-11 01:20:57 -07001483 journal->j_format_version = 1;
1484 break;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001485 case JBD2_SUPERBLOCK_V2:
Dave Kleikamp470decc2006-10-11 01:20:57 -07001486 journal->j_format_version = 2;
1487 break;
1488 default:
Eryu Guanf2a44522011-11-01 19:09:18 -04001489 printk(KERN_WARNING "JBD2: unrecognised superblock format ID\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -07001490 goto out;
1491 }
1492
1493 if (be32_to_cpu(sb->s_maxlen) < journal->j_maxlen)
1494 journal->j_maxlen = be32_to_cpu(sb->s_maxlen);
1495 else if (be32_to_cpu(sb->s_maxlen) > journal->j_maxlen) {
Eryu Guanf2a44522011-11-01 19:09:18 -04001496 printk(KERN_WARNING "JBD2: journal file too short\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -07001497 goto out;
1498 }
1499
Eryu Guan87622022011-11-01 19:04:59 -04001500 if (be32_to_cpu(sb->s_first) == 0 ||
1501 be32_to_cpu(sb->s_first) >= journal->j_maxlen) {
1502 printk(KERN_WARNING
1503 "JBD2: Invalid start block of journal: %u\n",
1504 be32_to_cpu(sb->s_first));
1505 goto out;
1506 }
1507
Darrick J. Wong25ed6e82012-05-27 07:48:56 -04001508 if (JBD2_HAS_COMPAT_FEATURE(journal, JBD2_FEATURE_COMPAT_CHECKSUM) &&
1509 JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V2)) {
1510 /* Can't have checksum v1 and v2 on at the same time! */
1511 printk(KERN_ERR "JBD: Can't enable checksumming v1 and v2 "
1512 "at the same time!\n");
1513 goto out;
1514 }
1515
1516 if (!jbd2_verify_csum_type(journal, sb)) {
1517 printk(KERN_ERR "JBD: Unknown checksum type\n");
1518 goto out;
1519 }
1520
Darrick J. Wong01b5adc2012-05-27 07:50:56 -04001521 /* Load the checksum driver */
1522 if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V2)) {
1523 journal->j_chksum_driver = crypto_alloc_shash("crc32c", 0, 0);
1524 if (IS_ERR(journal->j_chksum_driver)) {
1525 printk(KERN_ERR "JBD: Cannot load crc32c driver.\n");
1526 err = PTR_ERR(journal->j_chksum_driver);
1527 journal->j_chksum_driver = NULL;
1528 goto out;
1529 }
1530 }
1531
Darrick J. Wong4fd5ea42012-05-27 08:08:22 -04001532 /* Check superblock checksum */
1533 if (!jbd2_superblock_csum_verify(journal, sb)) {
1534 printk(KERN_ERR "JBD: journal checksum error\n");
1535 goto out;
1536 }
1537
1538 /* Precompute checksum seed for all metadata */
1539 if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V2))
1540 journal->j_csum_seed = jbd2_chksum(journal, ~0, sb->s_uuid,
1541 sizeof(sb->s_uuid));
1542
Darrick J. Wong25ed6e82012-05-27 07:48:56 -04001543 set_buffer_verified(bh);
1544
Dave Kleikamp470decc2006-10-11 01:20:57 -07001545 return 0;
1546
1547out:
1548 journal_fail_superblock(journal);
1549 return err;
1550}
1551
1552/*
1553 * Load the on-disk journal superblock and read the key fields into the
1554 * journal_t.
1555 */
1556
1557static int load_superblock(journal_t *journal)
1558{
1559 int err;
1560 journal_superblock_t *sb;
1561
1562 err = journal_get_superblock(journal);
1563 if (err)
1564 return err;
1565
1566 sb = journal->j_superblock;
1567
1568 journal->j_tail_sequence = be32_to_cpu(sb->s_sequence);
1569 journal->j_tail = be32_to_cpu(sb->s_start);
1570 journal->j_first = be32_to_cpu(sb->s_first);
1571 journal->j_last = be32_to_cpu(sb->s_maxlen);
1572 journal->j_errno = be32_to_cpu(sb->s_errno);
1573
1574 return 0;
1575}
1576
1577
1578/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001579 * int jbd2_journal_load() - Read journal from disk.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001580 * @journal: Journal to act on.
1581 *
1582 * Given a journal_t structure which tells us which disk blocks contain
1583 * a journal, read the journal from disk to initialise the in-memory
1584 * structures.
1585 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001586int jbd2_journal_load(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001587{
1588 int err;
1589 journal_superblock_t *sb;
1590
1591 err = load_superblock(journal);
1592 if (err)
1593 return err;
1594
1595 sb = journal->j_superblock;
1596 /* If this is a V2 superblock, then we have to check the
1597 * features flags on it. */
1598
1599 if (journal->j_format_version >= 2) {
1600 if ((sb->s_feature_ro_compat &
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001601 ~cpu_to_be32(JBD2_KNOWN_ROCOMPAT_FEATURES)) ||
Dave Kleikamp470decc2006-10-11 01:20:57 -07001602 (sb->s_feature_incompat &
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001603 ~cpu_to_be32(JBD2_KNOWN_INCOMPAT_FEATURES))) {
Eryu Guanf2a44522011-11-01 19:09:18 -04001604 printk(KERN_WARNING
1605 "JBD2: Unrecognised features on journal\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -07001606 return -EINVAL;
1607 }
1608 }
1609
Theodore Ts'od2eecb02009-12-07 10:36:20 -05001610 /*
1611 * Create a slab for this blocksize
1612 */
1613 err = jbd2_journal_create_slab(be32_to_cpu(sb->s_blocksize));
1614 if (err)
1615 return err;
1616
Dave Kleikamp470decc2006-10-11 01:20:57 -07001617 /* Let the recovery code check whether it needs to recover any
1618 * data from the journal. */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001619 if (jbd2_journal_recover(journal))
Dave Kleikamp470decc2006-10-11 01:20:57 -07001620 goto recovery_error;
1621
Theodore Ts'oe6a47422009-11-15 15:31:37 -05001622 if (journal->j_failed_commit) {
1623 printk(KERN_ERR "JBD2: journal transaction %u on %s "
1624 "is corrupt.\n", journal->j_failed_commit,
1625 journal->j_devname);
1626 return -EIO;
1627 }
1628
Dave Kleikamp470decc2006-10-11 01:20:57 -07001629 /* OK, we've finished with the dynamic journal bits:
1630 * reinitialise the dynamic contents of the superblock in memory
1631 * and reset them on disk. */
1632 if (journal_reset(journal))
1633 goto recovery_error;
1634
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001635 journal->j_flags &= ~JBD2_ABORT;
1636 journal->j_flags |= JBD2_LOADED;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001637 return 0;
1638
1639recovery_error:
Eryu Guanf2a44522011-11-01 19:09:18 -04001640 printk(KERN_WARNING "JBD2: recovery failed\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -07001641 return -EIO;
1642}
1643
1644/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001645 * void jbd2_journal_destroy() - Release a journal_t structure.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001646 * @journal: Journal to act on.
1647 *
1648 * Release a journal_t structure once it is no longer in use by the
1649 * journaled object.
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001650 * Return <0 if we couldn't clean up the journal.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001651 */
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001652int jbd2_journal_destroy(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001653{
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001654 int err = 0;
1655
Dave Kleikamp470decc2006-10-11 01:20:57 -07001656 /* Wait for the commit thread to wake up and die. */
1657 journal_kill_thread(journal);
1658
1659 /* Force a final log commit */
1660 if (journal->j_running_transaction)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001661 jbd2_journal_commit_transaction(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001662
1663 /* Force any old transactions to disk */
1664
1665 /* Totally anal locking here... */
1666 spin_lock(&journal->j_list_lock);
1667 while (journal->j_checkpoint_transactions != NULL) {
1668 spin_unlock(&journal->j_list_lock);
Theodore Ts'o1a0d3782008-11-05 00:09:22 -05001669 mutex_lock(&journal->j_checkpoint_mutex);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001670 jbd2_log_do_checkpoint(journal);
Theodore Ts'o1a0d3782008-11-05 00:09:22 -05001671 mutex_unlock(&journal->j_checkpoint_mutex);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001672 spin_lock(&journal->j_list_lock);
1673 }
1674
1675 J_ASSERT(journal->j_running_transaction == NULL);
1676 J_ASSERT(journal->j_committing_transaction == NULL);
1677 J_ASSERT(journal->j_checkpoint_transactions == NULL);
1678 spin_unlock(&journal->j_list_lock);
1679
Dave Kleikamp470decc2006-10-11 01:20:57 -07001680 if (journal->j_sb_buffer) {
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001681 if (!is_journal_aborted(journal)) {
Jan Karaa78bb112012-03-13 15:43:04 -04001682 mutex_lock(&journal->j_checkpoint_mutex);
Jan Kara24bcc892012-03-13 15:41:04 -04001683 jbd2_mark_journal_empty(journal);
Jan Karaa78bb112012-03-13 15:43:04 -04001684 mutex_unlock(&journal->j_checkpoint_mutex);
1685 } else
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001686 err = -EIO;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001687 brelse(journal->j_sb_buffer);
1688 }
1689
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001690 if (journal->j_proc_entry)
1691 jbd2_stats_proc_exit(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001692 if (journal->j_inode)
1693 iput(journal->j_inode);
1694 if (journal->j_revoke)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001695 jbd2_journal_destroy_revoke(journal);
Darrick J. Wong01b5adc2012-05-27 07:50:56 -04001696 if (journal->j_chksum_driver)
1697 crypto_free_shash(journal->j_chksum_driver);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001698 kfree(journal->j_wbuf);
1699 kfree(journal);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001700
1701 return err;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001702}
1703
1704
1705/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001706 *int jbd2_journal_check_used_features () - Check if features specified are used.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001707 * @journal: Journal to check.
1708 * @compat: bitmask of compatible features
1709 * @ro: bitmask of features that force read-only mount
1710 * @incompat: bitmask of incompatible features
1711 *
1712 * Check whether the journal uses all of a given set of
1713 * features. Return true (non-zero) if it does.
1714 **/
1715
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001716int jbd2_journal_check_used_features (journal_t *journal, unsigned long compat,
Dave Kleikamp470decc2006-10-11 01:20:57 -07001717 unsigned long ro, unsigned long incompat)
1718{
1719 journal_superblock_t *sb;
1720
1721 if (!compat && !ro && !incompat)
1722 return 1;
Patrick J. LoPresti1113e1b2010-07-22 15:04:16 -07001723 /* Load journal superblock if it is not loaded yet. */
1724 if (journal->j_format_version == 0 &&
1725 journal_get_superblock(journal) != 0)
1726 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001727 if (journal->j_format_version == 1)
1728 return 0;
1729
1730 sb = journal->j_superblock;
1731
1732 if (((be32_to_cpu(sb->s_feature_compat) & compat) == compat) &&
1733 ((be32_to_cpu(sb->s_feature_ro_compat) & ro) == ro) &&
1734 ((be32_to_cpu(sb->s_feature_incompat) & incompat) == incompat))
1735 return 1;
1736
1737 return 0;
1738}
1739
1740/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001741 * int jbd2_journal_check_available_features() - Check feature set in journalling layer
Dave Kleikamp470decc2006-10-11 01:20:57 -07001742 * @journal: Journal to check.
1743 * @compat: bitmask of compatible features
1744 * @ro: bitmask of features that force read-only mount
1745 * @incompat: bitmask of incompatible features
1746 *
1747 * Check whether the journaling code supports the use of
1748 * all of a given set of features on this journal. Return true
1749 * (non-zero) if it can. */
1750
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001751int jbd2_journal_check_available_features (journal_t *journal, unsigned long compat,
Dave Kleikamp470decc2006-10-11 01:20:57 -07001752 unsigned long ro, unsigned long incompat)
1753{
Dave Kleikamp470decc2006-10-11 01:20:57 -07001754 if (!compat && !ro && !incompat)
1755 return 1;
1756
Dave Kleikamp470decc2006-10-11 01:20:57 -07001757 /* We can support any known requested features iff the
1758 * superblock is in version 2. Otherwise we fail to support any
1759 * extended sb features. */
1760
1761 if (journal->j_format_version != 2)
1762 return 0;
1763
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001764 if ((compat & JBD2_KNOWN_COMPAT_FEATURES) == compat &&
1765 (ro & JBD2_KNOWN_ROCOMPAT_FEATURES) == ro &&
1766 (incompat & JBD2_KNOWN_INCOMPAT_FEATURES) == incompat)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001767 return 1;
1768
1769 return 0;
1770}
1771
1772/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001773 * int jbd2_journal_set_features () - Mark a given journal feature in the superblock
Dave Kleikamp470decc2006-10-11 01:20:57 -07001774 * @journal: Journal to act on.
1775 * @compat: bitmask of compatible features
1776 * @ro: bitmask of features that force read-only mount
1777 * @incompat: bitmask of incompatible features
1778 *
1779 * Mark a given journal feature as present on the
1780 * superblock. Returns true if the requested features could be set.
1781 *
1782 */
1783
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001784int jbd2_journal_set_features (journal_t *journal, unsigned long compat,
Dave Kleikamp470decc2006-10-11 01:20:57 -07001785 unsigned long ro, unsigned long incompat)
1786{
Darrick J. Wong25ed6e82012-05-27 07:48:56 -04001787#define INCOMPAT_FEATURE_ON(f) \
1788 ((incompat & (f)) && !(sb->s_feature_incompat & cpu_to_be32(f)))
1789#define COMPAT_FEATURE_ON(f) \
1790 ((compat & (f)) && !(sb->s_feature_compat & cpu_to_be32(f)))
Dave Kleikamp470decc2006-10-11 01:20:57 -07001791 journal_superblock_t *sb;
1792
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001793 if (jbd2_journal_check_used_features(journal, compat, ro, incompat))
Dave Kleikamp470decc2006-10-11 01:20:57 -07001794 return 1;
1795
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001796 if (!jbd2_journal_check_available_features(journal, compat, ro, incompat))
Dave Kleikamp470decc2006-10-11 01:20:57 -07001797 return 0;
1798
Darrick J. Wong25ed6e82012-05-27 07:48:56 -04001799 /* Asking for checksumming v2 and v1? Only give them v2. */
1800 if (incompat & JBD2_FEATURE_INCOMPAT_CSUM_V2 &&
1801 compat & JBD2_FEATURE_COMPAT_CHECKSUM)
1802 compat &= ~JBD2_FEATURE_COMPAT_CHECKSUM;
1803
Dave Kleikamp470decc2006-10-11 01:20:57 -07001804 jbd_debug(1, "Setting new features 0x%lx/0x%lx/0x%lx\n",
1805 compat, ro, incompat);
1806
1807 sb = journal->j_superblock;
1808
Darrick J. Wong25ed6e82012-05-27 07:48:56 -04001809 /* If enabling v2 checksums, update superblock */
1810 if (INCOMPAT_FEATURE_ON(JBD2_FEATURE_INCOMPAT_CSUM_V2)) {
1811 sb->s_checksum_type = JBD2_CRC32C_CHKSUM;
1812 sb->s_feature_compat &=
1813 ~cpu_to_be32(JBD2_FEATURE_COMPAT_CHECKSUM);
Darrick J. Wong01b5adc2012-05-27 07:50:56 -04001814
1815 /* Load the checksum driver */
1816 if (journal->j_chksum_driver == NULL) {
1817 journal->j_chksum_driver = crypto_alloc_shash("crc32c",
1818 0, 0);
1819 if (IS_ERR(journal->j_chksum_driver)) {
1820 printk(KERN_ERR "JBD: Cannot load crc32c "
1821 "driver.\n");
1822 journal->j_chksum_driver = NULL;
1823 return 0;
1824 }
1825 }
Darrick J. Wong4fd5ea42012-05-27 08:08:22 -04001826
1827 /* Precompute checksum seed for all metadata */
1828 if (JBD2_HAS_INCOMPAT_FEATURE(journal,
1829 JBD2_FEATURE_INCOMPAT_CSUM_V2))
1830 journal->j_csum_seed = jbd2_chksum(journal, ~0,
1831 sb->s_uuid,
1832 sizeof(sb->s_uuid));
Darrick J. Wong25ed6e82012-05-27 07:48:56 -04001833 }
1834
1835 /* If enabling v1 checksums, downgrade superblock */
1836 if (COMPAT_FEATURE_ON(JBD2_FEATURE_COMPAT_CHECKSUM))
1837 sb->s_feature_incompat &=
1838 ~cpu_to_be32(JBD2_FEATURE_INCOMPAT_CSUM_V2);
1839
Dave Kleikamp470decc2006-10-11 01:20:57 -07001840 sb->s_feature_compat |= cpu_to_be32(compat);
1841 sb->s_feature_ro_compat |= cpu_to_be32(ro);
1842 sb->s_feature_incompat |= cpu_to_be32(incompat);
1843
1844 return 1;
Darrick J. Wong25ed6e82012-05-27 07:48:56 -04001845#undef COMPAT_FEATURE_ON
1846#undef INCOMPAT_FEATURE_ON
Dave Kleikamp470decc2006-10-11 01:20:57 -07001847}
1848
Girish Shilamkar818d2762008-01-28 23:58:27 -05001849/*
1850 * jbd2_journal_clear_features () - Clear a given journal feature in the
1851 * superblock
1852 * @journal: Journal to act on.
1853 * @compat: bitmask of compatible features
1854 * @ro: bitmask of features that force read-only mount
1855 * @incompat: bitmask of incompatible features
1856 *
1857 * Clear a given journal feature as present on the
1858 * superblock.
1859 */
1860void jbd2_journal_clear_features(journal_t *journal, unsigned long compat,
1861 unsigned long ro, unsigned long incompat)
1862{
1863 journal_superblock_t *sb;
1864
1865 jbd_debug(1, "Clear features 0x%lx/0x%lx/0x%lx\n",
1866 compat, ro, incompat);
1867
1868 sb = journal->j_superblock;
1869
1870 sb->s_feature_compat &= ~cpu_to_be32(compat);
1871 sb->s_feature_ro_compat &= ~cpu_to_be32(ro);
1872 sb->s_feature_incompat &= ~cpu_to_be32(incompat);
1873}
1874EXPORT_SYMBOL(jbd2_journal_clear_features);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001875
1876/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001877 * int jbd2_journal_flush () - Flush journal
Dave Kleikamp470decc2006-10-11 01:20:57 -07001878 * @journal: Journal to act on.
1879 *
1880 * Flush all data for a given journal to disk and empty the journal.
1881 * Filesystems can use this when remounting readonly to ensure that
1882 * recovery does not need to happen on remount.
1883 */
1884
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001885int jbd2_journal_flush(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001886{
1887 int err = 0;
1888 transaction_t *transaction = NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001889
Theodore Ts'oa931da62010-08-03 21:35:12 -04001890 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001891
1892 /* Force everything buffered to the log... */
1893 if (journal->j_running_transaction) {
1894 transaction = journal->j_running_transaction;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001895 __jbd2_log_start_commit(journal, transaction->t_tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001896 } else if (journal->j_committing_transaction)
1897 transaction = journal->j_committing_transaction;
1898
1899 /* Wait for the log commit to complete... */
1900 if (transaction) {
1901 tid_t tid = transaction->t_tid;
1902
Theodore Ts'oa931da62010-08-03 21:35:12 -04001903 write_unlock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001904 jbd2_log_wait_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001905 } else {
Theodore Ts'oa931da62010-08-03 21:35:12 -04001906 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001907 }
1908
1909 /* ...and flush everything in the log out to disk. */
1910 spin_lock(&journal->j_list_lock);
1911 while (!err && journal->j_checkpoint_transactions != NULL) {
1912 spin_unlock(&journal->j_list_lock);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001913 mutex_lock(&journal->j_checkpoint_mutex);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001914 err = jbd2_log_do_checkpoint(journal);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001915 mutex_unlock(&journal->j_checkpoint_mutex);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001916 spin_lock(&journal->j_list_lock);
1917 }
1918 spin_unlock(&journal->j_list_lock);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001919
1920 if (is_journal_aborted(journal))
1921 return -EIO;
1922
Jan Karaa78bb112012-03-13 15:43:04 -04001923 mutex_lock(&journal->j_checkpoint_mutex);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001924 jbd2_cleanup_journal_tail(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001925
1926 /* Finally, mark the journal as really needing no recovery.
1927 * This sets s_start==0 in the underlying superblock, which is
1928 * the magic code for a fully-recovered superblock. Any future
1929 * commits of data to the journal will restore the current
1930 * s_start value. */
Jan Kara24bcc892012-03-13 15:41:04 -04001931 jbd2_mark_journal_empty(journal);
Jan Karaa78bb112012-03-13 15:43:04 -04001932 mutex_unlock(&journal->j_checkpoint_mutex);
Theodore Ts'oa931da62010-08-03 21:35:12 -04001933 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001934 J_ASSERT(!journal->j_running_transaction);
1935 J_ASSERT(!journal->j_committing_transaction);
1936 J_ASSERT(!journal->j_checkpoint_transactions);
1937 J_ASSERT(journal->j_head == journal->j_tail);
1938 J_ASSERT(journal->j_tail_sequence == journal->j_transaction_sequence);
Theodore Ts'oa931da62010-08-03 21:35:12 -04001939 write_unlock(&journal->j_state_lock);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001940 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001941}
1942
1943/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001944 * int jbd2_journal_wipe() - Wipe journal contents
Dave Kleikamp470decc2006-10-11 01:20:57 -07001945 * @journal: Journal to act on.
1946 * @write: flag (see below)
1947 *
1948 * Wipe out all of the contents of a journal, safely. This will produce
1949 * a warning if the journal contains any valid recovery information.
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001950 * Must be called between journal_init_*() and jbd2_journal_load().
Dave Kleikamp470decc2006-10-11 01:20:57 -07001951 *
1952 * If 'write' is non-zero, then we wipe out the journal on disk; otherwise
1953 * we merely suppress recovery.
1954 */
1955
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001956int jbd2_journal_wipe(journal_t *journal, int write)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001957{
Dave Kleikamp470decc2006-10-11 01:20:57 -07001958 int err = 0;
1959
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001960 J_ASSERT (!(journal->j_flags & JBD2_LOADED));
Dave Kleikamp470decc2006-10-11 01:20:57 -07001961
1962 err = load_superblock(journal);
1963 if (err)
1964 return err;
1965
Dave Kleikamp470decc2006-10-11 01:20:57 -07001966 if (!journal->j_tail)
1967 goto no_recovery;
1968
Eryu Guanf2a44522011-11-01 19:09:18 -04001969 printk(KERN_WARNING "JBD2: %s recovery information on journal\n",
Dave Kleikamp470decc2006-10-11 01:20:57 -07001970 write ? "Clearing" : "Ignoring");
1971
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001972 err = jbd2_journal_skip_recovery(journal);
Jan Karaa78bb112012-03-13 15:43:04 -04001973 if (write) {
1974 /* Lock to make assertions happy... */
1975 mutex_lock(&journal->j_checkpoint_mutex);
Jan Kara24bcc892012-03-13 15:41:04 -04001976 jbd2_mark_journal_empty(journal);
Jan Karaa78bb112012-03-13 15:43:04 -04001977 mutex_unlock(&journal->j_checkpoint_mutex);
1978 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001979
1980 no_recovery:
1981 return err;
1982}
1983
1984/*
Dave Kleikamp470decc2006-10-11 01:20:57 -07001985 * Journal abort has very specific semantics, which we describe
1986 * for journal abort.
1987 *
Alberto Bertoglibfcd3552009-06-09 00:06:20 -04001988 * Two internal functions, which provide abort to the jbd layer
Dave Kleikamp470decc2006-10-11 01:20:57 -07001989 * itself are here.
1990 */
1991
1992/*
1993 * Quick version for internal journal use (doesn't lock the journal).
1994 * Aborts hard --- we mark the abort as occurred, but do _nothing_ else,
1995 * and don't attempt to make any other journal updates.
1996 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001997void __jbd2_journal_abort_hard(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001998{
1999 transaction_t *transaction;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002000
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002001 if (journal->j_flags & JBD2_ABORT)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002002 return;
2003
2004 printk(KERN_ERR "Aborting journal on device %s.\n",
Theodore Ts'o05496762008-09-16 14:36:17 -04002005 journal->j_devname);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002006
Theodore Ts'oa931da62010-08-03 21:35:12 -04002007 write_lock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002008 journal->j_flags |= JBD2_ABORT;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002009 transaction = journal->j_running_transaction;
2010 if (transaction)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002011 __jbd2_log_start_commit(journal, transaction->t_tid);
Theodore Ts'oa931da62010-08-03 21:35:12 -04002012 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002013}
2014
2015/* Soft abort: record the abort error status in the journal superblock,
2016 * but don't do any other IO. */
2017static void __journal_abort_soft (journal_t *journal, int errno)
2018{
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002019 if (journal->j_flags & JBD2_ABORT)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002020 return;
2021
2022 if (!journal->j_errno)
2023 journal->j_errno = errno;
2024
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002025 __jbd2_journal_abort_hard(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002026
2027 if (errno)
Jan Kara24bcc892012-03-13 15:41:04 -04002028 jbd2_journal_update_sb_errno(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002029}
2030
2031/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002032 * void jbd2_journal_abort () - Shutdown the journal immediately.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002033 * @journal: the journal to shutdown.
2034 * @errno: an error number to record in the journal indicating
2035 * the reason for the shutdown.
2036 *
2037 * Perform a complete, immediate shutdown of the ENTIRE
2038 * journal (not of a single transaction). This operation cannot be
2039 * undone without closing and reopening the journal.
2040 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002041 * The jbd2_journal_abort function is intended to support higher level error
Dave Kleikamp470decc2006-10-11 01:20:57 -07002042 * recovery mechanisms such as the ext2/ext3 remount-readonly error
2043 * mode.
2044 *
2045 * Journal abort has very specific semantics. Any existing dirty,
2046 * unjournaled buffers in the main filesystem will still be written to
2047 * disk by bdflush, but the journaling mechanism will be suspended
2048 * immediately and no further transaction commits will be honoured.
2049 *
2050 * Any dirty, journaled buffers will be written back to disk without
2051 * hitting the journal. Atomicity cannot be guaranteed on an aborted
2052 * filesystem, but we _do_ attempt to leave as much data as possible
2053 * behind for fsck to use for cleanup.
2054 *
2055 * Any attempt to get a new transaction handle on a journal which is in
2056 * ABORT state will just result in an -EROFS error return. A
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002057 * jbd2_journal_stop on an existing handle will return -EIO if we have
Dave Kleikamp470decc2006-10-11 01:20:57 -07002058 * entered abort state during the update.
2059 *
2060 * Recursive transactions are not disturbed by journal abort until the
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002061 * final jbd2_journal_stop, which will receive the -EIO error.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002062 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002063 * Finally, the jbd2_journal_abort call allows the caller to supply an errno
Dave Kleikamp470decc2006-10-11 01:20:57 -07002064 * which will be recorded (if possible) in the journal superblock. This
2065 * allows a client to record failure conditions in the middle of a
2066 * transaction without having to complete the transaction to record the
2067 * failure to disk. ext3_error, for example, now uses this
2068 * functionality.
2069 *
2070 * Errors which originate from within the journaling layer will NOT
2071 * supply an errno; a null errno implies that absolutely no further
2072 * writes are done to the journal (unless there are any already in
2073 * progress).
2074 *
2075 */
2076
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002077void jbd2_journal_abort(journal_t *journal, int errno)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002078{
2079 __journal_abort_soft(journal, errno);
2080}
2081
2082/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002083 * int jbd2_journal_errno () - returns the journal's error state.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002084 * @journal: journal to examine.
2085 *
Alberto Bertoglibfcd3552009-06-09 00:06:20 -04002086 * This is the errno number set with jbd2_journal_abort(), the last
Dave Kleikamp470decc2006-10-11 01:20:57 -07002087 * time the journal was mounted - if the journal was stopped
2088 * without calling abort this will be 0.
2089 *
2090 * If the journal has been aborted on this mount time -EROFS will
2091 * be returned.
2092 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002093int jbd2_journal_errno(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002094{
2095 int err;
2096
Theodore Ts'oa931da62010-08-03 21:35:12 -04002097 read_lock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002098 if (journal->j_flags & JBD2_ABORT)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002099 err = -EROFS;
2100 else
2101 err = journal->j_errno;
Theodore Ts'oa931da62010-08-03 21:35:12 -04002102 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002103 return err;
2104}
2105
2106/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002107 * int jbd2_journal_clear_err () - clears the journal's error state
Dave Kleikamp470decc2006-10-11 01:20:57 -07002108 * @journal: journal to act on.
2109 *
Alberto Bertoglibfcd3552009-06-09 00:06:20 -04002110 * An error must be cleared or acked to take a FS out of readonly
Dave Kleikamp470decc2006-10-11 01:20:57 -07002111 * mode.
2112 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002113int jbd2_journal_clear_err(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002114{
2115 int err = 0;
2116
Theodore Ts'oa931da62010-08-03 21:35:12 -04002117 write_lock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002118 if (journal->j_flags & JBD2_ABORT)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002119 err = -EROFS;
2120 else
2121 journal->j_errno = 0;
Theodore Ts'oa931da62010-08-03 21:35:12 -04002122 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002123 return err;
2124}
2125
2126/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002127 * void jbd2_journal_ack_err() - Ack journal err.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002128 * @journal: journal to act on.
2129 *
Alberto Bertoglibfcd3552009-06-09 00:06:20 -04002130 * An error must be cleared or acked to take a FS out of readonly
Dave Kleikamp470decc2006-10-11 01:20:57 -07002131 * mode.
2132 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002133void jbd2_journal_ack_err(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002134{
Theodore Ts'oa931da62010-08-03 21:35:12 -04002135 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002136 if (journal->j_errno)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002137 journal->j_flags |= JBD2_ACK_ERR;
Theodore Ts'oa931da62010-08-03 21:35:12 -04002138 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002139}
2140
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002141int jbd2_journal_blocks_per_page(struct inode *inode)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002142{
2143 return 1 << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
2144}
2145
2146/*
Zach Brownb517bea2006-10-11 01:21:08 -07002147 * helper functions to deal with 32 or 64bit block numbers.
2148 */
2149size_t journal_tag_bytes(journal_t *journal)
2150{
Darrick J. Wongc3900872012-05-27 08:12:12 -04002151 journal_block_tag_t tag;
2152 size_t x = 0;
2153
2154 if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V2))
2155 x += sizeof(tag.t_checksum);
2156
Zach Brownb517bea2006-10-11 01:21:08 -07002157 if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_64BIT))
Darrick J. Wongc3900872012-05-27 08:12:12 -04002158 return x + JBD2_TAG_SIZE64;
Zach Brownb517bea2006-10-11 01:21:08 -07002159 else
Darrick J. Wongc3900872012-05-27 08:12:12 -04002160 return x + JBD2_TAG_SIZE32;
Zach Brownb517bea2006-10-11 01:21:08 -07002161}
2162
2163/*
Theodore Ts'od2eecb02009-12-07 10:36:20 -05002164 * JBD memory management
2165 *
2166 * These functions are used to allocate block-sized chunks of memory
2167 * used for making copies of buffer_head data. Very often it will be
2168 * page-sized chunks of data, but sometimes it will be in
2169 * sub-page-size chunks. (For example, 16k pages on Power systems
2170 * with a 4k block file system.) For blocks smaller than a page, we
2171 * use a SLAB allocator. There are slab caches for each block size,
2172 * which are allocated at mount time, if necessary, and we only free
2173 * (all of) the slab caches when/if the jbd2 module is unloaded. For
2174 * this reason we don't need to a mutex to protect access to
2175 * jbd2_slab[] allocating or releasing memory; only in
2176 * jbd2_journal_create_slab().
2177 */
2178#define JBD2_MAX_SLABS 8
2179static struct kmem_cache *jbd2_slab[JBD2_MAX_SLABS];
Theodore Ts'od2eecb02009-12-07 10:36:20 -05002180
2181static const char *jbd2_slab_names[JBD2_MAX_SLABS] = {
2182 "jbd2_1k", "jbd2_2k", "jbd2_4k", "jbd2_8k",
2183 "jbd2_16k", "jbd2_32k", "jbd2_64k", "jbd2_128k"
2184};
2185
2186
2187static void jbd2_journal_destroy_slabs(void)
2188{
2189 int i;
2190
2191 for (i = 0; i < JBD2_MAX_SLABS; i++) {
2192 if (jbd2_slab[i])
2193 kmem_cache_destroy(jbd2_slab[i]);
2194 jbd2_slab[i] = NULL;
2195 }
2196}
2197
2198static int jbd2_journal_create_slab(size_t size)
2199{
Thomas Gleixner51dfacde2010-10-16 22:34:39 +02002200 static DEFINE_MUTEX(jbd2_slab_create_mutex);
Theodore Ts'od2eecb02009-12-07 10:36:20 -05002201 int i = order_base_2(size) - 10;
2202 size_t slab_size;
2203
2204 if (size == PAGE_SIZE)
2205 return 0;
2206
2207 if (i >= JBD2_MAX_SLABS)
2208 return -EINVAL;
2209
2210 if (unlikely(i < 0))
2211 i = 0;
Thomas Gleixner51dfacde2010-10-16 22:34:39 +02002212 mutex_lock(&jbd2_slab_create_mutex);
Theodore Ts'od2eecb02009-12-07 10:36:20 -05002213 if (jbd2_slab[i]) {
Thomas Gleixner51dfacde2010-10-16 22:34:39 +02002214 mutex_unlock(&jbd2_slab_create_mutex);
Theodore Ts'od2eecb02009-12-07 10:36:20 -05002215 return 0; /* Already created */
2216 }
2217
2218 slab_size = 1 << (i+10);
2219 jbd2_slab[i] = kmem_cache_create(jbd2_slab_names[i], slab_size,
2220 slab_size, 0, NULL);
Thomas Gleixner51dfacde2010-10-16 22:34:39 +02002221 mutex_unlock(&jbd2_slab_create_mutex);
Theodore Ts'od2eecb02009-12-07 10:36:20 -05002222 if (!jbd2_slab[i]) {
2223 printk(KERN_EMERG "JBD2: no memory for jbd2_slab cache\n");
2224 return -ENOMEM;
2225 }
2226 return 0;
2227}
2228
2229static struct kmem_cache *get_slab(size_t size)
2230{
2231 int i = order_base_2(size) - 10;
2232
2233 BUG_ON(i >= JBD2_MAX_SLABS);
2234 if (unlikely(i < 0))
2235 i = 0;
Bill Pemberton8ac97b72010-04-30 09:34:31 -04002236 BUG_ON(jbd2_slab[i] == NULL);
Theodore Ts'od2eecb02009-12-07 10:36:20 -05002237 return jbd2_slab[i];
2238}
2239
2240void *jbd2_alloc(size_t size, gfp_t flags)
2241{
2242 void *ptr;
2243
2244 BUG_ON(size & (size-1)); /* Must be a power of 2 */
2245
2246 flags |= __GFP_REPEAT;
2247 if (size == PAGE_SIZE)
2248 ptr = (void *)__get_free_pages(flags, 0);
2249 else if (size > PAGE_SIZE) {
2250 int order = get_order(size);
2251
2252 if (order < 3)
2253 ptr = (void *)__get_free_pages(flags, order);
2254 else
2255 ptr = vmalloc(size);
2256 } else
2257 ptr = kmem_cache_alloc(get_slab(size), flags);
2258
2259 /* Check alignment; SLUB has gotten this wrong in the past,
2260 * and this can lead to user data corruption! */
2261 BUG_ON(((unsigned long) ptr) & (size-1));
2262
2263 return ptr;
2264}
2265
2266void jbd2_free(void *ptr, size_t size)
2267{
2268 if (size == PAGE_SIZE) {
2269 free_pages((unsigned long)ptr, 0);
2270 return;
2271 }
2272 if (size > PAGE_SIZE) {
2273 int order = get_order(size);
2274
2275 if (order < 3)
2276 free_pages((unsigned long)ptr, order);
2277 else
2278 vfree(ptr);
2279 return;
2280 }
2281 kmem_cache_free(get_slab(size), ptr);
2282};
2283
2284/*
Dave Kleikamp470decc2006-10-11 01:20:57 -07002285 * Journal_head storage management
2286 */
Christoph Lametere18b8902006-12-06 20:33:20 -08002287static struct kmem_cache *jbd2_journal_head_cache;
Jose R. Santose23291b2007-07-18 08:57:06 -04002288#ifdef CONFIG_JBD2_DEBUG
Dave Kleikamp470decc2006-10-11 01:20:57 -07002289static atomic_t nr_journal_heads = ATOMIC_INIT(0);
2290#endif
2291
Yongqiang Yang4185a2a2012-02-20 17:53:03 -05002292static int jbd2_journal_init_journal_head_cache(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002293{
2294 int retval;
2295
Al Viro1076d172008-03-29 03:07:18 +00002296 J_ASSERT(jbd2_journal_head_cache == NULL);
Johann Lombardia920e942006-10-11 01:21:00 -07002297 jbd2_journal_head_cache = kmem_cache_create("jbd2_journal_head",
Dave Kleikamp470decc2006-10-11 01:20:57 -07002298 sizeof(struct journal_head),
2299 0, /* offset */
Mingming Cao77160952008-01-28 23:58:27 -05002300 SLAB_TEMPORARY, /* flags */
Paul Mundt20c2df82007-07-20 10:11:58 +09002301 NULL); /* ctor */
Dave Kleikamp470decc2006-10-11 01:20:57 -07002302 retval = 0;
Al Viro1076d172008-03-29 03:07:18 +00002303 if (!jbd2_journal_head_cache) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07002304 retval = -ENOMEM;
Eryu Guanf2a44522011-11-01 19:09:18 -04002305 printk(KERN_EMERG "JBD2: no memory for journal_head cache\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -07002306 }
2307 return retval;
2308}
2309
Yongqiang Yang4185a2a2012-02-20 17:53:03 -05002310static void jbd2_journal_destroy_journal_head_cache(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002311{
Duane Griffin8a9362e2008-04-17 10:38:59 -04002312 if (jbd2_journal_head_cache) {
2313 kmem_cache_destroy(jbd2_journal_head_cache);
2314 jbd2_journal_head_cache = NULL;
2315 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07002316}
2317
2318/*
2319 * journal_head splicing and dicing
2320 */
2321static struct journal_head *journal_alloc_journal_head(void)
2322{
2323 struct journal_head *ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002324
Jose R. Santose23291b2007-07-18 08:57:06 -04002325#ifdef CONFIG_JBD2_DEBUG
Dave Kleikamp470decc2006-10-11 01:20:57 -07002326 atomic_inc(&nr_journal_heads);
2327#endif
Zheng Liu5d9cf9c2013-05-28 07:27:11 -04002328 ret = kmem_cache_zalloc(jbd2_journal_head_cache, GFP_NOFS);
Al Viro1076d172008-03-29 03:07:18 +00002329 if (!ret) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07002330 jbd_debug(1, "out of memory for journal_head\n");
Theodore Ts'o670be5a2010-12-17 10:44:16 -05002331 pr_notice_ratelimited("ENOMEM in %s, retrying.\n", __func__);
Al Viro1076d172008-03-29 03:07:18 +00002332 while (!ret) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07002333 yield();
Zheng Liu5d9cf9c2013-05-28 07:27:11 -04002334 ret = kmem_cache_zalloc(jbd2_journal_head_cache, GFP_NOFS);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002335 }
2336 }
2337 return ret;
2338}
2339
2340static void journal_free_journal_head(struct journal_head *jh)
2341{
Jose R. Santose23291b2007-07-18 08:57:06 -04002342#ifdef CONFIG_JBD2_DEBUG
Dave Kleikamp470decc2006-10-11 01:20:57 -07002343 atomic_dec(&nr_journal_heads);
Mingming Caocd02ff02007-10-16 18:38:25 -04002344 memset(jh, JBD2_POISON_FREE, sizeof(*jh));
Dave Kleikamp470decc2006-10-11 01:20:57 -07002345#endif
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002346 kmem_cache_free(jbd2_journal_head_cache, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002347}
2348
2349/*
2350 * A journal_head is attached to a buffer_head whenever JBD has an
2351 * interest in the buffer.
2352 *
2353 * Whenever a buffer has an attached journal_head, its ->b_state:BH_JBD bit
2354 * is set. This bit is tested in core kernel code where we need to take
2355 * JBD-specific actions. Testing the zeroness of ->b_private is not reliable
2356 * there.
2357 *
2358 * When a buffer has its BH_JBD bit set, its ->b_count is elevated by one.
2359 *
2360 * When a buffer has its BH_JBD bit set it is immune from being released by
2361 * core kernel code, mainly via ->b_count.
2362 *
Jan Karade1b7942011-06-13 15:38:22 -04002363 * A journal_head is detached from its buffer_head when the journal_head's
2364 * b_jcount reaches zero. Running transaction (b_transaction) and checkpoint
2365 * transaction (b_cp_transaction) hold their references to b_jcount.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002366 *
2367 * Various places in the kernel want to attach a journal_head to a buffer_head
2368 * _before_ attaching the journal_head to a transaction. To protect the
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002369 * journal_head in this situation, jbd2_journal_add_journal_head elevates the
Dave Kleikamp470decc2006-10-11 01:20:57 -07002370 * journal_head's b_jcount refcount by one. The caller must call
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002371 * jbd2_journal_put_journal_head() to undo this.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002372 *
2373 * So the typical usage would be:
2374 *
2375 * (Attach a journal_head if needed. Increments b_jcount)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002376 * struct journal_head *jh = jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002377 * ...
Jan Karade1b7942011-06-13 15:38:22 -04002378 * (Get another reference for transaction)
2379 * jbd2_journal_grab_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002380 * jh->b_transaction = xxx;
Jan Karade1b7942011-06-13 15:38:22 -04002381 * (Put original reference)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002382 * jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002383 */
2384
2385/*
2386 * Give a buffer_head a journal_head.
2387 *
Dave Kleikamp470decc2006-10-11 01:20:57 -07002388 * May sleep.
2389 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002390struct journal_head *jbd2_journal_add_journal_head(struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002391{
2392 struct journal_head *jh;
2393 struct journal_head *new_jh = NULL;
2394
2395repeat:
Zheng Liu5d9cf9c2013-05-28 07:27:11 -04002396 if (!buffer_jbd(bh))
Dave Kleikamp470decc2006-10-11 01:20:57 -07002397 new_jh = journal_alloc_journal_head();
Dave Kleikamp470decc2006-10-11 01:20:57 -07002398
2399 jbd_lock_bh_journal_head(bh);
2400 if (buffer_jbd(bh)) {
2401 jh = bh2jh(bh);
2402 } else {
2403 J_ASSERT_BH(bh,
2404 (atomic_read(&bh->b_count) > 0) ||
2405 (bh->b_page && bh->b_page->mapping));
2406
2407 if (!new_jh) {
2408 jbd_unlock_bh_journal_head(bh);
2409 goto repeat;
2410 }
2411
2412 jh = new_jh;
2413 new_jh = NULL; /* We consumed it */
2414 set_buffer_jbd(bh);
2415 bh->b_private = jh;
2416 jh->b_bh = bh;
2417 get_bh(bh);
2418 BUFFER_TRACE(bh, "added journal_head");
2419 }
2420 jh->b_jcount++;
2421 jbd_unlock_bh_journal_head(bh);
2422 if (new_jh)
2423 journal_free_journal_head(new_jh);
2424 return bh->b_private;
2425}
2426
2427/*
2428 * Grab a ref against this buffer_head's journal_head. If it ended up not
2429 * having a journal_head, return NULL
2430 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002431struct journal_head *jbd2_journal_grab_journal_head(struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002432{
2433 struct journal_head *jh = NULL;
2434
2435 jbd_lock_bh_journal_head(bh);
2436 if (buffer_jbd(bh)) {
2437 jh = bh2jh(bh);
2438 jh->b_jcount++;
2439 }
2440 jbd_unlock_bh_journal_head(bh);
2441 return jh;
2442}
2443
2444static void __journal_remove_journal_head(struct buffer_head *bh)
2445{
2446 struct journal_head *jh = bh2jh(bh);
2447
2448 J_ASSERT_JH(jh, jh->b_jcount >= 0);
Jan Karade1b7942011-06-13 15:38:22 -04002449 J_ASSERT_JH(jh, jh->b_transaction == NULL);
2450 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
2451 J_ASSERT_JH(jh, jh->b_cp_transaction == NULL);
2452 J_ASSERT_JH(jh, jh->b_jlist == BJ_None);
2453 J_ASSERT_BH(bh, buffer_jbd(bh));
2454 J_ASSERT_BH(bh, jh2bh(jh) == bh);
2455 BUFFER_TRACE(bh, "remove journal_head");
2456 if (jh->b_frozen_data) {
2457 printk(KERN_WARNING "%s: freeing b_frozen_data\n", __func__);
2458 jbd2_free(jh->b_frozen_data, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002459 }
Jan Karade1b7942011-06-13 15:38:22 -04002460 if (jh->b_committed_data) {
2461 printk(KERN_WARNING "%s: freeing b_committed_data\n", __func__);
2462 jbd2_free(jh->b_committed_data, bh->b_size);
2463 }
2464 bh->b_private = NULL;
2465 jh->b_bh = NULL; /* debug, really */
2466 clear_buffer_jbd(bh);
2467 journal_free_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002468}
2469
2470/*
Jan Karade1b7942011-06-13 15:38:22 -04002471 * Drop a reference on the passed journal_head. If it fell to zero then
Dave Kleikamp470decc2006-10-11 01:20:57 -07002472 * release the journal_head from the buffer_head.
2473 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002474void jbd2_journal_put_journal_head(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002475{
2476 struct buffer_head *bh = jh2bh(jh);
2477
2478 jbd_lock_bh_journal_head(bh);
2479 J_ASSERT_JH(jh, jh->b_jcount > 0);
2480 --jh->b_jcount;
Jan Karade1b7942011-06-13 15:38:22 -04002481 if (!jh->b_jcount) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07002482 __journal_remove_journal_head(bh);
Jan Karade1b7942011-06-13 15:38:22 -04002483 jbd_unlock_bh_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002484 __brelse(bh);
Jan Karade1b7942011-06-13 15:38:22 -04002485 } else
2486 jbd_unlock_bh_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002487}
2488
2489/*
Jan Karac851ed52008-07-11 19:27:31 -04002490 * Initialize jbd inode head
2491 */
2492void jbd2_journal_init_jbd_inode(struct jbd2_inode *jinode, struct inode *inode)
2493{
2494 jinode->i_transaction = NULL;
2495 jinode->i_next_transaction = NULL;
2496 jinode->i_vfs_inode = inode;
2497 jinode->i_flags = 0;
2498 INIT_LIST_HEAD(&jinode->i_list);
2499}
2500
2501/*
2502 * Function to be called before we start removing inode from memory (i.e.,
2503 * clear_inode() is a fine place to be called from). It removes inode from
2504 * transaction's lists.
2505 */
2506void jbd2_journal_release_jbd_inode(journal_t *journal,
2507 struct jbd2_inode *jinode)
2508{
Jan Karac851ed52008-07-11 19:27:31 -04002509 if (!journal)
2510 return;
2511restart:
2512 spin_lock(&journal->j_list_lock);
2513 /* Is commit writing out inode - we have to wait */
Brian King39e3ac22010-10-27 21:25:12 -04002514 if (test_bit(__JI_COMMIT_RUNNING, &jinode->i_flags)) {
Jan Karac851ed52008-07-11 19:27:31 -04002515 wait_queue_head_t *wq;
2516 DEFINE_WAIT_BIT(wait, &jinode->i_flags, __JI_COMMIT_RUNNING);
2517 wq = bit_waitqueue(&jinode->i_flags, __JI_COMMIT_RUNNING);
2518 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
2519 spin_unlock(&journal->j_list_lock);
2520 schedule();
2521 finish_wait(wq, &wait.wait);
2522 goto restart;
2523 }
2524
Jan Karac851ed52008-07-11 19:27:31 -04002525 if (jinode->i_transaction) {
2526 list_del(&jinode->i_list);
2527 jinode->i_transaction = NULL;
2528 }
2529 spin_unlock(&journal->j_list_lock);
2530}
2531
Dave Kleikamp470decc2006-10-11 01:20:57 -07002532
Johann Lombardi8e85fb32008-01-28 23:58:27 -05002533#ifdef CONFIG_PROC_FS
2534
2535#define JBD2_STATS_PROC_NAME "fs/jbd2"
2536
2537static void __init jbd2_create_jbd_stats_proc_entry(void)
2538{
2539 proc_jbd2_stats = proc_mkdir(JBD2_STATS_PROC_NAME, NULL);
2540}
2541
2542static void __exit jbd2_remove_jbd_stats_proc_entry(void)
2543{
2544 if (proc_jbd2_stats)
2545 remove_proc_entry(JBD2_STATS_PROC_NAME, NULL);
2546}
2547
2548#else
2549
2550#define jbd2_create_jbd_stats_proc_entry() do {} while (0)
2551#define jbd2_remove_jbd_stats_proc_entry() do {} while (0)
2552
2553#endif
2554
Theodore Ts'o8aefcd52011-01-10 12:29:43 -05002555struct kmem_cache *jbd2_handle_cache, *jbd2_inode_cache;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002556
Yongqiang Yang4185a2a2012-02-20 17:53:03 -05002557static int __init jbd2_journal_init_handle_cache(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002558{
Theodore Ts'o8aefcd52011-01-10 12:29:43 -05002559 jbd2_handle_cache = KMEM_CACHE(jbd2_journal_handle, SLAB_TEMPORARY);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002560 if (jbd2_handle_cache == NULL) {
Theodore Ts'o8aefcd52011-01-10 12:29:43 -05002561 printk(KERN_EMERG "JBD2: failed to create handle cache\n");
2562 return -ENOMEM;
2563 }
2564 jbd2_inode_cache = KMEM_CACHE(jbd2_inode, 0);
2565 if (jbd2_inode_cache == NULL) {
2566 printk(KERN_EMERG "JBD2: failed to create inode cache\n");
2567 kmem_cache_destroy(jbd2_handle_cache);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002568 return -ENOMEM;
2569 }
2570 return 0;
2571}
2572
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002573static void jbd2_journal_destroy_handle_cache(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002574{
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002575 if (jbd2_handle_cache)
2576 kmem_cache_destroy(jbd2_handle_cache);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -05002577 if (jbd2_inode_cache)
2578 kmem_cache_destroy(jbd2_inode_cache);
2579
Dave Kleikamp470decc2006-10-11 01:20:57 -07002580}
2581
2582/*
2583 * Module startup and shutdown
2584 */
2585
2586static int __init journal_init_caches(void)
2587{
2588 int ret;
2589
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002590 ret = jbd2_journal_init_revoke_caches();
Dave Kleikamp470decc2006-10-11 01:20:57 -07002591 if (ret == 0)
Yongqiang Yang4185a2a2012-02-20 17:53:03 -05002592 ret = jbd2_journal_init_journal_head_cache();
Dave Kleikamp470decc2006-10-11 01:20:57 -07002593 if (ret == 0)
Yongqiang Yang4185a2a2012-02-20 17:53:03 -05002594 ret = jbd2_journal_init_handle_cache();
Yongqiang Yang0c2022e2012-02-20 17:53:02 -05002595 if (ret == 0)
2596 ret = jbd2_journal_init_transaction_cache();
Dave Kleikamp470decc2006-10-11 01:20:57 -07002597 return ret;
2598}
2599
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002600static void jbd2_journal_destroy_caches(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002601{
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002602 jbd2_journal_destroy_revoke_caches();
Yongqiang Yang4185a2a2012-02-20 17:53:03 -05002603 jbd2_journal_destroy_journal_head_cache();
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002604 jbd2_journal_destroy_handle_cache();
Yongqiang Yang0c2022e2012-02-20 17:53:02 -05002605 jbd2_journal_destroy_transaction_cache();
Theodore Ts'od2eecb02009-12-07 10:36:20 -05002606 jbd2_journal_destroy_slabs();
Dave Kleikamp470decc2006-10-11 01:20:57 -07002607}
2608
2609static int __init journal_init(void)
2610{
2611 int ret;
2612
2613 BUILD_BUG_ON(sizeof(struct journal_superblock_s) != 1024);
2614
2615 ret = journal_init_caches();
Duane Griffin620de4e2008-04-29 22:02:47 -04002616 if (ret == 0) {
Duane Griffin620de4e2008-04-29 22:02:47 -04002617 jbd2_create_jbd_stats_proc_entry();
2618 } else {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002619 jbd2_journal_destroy_caches();
Duane Griffin620de4e2008-04-29 22:02:47 -04002620 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07002621 return ret;
2622}
2623
2624static void __exit journal_exit(void)
2625{
Jose R. Santose23291b2007-07-18 08:57:06 -04002626#ifdef CONFIG_JBD2_DEBUG
Dave Kleikamp470decc2006-10-11 01:20:57 -07002627 int n = atomic_read(&nr_journal_heads);
2628 if (n)
Eryu Guanf2a44522011-11-01 19:09:18 -04002629 printk(KERN_EMERG "JBD2: leaked %d journal_heads!\n", n);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002630#endif
Johann Lombardi8e85fb32008-01-28 23:58:27 -05002631 jbd2_remove_jbd_stats_proc_entry();
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002632 jbd2_journal_destroy_caches();
Dave Kleikamp470decc2006-10-11 01:20:57 -07002633}
2634
Dave Kleikamp470decc2006-10-11 01:20:57 -07002635MODULE_LICENSE("GPL");
2636module_init(journal_init);
2637module_exit(journal_exit);
2638