From: Artem Bityutskiy Date: Fri, 3 Jun 2011 10:16:08 +0000 (+0300) Subject: UBIFS: always print stacktrace when switching to R/O mode X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d033c98b17ecf30d64d83d96938ce7bfb47f7520;p=linux-beck.git 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 --- 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) c->no_chk_data_crc = 0; c->vfs_sb->s_flags |= MS_RDONLY; ubifs_warn("switched to read-only mode, error %d", err); - dbg_dump_stack(); + dump_stack(); } }