Gentoo Archives: gentoo-commits

From: "Andrew Savchenko (bircoph)" <bircoph@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/oprofile/files: oprofile-1.0.0-athlon.patch
Date: Mon, 09 Feb 2015 17:19:14
Message-Id: 20150209171910.A95BB1167F@oystercatcher.gentoo.org
1 bircoph 15/02/09 17:19:10
2
3 Modified: oprofile-1.0.0-athlon.patch
4 Log:
5 fix bug 538784
6
7 Signed-off-by: Andrew Savchenko <bircoph@g.o>
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 565953B95372756C)
9
10 Revision Changes Path
11 1.2 dev-util/oprofile/files/oprofile-1.0.0-athlon.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/files/oprofile-1.0.0-athlon.patch?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/files/oprofile-1.0.0-athlon.patch?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/files/oprofile-1.0.0-athlon.patch?r1=1.1&r2=1.2
16
17 Index: oprofile-1.0.0-athlon.patch
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/files/oprofile-1.0.0-athlon.patch,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- oprofile-1.0.0-athlon.patch 1 Dec 2014 06:39:59 -0000 1.1
24 +++ oprofile-1.0.0-athlon.patch 9 Feb 2015 17:19:10 -0000 1.2
25 @@ -8,7 +8,7 @@
26
27 /* These family does not exist in the past.*/
28 - if (family < 0x0f || family == 0x13)
29 -+ if (family < 0x0f && family != 0x6 || family == 0x13)
30 ++ if ((family < 0x0f && family != 0x06) || family == 0x13)
31 return ret;
32
33 switch (family) {