diff options
author | Theodore Ts'o <tytso@mit.edu> | 2010-12-18 13:07:34 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-12-18 13:07:34 -0500 |
commit | cfef2c6a559b1e37cbc7e7c1b51f82d26abf24ec (patch) | |
tree | f5ea989a2f5935638550b56ede02b78002e2f34f /fs/jbd2 | |
parent | 670be5a78ac7c80f0d6009d648c84c65a03f373a (diff) | |
download | op-kernel-dev-cfef2c6a559b1e37cbc7e7c1b51f82d26abf24ec.zip op-kernel-dev-cfef2c6a559b1e37cbc7e7c1b51f82d26abf24ec.tar.gz |
jbd2: Fix a debug message in do_get_write_access()
'buffer_head' should be 'journal_head'
This is a port of a patch which Namhyung Kim <namhyung@gmail.com> made
to fs/jbd to jbd2.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/jbd2')
-rw-r--r-- | fs/jbd2/transaction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jbd2/transaction.c b/fs/jbd2/transaction.c index 6bf0a24..10b5e3b 100644 --- a/fs/jbd2/transaction.c +++ b/fs/jbd2/transaction.c @@ -589,7 +589,7 @@ do_get_write_access(handle_t *handle, struct journal_head *jh, transaction = handle->h_transaction; journal = transaction->t_journal; - jbd_debug(5, "buffer_head %p, force_copy %d\n", jh, force_copy); + jbd_debug(5, "journal_head %p, force_copy %d\n", jh, force_copy); JBUFFER_TRACE(jh, "entry"); repeat: |