diff options
author | Aruna Balakrishnaiah <aruna@linux.vnet.ibm.com> | 2013-09-11 10:58:23 -0700 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2013-09-16 09:28:29 -0700 |
commit | 802e4c6f5887205eda110c6bfb90c9bfa93dc8a7 (patch) | |
tree | ac80ecbdc215415d319ef3bbf2d296082007a721 /fs/pstore/platform.c | |
parent | b61edf8e7cf9d8d450b65588b2ff40dfb8c2fd9b (diff) | |
download | op-kernel-dev-802e4c6f5887205eda110c6bfb90c9bfa93dc8a7.zip op-kernel-dev-802e4c6f5887205eda110c6bfb90c9bfa93dc8a7.tar.gz |
pstore: Remove the messages related to compression failure
Remove the messages indicating compression failure as it will
add to the space during panic path.
Reported-by: Seiji Aguchi <seiji.aguchi@hds.com>
Tested-by: Seiji Aguchi <seiji.aguchi@hds.com>
Signed-off-by: Aruna Balakrishnaiah <aruna@linux.vnet.ibm.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'fs/pstore/platform.c')
-rw-r--r-- | fs/pstore/platform.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/pstore/platform.c b/fs/pstore/platform.c index c853e05..b8e93a4 100644 --- a/fs/pstore/platform.c +++ b/fs/pstore/platform.c @@ -316,10 +316,6 @@ static void pstore_dump(struct kmsg_dumper *dumper, compressed = true; total_len = zipped_len; } else { - pr_err("pstore: compression failed for Part %d" - " returned %d\n", part, zipped_len); - pr_err("pstore: Capture uncompressed" - " oops/panic report of Part %d\n", part); compressed = false; total_len = copy_kmsg_to_buffer(hsize, len); } |