[PATCH v2 8/8] pstore: max out console log level during sysfs dump switch

From: dragos . tatulea
Date: Thu Oct 18 2012 - 04:26:03 EST


From: Dragos Tatulea <dragos.tatulea@xxxxxxxxx>

Otherwise we might miss out on some pstore dumpers that use
printks below current log level.

Signed-off-by: Dragos Tatulea <dragos.tatulea@xxxxxxxxx>
---
fs/pstore/platform.c | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/fs/pstore/platform.c b/fs/pstore/platform.c
index 25f59ed..e3ad13e 100644
--- a/fs/pstore/platform.c
+++ b/fs/pstore/platform.c
@@ -267,6 +267,7 @@ static DEFINE_SPINLOCK(dbg_lock);
static int dbg_dump(void *data, u64 val)
{
unsigned long flags;
+ int saved_loglevel;

switch (val) {
case KMSG_DUMP_PANIC:
@@ -276,7 +277,10 @@ static int dbg_dump(void *data, u64 val)
case KMSG_DUMP_HALT:
case KMSG_DUMP_POWEROFF:
spin_lock_irqsave(&dbg_lock, flags);
+ saved_loglevel = console_loglevel;
+ console_loglevel = 15;
kmsg_dump(val);
+ console_loglevel = saved_loglevel;
spin_unlock_irqrestore(&dbg_lock, flags);
return 0;
}
--
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/