URL
https://opencores.org/ocsvn/test_project/test_project/trunk
Subversion Repositories test_project
[/] [test_project/] [trunk/] [linux_sd_driver/] [kernel/] [Kconfig.hz] - Rev 62
Compare with Previous | Blame | View Log
## Timer Interrupt Frequency Configuration#choiceprompt "Timer frequency"default HZ_250helpAllows the configuration of the timer frequency. It is customaryto have the timer interrupt run at 1000 Hz but 100 Hz may be morebeneficial for servers and NUMA systems that do not need to havea fast response for user interaction and that may experience buscontention and cacheline bounces as a result of timer interrupts.Note that the timer interrupt occurs on each processor in an SMPenvironment leading to NR_CPUS * HZ number of timer interruptsper second.config HZ_100bool "100 HZ"help100 Hz is a typical choice for servers, SMP and NUMA systemswith lots of processors that may show reduced performance iftoo many timer interrupts are occurring.config HZ_250bool "250 HZ"help250 Hz is a good compromise choice allowing server performancewhile also showing good interactive responsiveness evenon SMP and NUMA systems. If you are going to be using NTSC videoor multimedia, selected 300Hz instead.config HZ_300bool "300 HZ"help300 Hz is a good compromise choice allowing server performancewhile also showing good interactive responsiveness evenon SMP and NUMA systems and exactly dividing by both PAL andNTSC frame rates for video and multimedia work.config HZ_1000bool "1000 HZ"help1000 Hz is the preferred choice for desktop systems and othersystems requiring fast interactive responses to events.endchoiceconfig HZintdefault 100 if HZ_100default 250 if HZ_250default 300 if HZ_300default 1000 if HZ_1000
