diff options
author | Theodore Ts'o <tytso@mit.edu> | 2009-01-03 22:56:44 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-01-03 22:56:44 -0500 |
commit | 4a9bf99b205448ec1f0cbdee1776a29f9c503ce4 (patch) | |
tree | a1bd3a27526debaf972460c4ea0df0fd423c4026 /fs/jbd2 | |
parent | ba80b1019aa722b24506db1ee755e0bb2f513022 (diff) |
jbd2: Add pid and journal device name to the "kjournald2 starting" message
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/jbd2')
-rw-r--r-- | fs/jbd2/journal.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c index b10d7283ba5b..fe20e40ee7c3 100644 --- a/fs/jbd2/journal.c +++ b/fs/jbd2/journal.c | |||
@@ -131,8 +131,9 @@ static int kjournald2(void *arg) | |||
131 | journal->j_task = current; | 131 | journal->j_task = current; |
132 | wake_up(&journal->j_wait_done_commit); | 132 | wake_up(&journal->j_wait_done_commit); |
133 | 133 | ||
134 | printk(KERN_INFO "kjournald2 starting. Commit interval %ld seconds\n", | 134 | printk(KERN_INFO "kjournald2 starting: pid %d, dev %s, " |
135 | journal->j_commit_interval / HZ); | 135 | "commit interval %ld seconds\n", current->pid, |
136 | journal->j_devname, journal->j_commit_interval / HZ); | ||
136 | 137 | ||
137 | /* | 138 | /* |
138 | * And now, wait forever for commit wakeup events. | 139 | * And now, wait forever for commit wakeup events. |