Hello community,

here is the log from the commit of package valgrind for openSUSE:Factory 
checked in at 2016-06-02 12:38:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/valgrind (Old)
 and      /work/SRC/openSUSE:Factory/.valgrind.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "valgrind"

Changes:
--------
--- /work/SRC/openSUSE:Factory/valgrind/valgrind.changes        2016-05-03 
09:33:24.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.valgrind.new/valgrind.changes   2016-06-02 
12:38:35.000000000 +0200
@@ -1,0 +2,5 @@
+Sat May 28 11:01:13 UTC 2016 - [email protected]
+
+- add vex-r3197.diff (bsc#981447)
+
+-------------------------------------------------------------------
@@ -24 +29 @@
-- update to 3.11.0:
+- update to 3.11.0 (fate#319608):

New:
----
  vex-r3197.diff

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ valgrind.spec ++++++
--- /var/tmp/diff_new_pack.lNCEXm/_old  2016-06-02 12:38:36.000000000 +0200
+++ /var/tmp/diff_new_pack.lNCEXm/_new  2016-06-02 12:38:36.000000000 +0200
@@ -41,7 +41,8 @@
 Patch6:         r15702.diff
 Patch7:         r15792.diff
 Patch8:         r15802.diff
-Patch100:       vex-r3210.diff
+Patch100:       vex-r3197.diff
+Patch101:       vex-r3210.diff
 BuildRequires:  automake
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  docbook_4
@@ -122,6 +123,7 @@
 %patch7
 %patch8
 %patch100
+%patch101
 
 %build
 export FLAGS="%{optflags}"

++++++ vex-r3197.diff ++++++
------------------------------------------------------------------------
r3197 | mjw | 2015-10-01 14:31:19 +0200 (Do, 01. Okt 2015) | 5 Zeilen

Don't advertise RDRAND in cpuid for Core-i7-4910-like avx2 machine.

Bug#353370. In amd64g_dirtyhelper_CPUID_avx2 we set the RDRAND bit
but we don't implement support for RDRAND. Turn the bit off so programs
don't try to use RDRAND when running under valgrind.
------------------------------------------------------------------------
Index: priv/guest_amd64_helpers.c
===================================================================
--- VEX/priv/guest_amd64_helpers.c      (Revision 3196)
+++ VEX/priv/guest_amd64_helpers.c      (Revision 3197)
@@ -3101,7 +3101,8 @@ void amd64g_dirtyhelper_CPUID_avx2 ( Vex
          SET_ABCD(0x0000000d, 0x756e6547, 0x6c65746e, 0x49656e69);
          break;
       case 0x00000001:
-         SET_ABCD(0x000306c3, 0x02100800, 0x7ffafbff, 0xbfebfbff);
+         /* Don't advertise RDRAND support, bit 30 in ECX.  */
+         SET_ABCD(0x000306c3, 0x02100800, 0x3ffafbff, 0xbfebfbff);
          break;
       case 0x00000002:
          SET_ABCD(0x76036301, 0x00f0b6ff, 0x00000000, 0x00c10000);

Reply via email to