aboutsummaryrefslogtreecommitdiff
path: root/fs/pstore
diff options
context:
space:
mode:
authorAruna Balakrishnaiah <aruna@linux.vnet.ibm.com>2013-09-11 10:58:23 -0700
committerTony Luck <tony.luck@intel.com>2013-09-16 09:28:29 -0700
commit802e4c6f5887205eda110c6bfb90c9bfa93dc8a7 (patch)
treeac80ecbdc215415d319ef3bbf2d296082007a721 /fs/pstore
parentb61edf8e7cf9d8d450b65588b2ff40dfb8c2fd9b (diff)
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')
-rw-r--r--fs/pstore/platform.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/pstore/platform.c b/fs/pstore/platform.c
index c853e05cd7f..b8e93a40a5d 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);
}