Hello community, here is the log from the commit of package qemu for openSUSE:Factory checked in at 2015-05-10 10:54:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qemu (Old) and /work/SRC/openSUSE:Factory/.qemu.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qemu" Changes: -------- --- /work/SRC/openSUSE:Factory/qemu/qemu-linux-user.changes 2015-05-02 17:31:33.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.qemu.new/qemu-linux-user.changes 2015-05-10 10:54:27.000000000 +0200 @@ -1,0 +2,7 @@ +Wed May 6 21:54:05 UTC 2015 - [email protected] + +- Patch queue updated from git://github.com/openSUSE/qemu.git opensuse-2.3 +- Fix potential segmentation fault in + 0037-linux-user-Allocate-thunk-size-dyna.patch + +------------------------------------------------------------------- qemu.changes: same change ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ qemu-linux-user.spec: same change qemu-testsuite.spec: same change qemu.spec: same change ++++++ 0037-linux-user-Allocate-thunk-size-dyna.patch ++++++ --- /var/tmp/diff_new_pack.6APM61/_old 2015-05-10 10:54:29.000000000 +0200 +++ /var/tmp/diff_new_pack.6APM61/_new 2015-05-10 10:54:29.000000000 +0200 @@ -1,4 +1,4 @@ -From cead420737c71cbf46775b02815ff1ef7f7ee257 Mon Sep 17 00:00:00 2001 +From 82465ccc24bd795f29c63e850c539717f1ea8a4f Mon Sep 17 00:00:00 2001 From: Alexander Graf <[email protected]> Date: Tue, 14 Apr 2015 17:12:29 +0200 Subject: [PATCH] linux-user: Allocate thunk size dynamically @@ -16,6 +16,12 @@ asserts to sanity check whether a thunk is actually part of our array. Signed-off-by: Alexander Graf <[email protected]> + +--- + +v1 -> v2: + + - alloc with new0 to copy the bss semantics we had before --- include/exec/user/thunk.h | 4 +++- linux-user/syscall.c | 3 +++ @@ -64,7 +70,7 @@ #define STRUCT_SPECIAL(name) thunk_register_struct_direct(STRUCT_ ## name, #name, &struct_ ## name ## _def); #include "syscall_types.h" diff --git a/thunk.c b/thunk.c -index c6a78ca..8bb46d0 100644 +index c6a78ca..b711860 100644 --- a/thunk.c +++ b/thunk.c @@ -25,10 +25,8 @@ @@ -113,5 +119,5 @@ +void thunk_init(unsigned int max_structs) +{ + max_struct_entries = max_structs; -+ struct_entries = g_new(StructEntry, max_structs); ++ struct_entries = g_new0(StructEntry, max_structs); +} ++++++ 0038-Revert-Revert-seccomp-tests-that-al.patch ++++++ --- /var/tmp/diff_new_pack.6APM61/_old 2015-05-10 10:54:29.000000000 +0200 +++ /var/tmp/diff_new_pack.6APM61/_new 2015-05-10 10:54:29.000000000 +0200 @@ -1,4 +1,4 @@ -From 0cf7218bdc4ee50a2554db9074c3366a09ca16ce Mon Sep 17 00:00:00 2001 +From 454fc5a3bc19e8b6a2b5dcb0aa202cd03e313f19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= <[email protected]> Date: Tue, 14 Apr 2015 18:42:06 +0200 Subject: [PATCH] Revert "Revert seccomp tests that allow it to be used on ++++++ 0039-s390x-Fix-stoc-direction.patch ++++++ --- /var/tmp/diff_new_pack.6APM61/_old 2015-05-10 10:54:29.000000000 +0200 +++ /var/tmp/diff_new_pack.6APM61/_new 2015-05-10 10:54:29.000000000 +0200 @@ -1,4 +1,4 @@ -From a8187b81c7ac84123ac4e4fb78d9219473fae1fa Mon Sep 17 00:00:00 2001 +From 67098aac3a33ba6bf79088ac4bc4068637637dd9 Mon Sep 17 00:00:00 2001 From: Alexander Graf <[email protected]> Date: Wed, 15 Apr 2015 02:28:05 +0200 Subject: [PATCH] s390x: Fix stoc direction
