projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba80b10
)
jbd2: Add pid and journal device name to the "kjournald2 starting" message
author
Theodore Ts'o
<tytso@mit.edu>
Sun, 4 Jan 2009 03:56:44 +0000
(22:56 -0500)
committer
Theodore Ts'o
<tytso@mit.edu>
Sun, 4 Jan 2009 03:56:44 +0000
(22:56 -0500)
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/jbd2/journal.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/jbd2/journal.c
b/fs/jbd2/journal.c
index b10d7283ba5b9715fd2d1b735914650b61546869..fe20e40ee7c3c5749d36a2877f124b709afe595b 100644
(file)
--- a/
fs/jbd2/journal.c
+++ b/
fs/jbd2/journal.c
@@
-131,8
+131,9
@@
static int kjournald2(void *arg)
journal->j_task = current;
wake_up(&journal->j_wait_done_commit);
- printk(KERN_INFO "kjournald2 starting. Commit interval %ld seconds\n",
- journal->j_commit_interval / HZ);
+ printk(KERN_INFO "kjournald2 starting: pid %d, dev %s, "
+ "commit interval %ld seconds\n", current->pid,
+ journal->j_devname, journal->j_commit_interval / HZ);
/*
* And now, wait forever for commit wakeup events.