blob: a79d3345b55a69691571c5ac73b3a3e2e28697c0 [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>
Jose R. Santos0f49d5d2007-07-18 08:50:18 -040038#include <linux/debugfs.h>
Johann Lombardi8e85fb32008-01-28 23:58:27 -050039#include <linux/seq_file.h>
Simon Holm Thøgersenc225aa52009-01-11 22:34:01 -050040#include <linux/math64.h>
Theodore Ts'o879c5e62009-06-17 11:47:48 -040041#include <linux/hash.h>
Theodore Ts'od2eecb02009-12-07 10:36:20 -050042#include <linux/log2.h>
43#include <linux/vmalloc.h>
Theodore Ts'o47def822010-07-27 11:56:05 -040044#include <linux/backing-dev.h>
Theodore Ts'o879c5e62009-06-17 11:47:48 -040045
46#define CREATE_TRACE_POINTS
47#include <trace/events/jbd2.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070048
49#include <asm/uaccess.h>
50#include <asm/page.h>
51
Mingming Caof7f4bcc2006-10-11 01:20:59 -070052EXPORT_SYMBOL(jbd2_journal_extend);
53EXPORT_SYMBOL(jbd2_journal_stop);
54EXPORT_SYMBOL(jbd2_journal_lock_updates);
55EXPORT_SYMBOL(jbd2_journal_unlock_updates);
56EXPORT_SYMBOL(jbd2_journal_get_write_access);
57EXPORT_SYMBOL(jbd2_journal_get_create_access);
58EXPORT_SYMBOL(jbd2_journal_get_undo_access);
Joel Beckere06c8222008-09-11 15:35:47 -070059EXPORT_SYMBOL(jbd2_journal_set_triggers);
Mingming Caof7f4bcc2006-10-11 01:20:59 -070060EXPORT_SYMBOL(jbd2_journal_dirty_metadata);
61EXPORT_SYMBOL(jbd2_journal_release_buffer);
62EXPORT_SYMBOL(jbd2_journal_forget);
Dave Kleikamp470decc2006-10-11 01:20:57 -070063#if 0
64EXPORT_SYMBOL(journal_sync_buffer);
65#endif
Mingming Caof7f4bcc2006-10-11 01:20:59 -070066EXPORT_SYMBOL(jbd2_journal_flush);
67EXPORT_SYMBOL(jbd2_journal_revoke);
Dave Kleikamp470decc2006-10-11 01:20:57 -070068
Mingming Caof7f4bcc2006-10-11 01:20:59 -070069EXPORT_SYMBOL(jbd2_journal_init_dev);
70EXPORT_SYMBOL(jbd2_journal_init_inode);
71EXPORT_SYMBOL(jbd2_journal_update_format);
72EXPORT_SYMBOL(jbd2_journal_check_used_features);
73EXPORT_SYMBOL(jbd2_journal_check_available_features);
74EXPORT_SYMBOL(jbd2_journal_set_features);
Mingming Caof7f4bcc2006-10-11 01:20:59 -070075EXPORT_SYMBOL(jbd2_journal_load);
76EXPORT_SYMBOL(jbd2_journal_destroy);
Mingming Caof7f4bcc2006-10-11 01:20:59 -070077EXPORT_SYMBOL(jbd2_journal_abort);
78EXPORT_SYMBOL(jbd2_journal_errno);
79EXPORT_SYMBOL(jbd2_journal_ack_err);
80EXPORT_SYMBOL(jbd2_journal_clear_err);
81EXPORT_SYMBOL(jbd2_log_wait_commit);
Theodore Ts'o3b799d12009-12-09 20:42:53 -050082EXPORT_SYMBOL(jbd2_log_start_commit);
Mingming Caof7f4bcc2006-10-11 01:20:59 -070083EXPORT_SYMBOL(jbd2_journal_start_commit);
84EXPORT_SYMBOL(jbd2_journal_force_commit_nested);
85EXPORT_SYMBOL(jbd2_journal_wipe);
86EXPORT_SYMBOL(jbd2_journal_blocks_per_page);
87EXPORT_SYMBOL(jbd2_journal_invalidatepage);
88EXPORT_SYMBOL(jbd2_journal_try_to_free_buffers);
89EXPORT_SYMBOL(jbd2_journal_force_commit);
Jan Karac851ed52008-07-11 19:27:31 -040090EXPORT_SYMBOL(jbd2_journal_file_inode);
91EXPORT_SYMBOL(jbd2_journal_init_jbd_inode);
92EXPORT_SYMBOL(jbd2_journal_release_jbd_inode);
93EXPORT_SYMBOL(jbd2_journal_begin_ordered_truncate);
Dave Kleikamp470decc2006-10-11 01:20:57 -070094
95static int journal_convert_superblock_v1(journal_t *, journal_superblock_t *);
96static void __journal_abort_soft (journal_t *journal, int errno);
Theodore Ts'od2eecb02009-12-07 10:36:20 -050097static int jbd2_journal_create_slab(size_t slab_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -070098
99/*
100 * Helper function used to manage commit timeouts
101 */
102
103static void commit_timeout(unsigned long __data)
104{
105 struct task_struct * p = (struct task_struct *) __data;
106
107 wake_up_process(p);
108}
109
110/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700111 * kjournald2: The main thread function used to manage a logging device
Dave Kleikamp470decc2006-10-11 01:20:57 -0700112 * journal.
113 *
114 * This kernel thread is responsible for two things:
115 *
116 * 1) COMMIT: Every so often we need to commit the current state of the
117 * filesystem to disk. The journal thread is responsible for writing
118 * all of the metadata buffers to disk.
119 *
120 * 2) CHECKPOINT: We cannot reuse a used section of the log file until all
121 * of the data in that part of the log has been rewritten elsewhere on
122 * the disk. Flushing these old buffers to reclaim space in the log is
123 * known as checkpointing, and this thread is responsible for that job.
124 */
125
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700126static int kjournald2(void *arg)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700127{
128 journal_t *journal = arg;
129 transaction_t *transaction;
130
131 /*
132 * Set up an interval timer which can be used to trigger a commit wakeup
133 * after the commit interval expires
134 */
135 setup_timer(&journal->j_commit_timer, commit_timeout,
136 (unsigned long)current);
137
138 /* Record that the journal thread is running */
139 journal->j_task = current;
140 wake_up(&journal->j_wait_done_commit);
141
Dave Kleikamp470decc2006-10-11 01:20:57 -0700142 /*
143 * And now, wait forever for commit wakeup events.
144 */
145 spin_lock(&journal->j_state_lock);
146
147loop:
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700148 if (journal->j_flags & JBD2_UNMOUNT)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700149 goto end_loop;
150
151 jbd_debug(1, "commit_sequence=%d, commit_request=%d\n",
152 journal->j_commit_sequence, journal->j_commit_request);
153
154 if (journal->j_commit_sequence != journal->j_commit_request) {
155 jbd_debug(1, "OK, requests differ\n");
156 spin_unlock(&journal->j_state_lock);
157 del_timer_sync(&journal->j_commit_timer);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700158 jbd2_journal_commit_transaction(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700159 spin_lock(&journal->j_state_lock);
160 goto loop;
161 }
162
163 wake_up(&journal->j_wait_done_commit);
164 if (freezing(current)) {
165 /*
166 * The simpler the better. Flushing journal isn't a
167 * good idea, because that depends on threads that may
168 * be already stopped.
169 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700170 jbd_debug(1, "Now suspending kjournald2\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -0700171 spin_unlock(&journal->j_state_lock);
172 refrigerator();
173 spin_lock(&journal->j_state_lock);
174 } else {
175 /*
176 * We assume on resume that commits are already there,
177 * so we don't sleep
178 */
179 DEFINE_WAIT(wait);
180 int should_sleep = 1;
181
182 prepare_to_wait(&journal->j_wait_commit, &wait,
183 TASK_INTERRUPTIBLE);
184 if (journal->j_commit_sequence != journal->j_commit_request)
185 should_sleep = 0;
186 transaction = journal->j_running_transaction;
187 if (transaction && time_after_eq(jiffies,
188 transaction->t_expires))
189 should_sleep = 0;
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700190 if (journal->j_flags & JBD2_UNMOUNT)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700191 should_sleep = 0;
192 if (should_sleep) {
193 spin_unlock(&journal->j_state_lock);
194 schedule();
195 spin_lock(&journal->j_state_lock);
196 }
197 finish_wait(&journal->j_wait_commit, &wait);
198 }
199
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700200 jbd_debug(1, "kjournald2 wakes\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -0700201
202 /*
203 * Were we woken up by a commit wakeup event?
204 */
205 transaction = journal->j_running_transaction;
206 if (transaction && time_after_eq(jiffies, transaction->t_expires)) {
207 journal->j_commit_request = transaction->t_tid;
208 jbd_debug(1, "woke because of timeout\n");
209 }
210 goto loop;
211
212end_loop:
213 spin_unlock(&journal->j_state_lock);
214 del_timer_sync(&journal->j_commit_timer);
215 journal->j_task = NULL;
216 wake_up(&journal->j_wait_done_commit);
217 jbd_debug(1, "Journal thread exiting.\n");
218 return 0;
219}
220
Pavel Emelianov97f06782007-05-08 00:30:42 -0700221static int jbd2_journal_start_thread(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700222{
Pavel Emelianov97f06782007-05-08 00:30:42 -0700223 struct task_struct *t;
224
Theodore Ts'o90576c02009-09-29 15:51:30 -0400225 t = kthread_run(kjournald2, journal, "jbd2/%s",
226 journal->j_devname);
Pavel Emelianov97f06782007-05-08 00:30:42 -0700227 if (IS_ERR(t))
228 return PTR_ERR(t);
229
Al Viro1076d172008-03-29 03:07:18 +0000230 wait_event(journal->j_wait_done_commit, journal->j_task != NULL);
Pavel Emelianov97f06782007-05-08 00:30:42 -0700231 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700232}
233
234static void journal_kill_thread(journal_t *journal)
235{
236 spin_lock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700237 journal->j_flags |= JBD2_UNMOUNT;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700238
239 while (journal->j_task) {
240 wake_up(&journal->j_wait_commit);
241 spin_unlock(&journal->j_state_lock);
Al Viro1076d172008-03-29 03:07:18 +0000242 wait_event(journal->j_wait_done_commit, journal->j_task == NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700243 spin_lock(&journal->j_state_lock);
244 }
245 spin_unlock(&journal->j_state_lock);
246}
247
248/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700249 * jbd2_journal_write_metadata_buffer: write a metadata buffer to the journal.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700250 *
251 * Writes a metadata buffer to a given disk block. The actual IO is not
252 * performed but a new buffer_head is constructed which labels the data
253 * to be written with the correct destination disk block.
254 *
255 * Any magic-number escaping which needs to be done will cause a
256 * copy-out here. If the buffer happens to start with the
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700257 * JBD2_MAGIC_NUMBER, then we can't write it to the log directly: the
Dave Kleikamp470decc2006-10-11 01:20:57 -0700258 * magic number is only written to the log for descripter blocks. In
259 * this case, we copy the data and replace the first word with 0, and we
260 * return a result code which indicates that this buffer needs to be
261 * marked as an escaped buffer in the corresponding log descriptor
262 * block. The missing word can then be restored when the block is read
263 * during recovery.
264 *
265 * If the source buffer has already been modified by a new transaction
266 * since we took the last commit snapshot, we use the frozen copy of
267 * that data for IO. If we end up using the existing buffer_head's data
268 * for the write, then we *have* to lock the buffer to prevent anyone
269 * else from using and possibly modifying it while the IO is in
270 * progress.
271 *
272 * The function returns a pointer to the buffer_heads to be used for IO.
273 *
274 * We assume that the journal has already been locked in this function.
275 *
276 * Return value:
277 * <0: Error
278 * >=0: Finished OK
279 *
280 * On success:
281 * Bit 0 set == escape performed on the data
282 * Bit 1 set == buffer copy-out performed (kfree the data after IO)
283 */
284
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700285int jbd2_journal_write_metadata_buffer(transaction_t *transaction,
Dave Kleikamp470decc2006-10-11 01:20:57 -0700286 struct journal_head *jh_in,
287 struct journal_head **jh_out,
Mingming Cao18eba7a2006-10-11 01:21:13 -0700288 unsigned long long blocknr)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700289{
290 int need_copy_out = 0;
291 int done_copy_out = 0;
292 int do_escape = 0;
293 char *mapped_data;
294 struct buffer_head *new_bh;
295 struct journal_head *new_jh;
296 struct page *new_page;
297 unsigned int new_offset;
298 struct buffer_head *bh_in = jh2bh(jh_in);
Joel Beckere06c8222008-09-11 15:35:47 -0700299 struct jbd2_buffer_trigger_type *triggers;
dingdinghua96577c42009-07-13 17:55:35 -0400300 journal_t *journal = transaction->t_journal;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700301
302 /*
303 * The buffer really shouldn't be locked: only the current committing
304 * transaction is allowed to write it, so nobody else is allowed
305 * to do any IO.
306 *
307 * akpm: except if we're journalling data, and write() output is
308 * also part of a shared mapping, and another thread has
309 * decided to launch a writepage() against this buffer.
310 */
311 J_ASSERT_BH(bh_in, buffer_jbddirty(bh_in));
312
Theodore Ts'o47def822010-07-27 11:56:05 -0400313retry_alloc:
314 new_bh = alloc_buffer_head(GFP_NOFS);
315 if (!new_bh) {
316 /*
317 * Failure is not an option, but __GFP_NOFAIL is going
318 * away; so we retry ourselves here.
319 */
320 congestion_wait(BLK_RW_ASYNC, HZ/50);
321 goto retry_alloc;
322 }
323
dingdinghua96577c42009-07-13 17:55:35 -0400324 /* keep subsequent assertions sane */
325 new_bh->b_state = 0;
326 init_buffer(new_bh, NULL, NULL);
327 atomic_set(&new_bh->b_count, 1);
328 new_jh = jbd2_journal_add_journal_head(new_bh); /* This sleeps */
Dave Kleikamp470decc2006-10-11 01:20:57 -0700329
330 /*
331 * If a new transaction has already done a buffer copy-out, then
332 * we use that version of the data for the commit.
333 */
334 jbd_lock_bh_state(bh_in);
335repeat:
336 if (jh_in->b_frozen_data) {
337 done_copy_out = 1;
338 new_page = virt_to_page(jh_in->b_frozen_data);
339 new_offset = offset_in_page(jh_in->b_frozen_data);
Joel Beckere06c8222008-09-11 15:35:47 -0700340 triggers = jh_in->b_frozen_triggers;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700341 } else {
342 new_page = jh2bh(jh_in)->b_page;
343 new_offset = offset_in_page(jh2bh(jh_in)->b_data);
Joel Beckere06c8222008-09-11 15:35:47 -0700344 triggers = jh_in->b_triggers;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700345 }
346
347 mapped_data = kmap_atomic(new_page, KM_USER0);
348 /*
Joel Beckere06c8222008-09-11 15:35:47 -0700349 * Fire any commit trigger. Do this before checking for escaping,
350 * as the trigger may modify the magic offset. If a copy-out
351 * happens afterwards, it will have the correct data in the buffer.
352 */
353 jbd2_buffer_commit_trigger(jh_in, mapped_data + new_offset,
354 triggers);
355
356 /*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700357 * Check for escaping
358 */
359 if (*((__be32 *)(mapped_data + new_offset)) ==
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700360 cpu_to_be32(JBD2_MAGIC_NUMBER)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700361 need_copy_out = 1;
362 do_escape = 1;
363 }
364 kunmap_atomic(mapped_data, KM_USER0);
365
366 /*
367 * Do we need to do a data copy?
368 */
369 if (need_copy_out && !done_copy_out) {
370 char *tmp;
371
372 jbd_unlock_bh_state(bh_in);
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400373 tmp = jbd2_alloc(bh_in->b_size, GFP_NOFS);
Theodore Ts'oe6ec1162009-12-01 09:04:42 -0500374 if (!tmp) {
375 jbd2_journal_put_journal_head(new_jh);
376 return -ENOMEM;
377 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700378 jbd_lock_bh_state(bh_in);
379 if (jh_in->b_frozen_data) {
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400380 jbd2_free(tmp, bh_in->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700381 goto repeat;
382 }
383
384 jh_in->b_frozen_data = tmp;
385 mapped_data = kmap_atomic(new_page, KM_USER0);
386 memcpy(tmp, mapped_data + new_offset, jh2bh(jh_in)->b_size);
387 kunmap_atomic(mapped_data, KM_USER0);
388
389 new_page = virt_to_page(tmp);
390 new_offset = offset_in_page(tmp);
391 done_copy_out = 1;
Joel Beckere06c8222008-09-11 15:35:47 -0700392
393 /*
394 * This isn't strictly necessary, as we're using frozen
395 * data for the escaping, but it keeps consistency with
396 * b_frozen_data usage.
397 */
398 jh_in->b_frozen_triggers = jh_in->b_triggers;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700399 }
400
401 /*
402 * Did we need to do an escaping? Now we've done all the
403 * copying, we can finally do so.
404 */
405 if (do_escape) {
406 mapped_data = kmap_atomic(new_page, KM_USER0);
407 *((unsigned int *)(mapped_data + new_offset)) = 0;
408 kunmap_atomic(mapped_data, KM_USER0);
409 }
410
Dave Kleikamp470decc2006-10-11 01:20:57 -0700411 set_bh_page(new_bh, new_page, new_offset);
412 new_jh->b_transaction = NULL;
413 new_bh->b_size = jh2bh(jh_in)->b_size;
414 new_bh->b_bdev = transaction->t_journal->j_dev;
415 new_bh->b_blocknr = blocknr;
416 set_buffer_mapped(new_bh);
417 set_buffer_dirty(new_bh);
418
419 *jh_out = new_jh;
420
421 /*
422 * The to-be-written buffer needs to get moved to the io queue,
423 * and the original buffer whose contents we are shadowing or
424 * copying is moved to the transaction's shadow queue.
425 */
426 JBUFFER_TRACE(jh_in, "file as BJ_Shadow");
dingdinghua96577c42009-07-13 17:55:35 -0400427 spin_lock(&journal->j_list_lock);
428 __jbd2_journal_file_buffer(jh_in, transaction, BJ_Shadow);
429 spin_unlock(&journal->j_list_lock);
430 jbd_unlock_bh_state(bh_in);
431
Dave Kleikamp470decc2006-10-11 01:20:57 -0700432 JBUFFER_TRACE(new_jh, "file as BJ_IO");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700433 jbd2_journal_file_buffer(new_jh, transaction, BJ_IO);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700434
435 return do_escape | (done_copy_out << 1);
436}
437
438/*
439 * Allocation code for the journal file. Manage the space left in the
440 * journal, so that we can begin checkpointing when appropriate.
441 */
442
443/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700444 * __jbd2_log_space_left: Return the number of free blocks left in the journal.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700445 *
446 * Called with the journal already locked.
447 *
448 * Called under j_state_lock
449 */
450
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700451int __jbd2_log_space_left(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700452{
453 int left = journal->j_free;
454
455 assert_spin_locked(&journal->j_state_lock);
456
457 /*
458 * Be pessimistic here about the number of those free blocks which
459 * might be required for log descriptor control blocks.
460 */
461
462#define MIN_LOG_RESERVED_BLOCKS 32 /* Allow for rounding errors */
463
464 left -= MIN_LOG_RESERVED_BLOCKS;
465
466 if (left <= 0)
467 return 0;
468 left -= (left >> 3);
469 return left;
470}
471
472/*
Jan Karac88ccea2009-02-10 11:27:46 -0500473 * Called under j_state_lock. Returns true if a transaction commit was started.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700474 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700475int __jbd2_log_start_commit(journal_t *journal, tid_t target)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700476{
477 /*
478 * Are we already doing a recent enough commit?
479 */
480 if (!tid_geq(journal->j_commit_request, target)) {
481 /*
482 * We want a new commit: OK, mark the request and wakup the
483 * commit thread. We do _not_ do the commit ourselves.
484 */
485
486 journal->j_commit_request = target;
487 jbd_debug(1, "JBD: requesting commit %d/%d\n",
488 journal->j_commit_request,
489 journal->j_commit_sequence);
490 wake_up(&journal->j_wait_commit);
491 return 1;
492 }
493 return 0;
494}
495
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700496int jbd2_log_start_commit(journal_t *journal, tid_t tid)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700497{
498 int ret;
499
500 spin_lock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700501 ret = __jbd2_log_start_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700502 spin_unlock(&journal->j_state_lock);
503 return ret;
504}
505
506/*
507 * Force and wait upon a commit if the calling process is not within
508 * transaction. This is used for forcing out undo-protected data which contains
509 * bitmaps, when the fs is running out of space.
510 *
511 * We can only force the running transaction if we don't have an active handle;
512 * otherwise, we will deadlock.
513 *
514 * Returns true if a transaction was started.
515 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700516int jbd2_journal_force_commit_nested(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700517{
518 transaction_t *transaction = NULL;
519 tid_t tid;
520
521 spin_lock(&journal->j_state_lock);
522 if (journal->j_running_transaction && !current->journal_info) {
523 transaction = journal->j_running_transaction;
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700524 __jbd2_log_start_commit(journal, transaction->t_tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700525 } else if (journal->j_committing_transaction)
526 transaction = journal->j_committing_transaction;
527
528 if (!transaction) {
529 spin_unlock(&journal->j_state_lock);
530 return 0; /* Nothing to retry */
531 }
532
533 tid = transaction->t_tid;
534 spin_unlock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700535 jbd2_log_wait_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700536 return 1;
537}
538
539/*
540 * Start a commit of the current running transaction (if any). Returns true
Jan Karac88ccea2009-02-10 11:27:46 -0500541 * if a transaction is going to be committed (or is currently already
542 * committing), and fills its tid in at *ptid
Dave Kleikamp470decc2006-10-11 01:20:57 -0700543 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700544int jbd2_journal_start_commit(journal_t *journal, tid_t *ptid)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700545{
546 int ret = 0;
547
548 spin_lock(&journal->j_state_lock);
549 if (journal->j_running_transaction) {
550 tid_t tid = journal->j_running_transaction->t_tid;
551
Jan Karac88ccea2009-02-10 11:27:46 -0500552 __jbd2_log_start_commit(journal, tid);
553 /* There's a running transaction and we've just made sure
554 * it's commit has been scheduled. */
555 if (ptid)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700556 *ptid = tid;
Jan Karac88ccea2009-02-10 11:27:46 -0500557 ret = 1;
558 } else if (journal->j_committing_transaction) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700559 /*
560 * If ext3_write_super() recently started a commit, then we
561 * have to wait for completion of that transaction
562 */
Jan Karac88ccea2009-02-10 11:27:46 -0500563 if (ptid)
564 *ptid = journal->j_committing_transaction->t_tid;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700565 ret = 1;
566 }
567 spin_unlock(&journal->j_state_lock);
568 return ret;
569}
570
571/*
572 * Wait for a specified commit to complete.
573 * The caller may not hold the journal lock.
574 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700575int jbd2_log_wait_commit(journal_t *journal, tid_t tid)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700576{
577 int err = 0;
578
Jose R. Santose23291b2007-07-18 08:57:06 -0400579#ifdef CONFIG_JBD2_DEBUG
Dave Kleikamp470decc2006-10-11 01:20:57 -0700580 spin_lock(&journal->j_state_lock);
581 if (!tid_geq(journal->j_commit_request, tid)) {
582 printk(KERN_EMERG
583 "%s: error: j_commit_request=%d, tid=%d\n",
Harvey Harrison329d2912008-04-17 10:38:59 -0400584 __func__, journal->j_commit_request, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700585 }
586 spin_unlock(&journal->j_state_lock);
587#endif
588 spin_lock(&journal->j_state_lock);
589 while (tid_gt(tid, journal->j_commit_sequence)) {
590 jbd_debug(1, "JBD: want %d, j_commit_sequence=%d\n",
591 tid, journal->j_commit_sequence);
592 wake_up(&journal->j_wait_commit);
593 spin_unlock(&journal->j_state_lock);
594 wait_event(journal->j_wait_done_commit,
595 !tid_gt(tid, journal->j_commit_sequence));
596 spin_lock(&journal->j_state_lock);
597 }
598 spin_unlock(&journal->j_state_lock);
599
600 if (unlikely(is_journal_aborted(journal))) {
601 printk(KERN_EMERG "journal commit I/O error\n");
602 err = -EIO;
603 }
604 return err;
605}
606
607/*
608 * Log buffer allocation routines:
609 */
610
Mingming Cao18eba7a2006-10-11 01:21:13 -0700611int jbd2_journal_next_log_block(journal_t *journal, unsigned long long *retp)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700612{
613 unsigned long blocknr;
614
615 spin_lock(&journal->j_state_lock);
616 J_ASSERT(journal->j_free > 1);
617
618 blocknr = journal->j_head;
619 journal->j_head++;
620 journal->j_free--;
621 if (journal->j_head == journal->j_last)
622 journal->j_head = journal->j_first;
623 spin_unlock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700624 return jbd2_journal_bmap(journal, blocknr, retp);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700625}
626
627/*
628 * Conversion of logical to physical block numbers for the journal
629 *
630 * On external journals the journal blocks are identity-mapped, so
631 * this is a no-op. If needed, we can use j_blk_offset - everything is
632 * ready.
633 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700634int jbd2_journal_bmap(journal_t *journal, unsigned long blocknr,
Mingming Cao18eba7a2006-10-11 01:21:13 -0700635 unsigned long long *retp)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700636{
637 int err = 0;
Mingming Cao18eba7a2006-10-11 01:21:13 -0700638 unsigned long long ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700639
640 if (journal->j_inode) {
641 ret = bmap(journal->j_inode, blocknr);
642 if (ret)
643 *retp = ret;
644 else {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700645 printk(KERN_ALERT "%s: journal block not found "
646 "at offset %lu on %s\n",
Theodore Ts'o05496762008-09-16 14:36:17 -0400647 __func__, blocknr, journal->j_devname);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700648 err = -EIO;
649 __journal_abort_soft(journal, err);
650 }
651 } else {
652 *retp = blocknr; /* +journal->j_blk_offset */
653 }
654 return err;
655}
656
657/*
658 * We play buffer_head aliasing tricks to write data/metadata blocks to
659 * the journal without copying their contents, but for journal
660 * descriptor blocks we do need to generate bona fide buffers.
661 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700662 * After the caller of jbd2_journal_get_descriptor_buffer() has finished modifying
Dave Kleikamp470decc2006-10-11 01:20:57 -0700663 * the buffer's contents they really should run flush_dcache_page(bh->b_page).
664 * But we don't bother doing that, so there will be coherency problems with
665 * mmaps of blockdevs which hold live JBD-controlled filesystems.
666 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700667struct journal_head *jbd2_journal_get_descriptor_buffer(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700668{
669 struct buffer_head *bh;
Mingming Cao18eba7a2006-10-11 01:21:13 -0700670 unsigned long long blocknr;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700671 int err;
672
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700673 err = jbd2_journal_next_log_block(journal, &blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700674
675 if (err)
676 return NULL;
677
678 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
Jan Kara4b905672009-01-06 14:53:35 -0500679 if (!bh)
680 return NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700681 lock_buffer(bh);
682 memset(bh->b_data, 0, journal->j_blocksize);
683 set_buffer_uptodate(bh);
684 unlock_buffer(bh);
685 BUFFER_TRACE(bh, "return this buffer");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700686 return jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700687}
688
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500689struct jbd2_stats_proc_session {
690 journal_t *journal;
691 struct transaction_stats_s *stats;
692 int start;
693 int max;
694};
695
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500696static void *jbd2_seq_info_start(struct seq_file *seq, loff_t *pos)
697{
698 return *pos ? NULL : SEQ_START_TOKEN;
699}
700
701static void *jbd2_seq_info_next(struct seq_file *seq, void *v, loff_t *pos)
702{
703 return NULL;
704}
705
706static int jbd2_seq_info_show(struct seq_file *seq, void *v)
707{
708 struct jbd2_stats_proc_session *s = seq->private;
709
710 if (v != SEQ_START_TOKEN)
711 return 0;
Theodore Ts'obf699322009-09-30 00:32:06 -0400712 seq_printf(seq, "%lu transaction, each up to %u blocks\n",
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500713 s->stats->ts_tid,
714 s->journal->j_max_transaction_buffers);
715 if (s->stats->ts_tid == 0)
716 return 0;
717 seq_printf(seq, "average: \n %ums waiting for transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400718 jiffies_to_msecs(s->stats->run.rs_wait / s->stats->ts_tid));
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500719 seq_printf(seq, " %ums running transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400720 jiffies_to_msecs(s->stats->run.rs_running / s->stats->ts_tid));
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500721 seq_printf(seq, " %ums transaction was being locked\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400722 jiffies_to_msecs(s->stats->run.rs_locked / s->stats->ts_tid));
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500723 seq_printf(seq, " %ums flushing data (in ordered mode)\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400724 jiffies_to_msecs(s->stats->run.rs_flushing / s->stats->ts_tid));
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500725 seq_printf(seq, " %ums logging transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400726 jiffies_to_msecs(s->stats->run.rs_logging / s->stats->ts_tid));
Simon Holm Thøgersenc225aa52009-01-11 22:34:01 -0500727 seq_printf(seq, " %lluus average transaction commit time\n",
728 div_u64(s->journal->j_average_commit_time, 1000));
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500729 seq_printf(seq, " %lu handles per transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400730 s->stats->run.rs_handle_count / s->stats->ts_tid);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500731 seq_printf(seq, " %lu blocks per transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400732 s->stats->run.rs_blocks / s->stats->ts_tid);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500733 seq_printf(seq, " %lu logged blocks per transaction\n",
Theodore Ts'obf699322009-09-30 00:32:06 -0400734 s->stats->run.rs_blocks_logged / s->stats->ts_tid);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500735 return 0;
736}
737
738static void jbd2_seq_info_stop(struct seq_file *seq, void *v)
739{
740}
741
James Morris88e9d342009-09-22 16:43:43 -0700742static const struct seq_operations jbd2_seq_info_ops = {
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500743 .start = jbd2_seq_info_start,
744 .next = jbd2_seq_info_next,
745 .stop = jbd2_seq_info_stop,
746 .show = jbd2_seq_info_show,
747};
748
749static int jbd2_seq_info_open(struct inode *inode, struct file *file)
750{
751 journal_t *journal = PDE(inode)->data;
752 struct jbd2_stats_proc_session *s;
753 int rc, size;
754
755 s = kmalloc(sizeof(*s), GFP_KERNEL);
756 if (s == NULL)
757 return -ENOMEM;
758 size = sizeof(struct transaction_stats_s);
759 s->stats = kmalloc(size, GFP_KERNEL);
760 if (s->stats == NULL) {
761 kfree(s);
762 return -ENOMEM;
763 }
764 spin_lock(&journal->j_history_lock);
765 memcpy(s->stats, &journal->j_stats, size);
766 s->journal = journal;
767 spin_unlock(&journal->j_history_lock);
768
769 rc = seq_open(file, &jbd2_seq_info_ops);
770 if (rc == 0) {
771 struct seq_file *m = file->private_data;
772 m->private = s;
773 } else {
774 kfree(s->stats);
775 kfree(s);
776 }
777 return rc;
778
779}
780
781static int jbd2_seq_info_release(struct inode *inode, struct file *file)
782{
783 struct seq_file *seq = file->private_data;
784 struct jbd2_stats_proc_session *s = seq->private;
785 kfree(s->stats);
786 kfree(s);
787 return seq_release(inode, file);
788}
789
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700790static const struct file_operations jbd2_seq_info_fops = {
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500791 .owner = THIS_MODULE,
792 .open = jbd2_seq_info_open,
793 .read = seq_read,
794 .llseek = seq_lseek,
795 .release = jbd2_seq_info_release,
796};
797
798static struct proc_dir_entry *proc_jbd2_stats;
799
800static void jbd2_stats_proc_init(journal_t *journal)
801{
Theodore Ts'o05496762008-09-16 14:36:17 -0400802 journal->j_proc_entry = proc_mkdir(journal->j_devname, proc_jbd2_stats);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500803 if (journal->j_proc_entry) {
Denis V. Lunev79da3662008-04-29 01:02:11 -0700804 proc_create_data("info", S_IRUGO, journal->j_proc_entry,
805 &jbd2_seq_info_fops, journal);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500806 }
807}
808
809static void jbd2_stats_proc_exit(journal_t *journal)
810{
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500811 remove_proc_entry("info", journal->j_proc_entry);
Theodore Ts'o05496762008-09-16 14:36:17 -0400812 remove_proc_entry(journal->j_devname, proc_jbd2_stats);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500813}
814
Dave Kleikamp470decc2006-10-11 01:20:57 -0700815/*
816 * Management for journal control blocks: functions to create and
817 * destroy journal_t structures, and to initialise and read existing
818 * journal blocks from disk. */
819
820/* First: create and setup a journal_t object in memory. We initialise
821 * very few fields yet: that has to wait until we have created the
822 * journal structures from from scratch, or loaded them from disk. */
823
824static journal_t * journal_init_common (void)
825{
826 journal_t *journal;
827 int err;
828
Andrew Morton3ebfdf82009-12-23 08:05:15 -0500829 journal = kzalloc(sizeof(*journal), GFP_KERNEL);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700830 if (!journal)
831 goto fail;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700832
833 init_waitqueue_head(&journal->j_wait_transaction_locked);
834 init_waitqueue_head(&journal->j_wait_logspace);
835 init_waitqueue_head(&journal->j_wait_done_commit);
836 init_waitqueue_head(&journal->j_wait_checkpoint);
837 init_waitqueue_head(&journal->j_wait_commit);
838 init_waitqueue_head(&journal->j_wait_updates);
839 mutex_init(&journal->j_barrier);
840 mutex_init(&journal->j_checkpoint_mutex);
841 spin_lock_init(&journal->j_revoke_lock);
842 spin_lock_init(&journal->j_list_lock);
843 spin_lock_init(&journal->j_state_lock);
844
Mingming Caocd02ff02007-10-16 18:38:25 -0400845 journal->j_commit_interval = (HZ * JBD2_DEFAULT_MAX_COMMIT_AGE);
Theodore Ts'o30773842009-01-03 20:27:38 -0500846 journal->j_min_batch_time = 0;
847 journal->j_max_batch_time = 15000; /* 15ms */
Dave Kleikamp470decc2006-10-11 01:20:57 -0700848
849 /* The journal is marked for error until we succeed with recovery! */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700850 journal->j_flags = JBD2_ABORT;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700851
852 /* Set up a default-sized revoke table for the new mount. */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700853 err = jbd2_journal_init_revoke(journal, JOURNAL_REVOKE_DEFAULT_HASH);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700854 if (err) {
855 kfree(journal);
856 goto fail;
857 }
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500858
Theodore Ts'obf699322009-09-30 00:32:06 -0400859 spin_lock_init(&journal->j_history_lock);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500860
Dave Kleikamp470decc2006-10-11 01:20:57 -0700861 return journal;
862fail:
863 return NULL;
864}
865
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700866/* jbd2_journal_init_dev and jbd2_journal_init_inode:
Dave Kleikamp470decc2006-10-11 01:20:57 -0700867 *
868 * Create a journal structure assigned some fixed set of disk blocks to
869 * the journal. We don't actually touch those disk blocks yet, but we
870 * need to set up all of the mapping information to tell the journaling
871 * system where the journal blocks are.
872 *
873 */
874
875/**
Randy Dunlap5648ba52008-04-17 10:38:59 -0400876 * journal_t * jbd2_journal_init_dev() - creates and initialises a journal structure
Dave Kleikamp470decc2006-10-11 01:20:57 -0700877 * @bdev: Block device on which to create the journal
878 * @fs_dev: Device which hold journalled filesystem for this journal.
879 * @start: Block nr Start of journal.
880 * @len: Length of the journal in blocks.
881 * @blocksize: blocksize of journalling device
Randy Dunlap5648ba52008-04-17 10:38:59 -0400882 *
883 * Returns: a newly created journal_t *
Dave Kleikamp470decc2006-10-11 01:20:57 -0700884 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700885 * jbd2_journal_init_dev creates a journal which maps a fixed contiguous
Dave Kleikamp470decc2006-10-11 01:20:57 -0700886 * range of blocks on an arbitrary block device.
887 *
888 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700889journal_t * jbd2_journal_init_dev(struct block_device *bdev,
Dave Kleikamp470decc2006-10-11 01:20:57 -0700890 struct block_device *fs_dev,
Mingming Cao18eba7a2006-10-11 01:21:13 -0700891 unsigned long long start, int len, int blocksize)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700892{
893 journal_t *journal = journal_init_common();
894 struct buffer_head *bh;
Theodore Ts'o05496762008-09-16 14:36:17 -0400895 char *p;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700896 int n;
897
898 if (!journal)
899 return NULL;
900
901 /* journal descriptor can store up to n blocks -bzzz */
902 journal->j_blocksize = blocksize;
Jan Kara4b905672009-01-06 14:53:35 -0500903 jbd2_stats_proc_init(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700904 n = journal->j_blocksize / sizeof(journal_block_tag_t);
905 journal->j_wbufsize = n;
906 journal->j_wbuf = kmalloc(n * sizeof(struct buffer_head*), GFP_KERNEL);
907 if (!journal->j_wbuf) {
908 printk(KERN_ERR "%s: Cant allocate bhs for commit thread\n",
Harvey Harrison329d2912008-04-17 10:38:59 -0400909 __func__);
Jan Kara4b905672009-01-06 14:53:35 -0500910 goto out_err;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700911 }
912 journal->j_dev = bdev;
913 journal->j_fs_dev = fs_dev;
914 journal->j_blk_offset = start;
915 journal->j_maxlen = len;
Theodore Ts'o05496762008-09-16 14:36:17 -0400916 bdevname(journal->j_dev, journal->j_devname);
917 p = journal->j_devname;
918 while ((p = strchr(p, '/')))
919 *p = '!';
Dave Kleikamp470decc2006-10-11 01:20:57 -0700920
921 bh = __getblk(journal->j_dev, start, journal->j_blocksize);
Jan Kara4b905672009-01-06 14:53:35 -0500922 if (!bh) {
923 printk(KERN_ERR
924 "%s: Cannot get buffer for journal superblock\n",
925 __func__);
926 goto out_err;
927 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700928 journal->j_sb_buffer = bh;
929 journal->j_superblock = (journal_superblock_t *)bh->b_data;
Jan Kara4b905672009-01-06 14:53:35 -0500930
Dave Kleikamp470decc2006-10-11 01:20:57 -0700931 return journal;
Jan Kara4b905672009-01-06 14:53:35 -0500932out_err:
Tao Ma7b02bec2009-11-10 17:13:22 +0800933 kfree(journal->j_wbuf);
Jan Kara4b905672009-01-06 14:53:35 -0500934 jbd2_stats_proc_exit(journal);
935 kfree(journal);
936 return NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700937}
938
939/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700940 * journal_t * jbd2_journal_init_inode () - creates a journal which maps to a inode.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700941 * @inode: An inode to create the journal in
942 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700943 * jbd2_journal_init_inode creates a journal which maps an on-disk inode as
Dave Kleikamp470decc2006-10-11 01:20:57 -0700944 * the journal. The inode must exist already, must support bmap() and
945 * must have all data blocks preallocated.
946 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700947journal_t * jbd2_journal_init_inode (struct inode *inode)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700948{
949 struct buffer_head *bh;
950 journal_t *journal = journal_init_common();
Theodore Ts'o05496762008-09-16 14:36:17 -0400951 char *p;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700952 int err;
953 int n;
Mingming Cao18eba7a2006-10-11 01:21:13 -0700954 unsigned long long blocknr;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700955
956 if (!journal)
957 return NULL;
958
959 journal->j_dev = journal->j_fs_dev = inode->i_sb->s_bdev;
960 journal->j_inode = inode;
Theodore Ts'o05496762008-09-16 14:36:17 -0400961 bdevname(journal->j_dev, journal->j_devname);
962 p = journal->j_devname;
963 while ((p = strchr(p, '/')))
964 *p = '!';
965 p = journal->j_devname + strlen(journal->j_devname);
Theodore Ts'o90576c02009-09-29 15:51:30 -0400966 sprintf(p, "-%lu", journal->j_inode->i_ino);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700967 jbd_debug(1,
968 "journal %p: inode %s/%ld, size %Ld, bits %d, blksize %ld\n",
969 journal, inode->i_sb->s_id, inode->i_ino,
970 (long long) inode->i_size,
971 inode->i_sb->s_blocksize_bits, inode->i_sb->s_blocksize);
972
973 journal->j_maxlen = inode->i_size >> inode->i_sb->s_blocksize_bits;
974 journal->j_blocksize = inode->i_sb->s_blocksize;
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500975 jbd2_stats_proc_init(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700976
977 /* journal descriptor can store up to n blocks -bzzz */
978 n = journal->j_blocksize / sizeof(journal_block_tag_t);
979 journal->j_wbufsize = n;
980 journal->j_wbuf = kmalloc(n * sizeof(struct buffer_head*), GFP_KERNEL);
981 if (!journal->j_wbuf) {
982 printk(KERN_ERR "%s: Cant allocate bhs for commit thread\n",
Harvey Harrison329d2912008-04-17 10:38:59 -0400983 __func__);
Jan Kara4b905672009-01-06 14:53:35 -0500984 goto out_err;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700985 }
986
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700987 err = jbd2_journal_bmap(journal, 0, &blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700988 /* If that failed, give up */
989 if (err) {
990 printk(KERN_ERR "%s: Cannnot locate journal superblock\n",
Harvey Harrison329d2912008-04-17 10:38:59 -0400991 __func__);
Jan Kara4b905672009-01-06 14:53:35 -0500992 goto out_err;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700993 }
994
995 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
Jan Kara4b905672009-01-06 14:53:35 -0500996 if (!bh) {
997 printk(KERN_ERR
998 "%s: Cannot get buffer for journal superblock\n",
999 __func__);
1000 goto out_err;
1001 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001002 journal->j_sb_buffer = bh;
1003 journal->j_superblock = (journal_superblock_t *)bh->b_data;
1004
1005 return journal;
Jan Kara4b905672009-01-06 14:53:35 -05001006out_err:
Tao Ma7b02bec2009-11-10 17:13:22 +08001007 kfree(journal->j_wbuf);
Jan Kara4b905672009-01-06 14:53:35 -05001008 jbd2_stats_proc_exit(journal);
1009 kfree(journal);
1010 return NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001011}
1012
1013/*
1014 * If the journal init or create aborts, we need to mark the journal
1015 * superblock as being NULL to prevent the journal destroy from writing
1016 * back a bogus superblock.
1017 */
1018static void journal_fail_superblock (journal_t *journal)
1019{
1020 struct buffer_head *bh = journal->j_sb_buffer;
1021 brelse(bh);
1022 journal->j_sb_buffer = NULL;
1023}
1024
1025/*
1026 * Given a journal_t structure, initialise the various fields for
1027 * startup of a new journaling session. We use this both when creating
1028 * a journal, and after recovering an old journal to reset it for
1029 * subsequent use.
1030 */
1031
1032static int journal_reset(journal_t *journal)
1033{
1034 journal_superblock_t *sb = journal->j_superblock;
Mingming Cao18eba7a2006-10-11 01:21:13 -07001035 unsigned long long first, last;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001036
1037 first = be32_to_cpu(sb->s_first);
1038 last = be32_to_cpu(sb->s_maxlen);
Jan Karaf6f50e22009-07-17 10:40:01 -04001039 if (first + JBD2_MIN_JOURNAL_BLOCKS > last + 1) {
1040 printk(KERN_ERR "JBD: Journal too short (blocks %llu-%llu).\n",
1041 first, last);
1042 journal_fail_superblock(journal);
1043 return -EINVAL;
1044 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001045
1046 journal->j_first = first;
1047 journal->j_last = last;
1048
1049 journal->j_head = first;
1050 journal->j_tail = first;
1051 journal->j_free = last - first;
1052
1053 journal->j_tail_sequence = journal->j_transaction_sequence;
1054 journal->j_commit_sequence = journal->j_transaction_sequence - 1;
1055 journal->j_commit_request = journal->j_commit_sequence;
1056
1057 journal->j_max_transaction_buffers = journal->j_maxlen / 4;
1058
1059 /* Add the dynamic fields and write it to disk. */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001060 jbd2_journal_update_superblock(journal, 1);
Pavel Emelianov97f06782007-05-08 00:30:42 -07001061 return jbd2_journal_start_thread(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001062}
1063
1064/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001065 * void jbd2_journal_update_superblock() - Update journal sb on disk.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001066 * @journal: The journal to update.
1067 * @wait: Set to '0' if you don't want to wait for IO completion.
1068 *
1069 * Update a journal's dynamic superblock fields and write it to disk,
1070 * optionally waiting for the IO to complete.
1071 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001072void jbd2_journal_update_superblock(journal_t *journal, int wait)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001073{
1074 journal_superblock_t *sb = journal->j_superblock;
1075 struct buffer_head *bh = journal->j_sb_buffer;
1076
1077 /*
1078 * As a special case, if the on-disk copy is already marked as needing
1079 * no recovery (s_start == 0) and there are no outstanding transactions
1080 * in the filesystem, then we can safely defer the superblock update
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001081 * until the next commit by setting JBD2_FLUSHED. This avoids
Dave Kleikamp470decc2006-10-11 01:20:57 -07001082 * attempting a write to a potential-readonly device.
1083 */
1084 if (sb->s_start == 0 && journal->j_tail_sequence ==
1085 journal->j_transaction_sequence) {
1086 jbd_debug(1,"JBD: Skipping superblock update on recovered sb "
1087 "(start %ld, seq %d, errno %d)\n",
1088 journal->j_tail, journal->j_tail_sequence,
1089 journal->j_errno);
1090 goto out;
1091 }
1092
Theodore Ts'o914258b2008-10-06 21:35:40 -04001093 if (buffer_write_io_error(bh)) {
1094 /*
1095 * Oh, dear. A previous attempt to write the journal
1096 * superblock failed. This could happen because the
1097 * USB device was yanked out. Or it could happen to
1098 * be a transient write error and maybe the block will
1099 * be remapped. Nothing we can do but to retry the
1100 * write and hope for the best.
1101 */
1102 printk(KERN_ERR "JBD2: previous I/O error detected "
1103 "for journal superblock update for %s.\n",
1104 journal->j_devname);
1105 clear_buffer_write_io_error(bh);
1106 set_buffer_uptodate(bh);
1107 }
1108
Dave Kleikamp470decc2006-10-11 01:20:57 -07001109 spin_lock(&journal->j_state_lock);
1110 jbd_debug(1,"JBD: updating superblock (start %ld, seq %d, errno %d)\n",
1111 journal->j_tail, journal->j_tail_sequence, journal->j_errno);
1112
1113 sb->s_sequence = cpu_to_be32(journal->j_tail_sequence);
1114 sb->s_start = cpu_to_be32(journal->j_tail);
1115 sb->s_errno = cpu_to_be32(journal->j_errno);
1116 spin_unlock(&journal->j_state_lock);
1117
1118 BUFFER_TRACE(bh, "marking dirty");
1119 mark_buffer_dirty(bh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04001120 if (wait) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001121 sync_dirty_buffer(bh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04001122 if (buffer_write_io_error(bh)) {
1123 printk(KERN_ERR "JBD2: I/O error detected "
1124 "when updating journal superblock for %s.\n",
1125 journal->j_devname);
1126 clear_buffer_write_io_error(bh);
1127 set_buffer_uptodate(bh);
1128 }
1129 } else
Dave Kleikamp470decc2006-10-11 01:20:57 -07001130 ll_rw_block(SWRITE, 1, &bh);
1131
1132out:
1133 /* If we have just flushed the log (by marking s_start==0), then
1134 * any future commit will have to be careful to update the
1135 * superblock again to re-record the true start of the log. */
1136
1137 spin_lock(&journal->j_state_lock);
1138 if (sb->s_start)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001139 journal->j_flags &= ~JBD2_FLUSHED;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001140 else
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001141 journal->j_flags |= JBD2_FLUSHED;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001142 spin_unlock(&journal->j_state_lock);
1143}
1144
1145/*
1146 * Read the superblock for a given journal, performing initial
1147 * validation of the format.
1148 */
1149
1150static int journal_get_superblock(journal_t *journal)
1151{
1152 struct buffer_head *bh;
1153 journal_superblock_t *sb;
1154 int err = -EIO;
1155
1156 bh = journal->j_sb_buffer;
1157
1158 J_ASSERT(bh != NULL);
1159 if (!buffer_uptodate(bh)) {
1160 ll_rw_block(READ, 1, &bh);
1161 wait_on_buffer(bh);
1162 if (!buffer_uptodate(bh)) {
1163 printk (KERN_ERR
1164 "JBD: IO error reading journal superblock\n");
1165 goto out;
1166 }
1167 }
1168
1169 sb = journal->j_superblock;
1170
1171 err = -EINVAL;
1172
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001173 if (sb->s_header.h_magic != cpu_to_be32(JBD2_MAGIC_NUMBER) ||
Dave Kleikamp470decc2006-10-11 01:20:57 -07001174 sb->s_blocksize != cpu_to_be32(journal->j_blocksize)) {
1175 printk(KERN_WARNING "JBD: no valid journal superblock found\n");
1176 goto out;
1177 }
1178
1179 switch(be32_to_cpu(sb->s_header.h_blocktype)) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001180 case JBD2_SUPERBLOCK_V1:
Dave Kleikamp470decc2006-10-11 01:20:57 -07001181 journal->j_format_version = 1;
1182 break;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001183 case JBD2_SUPERBLOCK_V2:
Dave Kleikamp470decc2006-10-11 01:20:57 -07001184 journal->j_format_version = 2;
1185 break;
1186 default:
1187 printk(KERN_WARNING "JBD: unrecognised superblock format ID\n");
1188 goto out;
1189 }
1190
1191 if (be32_to_cpu(sb->s_maxlen) < journal->j_maxlen)
1192 journal->j_maxlen = be32_to_cpu(sb->s_maxlen);
1193 else if (be32_to_cpu(sb->s_maxlen) > journal->j_maxlen) {
1194 printk (KERN_WARNING "JBD: journal file too short\n");
1195 goto out;
1196 }
1197
1198 return 0;
1199
1200out:
1201 journal_fail_superblock(journal);
1202 return err;
1203}
1204
1205/*
1206 * Load the on-disk journal superblock and read the key fields into the
1207 * journal_t.
1208 */
1209
1210static int load_superblock(journal_t *journal)
1211{
1212 int err;
1213 journal_superblock_t *sb;
1214
1215 err = journal_get_superblock(journal);
1216 if (err)
1217 return err;
1218
1219 sb = journal->j_superblock;
1220
1221 journal->j_tail_sequence = be32_to_cpu(sb->s_sequence);
1222 journal->j_tail = be32_to_cpu(sb->s_start);
1223 journal->j_first = be32_to_cpu(sb->s_first);
1224 journal->j_last = be32_to_cpu(sb->s_maxlen);
1225 journal->j_errno = be32_to_cpu(sb->s_errno);
1226
1227 return 0;
1228}
1229
1230
1231/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001232 * int jbd2_journal_load() - Read journal from disk.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001233 * @journal: Journal to act on.
1234 *
1235 * Given a journal_t structure which tells us which disk blocks contain
1236 * a journal, read the journal from disk to initialise the in-memory
1237 * structures.
1238 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001239int jbd2_journal_load(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001240{
1241 int err;
1242 journal_superblock_t *sb;
1243
1244 err = load_superblock(journal);
1245 if (err)
1246 return err;
1247
1248 sb = journal->j_superblock;
1249 /* If this is a V2 superblock, then we have to check the
1250 * features flags on it. */
1251
1252 if (journal->j_format_version >= 2) {
1253 if ((sb->s_feature_ro_compat &
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001254 ~cpu_to_be32(JBD2_KNOWN_ROCOMPAT_FEATURES)) ||
Dave Kleikamp470decc2006-10-11 01:20:57 -07001255 (sb->s_feature_incompat &
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001256 ~cpu_to_be32(JBD2_KNOWN_INCOMPAT_FEATURES))) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001257 printk (KERN_WARNING
1258 "JBD: Unrecognised features on journal\n");
1259 return -EINVAL;
1260 }
1261 }
1262
Theodore Ts'od2eecb02009-12-07 10:36:20 -05001263 /*
1264 * Create a slab for this blocksize
1265 */
1266 err = jbd2_journal_create_slab(be32_to_cpu(sb->s_blocksize));
1267 if (err)
1268 return err;
1269
Dave Kleikamp470decc2006-10-11 01:20:57 -07001270 /* Let the recovery code check whether it needs to recover any
1271 * data from the journal. */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001272 if (jbd2_journal_recover(journal))
Dave Kleikamp470decc2006-10-11 01:20:57 -07001273 goto recovery_error;
1274
Theodore Ts'oe6a47422009-11-15 15:31:37 -05001275 if (journal->j_failed_commit) {
1276 printk(KERN_ERR "JBD2: journal transaction %u on %s "
1277 "is corrupt.\n", journal->j_failed_commit,
1278 journal->j_devname);
1279 return -EIO;
1280 }
1281
Dave Kleikamp470decc2006-10-11 01:20:57 -07001282 /* OK, we've finished with the dynamic journal bits:
1283 * reinitialise the dynamic contents of the superblock in memory
1284 * and reset them on disk. */
1285 if (journal_reset(journal))
1286 goto recovery_error;
1287
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001288 journal->j_flags &= ~JBD2_ABORT;
1289 journal->j_flags |= JBD2_LOADED;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001290 return 0;
1291
1292recovery_error:
1293 printk (KERN_WARNING "JBD: recovery failed\n");
1294 return -EIO;
1295}
1296
1297/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001298 * void jbd2_journal_destroy() - Release a journal_t structure.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001299 * @journal: Journal to act on.
1300 *
1301 * Release a journal_t structure once it is no longer in use by the
1302 * journaled object.
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001303 * Return <0 if we couldn't clean up the journal.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001304 */
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001305int jbd2_journal_destroy(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001306{
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001307 int err = 0;
1308
Dave Kleikamp470decc2006-10-11 01:20:57 -07001309 /* Wait for the commit thread to wake up and die. */
1310 journal_kill_thread(journal);
1311
1312 /* Force a final log commit */
1313 if (journal->j_running_transaction)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001314 jbd2_journal_commit_transaction(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001315
1316 /* Force any old transactions to disk */
1317
1318 /* Totally anal locking here... */
1319 spin_lock(&journal->j_list_lock);
1320 while (journal->j_checkpoint_transactions != NULL) {
1321 spin_unlock(&journal->j_list_lock);
Theodore Ts'o1a0d3782008-11-05 00:09:22 -05001322 mutex_lock(&journal->j_checkpoint_mutex);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001323 jbd2_log_do_checkpoint(journal);
Theodore Ts'o1a0d3782008-11-05 00:09:22 -05001324 mutex_unlock(&journal->j_checkpoint_mutex);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001325 spin_lock(&journal->j_list_lock);
1326 }
1327
1328 J_ASSERT(journal->j_running_transaction == NULL);
1329 J_ASSERT(journal->j_committing_transaction == NULL);
1330 J_ASSERT(journal->j_checkpoint_transactions == NULL);
1331 spin_unlock(&journal->j_list_lock);
1332
Dave Kleikamp470decc2006-10-11 01:20:57 -07001333 if (journal->j_sb_buffer) {
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001334 if (!is_journal_aborted(journal)) {
1335 /* We can now mark the journal as empty. */
1336 journal->j_tail = 0;
1337 journal->j_tail_sequence =
1338 ++journal->j_transaction_sequence;
1339 jbd2_journal_update_superblock(journal, 1);
1340 } else {
1341 err = -EIO;
1342 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001343 brelse(journal->j_sb_buffer);
1344 }
1345
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001346 if (journal->j_proc_entry)
1347 jbd2_stats_proc_exit(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001348 if (journal->j_inode)
1349 iput(journal->j_inode);
1350 if (journal->j_revoke)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001351 jbd2_journal_destroy_revoke(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001352 kfree(journal->j_wbuf);
1353 kfree(journal);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001354
1355 return err;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001356}
1357
1358
1359/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001360 *int jbd2_journal_check_used_features () - Check if features specified are used.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001361 * @journal: Journal to check.
1362 * @compat: bitmask of compatible features
1363 * @ro: bitmask of features that force read-only mount
1364 * @incompat: bitmask of incompatible features
1365 *
1366 * Check whether the journal uses all of a given set of
1367 * features. Return true (non-zero) if it does.
1368 **/
1369
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001370int jbd2_journal_check_used_features (journal_t *journal, unsigned long compat,
Dave Kleikamp470decc2006-10-11 01:20:57 -07001371 unsigned long ro, unsigned long incompat)
1372{
1373 journal_superblock_t *sb;
1374
1375 if (!compat && !ro && !incompat)
1376 return 1;
1377 if (journal->j_format_version == 1)
1378 return 0;
1379
1380 sb = journal->j_superblock;
1381
1382 if (((be32_to_cpu(sb->s_feature_compat) & compat) == compat) &&
1383 ((be32_to_cpu(sb->s_feature_ro_compat) & ro) == ro) &&
1384 ((be32_to_cpu(sb->s_feature_incompat) & incompat) == incompat))
1385 return 1;
1386
1387 return 0;
1388}
1389
1390/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001391 * int jbd2_journal_check_available_features() - Check feature set in journalling layer
Dave Kleikamp470decc2006-10-11 01:20:57 -07001392 * @journal: Journal to check.
1393 * @compat: bitmask of compatible features
1394 * @ro: bitmask of features that force read-only mount
1395 * @incompat: bitmask of incompatible features
1396 *
1397 * Check whether the journaling code supports the use of
1398 * all of a given set of features on this journal. Return true
1399 * (non-zero) if it can. */
1400
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001401int jbd2_journal_check_available_features (journal_t *journal, unsigned long compat,
Dave Kleikamp470decc2006-10-11 01:20:57 -07001402 unsigned long ro, unsigned long incompat)
1403{
Dave Kleikamp470decc2006-10-11 01:20:57 -07001404 if (!compat && !ro && !incompat)
1405 return 1;
1406
Dave Kleikamp470decc2006-10-11 01:20:57 -07001407 /* We can support any known requested features iff the
1408 * superblock is in version 2. Otherwise we fail to support any
1409 * extended sb features. */
1410
1411 if (journal->j_format_version != 2)
1412 return 0;
1413
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001414 if ((compat & JBD2_KNOWN_COMPAT_FEATURES) == compat &&
1415 (ro & JBD2_KNOWN_ROCOMPAT_FEATURES) == ro &&
1416 (incompat & JBD2_KNOWN_INCOMPAT_FEATURES) == incompat)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001417 return 1;
1418
1419 return 0;
1420}
1421
1422/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001423 * int jbd2_journal_set_features () - Mark a given journal feature in the superblock
Dave Kleikamp470decc2006-10-11 01:20:57 -07001424 * @journal: Journal to act on.
1425 * @compat: bitmask of compatible features
1426 * @ro: bitmask of features that force read-only mount
1427 * @incompat: bitmask of incompatible features
1428 *
1429 * Mark a given journal feature as present on the
1430 * superblock. Returns true if the requested features could be set.
1431 *
1432 */
1433
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001434int jbd2_journal_set_features (journal_t *journal, unsigned long compat,
Dave Kleikamp470decc2006-10-11 01:20:57 -07001435 unsigned long ro, unsigned long incompat)
1436{
1437 journal_superblock_t *sb;
1438
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001439 if (jbd2_journal_check_used_features(journal, compat, ro, incompat))
Dave Kleikamp470decc2006-10-11 01:20:57 -07001440 return 1;
1441
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001442 if (!jbd2_journal_check_available_features(journal, compat, ro, incompat))
Dave Kleikamp470decc2006-10-11 01:20:57 -07001443 return 0;
1444
1445 jbd_debug(1, "Setting new features 0x%lx/0x%lx/0x%lx\n",
1446 compat, ro, incompat);
1447
1448 sb = journal->j_superblock;
1449
1450 sb->s_feature_compat |= cpu_to_be32(compat);
1451 sb->s_feature_ro_compat |= cpu_to_be32(ro);
1452 sb->s_feature_incompat |= cpu_to_be32(incompat);
1453
1454 return 1;
1455}
1456
Girish Shilamkar818d2762008-01-28 23:58:27 -05001457/*
1458 * jbd2_journal_clear_features () - Clear a given journal feature in the
1459 * superblock
1460 * @journal: Journal to act on.
1461 * @compat: bitmask of compatible features
1462 * @ro: bitmask of features that force read-only mount
1463 * @incompat: bitmask of incompatible features
1464 *
1465 * Clear a given journal feature as present on the
1466 * superblock.
1467 */
1468void jbd2_journal_clear_features(journal_t *journal, unsigned long compat,
1469 unsigned long ro, unsigned long incompat)
1470{
1471 journal_superblock_t *sb;
1472
1473 jbd_debug(1, "Clear features 0x%lx/0x%lx/0x%lx\n",
1474 compat, ro, incompat);
1475
1476 sb = journal->j_superblock;
1477
1478 sb->s_feature_compat &= ~cpu_to_be32(compat);
1479 sb->s_feature_ro_compat &= ~cpu_to_be32(ro);
1480 sb->s_feature_incompat &= ~cpu_to_be32(incompat);
1481}
1482EXPORT_SYMBOL(jbd2_journal_clear_features);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001483
1484/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001485 * int jbd2_journal_update_format () - Update on-disk journal structure.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001486 * @journal: Journal to act on.
1487 *
1488 * Given an initialised but unloaded journal struct, poke about in the
1489 * on-disk structure to update it to the most recent supported version.
1490 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001491int jbd2_journal_update_format (journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001492{
1493 journal_superblock_t *sb;
1494 int err;
1495
1496 err = journal_get_superblock(journal);
1497 if (err)
1498 return err;
1499
1500 sb = journal->j_superblock;
1501
1502 switch (be32_to_cpu(sb->s_header.h_blocktype)) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001503 case JBD2_SUPERBLOCK_V2:
Dave Kleikamp470decc2006-10-11 01:20:57 -07001504 return 0;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001505 case JBD2_SUPERBLOCK_V1:
Dave Kleikamp470decc2006-10-11 01:20:57 -07001506 return journal_convert_superblock_v1(journal, sb);
1507 default:
1508 break;
1509 }
1510 return -EINVAL;
1511}
1512
1513static int journal_convert_superblock_v1(journal_t *journal,
1514 journal_superblock_t *sb)
1515{
1516 int offset, blocksize;
1517 struct buffer_head *bh;
1518
1519 printk(KERN_WARNING
1520 "JBD: Converting superblock from version 1 to 2.\n");
1521
1522 /* Pre-initialise new fields to zero */
1523 offset = ((char *) &(sb->s_feature_compat)) - ((char *) sb);
1524 blocksize = be32_to_cpu(sb->s_blocksize);
1525 memset(&sb->s_feature_compat, 0, blocksize-offset);
1526
1527 sb->s_nr_users = cpu_to_be32(1);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001528 sb->s_header.h_blocktype = cpu_to_be32(JBD2_SUPERBLOCK_V2);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001529 journal->j_format_version = 2;
1530
1531 bh = journal->j_sb_buffer;
1532 BUFFER_TRACE(bh, "marking dirty");
1533 mark_buffer_dirty(bh);
1534 sync_dirty_buffer(bh);
1535 return 0;
1536}
1537
1538
1539/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001540 * int jbd2_journal_flush () - Flush journal
Dave Kleikamp470decc2006-10-11 01:20:57 -07001541 * @journal: Journal to act on.
1542 *
1543 * Flush all data for a given journal to disk and empty the journal.
1544 * Filesystems can use this when remounting readonly to ensure that
1545 * recovery does not need to happen on remount.
1546 */
1547
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001548int jbd2_journal_flush(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001549{
1550 int err = 0;
1551 transaction_t *transaction = NULL;
1552 unsigned long old_tail;
1553
1554 spin_lock(&journal->j_state_lock);
1555
1556 /* Force everything buffered to the log... */
1557 if (journal->j_running_transaction) {
1558 transaction = journal->j_running_transaction;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001559 __jbd2_log_start_commit(journal, transaction->t_tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001560 } else if (journal->j_committing_transaction)
1561 transaction = journal->j_committing_transaction;
1562
1563 /* Wait for the log commit to complete... */
1564 if (transaction) {
1565 tid_t tid = transaction->t_tid;
1566
1567 spin_unlock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001568 jbd2_log_wait_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001569 } else {
1570 spin_unlock(&journal->j_state_lock);
1571 }
1572
1573 /* ...and flush everything in the log out to disk. */
1574 spin_lock(&journal->j_list_lock);
1575 while (!err && journal->j_checkpoint_transactions != NULL) {
1576 spin_unlock(&journal->j_list_lock);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001577 mutex_lock(&journal->j_checkpoint_mutex);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001578 err = jbd2_log_do_checkpoint(journal);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001579 mutex_unlock(&journal->j_checkpoint_mutex);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001580 spin_lock(&journal->j_list_lock);
1581 }
1582 spin_unlock(&journal->j_list_lock);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001583
1584 if (is_journal_aborted(journal))
1585 return -EIO;
1586
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001587 jbd2_cleanup_journal_tail(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001588
1589 /* Finally, mark the journal as really needing no recovery.
1590 * This sets s_start==0 in the underlying superblock, which is
1591 * the magic code for a fully-recovered superblock. Any future
1592 * commits of data to the journal will restore the current
1593 * s_start value. */
1594 spin_lock(&journal->j_state_lock);
1595 old_tail = journal->j_tail;
1596 journal->j_tail = 0;
1597 spin_unlock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001598 jbd2_journal_update_superblock(journal, 1);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001599 spin_lock(&journal->j_state_lock);
1600 journal->j_tail = old_tail;
1601
1602 J_ASSERT(!journal->j_running_transaction);
1603 J_ASSERT(!journal->j_committing_transaction);
1604 J_ASSERT(!journal->j_checkpoint_transactions);
1605 J_ASSERT(journal->j_head == journal->j_tail);
1606 J_ASSERT(journal->j_tail_sequence == journal->j_transaction_sequence);
1607 spin_unlock(&journal->j_state_lock);
Hidehiro Kawai44519fa2008-10-10 20:29:13 -04001608 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001609}
1610
1611/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001612 * int jbd2_journal_wipe() - Wipe journal contents
Dave Kleikamp470decc2006-10-11 01:20:57 -07001613 * @journal: Journal to act on.
1614 * @write: flag (see below)
1615 *
1616 * Wipe out all of the contents of a journal, safely. This will produce
1617 * a warning if the journal contains any valid recovery information.
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001618 * Must be called between journal_init_*() and jbd2_journal_load().
Dave Kleikamp470decc2006-10-11 01:20:57 -07001619 *
1620 * If 'write' is non-zero, then we wipe out the journal on disk; otherwise
1621 * we merely suppress recovery.
1622 */
1623
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001624int jbd2_journal_wipe(journal_t *journal, int write)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001625{
Dave Kleikamp470decc2006-10-11 01:20:57 -07001626 int err = 0;
1627
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001628 J_ASSERT (!(journal->j_flags & JBD2_LOADED));
Dave Kleikamp470decc2006-10-11 01:20:57 -07001629
1630 err = load_superblock(journal);
1631 if (err)
1632 return err;
1633
Dave Kleikamp470decc2006-10-11 01:20:57 -07001634 if (!journal->j_tail)
1635 goto no_recovery;
1636
1637 printk (KERN_WARNING "JBD: %s recovery information on journal\n",
1638 write ? "Clearing" : "Ignoring");
1639
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001640 err = jbd2_journal_skip_recovery(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001641 if (write)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001642 jbd2_journal_update_superblock(journal, 1);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001643
1644 no_recovery:
1645 return err;
1646}
1647
1648/*
Dave Kleikamp470decc2006-10-11 01:20:57 -07001649 * Journal abort has very specific semantics, which we describe
1650 * for journal abort.
1651 *
Alberto Bertoglibfcd3552009-06-09 00:06:20 -04001652 * Two internal functions, which provide abort to the jbd layer
Dave Kleikamp470decc2006-10-11 01:20:57 -07001653 * itself are here.
1654 */
1655
1656/*
1657 * Quick version for internal journal use (doesn't lock the journal).
1658 * Aborts hard --- we mark the abort as occurred, but do _nothing_ else,
1659 * and don't attempt to make any other journal updates.
1660 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001661void __jbd2_journal_abort_hard(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001662{
1663 transaction_t *transaction;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001664
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001665 if (journal->j_flags & JBD2_ABORT)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001666 return;
1667
1668 printk(KERN_ERR "Aborting journal on device %s.\n",
Theodore Ts'o05496762008-09-16 14:36:17 -04001669 journal->j_devname);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001670
1671 spin_lock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001672 journal->j_flags |= JBD2_ABORT;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001673 transaction = journal->j_running_transaction;
1674 if (transaction)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001675 __jbd2_log_start_commit(journal, transaction->t_tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001676 spin_unlock(&journal->j_state_lock);
1677}
1678
1679/* Soft abort: record the abort error status in the journal superblock,
1680 * but don't do any other IO. */
1681static void __journal_abort_soft (journal_t *journal, int errno)
1682{
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001683 if (journal->j_flags & JBD2_ABORT)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001684 return;
1685
1686 if (!journal->j_errno)
1687 journal->j_errno = errno;
1688
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001689 __jbd2_journal_abort_hard(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001690
1691 if (errno)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001692 jbd2_journal_update_superblock(journal, 1);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001693}
1694
1695/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001696 * void jbd2_journal_abort () - Shutdown the journal immediately.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001697 * @journal: the journal to shutdown.
1698 * @errno: an error number to record in the journal indicating
1699 * the reason for the shutdown.
1700 *
1701 * Perform a complete, immediate shutdown of the ENTIRE
1702 * journal (not of a single transaction). This operation cannot be
1703 * undone without closing and reopening the journal.
1704 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001705 * The jbd2_journal_abort function is intended to support higher level error
Dave Kleikamp470decc2006-10-11 01:20:57 -07001706 * recovery mechanisms such as the ext2/ext3 remount-readonly error
1707 * mode.
1708 *
1709 * Journal abort has very specific semantics. Any existing dirty,
1710 * unjournaled buffers in the main filesystem will still be written to
1711 * disk by bdflush, but the journaling mechanism will be suspended
1712 * immediately and no further transaction commits will be honoured.
1713 *
1714 * Any dirty, journaled buffers will be written back to disk without
1715 * hitting the journal. Atomicity cannot be guaranteed on an aborted
1716 * filesystem, but we _do_ attempt to leave as much data as possible
1717 * behind for fsck to use for cleanup.
1718 *
1719 * Any attempt to get a new transaction handle on a journal which is in
1720 * ABORT state will just result in an -EROFS error return. A
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001721 * jbd2_journal_stop on an existing handle will return -EIO if we have
Dave Kleikamp470decc2006-10-11 01:20:57 -07001722 * entered abort state during the update.
1723 *
1724 * Recursive transactions are not disturbed by journal abort until the
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001725 * final jbd2_journal_stop, which will receive the -EIO error.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001726 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001727 * Finally, the jbd2_journal_abort call allows the caller to supply an errno
Dave Kleikamp470decc2006-10-11 01:20:57 -07001728 * which will be recorded (if possible) in the journal superblock. This
1729 * allows a client to record failure conditions in the middle of a
1730 * transaction without having to complete the transaction to record the
1731 * failure to disk. ext3_error, for example, now uses this
1732 * functionality.
1733 *
1734 * Errors which originate from within the journaling layer will NOT
1735 * supply an errno; a null errno implies that absolutely no further
1736 * writes are done to the journal (unless there are any already in
1737 * progress).
1738 *
1739 */
1740
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001741void jbd2_journal_abort(journal_t *journal, int errno)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001742{
1743 __journal_abort_soft(journal, errno);
1744}
1745
1746/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001747 * int jbd2_journal_errno () - returns the journal's error state.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001748 * @journal: journal to examine.
1749 *
Alberto Bertoglibfcd3552009-06-09 00:06:20 -04001750 * This is the errno number set with jbd2_journal_abort(), the last
Dave Kleikamp470decc2006-10-11 01:20:57 -07001751 * time the journal was mounted - if the journal was stopped
1752 * without calling abort this will be 0.
1753 *
1754 * If the journal has been aborted on this mount time -EROFS will
1755 * be returned.
1756 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001757int jbd2_journal_errno(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001758{
1759 int err;
1760
1761 spin_lock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001762 if (journal->j_flags & JBD2_ABORT)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001763 err = -EROFS;
1764 else
1765 err = journal->j_errno;
1766 spin_unlock(&journal->j_state_lock);
1767 return err;
1768}
1769
1770/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001771 * int jbd2_journal_clear_err () - clears the journal's error state
Dave Kleikamp470decc2006-10-11 01:20:57 -07001772 * @journal: journal to act on.
1773 *
Alberto Bertoglibfcd3552009-06-09 00:06:20 -04001774 * An error must be cleared or acked to take a FS out of readonly
Dave Kleikamp470decc2006-10-11 01:20:57 -07001775 * mode.
1776 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001777int jbd2_journal_clear_err(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001778{
1779 int err = 0;
1780
1781 spin_lock(&journal->j_state_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001782 if (journal->j_flags & JBD2_ABORT)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001783 err = -EROFS;
1784 else
1785 journal->j_errno = 0;
1786 spin_unlock(&journal->j_state_lock);
1787 return err;
1788}
1789
1790/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001791 * void jbd2_journal_ack_err() - Ack journal err.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001792 * @journal: journal to act on.
1793 *
Alberto Bertoglibfcd3552009-06-09 00:06:20 -04001794 * An error must be cleared or acked to take a FS out of readonly
Dave Kleikamp470decc2006-10-11 01:20:57 -07001795 * mode.
1796 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001797void jbd2_journal_ack_err(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001798{
1799 spin_lock(&journal->j_state_lock);
1800 if (journal->j_errno)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001801 journal->j_flags |= JBD2_ACK_ERR;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001802 spin_unlock(&journal->j_state_lock);
1803}
1804
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001805int jbd2_journal_blocks_per_page(struct inode *inode)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001806{
1807 return 1 << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
1808}
1809
1810/*
Zach Brownb517bea2006-10-11 01:21:08 -07001811 * helper functions to deal with 32 or 64bit block numbers.
1812 */
1813size_t journal_tag_bytes(journal_t *journal)
1814{
1815 if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_64BIT))
Mingming Caocd02ff02007-10-16 18:38:25 -04001816 return JBD2_TAG_SIZE64;
Zach Brownb517bea2006-10-11 01:21:08 -07001817 else
Mingming Caocd02ff02007-10-16 18:38:25 -04001818 return JBD2_TAG_SIZE32;
Zach Brownb517bea2006-10-11 01:21:08 -07001819}
1820
1821/*
Theodore Ts'od2eecb02009-12-07 10:36:20 -05001822 * JBD memory management
1823 *
1824 * These functions are used to allocate block-sized chunks of memory
1825 * used for making copies of buffer_head data. Very often it will be
1826 * page-sized chunks of data, but sometimes it will be in
1827 * sub-page-size chunks. (For example, 16k pages on Power systems
1828 * with a 4k block file system.) For blocks smaller than a page, we
1829 * use a SLAB allocator. There are slab caches for each block size,
1830 * which are allocated at mount time, if necessary, and we only free
1831 * (all of) the slab caches when/if the jbd2 module is unloaded. For
1832 * this reason we don't need to a mutex to protect access to
1833 * jbd2_slab[] allocating or releasing memory; only in
1834 * jbd2_journal_create_slab().
1835 */
1836#define JBD2_MAX_SLABS 8
1837static struct kmem_cache *jbd2_slab[JBD2_MAX_SLABS];
1838static DECLARE_MUTEX(jbd2_slab_create_sem);
1839
1840static const char *jbd2_slab_names[JBD2_MAX_SLABS] = {
1841 "jbd2_1k", "jbd2_2k", "jbd2_4k", "jbd2_8k",
1842 "jbd2_16k", "jbd2_32k", "jbd2_64k", "jbd2_128k"
1843};
1844
1845
1846static void jbd2_journal_destroy_slabs(void)
1847{
1848 int i;
1849
1850 for (i = 0; i < JBD2_MAX_SLABS; i++) {
1851 if (jbd2_slab[i])
1852 kmem_cache_destroy(jbd2_slab[i]);
1853 jbd2_slab[i] = NULL;
1854 }
1855}
1856
1857static int jbd2_journal_create_slab(size_t size)
1858{
1859 int i = order_base_2(size) - 10;
1860 size_t slab_size;
1861
1862 if (size == PAGE_SIZE)
1863 return 0;
1864
1865 if (i >= JBD2_MAX_SLABS)
1866 return -EINVAL;
1867
1868 if (unlikely(i < 0))
1869 i = 0;
1870 down(&jbd2_slab_create_sem);
1871 if (jbd2_slab[i]) {
1872 up(&jbd2_slab_create_sem);
1873 return 0; /* Already created */
1874 }
1875
1876 slab_size = 1 << (i+10);
1877 jbd2_slab[i] = kmem_cache_create(jbd2_slab_names[i], slab_size,
1878 slab_size, 0, NULL);
1879 up(&jbd2_slab_create_sem);
1880 if (!jbd2_slab[i]) {
1881 printk(KERN_EMERG "JBD2: no memory for jbd2_slab cache\n");
1882 return -ENOMEM;
1883 }
1884 return 0;
1885}
1886
1887static struct kmem_cache *get_slab(size_t size)
1888{
1889 int i = order_base_2(size) - 10;
1890
1891 BUG_ON(i >= JBD2_MAX_SLABS);
1892 if (unlikely(i < 0))
1893 i = 0;
Bill Pemberton8ac97b72010-04-30 09:34:31 -04001894 BUG_ON(jbd2_slab[i] == NULL);
Theodore Ts'od2eecb02009-12-07 10:36:20 -05001895 return jbd2_slab[i];
1896}
1897
1898void *jbd2_alloc(size_t size, gfp_t flags)
1899{
1900 void *ptr;
1901
1902 BUG_ON(size & (size-1)); /* Must be a power of 2 */
1903
1904 flags |= __GFP_REPEAT;
1905 if (size == PAGE_SIZE)
1906 ptr = (void *)__get_free_pages(flags, 0);
1907 else if (size > PAGE_SIZE) {
1908 int order = get_order(size);
1909
1910 if (order < 3)
1911 ptr = (void *)__get_free_pages(flags, order);
1912 else
1913 ptr = vmalloc(size);
1914 } else
1915 ptr = kmem_cache_alloc(get_slab(size), flags);
1916
1917 /* Check alignment; SLUB has gotten this wrong in the past,
1918 * and this can lead to user data corruption! */
1919 BUG_ON(((unsigned long) ptr) & (size-1));
1920
1921 return ptr;
1922}
1923
1924void jbd2_free(void *ptr, size_t size)
1925{
1926 if (size == PAGE_SIZE) {
1927 free_pages((unsigned long)ptr, 0);
1928 return;
1929 }
1930 if (size > PAGE_SIZE) {
1931 int order = get_order(size);
1932
1933 if (order < 3)
1934 free_pages((unsigned long)ptr, order);
1935 else
1936 vfree(ptr);
1937 return;
1938 }
1939 kmem_cache_free(get_slab(size), ptr);
1940};
1941
1942/*
Dave Kleikamp470decc2006-10-11 01:20:57 -07001943 * Journal_head storage management
1944 */
Christoph Lametere18b8902006-12-06 20:33:20 -08001945static struct kmem_cache *jbd2_journal_head_cache;
Jose R. Santose23291b2007-07-18 08:57:06 -04001946#ifdef CONFIG_JBD2_DEBUG
Dave Kleikamp470decc2006-10-11 01:20:57 -07001947static atomic_t nr_journal_heads = ATOMIC_INIT(0);
1948#endif
1949
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001950static int journal_init_jbd2_journal_head_cache(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001951{
1952 int retval;
1953
Al Viro1076d172008-03-29 03:07:18 +00001954 J_ASSERT(jbd2_journal_head_cache == NULL);
Johann Lombardia920e942006-10-11 01:21:00 -07001955 jbd2_journal_head_cache = kmem_cache_create("jbd2_journal_head",
Dave Kleikamp470decc2006-10-11 01:20:57 -07001956 sizeof(struct journal_head),
1957 0, /* offset */
Mingming Cao77160952008-01-28 23:58:27 -05001958 SLAB_TEMPORARY, /* flags */
Paul Mundt20c2df82007-07-20 10:11:58 +09001959 NULL); /* ctor */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001960 retval = 0;
Al Viro1076d172008-03-29 03:07:18 +00001961 if (!jbd2_journal_head_cache) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001962 retval = -ENOMEM;
1963 printk(KERN_EMERG "JBD: no memory for journal_head cache\n");
1964 }
1965 return retval;
1966}
1967
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001968static void jbd2_journal_destroy_jbd2_journal_head_cache(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001969{
Duane Griffin8a9362e2008-04-17 10:38:59 -04001970 if (jbd2_journal_head_cache) {
1971 kmem_cache_destroy(jbd2_journal_head_cache);
1972 jbd2_journal_head_cache = NULL;
1973 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001974}
1975
1976/*
1977 * journal_head splicing and dicing
1978 */
1979static struct journal_head *journal_alloc_journal_head(void)
1980{
1981 struct journal_head *ret;
1982 static unsigned long last_warning;
1983
Jose R. Santose23291b2007-07-18 08:57:06 -04001984#ifdef CONFIG_JBD2_DEBUG
Dave Kleikamp470decc2006-10-11 01:20:57 -07001985 atomic_inc(&nr_journal_heads);
1986#endif
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001987 ret = kmem_cache_alloc(jbd2_journal_head_cache, GFP_NOFS);
Al Viro1076d172008-03-29 03:07:18 +00001988 if (!ret) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001989 jbd_debug(1, "out of memory for journal_head\n");
1990 if (time_after(jiffies, last_warning + 5*HZ)) {
1991 printk(KERN_NOTICE "ENOMEM in %s, retrying.\n",
Harvey Harrison329d2912008-04-17 10:38:59 -04001992 __func__);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001993 last_warning = jiffies;
1994 }
Al Viro1076d172008-03-29 03:07:18 +00001995 while (!ret) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001996 yield();
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001997 ret = kmem_cache_alloc(jbd2_journal_head_cache, GFP_NOFS);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001998 }
1999 }
2000 return ret;
2001}
2002
2003static void journal_free_journal_head(struct journal_head *jh)
2004{
Jose R. Santose23291b2007-07-18 08:57:06 -04002005#ifdef CONFIG_JBD2_DEBUG
Dave Kleikamp470decc2006-10-11 01:20:57 -07002006 atomic_dec(&nr_journal_heads);
Mingming Caocd02ff02007-10-16 18:38:25 -04002007 memset(jh, JBD2_POISON_FREE, sizeof(*jh));
Dave Kleikamp470decc2006-10-11 01:20:57 -07002008#endif
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002009 kmem_cache_free(jbd2_journal_head_cache, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002010}
2011
2012/*
2013 * A journal_head is attached to a buffer_head whenever JBD has an
2014 * interest in the buffer.
2015 *
2016 * Whenever a buffer has an attached journal_head, its ->b_state:BH_JBD bit
2017 * is set. This bit is tested in core kernel code where we need to take
2018 * JBD-specific actions. Testing the zeroness of ->b_private is not reliable
2019 * there.
2020 *
2021 * When a buffer has its BH_JBD bit set, its ->b_count is elevated by one.
2022 *
2023 * When a buffer has its BH_JBD bit set it is immune from being released by
2024 * core kernel code, mainly via ->b_count.
2025 *
2026 * A journal_head may be detached from its buffer_head when the journal_head's
2027 * b_transaction, b_cp_transaction and b_next_transaction pointers are NULL.
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002028 * Various places in JBD call jbd2_journal_remove_journal_head() to indicate that the
Dave Kleikamp470decc2006-10-11 01:20:57 -07002029 * journal_head can be dropped if needed.
2030 *
2031 * Various places in the kernel want to attach a journal_head to a buffer_head
2032 * _before_ attaching the journal_head to a transaction. To protect the
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002033 * journal_head in this situation, jbd2_journal_add_journal_head elevates the
Dave Kleikamp470decc2006-10-11 01:20:57 -07002034 * journal_head's b_jcount refcount by one. The caller must call
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002035 * jbd2_journal_put_journal_head() to undo this.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002036 *
2037 * So the typical usage would be:
2038 *
2039 * (Attach a journal_head if needed. Increments b_jcount)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002040 * struct journal_head *jh = jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002041 * ...
2042 * jh->b_transaction = xxx;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002043 * jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002044 *
2045 * Now, the journal_head's b_jcount is zero, but it is safe from being released
2046 * because it has a non-zero b_transaction.
2047 */
2048
2049/*
2050 * Give a buffer_head a journal_head.
2051 *
2052 * Doesn't need the journal lock.
2053 * May sleep.
2054 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002055struct journal_head *jbd2_journal_add_journal_head(struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002056{
2057 struct journal_head *jh;
2058 struct journal_head *new_jh = NULL;
2059
2060repeat:
2061 if (!buffer_jbd(bh)) {
2062 new_jh = journal_alloc_journal_head();
2063 memset(new_jh, 0, sizeof(*new_jh));
2064 }
2065
2066 jbd_lock_bh_journal_head(bh);
2067 if (buffer_jbd(bh)) {
2068 jh = bh2jh(bh);
2069 } else {
2070 J_ASSERT_BH(bh,
2071 (atomic_read(&bh->b_count) > 0) ||
2072 (bh->b_page && bh->b_page->mapping));
2073
2074 if (!new_jh) {
2075 jbd_unlock_bh_journal_head(bh);
2076 goto repeat;
2077 }
2078
2079 jh = new_jh;
2080 new_jh = NULL; /* We consumed it */
2081 set_buffer_jbd(bh);
2082 bh->b_private = jh;
2083 jh->b_bh = bh;
2084 get_bh(bh);
2085 BUFFER_TRACE(bh, "added journal_head");
2086 }
2087 jh->b_jcount++;
2088 jbd_unlock_bh_journal_head(bh);
2089 if (new_jh)
2090 journal_free_journal_head(new_jh);
2091 return bh->b_private;
2092}
2093
2094/*
2095 * Grab a ref against this buffer_head's journal_head. If it ended up not
2096 * having a journal_head, return NULL
2097 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002098struct journal_head *jbd2_journal_grab_journal_head(struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002099{
2100 struct journal_head *jh = NULL;
2101
2102 jbd_lock_bh_journal_head(bh);
2103 if (buffer_jbd(bh)) {
2104 jh = bh2jh(bh);
2105 jh->b_jcount++;
2106 }
2107 jbd_unlock_bh_journal_head(bh);
2108 return jh;
2109}
2110
2111static void __journal_remove_journal_head(struct buffer_head *bh)
2112{
2113 struct journal_head *jh = bh2jh(bh);
2114
2115 J_ASSERT_JH(jh, jh->b_jcount >= 0);
2116
2117 get_bh(bh);
2118 if (jh->b_jcount == 0) {
2119 if (jh->b_transaction == NULL &&
2120 jh->b_next_transaction == NULL &&
2121 jh->b_cp_transaction == NULL) {
2122 J_ASSERT_JH(jh, jh->b_jlist == BJ_None);
2123 J_ASSERT_BH(bh, buffer_jbd(bh));
2124 J_ASSERT_BH(bh, jh2bh(jh) == bh);
2125 BUFFER_TRACE(bh, "remove journal_head");
2126 if (jh->b_frozen_data) {
2127 printk(KERN_WARNING "%s: freeing "
2128 "b_frozen_data\n",
Harvey Harrison329d2912008-04-17 10:38:59 -04002129 __func__);
Mingming Caoaf1e76d2007-10-16 18:38:25 -04002130 jbd2_free(jh->b_frozen_data, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002131 }
2132 if (jh->b_committed_data) {
2133 printk(KERN_WARNING "%s: freeing "
2134 "b_committed_data\n",
Harvey Harrison329d2912008-04-17 10:38:59 -04002135 __func__);
Mingming Caoaf1e76d2007-10-16 18:38:25 -04002136 jbd2_free(jh->b_committed_data, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002137 }
2138 bh->b_private = NULL;
2139 jh->b_bh = NULL; /* debug, really */
2140 clear_buffer_jbd(bh);
2141 __brelse(bh);
2142 journal_free_journal_head(jh);
2143 } else {
2144 BUFFER_TRACE(bh, "journal_head was locked");
2145 }
2146 }
2147}
2148
2149/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002150 * jbd2_journal_remove_journal_head(): if the buffer isn't attached to a transaction
Dave Kleikamp470decc2006-10-11 01:20:57 -07002151 * and has a zero b_jcount then remove and release its journal_head. If we did
2152 * see that the buffer is not used by any transaction we also "logically"
2153 * decrement ->b_count.
2154 *
2155 * We in fact take an additional increment on ->b_count as a convenience,
2156 * because the caller usually wants to do additional things with the bh
2157 * after calling here.
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002158 * The caller of jbd2_journal_remove_journal_head() *must* run __brelse(bh) at some
Dave Kleikamp470decc2006-10-11 01:20:57 -07002159 * time. Once the caller has run __brelse(), the buffer is eligible for
2160 * reaping by try_to_free_buffers().
2161 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002162void jbd2_journal_remove_journal_head(struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002163{
2164 jbd_lock_bh_journal_head(bh);
2165 __journal_remove_journal_head(bh);
2166 jbd_unlock_bh_journal_head(bh);
2167}
2168
2169/*
2170 * Drop a reference on the passed journal_head. If it fell to zero then try to
2171 * release the journal_head from the buffer_head.
2172 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002173void jbd2_journal_put_journal_head(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002174{
2175 struct buffer_head *bh = jh2bh(jh);
2176
2177 jbd_lock_bh_journal_head(bh);
2178 J_ASSERT_JH(jh, jh->b_jcount > 0);
2179 --jh->b_jcount;
2180 if (!jh->b_jcount && !jh->b_transaction) {
2181 __journal_remove_journal_head(bh);
2182 __brelse(bh);
2183 }
2184 jbd_unlock_bh_journal_head(bh);
2185}
2186
2187/*
Jan Karac851ed52008-07-11 19:27:31 -04002188 * Initialize jbd inode head
2189 */
2190void jbd2_journal_init_jbd_inode(struct jbd2_inode *jinode, struct inode *inode)
2191{
2192 jinode->i_transaction = NULL;
2193 jinode->i_next_transaction = NULL;
2194 jinode->i_vfs_inode = inode;
2195 jinode->i_flags = 0;
2196 INIT_LIST_HEAD(&jinode->i_list);
2197}
2198
2199/*
2200 * Function to be called before we start removing inode from memory (i.e.,
2201 * clear_inode() is a fine place to be called from). It removes inode from
2202 * transaction's lists.
2203 */
2204void jbd2_journal_release_jbd_inode(journal_t *journal,
2205 struct jbd2_inode *jinode)
2206{
Jan Karac851ed52008-07-11 19:27:31 -04002207 if (!journal)
2208 return;
2209restart:
2210 spin_lock(&journal->j_list_lock);
2211 /* Is commit writing out inode - we have to wait */
2212 if (jinode->i_flags & JI_COMMIT_RUNNING) {
2213 wait_queue_head_t *wq;
2214 DEFINE_WAIT_BIT(wait, &jinode->i_flags, __JI_COMMIT_RUNNING);
2215 wq = bit_waitqueue(&jinode->i_flags, __JI_COMMIT_RUNNING);
2216 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
2217 spin_unlock(&journal->j_list_lock);
2218 schedule();
2219 finish_wait(wq, &wait.wait);
2220 goto restart;
2221 }
2222
Jan Karac851ed52008-07-11 19:27:31 -04002223 if (jinode->i_transaction) {
2224 list_del(&jinode->i_list);
2225 jinode->i_transaction = NULL;
2226 }
2227 spin_unlock(&journal->j_list_lock);
2228}
2229
2230/*
Jose R. Santos0f49d5d2007-07-18 08:50:18 -04002231 * debugfs tunables
Dave Kleikamp470decc2006-10-11 01:20:57 -07002232 */
Jose R. Santos6f38c742007-10-16 18:38:25 -04002233#ifdef CONFIG_JBD2_DEBUG
2234u8 jbd2_journal_enable_debug __read_mostly;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002235EXPORT_SYMBOL(jbd2_journal_enable_debug);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002236
Jose R. Santos0f49d5d2007-07-18 08:50:18 -04002237#define JBD2_DEBUG_NAME "jbd2-debug"
Dave Kleikamp470decc2006-10-11 01:20:57 -07002238
Jose R. Santos6f38c742007-10-16 18:38:25 -04002239static struct dentry *jbd2_debugfs_dir;
2240static struct dentry *jbd2_debug;
Jose R. Santos0f49d5d2007-07-18 08:50:18 -04002241
2242static void __init jbd2_create_debugfs_entry(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002243{
Jose R. Santos0f49d5d2007-07-18 08:50:18 -04002244 jbd2_debugfs_dir = debugfs_create_dir("jbd2", NULL);
2245 if (jbd2_debugfs_dir)
Yin Kangkai765f8362009-12-15 14:48:25 -08002246 jbd2_debug = debugfs_create_u8(JBD2_DEBUG_NAME,
2247 S_IRUGO | S_IWUSR,
Jose R. Santos0f49d5d2007-07-18 08:50:18 -04002248 jbd2_debugfs_dir,
2249 &jbd2_journal_enable_debug);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002250}
2251
Jose R. Santos0f49d5d2007-07-18 08:50:18 -04002252static void __exit jbd2_remove_debugfs_entry(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002253{
Jose R. Santos6f38c742007-10-16 18:38:25 -04002254 debugfs_remove(jbd2_debug);
2255 debugfs_remove(jbd2_debugfs_dir);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002256}
2257
2258#else
2259
Jose R. Santos0f49d5d2007-07-18 08:50:18 -04002260static void __init jbd2_create_debugfs_entry(void)
2261{
Jose R. Santos0f49d5d2007-07-18 08:50:18 -04002262}
2263
2264static void __exit jbd2_remove_debugfs_entry(void)
2265{
Jose R. Santos0f49d5d2007-07-18 08:50:18 -04002266}
Dave Kleikamp470decc2006-10-11 01:20:57 -07002267
2268#endif
2269
Johann Lombardi8e85fb32008-01-28 23:58:27 -05002270#ifdef CONFIG_PROC_FS
2271
2272#define JBD2_STATS_PROC_NAME "fs/jbd2"
2273
2274static void __init jbd2_create_jbd_stats_proc_entry(void)
2275{
2276 proc_jbd2_stats = proc_mkdir(JBD2_STATS_PROC_NAME, NULL);
2277}
2278
2279static void __exit jbd2_remove_jbd_stats_proc_entry(void)
2280{
2281 if (proc_jbd2_stats)
2282 remove_proc_entry(JBD2_STATS_PROC_NAME, NULL);
2283}
2284
2285#else
2286
2287#define jbd2_create_jbd_stats_proc_entry() do {} while (0)
2288#define jbd2_remove_jbd_stats_proc_entry() do {} while (0)
2289
2290#endif
2291
Christoph Lametere18b8902006-12-06 20:33:20 -08002292struct kmem_cache *jbd2_handle_cache;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002293
2294static int __init journal_init_handle_cache(void)
2295{
Johann Lombardia920e942006-10-11 01:21:00 -07002296 jbd2_handle_cache = kmem_cache_create("jbd2_journal_handle",
Dave Kleikamp470decc2006-10-11 01:20:57 -07002297 sizeof(handle_t),
2298 0, /* offset */
Mingming Cao77160952008-01-28 23:58:27 -05002299 SLAB_TEMPORARY, /* flags */
Paul Mundt20c2df82007-07-20 10:11:58 +09002300 NULL); /* ctor */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002301 if (jbd2_handle_cache == NULL) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07002302 printk(KERN_EMERG "JBD: failed to create handle cache\n");
2303 return -ENOMEM;
2304 }
2305 return 0;
2306}
2307
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002308static void jbd2_journal_destroy_handle_cache(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002309{
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002310 if (jbd2_handle_cache)
2311 kmem_cache_destroy(jbd2_handle_cache);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002312}
2313
2314/*
2315 * Module startup and shutdown
2316 */
2317
2318static int __init journal_init_caches(void)
2319{
2320 int ret;
2321
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002322 ret = jbd2_journal_init_revoke_caches();
Dave Kleikamp470decc2006-10-11 01:20:57 -07002323 if (ret == 0)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002324 ret = journal_init_jbd2_journal_head_cache();
Dave Kleikamp470decc2006-10-11 01:20:57 -07002325 if (ret == 0)
2326 ret = journal_init_handle_cache();
2327 return ret;
2328}
2329
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002330static void jbd2_journal_destroy_caches(void)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002331{
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002332 jbd2_journal_destroy_revoke_caches();
2333 jbd2_journal_destroy_jbd2_journal_head_cache();
2334 jbd2_journal_destroy_handle_cache();
Theodore Ts'od2eecb02009-12-07 10:36:20 -05002335 jbd2_journal_destroy_slabs();
Dave Kleikamp470decc2006-10-11 01:20:57 -07002336}
2337
2338static int __init journal_init(void)
2339{
2340 int ret;
2341
2342 BUILD_BUG_ON(sizeof(struct journal_superblock_s) != 1024);
2343
2344 ret = journal_init_caches();
Duane Griffin620de4e2008-04-29 22:02:47 -04002345 if (ret == 0) {
2346 jbd2_create_debugfs_entry();
2347 jbd2_create_jbd_stats_proc_entry();
2348 } else {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002349 jbd2_journal_destroy_caches();
Duane Griffin620de4e2008-04-29 22:02:47 -04002350 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07002351 return ret;
2352}
2353
2354static void __exit journal_exit(void)
2355{
Jose R. Santose23291b2007-07-18 08:57:06 -04002356#ifdef CONFIG_JBD2_DEBUG
Dave Kleikamp470decc2006-10-11 01:20:57 -07002357 int n = atomic_read(&nr_journal_heads);
2358 if (n)
2359 printk(KERN_EMERG "JBD: leaked %d journal_heads!\n", n);
2360#endif
Jose R. Santos0f49d5d2007-07-18 08:50:18 -04002361 jbd2_remove_debugfs_entry();
Johann Lombardi8e85fb32008-01-28 23:58:27 -05002362 jbd2_remove_jbd_stats_proc_entry();
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002363 jbd2_journal_destroy_caches();
Dave Kleikamp470decc2006-10-11 01:20:57 -07002364}
2365
Theodore Ts'o879c5e62009-06-17 11:47:48 -04002366/*
2367 * jbd2_dev_to_name is a utility function used by the jbd2 and ext4
2368 * tracing infrastructure to map a dev_t to a device name.
2369 *
2370 * The caller should use rcu_read_lock() in order to make sure the
2371 * device name stays valid until its done with it. We use
2372 * rcu_read_lock() as well to make sure we're safe in case the caller
2373 * gets sloppy, and because rcu_read_lock() is cheap and can be safely
2374 * nested.
2375 */
2376struct devname_cache {
2377 struct rcu_head rcu;
2378 dev_t device;
2379 char devname[BDEVNAME_SIZE];
2380};
2381#define CACHE_SIZE_BITS 6
2382static struct devname_cache *devcache[1 << CACHE_SIZE_BITS];
2383static DEFINE_SPINLOCK(devname_cache_lock);
2384
2385static void free_devcache(struct rcu_head *rcu)
2386{
2387 kfree(rcu);
2388}
2389
2390const char *jbd2_dev_to_name(dev_t device)
2391{
2392 int i = hash_32(device, CACHE_SIZE_BITS);
2393 char *ret;
2394 struct block_device *bd;
Theodore Ts'ob5744802009-06-20 23:34:44 -04002395 static struct devname_cache *new_dev;
Theodore Ts'o879c5e62009-06-17 11:47:48 -04002396
2397 rcu_read_lock();
2398 if (devcache[i] && devcache[i]->device == device) {
2399 ret = devcache[i]->devname;
2400 rcu_read_unlock();
2401 return ret;
2402 }
2403 rcu_read_unlock();
2404
Theodore Ts'ob5744802009-06-20 23:34:44 -04002405 new_dev = kmalloc(sizeof(struct devname_cache), GFP_KERNEL);
2406 if (!new_dev)
2407 return "NODEV-ALLOCFAILURE"; /* Something non-NULL */
Theodore Ts'o879c5e62009-06-17 11:47:48 -04002408 spin_lock(&devname_cache_lock);
2409 if (devcache[i]) {
2410 if (devcache[i]->device == device) {
Theodore Ts'ob5744802009-06-20 23:34:44 -04002411 kfree(new_dev);
Theodore Ts'o879c5e62009-06-17 11:47:48 -04002412 ret = devcache[i]->devname;
2413 spin_unlock(&devname_cache_lock);
2414 return ret;
2415 }
2416 call_rcu(&devcache[i]->rcu, free_devcache);
2417 }
Theodore Ts'ob5744802009-06-20 23:34:44 -04002418 devcache[i] = new_dev;
Theodore Ts'o879c5e62009-06-17 11:47:48 -04002419 devcache[i]->device = device;
2420 bd = bdget(device);
2421 if (bd) {
2422 bdevname(bd, devcache[i]->devname);
2423 bdput(bd);
2424 } else
2425 __bdevname(device, devcache[i]->devname);
2426 ret = devcache[i]->devname;
2427 spin_unlock(&devname_cache_lock);
2428 return ret;
2429}
2430EXPORT_SYMBOL(jbd2_dev_to_name);
2431
Dave Kleikamp470decc2006-10-11 01:20:57 -07002432MODULE_LICENSE("GPL");
2433module_init(journal_init);
2434module_exit(journal_exit);
2435