"यूजरस्पेस" cpufreq गवर्नर का उपयोग नहीं कर सकते हैं और सीपीयू आवृत्ति सेट कर सकते हैं


22

मैं अपने लैपटॉप (लिनक्स पर चल रहा है) पर सीपीयू आवृत्ति को बदलने की कोशिश कर रहा हूं, और कोई सफलता नहीं है।
यहाँ कुछ विवरण हैं:

# uname -a
Linux yoga 3.12.21-gentoo-r1 #4 SMP Thu Jul 10 17:32:31 HKT 2014 x86_64 Intel(R) Core(TM) i5-3317U CPU @ 1.70GHz GenuineIntel GNU/Linux

# cpufreq-info
cpufrequtils 008: cpufreq-info (C) Dominik Brodowski 2004-2009
Report errors and bugs to cpufreq@vger.kernel.org, please.
analyzing CPU 0:
  driver: intel_pstate
  CPUs which run at the same hardware frequency: 0
  CPUs which need to have their frequency coordinated by software: 0
  maximum transition latency: 0.97 ms.
  hardware limits: 800 MHz - 2.60 GHz
  available cpufreq governors: performance, powersave
  current policy: frequency should be within 800 MHz and 2.60 GHz.
                  The governor "powersave" may decide which speed to use
                  within this range.
  current CPU frequency is 2.42 GHz (asserted by call to hardware).
(similar information for cpus 1, 2 and 3)

# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
performance powersave

मेरे पास शुरू में कर्नेल में बने यूजरस्पेस गवर्नर थे, लेकिन फिर मैंने इसे एक मॉड्यूल के रूप में बनाने की कोशिश की (उसी परिणाम के साथ); उपरोक्त आदेशों को चलाते समय इसे लोड किया गया था (और इसे लोड करते समय मुझे कोई सिस्टम संदेश नहीं मिला):

# lsmod
Module                  Size  Used by
cpufreq_userspace       1525  0
(some other modules)

और यहां वे कमांड हैं जो मैंने आवृत्ति को बदलने की कोशिश की हैं:

# cpufreq-set -f 800MHz
Error setting new values. Common errors:
- Do you have proper administration rights? (super-user?)
- Is the governor you requested available and modprobed?
- Trying to set an invalid policy?
- Trying to set a specific frequency, but userspace governor is not available,
   for example because of hardware which cannot be set to a specific frequency
   or because the userspace governor isn't loaded?

# cpufreq-set -g userspace  
Error setting new values. Common errors:
- Do you have proper administration rights? (super-user?)
- Is the governor you requested available and modprobed?
- Trying to set an invalid policy?
- Trying to set a specific frequency, but userspace governor is not available,
   for example because of hardware which cannot be set to a specific frequency
   or because the userspace governor isn't loaded?

कोई विचार?


@don_crissti धन्यवाद, हे, मैंने कोशिश की echo 1 > /sys/devices/system/cpu/intel_pstate/no_turboऔर एक त्वरित कर्नेल घबराहट मिली: पी फिर मैंने इसके साथ रिबूट किया intel_pstate=disableऔर अब यह एसपीआई-क्यूफ्रेक का उपयोग कर रहा है, लेकिन मैं अभी भी आवृत्ति सेट नहीं कर सकता (हालांकि मुझे अब त्रुटि संदेश नहीं मिल रहा है)। Btw, आपकी टिप्पणी का जवाब क्यों नहीं?
aditsu

@don_crissti मैं cpupower के बारे में नहीं जानता था; यह कुछ हद तक बुरा वाक्यविन्यास है, लेकिन cpufreq से बेहतर काम करता है। मैं अब आवृत्ति सेट करने में सक्षम हूं :) बहुत बहुत धन्यवाद और एक उत्तर पोस्ट करने के लिए याद रखें (जब तक कि आप वास्तव में अंक नहीं चाहते हैं)।
एडिट्स

जवाबों:


41

ऐसा इसलिए है क्योंकि आपका सिस्टम नए ड्राइवर का उपयोग कर रहा है जिसे कहा जाता है intel_pstate। इस ड्राइवर का उपयोग करते समय केवल दो राज्यपाल उपलब्ध हैं: powersaveऔर performance। राज्यपाल पुराने के साथ ही उपलब्ध है ड्राइवर (जो स्वचालित रूप से अगर आप को अक्षम उपयोग किया जाएगा बूट समय पर, आप तो साथ राज्यपाल / आवृत्ति सेट ):
userspaceacpi-cpufreqintel_pstatecpupower

  • वर्तमान ड्राइवर को अक्षम करें: intel_pstate=disableअपनी कर्नेल बूट लाइन में जोड़ें
  • बूट करें, फिर userspaceमॉड्यूल लोड करें :modprobe cpufreq_userspace
  • राज्यपाल सेट करें: cpupower frequency-set --governor userspace
  • आवृत्ति सेट करें: cpupower --cpu all frequency-set --freq 800MHz

धन्यवाद, btw, आवृत्ति-सेट के बिना एक ही काम करने लगता है--cpu all
aditsu

3
पुराने ड्राइवर का उपयोग करने के लिए कुछ नुकसान होने चाहिए। वे क्या हैं?
कोन्टेक्स्टीफाई

2
@kontextify अधिक खुश उपयोगकर्ता, नई रिलीज का परीक्षण करने के लिए स्वैच्छिक रूप से लैब-चूहों के रूप में सेवा करने के लिए कम प्रवण।
मेफिस्तो

0

जवाब आपके सवाल में है:

for core in $(seq 0 "$(($(getconf _NPROCESSORS_ONLN) - 1))"); do
echo {performance|powersave} >/sys/devices/system/cpu/cpu$core/cpufreq/scaling_governor ;
done

वह और कर्नेल को उपयोक्ता संचालक सक्षम के साथ संकलित किया जाना चाहिए।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.