如何更改内核定时器频率?

时间:2015-03-30 10:43:55

标签: linux timer linux-kernel

我想在内核定时器频率上更改内核选项。

所以我找到了this,它说我可以通过/boot/config-'uname -r'更改配置

(我还发现这篇帖子说除非它构建一个无空洞内核 - CONFIG_NO_HZ=y我无法改变定时器频率但我的设置为CONFIG_NO_HZ=y

它还提到了如何用C代码计算频率。

首先,我用C代码检查当前的内核定时器频率。

结果为1000~1500 Hz。

我检查/boot/config-'uname -r',它代表如下。

# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250

但是那里的定时器频率是250赫兹......?

然后为了检查更多,我尝试将文件修改为

# CONFIG_HZ_100 is not set
# CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000

重新启动,如果应用了更改,请再次检查配置文件,并运行大约检查计时器频率的C代码。

但结果和以前一样。

有什么问题?

我的环境是VMware,ubuntu12.04

以下是C代码。

#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>

#define USECREQ 250
#define LOOPS   1000

void event_handler (int signum)
{
 static unsigned long cnt = 0;
 static struct timeval tsFirst;
 if (cnt == 0) {
   gettimeofday (&tsFirst, 0);
 } 
 cnt ++;
 if (cnt >= LOOPS) {
   struct timeval tsNow;
   struct timeval diff;
   setitimer (ITIMER_REAL, NULL, NULL);
   gettimeofday (&tsNow, 0);
   timersub(&tsNow, &tsFirst, &diff);
   unsigned long long udiff = (diff.tv_sec * 1000000) + diff.tv_usec;
   double delta = (double)(udiff/cnt)/1000000;
   int hz = (unsigned)(1.0/delta);
   printf ("kernel timer interrupt frequency is approx. %d Hz", hz);
   if (hz >= (int) (1.0/((double)(USECREQ)/1000000))) {
     printf (" or higher");
   }       
   printf ("\n");
   exit (0);
 }
}

int main (int argc, char **argv)
{
 struct sigaction sa;
 struct itimerval timer;

 memset (&sa, 0, sizeof (sa));
 sa.sa_handler = &event_handler;
 sigaction (SIGALRM, &sa, NULL);
 timer.it_value.tv_sec = 0;
 timer.it_value.tv_usec = USECREQ;
 timer.it_interval.tv_sec = 0;
 timer.it_interval.tv_usec = USECREQ;
 setitimer (ITIMER_REAL, &timer, NULL);
 while (1);
}

1 个答案:

答案 0 :(得分:2)

对/ boot / config所做的更改不会影响正在运行的内核。请阅读有关内核配置文件here的更多信息。

您在/ boot / config中看到的配置文件(实际上,它更像是config- [kernel_version])是用于构建内核的配置文件。这意味着您对此配置文件所做的每个更改都不会影响任何内容。

要真正进行这些更改,您需要构建一个新的配置文件,其中包含您需要的修改,并根据该配置文件编译和安装新内核。您可以使用/ boot中的配置文件,只需调整时钟即可。