00b6d2ec43
- Replace patch to fix hardcoded binfmt handler (bsc#1186256) * Patches dropped: qemu-binfmt-conf.sh-allow-overriding-SUS.patch * Patches added: qemu-binfmt-conf.sh-should-use-F-as-shor.patch - Stable fixes from upstream * Patches added: 9pfs-fix-crash-in-v9fs_walk.patch i386-cpu-Remove-AVX_VNNI-feature-from-Co.patch plugins-do-not-limit-exported-symbols-if.patch plugins-execlog-removed-unintended-s-at-.patch qemu-sockets-fix-unix-socket-path-copy-a.patch target-i386-add-missing-bits-to-CR4_RESE.patch virtio-balloon-don-t-start-free-page-hin.patch OBS-URL: https://build.opensuse.org/request/show/919019 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=672
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From: Mahmoud Mandour <ma.mandourr@gmail.com>
|
|
Date: Fri, 6 Aug 2021 15:10:12 +0100
|
|
Subject: plugins/execlog: removed unintended "s" at the end of log lines.
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Git-commit: b40310616d2bd550279dd22b05483c3c613a00ff
|
|
|
|
Signed-off-by: Mahmoud Mandour <ma.mandourr@gmail.com>
|
|
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
|
|
Message-Id: <20210803151428.125323-1-ma.mandourr@gmail.com>
|
|
Message-Id: <20210806141015.2487502-2-alex.bennee@linaro.org>
|
|
Cc: qemu-stable@nongnu.org
|
|
Signed-off-by: Jose R. Ziviani <jziviani@suse.de>
|
|
---
|
|
contrib/plugins/execlog.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/contrib/plugins/execlog.c b/contrib/plugins/execlog.c
|
|
index 2de9f0d7d4d46446f7e1dd6b32b0..a5275dcc15c221b0967106629a21 100644
|
|
--- a/contrib/plugins/execlog.c
|
|
+++ b/contrib/plugins/execlog.c
|
|
@@ -67,7 +67,7 @@ static void vcpu_insn_exec(unsigned int cpu_index, void *udata)
|
|
/* Print previous instruction in cache */
|
|
if (s->len) {
|
|
qemu_plugin_outs(s->str);
|
|
- qemu_plugin_outs("s\n");
|
|
+ qemu_plugin_outs("\n");
|
|
}
|
|
|
|
/* Store new instruction in cache */
|