jbd2: fix some print format mistakes
There are some print format mistakes in debug messages. Fix them. Signed-off-by: Gaowei Pu <pugaowei@gmail.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu> Reviewed-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
b9c1c26739
commit
7821ce417e
|
@ -203,7 +203,7 @@ static int kjournald2(void *arg)
|
|||
if (journal->j_flags & JBD2_UNMOUNT)
|
||||
goto end_loop;
|
||||
|
||||
jbd_debug(1, "commit_sequence=%d, commit_request=%d\n",
|
||||
jbd_debug(1, "commit_sequence=%u, commit_request=%u\n",
|
||||
journal->j_commit_sequence, journal->j_commit_request);
|
||||
|
||||
if (journal->j_commit_sequence != journal->j_commit_request) {
|
||||
|
@ -324,7 +324,7 @@ static void journal_kill_thread(journal_t *journal)
|
|||
* IO is in progress. do_get_write_access() handles this.
|
||||
*
|
||||
* The function returns a pointer to the buffer_head to be used for IO.
|
||||
*
|
||||
*
|
||||
*
|
||||
* Return value:
|
||||
* <0: Error
|
||||
|
@ -500,7 +500,7 @@ int __jbd2_log_start_commit(journal_t *journal, tid_t target)
|
|||
*/
|
||||
|
||||
journal->j_commit_request = target;
|
||||
jbd_debug(1, "JBD2: requesting commit %d/%d\n",
|
||||
jbd_debug(1, "JBD2: requesting commit %u/%u\n",
|
||||
journal->j_commit_request,
|
||||
journal->j_commit_sequence);
|
||||
journal->j_running_transaction->t_requested = jiffies;
|
||||
|
@ -513,7 +513,7 @@ int __jbd2_log_start_commit(journal_t *journal, tid_t target)
|
|||
WARN_ONCE(1, "JBD2: bad log_start_commit: %u %u %u %u\n",
|
||||
journal->j_commit_request,
|
||||
journal->j_commit_sequence,
|
||||
target, journal->j_running_transaction ?
|
||||
target, journal->j_running_transaction ?
|
||||
journal->j_running_transaction->t_tid : 0);
|
||||
return 0;
|
||||
}
|
||||
|
@ -698,12 +698,12 @@ int jbd2_log_wait_commit(journal_t *journal, tid_t tid)
|
|||
#ifdef CONFIG_JBD2_DEBUG
|
||||
if (!tid_geq(journal->j_commit_request, tid)) {
|
||||
printk(KERN_ERR
|
||||
"%s: error: j_commit_request=%d, tid=%d\n",
|
||||
"%s: error: j_commit_request=%u, tid=%u\n",
|
||||
__func__, journal->j_commit_request, tid);
|
||||
}
|
||||
#endif
|
||||
while (tid_gt(tid, journal->j_commit_sequence)) {
|
||||
jbd_debug(1, "JBD2: want %d, j_commit_sequence=%d\n",
|
||||
jbd_debug(1, "JBD2: want %u, j_commit_sequence=%u\n",
|
||||
tid, journal->j_commit_sequence);
|
||||
read_unlock(&journal->j_state_lock);
|
||||
wake_up(&journal->j_wait_commit);
|
||||
|
@ -944,7 +944,7 @@ int __jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block)
|
|||
|
||||
trace_jbd2_update_log_tail(journal, tid, block, freed);
|
||||
jbd_debug(1,
|
||||
"Cleaning journal tail from %d to %d (offset %lu), "
|
||||
"Cleaning journal tail from %u to %u (offset %lu), "
|
||||
"freeing %lu\n",
|
||||
journal->j_tail_sequence, tid, block, freed);
|
||||
|
||||
|
@ -1318,7 +1318,7 @@ static int journal_reset(journal_t *journal)
|
|||
*/
|
||||
if (sb->s_start == 0) {
|
||||
jbd_debug(1, "JBD2: Skipping superblock update on recovered sb "
|
||||
"(start %ld, seq %d, errno %d)\n",
|
||||
"(start %ld, seq %u, errno %d)\n",
|
||||
journal->j_tail, journal->j_tail_sequence,
|
||||
journal->j_errno);
|
||||
journal->j_flags |= JBD2_FLUSHED;
|
||||
|
@ -1453,7 +1453,7 @@ static void jbd2_mark_journal_empty(journal_t *journal, int write_op)
|
|||
return;
|
||||
}
|
||||
|
||||
jbd_debug(1, "JBD2: Marking journal as empty (seq %d)\n",
|
||||
jbd_debug(1, "JBD2: Marking journal as empty (seq %u)\n",
|
||||
journal->j_tail_sequence);
|
||||
|
||||
sb->s_sequence = cpu_to_be32(journal->j_tail_sequence);
|
||||
|
|
Loading…
Reference in New Issue