f1cd67284d
Release: crash-7.3.0-4 Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
46 lines
1.4 KiB
Diff
46 lines
1.4 KiB
Diff
From 96716862765f73676bfdb2d19fc5872364d21b73 Mon Sep 17 00:00:00 2001
|
|
From: Alexey Makhalov <amakhalov@vmware.com>
|
|
Date: Fri, 19 Mar 2021 21:07:35 -0700
|
|
Subject: [PATCH 18/27] vmware backend: honor silence flag
|
|
|
|
Do not print any boot messages in silence (-s) mode.
|
|
|
|
Signed-off-by: Alexey Makhalov <amakhalov@vmware.com>
|
|
---
|
|
vmware_vmss.c | 9 ++++++---
|
|
1 file changed, 6 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/vmware_vmss.c b/vmware_vmss.c
|
|
index 948a83817847..f6c5f32ea4c0 100644
|
|
--- a/vmware_vmss.c
|
|
+++ b/vmware_vmss.c
|
|
@@ -444,11 +444,13 @@ vmware_vmss_init(char *filename, FILE *ofp)
|
|
if (vmss.memsize == 0) {
|
|
char *vmem_filename, *p;
|
|
|
|
- fprintf(ofp, LOGPRX"Memory dump is not part of this vmss file.\n");
|
|
+ if (!(pc->flags & SILENT))
|
|
+ fprintf(ofp, LOGPRX"Memory dump is not part of this vmss file.\n");
|
|
fclose(fp);
|
|
fp = NULL;
|
|
|
|
- fprintf(ofp, LOGPRX"Try to locate the companion vmem file ...\n");
|
|
+ if (!(pc->flags & SILENT))
|
|
+ fprintf(ofp, LOGPRX"Try to locate the companion vmem file ...\n");
|
|
/* check the companion vmem file */
|
|
vmem_filename = strdup(filename);
|
|
p = vmem_filename + strlen(vmem_filename) - 4;
|
|
@@ -471,7 +473,8 @@ vmware_vmss_init(char *filename, FILE *ofp)
|
|
vmss.separate_vmem = TRUE;
|
|
vmss.filename = filename;
|
|
|
|
- fprintf(ofp, LOGPRX"vmem file: %s\n\n", vmem_filename);
|
|
+ if (!(pc->flags & SILENT))
|
|
+ fprintf(ofp, LOGPRX"vmem file: %s\n\n", vmem_filename);
|
|
free(vmem_filename);
|
|
}
|
|
|
|
--
|
|
2.30.2
|
|
|