From: Konstantin Khlebnikov Date: Thu, 21 May 2015 16:26:19 +0000 (-0700) Subject: pstore: do not use message compression without lock X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=f0e2efcfd271733119cfe499f5811968544cbe7b;p=deliverable%2Flinux.git pstore: do not use message compression without lock pstore_compress() uses static stream buffer for zlib-deflate which easily crashes when several concurrent threads use one shared state. Signed-off-by: Konstantin Khlebnikov Signed-off-by: Tony Luck --- diff --git a/fs/pstore/platform.c b/fs/pstore/platform.c index c4c9a10c5760..de525ec0b490 100644 --- a/fs/pstore/platform.c +++ b/fs/pstore/platform.c @@ -299,7 +299,7 @@ static void pstore_dump(struct kmsg_dumper *dumper, bool compressed; size_t total_len; - if (big_oops_buf) { + if (big_oops_buf && is_locked) { dst = big_oops_buf; hsize = sprintf(dst, "%s#%d Part%u\n", why, oopscount, part);