diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-17 16:12:43 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-17 16:12:43 -0700 | 
| commit | ebe80544338a393e94b65995120c3028c80abc62 (patch) | |
| tree | 401a4ee423feba3da5fc6cabaadd815a0ab9aace /tools | |
| parent | 1ce6ec91a8528f80442eee7157be1b016248a883 (diff) | |
| parent | 149c2319c6316d979de90ce2c8665e9c02d5927b (diff) | |
| download | olio-linux-3.10-ebe80544338a393e94b65995120c3028c80abc62.tar.xz olio-linux-3.10-ebe80544338a393e94b65995120c3028c80abc62.zip | |
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Pull idle patches from Len Brown:
 "A pair of small patches for 3.9-rc7.
  This CPU-id should have been included in the ones that we updated
  earlier in 3.9.  This pair of patches will allow this flavor of
  Haswell to behave like the other flavors."
* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux:
  tools/power turbostat: additional Haswell CPU-id
  intel_idle: additional Haswell CPU-id
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 6f3214ed444..321e066a075 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -1421,6 +1421,7 @@ int has_nehalem_turbo_ratio_limit(unsigned int family, unsigned int model)  	case 0x3C:	/* HSW */  	case 0x3F:	/* HSW */  	case 0x45:	/* HSW */ +	case 0x46:	/* HSW */  		return 1;  	case 0x2E:	/* Nehalem-EX Xeon - Beckton */  	case 0x2F:	/* Westmere-EX Xeon - Eagleton */ @@ -1515,6 +1516,7 @@ void rapl_probe(unsigned int family, unsigned int model)  	case 0x3C:	/* HSW */  	case 0x3F:	/* HSW */  	case 0x45:	/* HSW */ +	case 0x46:	/* HSW */  		do_rapl = RAPL_PKG | RAPL_CORES | RAPL_GFX;  		break;  	case 0x2D: @@ -1754,6 +1756,7 @@ int is_snb(unsigned int family, unsigned int model)  	case 0x3C:	/* HSW */  	case 0x3F:	/* HSW */  	case 0x45:	/* HSW */ +	case 0x46:	/* HSW */  		return 1;  	}  	return 0; @@ -2276,7 +2279,7 @@ int main(int argc, char **argv)  	cmdline(argc, argv);  	if (verbose) -		fprintf(stderr, "turbostat v3.2 February 11, 2013" +		fprintf(stderr, "turbostat v3.3 March 15, 2013"  			" - Len Brown <lenb@kernel.org>\n");  	turbostat_init(); |