bircoph 15/02/09 17:19:10 Modified: oprofile-1.0.0-athlon.patch Log: fix bug 538784 Signed-off-by: Andrew Savchenko <[email protected]> (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 565953B95372756C)
Revision Changes Path 1.2 dev-util/oprofile/files/oprofile-1.0.0-athlon.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/files/oprofile-1.0.0-athlon.patch?rev=1.2&view=markup 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 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 Index: oprofile-1.0.0-athlon.patch =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/files/oprofile-1.0.0-athlon.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- oprofile-1.0.0-athlon.patch 1 Dec 2014 06:39:59 -0000 1.1 +++ oprofile-1.0.0-athlon.patch 9 Feb 2015 17:19:10 -0000 1.2 @@ -8,7 +8,7 @@ /* These family does not exist in the past.*/ - if (family < 0x0f || family == 0x13) -+ if (family < 0x0f && family != 0x6 || family == 0x13) ++ if ((family < 0x0f && family != 0x06) || family == 0x13) return ret; switch (family) {
