diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-06-03 06:16:08 -0400 |
---|---|---|
committer | Artem Bityutskiy <dedekind1@gmail.com> | 2011-07-04 03:54:33 -0400 |
commit | d033c98b17ecf30d64d83d96938ce7bfb47f7520 (patch) | |
tree | 079b36f4b63bb7c13f177cec15f144dff794f08e /fs/ubifs | |
parent | 891a54a153646f9b16bffe5df6cb74cb3f1e9dc6 (diff) |
UBIFS: always print stacktrace when switching to R/O mode
When switching to R/O mode due to an I/O error, always dump the stack, not only
when debugging is enabled.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/io.c b/fs/ubifs/io.c index 3be645e012c9..48e16804ca57 100644 --- a/fs/ubifs/io.c +++ b/fs/ubifs/io.c | |||
@@ -86,7 +86,7 @@ void ubifs_ro_mode(struct ubifs_info *c, int err) | |||
86 | c->no_chk_data_crc = 0; | 86 | c->no_chk_data_crc = 0; |
87 | c->vfs_sb->s_flags |= MS_RDONLY; | 87 | c->vfs_sb->s_flags |= MS_RDONLY; |
88 | ubifs_warn("switched to read-only mode, error %d", err); | 88 | ubifs_warn("switched to read-only mode, error %d", err); |
89 | dbg_dump_stack(); | 89 | dump_stack(); |
90 | } | 90 | } |
91 | } | 91 | } |
92 | 92 | ||