]> git.ipfire.org Git - people/ms/linux.git/commit - fs/pstore/platform.c
pstore: Don't warn if data is uncompressed and type is not PSTORE_TYPE_DMESG
authorAnkit Kumar <ankit@linux.vnet.ibm.com>
Tue, 23 May 2017 05:46:52 +0000 (11:16 +0530)
committerKees Cook <keescook@chromium.org>
Wed, 31 May 2017 17:09:32 +0000 (10:09 -0700)
commit4a16d1cb245c56e72fd40a28f3cdb394cde4b341
tree09e5d0559d3ac2ff4b9072a0b71603ec0cf3affb
parent5ed02dbb497422bf225783f46e6eadd237d23d6b
pstore: Don't warn if data is uncompressed and type is not PSTORE_TYPE_DMESG

commit 9abdcccc3d5f ("pstore: Extract common arguments into structure")
moved record decompression to function. decompress_record() gets
called without checking type and compressed flag. Warning will be
reported if data is uncompressed. Pstore type PSTORE_TYPE_PPC_OPAL,
PSTORE_TYPE_PPC_COMMON doesn't contain compressed data and warning get
printed part of dmesg.

Partial dmesg log:
[   35.848914] pstore: ignored compressed record type 6
[   35.848927] pstore: ignored compressed record type 8

Above warning should not get printed as it is known that data won't be
compressed for above type and it is valid condition.

This patch returns if data is not compressed and print warning only if
data is compressed and type is not PSTORE_TYPE_DMESG.

Reported-by: Anton Blanchard <anton@au1.ibm.com>
Signed-off-by: Ankit Kumar <ankit@linux.vnet.ibm.com>
Reviewed-by: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
Signed-off-by: Kees Cook <keescook@chromium.org>
Fixes: 9abdcccc3d5f ("pstore: Extract common arguments into structure")
Cc: stable@vger.kernel.org
fs/pstore/platform.c