306460
commit de05a9d88794fad1c94b9cb12215142e61e15a16
306460
Author: Asim YarKhan <yarkhan@icl.utk.edu>
306460
Date:   Thu Oct 16 12:50:43 2014 -0400
306460
306460
    PPC64 add support for the Power non virtualized platform
306460
    
306460
    Thanks to Carl Love for this patch and the following description:
306460
    The Power 8 system can be run as a non-virtualized machine.  In
306460
    this case, the platform is "PowerNV".  This patch adds the platform
306460
    to the possible IBM platform types.
306460
306460
diff --git a/src/linux-common.c b/src/linux-common.c
306460
index 614a83c2..85af7005 100644
306460
--- a/src/linux-common.c
306460
+++ b/src/linux-common.c
306460
@@ -225,6 +225,7 @@ _linux_get_cpu_info( PAPI_hw_info_t *hwinfo, int *cpuinfo_mhz )
306460
 		*t = '\0';
306460
 	        s = strtok( s + 2, " " );
306460
 		if ( ( strcasecmp( s, "pSeries" ) == 0 ) ||
306460
+                    ( strcasecmp( s, "PowerNV" ) == 0 ) ||
306460
 		     ( strcasecmp( s, "PowerMac" ) == 0 ) ) {
306460
 		   strcpy( hwinfo->vendor_string, "IBM" );
306460
 		}