Bug 1300490 - RDRAND bit causes Illegal instruction signal in valgrind
Summary: RDRAND bit causes Illegal instruction signal in valgrind
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Fedora
Classification: Fedora
Component: valgrind
Version: 23
Hardware: Unspecified
OS: Unspecified
medium
medium
Target Milestone: ---
Assignee: Mark Wielaard
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2016-01-21 00:29 UTC by Brad Hubbard
Modified: 2016-01-28 18:23 UTC (History)
3 users (show)

Fixed In Version: valgrind-3.11.0-8.fc23
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2016-01-28 18:23:09 UTC
Type: Bug


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
KDE Software Compilation 353370 0 None None None 2016-01-21 00:29:31 UTC

Description Brad Hubbard 2016-01-21 00:29:32 UTC
Description of problem:

Hitting https://bugs.kde.org/show_bug.cgi?id=353370

Version-Release number of selected component (if applicable):
valgrind-3.11.0-1.fc23.x86_64

How reproducible:
100%

Steps to Reproduce:
cat >simplerepro.cpp <<EOF
#include <random>
#include <algorithm>
#include <iterator>
#include <iostream>
#include <functional>

int main(void) {
    std::random_device r;
    std::uniform_int_distribution<int> dist(0,255);
    dist(r);
    return 0;
}
EOF
g++ -std=c++11 -o simplerepro simplerepro.cpp

$ ./simplerepro
$ valgrind -q ./simplerepro
==16959== 
==16959== Process terminating with default action of signal 4 (SIGILL)

Actual results:
Illegal instruction (core dumped)

Expected results:
Successful valgrind run

Additional info:
I see there is a patch for this in master. Can we get an updated package for f23?

Comment 1 Fedora Update System 2016-01-21 20:39:51 UTC
valgrind-3.11.0-8.fc23 has been submitted as an update to Fedora 23. https://bodhi.fedoraproject.org/updates/FEDORA-2016-3795b5d3a9

Comment 2 Fedora Update System 2016-01-24 04:51:26 UTC
valgrind-3.11.0-8.fc23 has been pushed to the Fedora 23 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2016-3795b5d3a9

Comment 3 Fedora Update System 2016-01-28 18:22:59 UTC
valgrind-3.11.0-8.fc23 has been pushed to the Fedora 23 stable repository. If problems still persist, please make note of it in this bug report.


Note You need to log in before you can comment on or make changes to this bug.