diff options
author | Bob Peterson <rpeterso@redhat.com> | 2021-07-26 20:53:12 +0300 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2021-08-20 17:03:46 +0300 |
commit | 7392fbb0a402ec4e4342a5e26a4bd6c359e67165 (patch) | |
tree | 07e0407a0b92373049ecb97766606eca74463213 /fs/gfs2/util.c | |
parent | 70c11ba8f2dc6ff216477a8dd7ec0ad8568c410e (diff) | |
download | linux-7392fbb0a402ec4e4342a5e26a4bd6c359e67165.tar.xz |
gfs2: Make recovery error more readable
Before this patch, withdraws could cause an error that looked like:
Journal recovery skipped for 0 until next mount.
This patch changes it to a more readable:
Journal recovery skipped for jid 0 until next mount.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to 'fs/gfs2/util.c')
-rw-r--r-- | fs/gfs2/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/util.c b/fs/gfs2/util.c index f4325b44956d..34087bba88ee 100644 --- a/fs/gfs2/util.c +++ b/fs/gfs2/util.c @@ -295,7 +295,7 @@ skip_recovery: fs_warn(sdp, "Journal recovery complete for jid %d.\n", sdp->sd_lockstruct.ls_jid); else - fs_warn(sdp, "Journal recovery skipped for %d until next " + fs_warn(sdp, "Journal recovery skipped for jid %d until next " "mount.\n", sdp->sd_lockstruct.ls_jid); fs_warn(sdp, "Glock dequeues delayed: %lu\n", sdp->sd_glock_dqs_held); sdp->sd_glock_dqs_held = 0; |