diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/alpha/Kconfig | 5 | ||||
-rw-r--r-- | arch/cris/Kconfig | 4 | ||||
-rw-r--r-- | arch/frv/Kconfig | 4 | ||||
-rw-r--r-- | arch/h8300/Kconfig | 4 | ||||
-rw-r--r-- | arch/m32r/Kconfig | 4 | ||||
-rw-r--r-- | arch/m68k/Kconfig | 4 | ||||
-rw-r--r-- | arch/m68knommu/Kconfig | 5 | ||||
-rw-r--r-- | arch/sparc/Kconfig | 4 | ||||
-rw-r--r-- | arch/v850/Kconfig | 7 | ||||
-rw-r--r-- | arch/xtensa/Kconfig | 4 |
10 files changed, 45 insertions, 0 deletions
diff --git a/arch/alpha/Kconfig b/arch/alpha/Kconfig index d9df913a464d..5b7dcd5a0e75 100644 --- a/arch/alpha/Kconfig +++ b/arch/alpha/Kconfig | |||
@@ -615,6 +615,11 @@ config VERBOSE_MCHECK_ON | |||
615 | 615 | ||
616 | Take the default (1) unless you want more control or more info. | 616 | Take the default (1) unless you want more control or more info. |
617 | 617 | ||
618 | config HZ | ||
619 | int | ||
620 | default 1200 if ALPHA_RAWHIDE | ||
621 | default 1024 | ||
622 | |||
618 | source "drivers/pci/Kconfig" | 623 | source "drivers/pci/Kconfig" |
619 | source "drivers/eisa/Kconfig" | 624 | source "drivers/eisa/Kconfig" |
620 | 625 | ||
diff --git a/arch/cris/Kconfig b/arch/cris/Kconfig index 27b082ac7f11..ff078e60e76d 100644 --- a/arch/cris/Kconfig +++ b/arch/cris/Kconfig | |||
@@ -55,6 +55,10 @@ config CRIS | |||
55 | bool | 55 | bool |
56 | default y | 56 | default y |
57 | 57 | ||
58 | config HZ | ||
59 | int | ||
60 | default 100 | ||
61 | |||
58 | source "init/Kconfig" | 62 | source "init/Kconfig" |
59 | 63 | ||
60 | menu "General setup" | 64 | menu "General setup" |
diff --git a/arch/frv/Kconfig b/arch/frv/Kconfig index 96f7d70f4473..9e561ede0925 100644 --- a/arch/frv/Kconfig +++ b/arch/frv/Kconfig | |||
@@ -57,6 +57,10 @@ config ARCH_HAS_ILOG2_U64 | |||
57 | bool | 57 | bool |
58 | default y | 58 | default y |
59 | 59 | ||
60 | config HZ | ||
61 | int | ||
62 | default 1000 | ||
63 | |||
60 | mainmenu "Fujitsu FR-V Kernel Configuration" | 64 | mainmenu "Fujitsu FR-V Kernel Configuration" |
61 | 65 | ||
62 | source "init/Kconfig" | 66 | source "init/Kconfig" |
diff --git a/arch/h8300/Kconfig b/arch/h8300/Kconfig index b4ba4f8b505c..f69e5ea38558 100644 --- a/arch/h8300/Kconfig +++ b/arch/h8300/Kconfig | |||
@@ -82,6 +82,10 @@ config PCI | |||
82 | bool | 82 | bool |
83 | default n | 83 | default n |
84 | 84 | ||
85 | config HZ | ||
86 | int | ||
87 | default 100 | ||
88 | |||
85 | source "init/Kconfig" | 89 | source "init/Kconfig" |
86 | 90 | ||
87 | source "arch/h8300/Kconfig.cpu" | 91 | source "arch/h8300/Kconfig.cpu" |
diff --git a/arch/m32r/Kconfig b/arch/m32r/Kconfig index fe61e00a604f..d4679ab55b96 100644 --- a/arch/m32r/Kconfig +++ b/arch/m32r/Kconfig | |||
@@ -38,6 +38,10 @@ config NO_DMA | |||
38 | config ARCH_SUPPORTS_AOUT | 38 | config ARCH_SUPPORTS_AOUT |
39 | def_bool y | 39 | def_bool y |
40 | 40 | ||
41 | config HZ | ||
42 | int | ||
43 | default 100 | ||
44 | |||
41 | source "init/Kconfig" | 45 | source "init/Kconfig" |
42 | 46 | ||
43 | 47 | ||
diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig index bcbf3e4ee9d4..2b0ed89cd173 100644 --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig | |||
@@ -55,6 +55,10 @@ config NO_DMA | |||
55 | config ARCH_SUPPORTS_AOUT | 55 | config ARCH_SUPPORTS_AOUT |
56 | def_bool y | 56 | def_bool y |
57 | 57 | ||
58 | config HZ | ||
59 | int | ||
60 | default 100 | ||
61 | |||
58 | mainmenu "Linux/68k Kernel Configuration" | 62 | mainmenu "Linux/68k Kernel Configuration" |
59 | 63 | ||
60 | source "init/Kconfig" | 64 | source "init/Kconfig" |
diff --git a/arch/m68knommu/Kconfig b/arch/m68knommu/Kconfig index 24f732342d3e..548a7b321633 100644 --- a/arch/m68knommu/Kconfig +++ b/arch/m68knommu/Kconfig | |||
@@ -525,6 +525,11 @@ config 4KSTACKS | |||
525 | running more threads on a system and also reduces the pressure | 525 | running more threads on a system and also reduces the pressure |
526 | on the VM subsystem for higher order allocations. | 526 | on the VM subsystem for higher order allocations. |
527 | 527 | ||
528 | config HZ | ||
529 | int | ||
530 | default 1000 if CLEOPATRA | ||
531 | default 100 | ||
532 | |||
528 | comment "RAM configuration" | 533 | comment "RAM configuration" |
529 | 534 | ||
530 | config RAMBASE | 535 | config RAMBASE |
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig index 08821b078ecc..7c674a3503b6 100644 --- a/arch/sparc/Kconfig +++ b/arch/sparc/Kconfig | |||
@@ -30,6 +30,10 @@ config OF | |||
30 | config ARCH_SUPPORTS_AOUT | 30 | config ARCH_SUPPORTS_AOUT |
31 | def_bool y | 31 | def_bool y |
32 | 32 | ||
33 | config HZ | ||
34 | int | ||
35 | default 100 | ||
36 | |||
33 | source "init/Kconfig" | 37 | source "init/Kconfig" |
34 | 38 | ||
35 | menu "General machine setup" | 39 | menu "General machine setup" |
diff --git a/arch/v850/Kconfig b/arch/v850/Kconfig index 225f30d7cb32..7b6d3716efca 100644 --- a/arch/v850/Kconfig +++ b/arch/v850/Kconfig | |||
@@ -215,6 +215,13 @@ menu "Processor type and features" | |||
215 | bool | 215 | bool |
216 | default !V850E_CACHE && !V850E2_CACHE | 216 | default !V850E_CACHE && !V850E2_CACHE |
217 | 217 | ||
218 | # HZ depends on the platform | ||
219 | config HZ | ||
220 | int | ||
221 | default 24 if V850E_SIM || V850E2_SIM85E2 | ||
222 | default 122 if V850E2_FPGA85E2C | ||
223 | default 100 | ||
224 | |||
218 | #### Misc config | 225 | #### Misc config |
219 | 226 | ||
220 | config ROM_KERNEL | 227 | config ROM_KERNEL |
diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig index 5d5546ce88fe..fd36764d7fb7 100644 --- a/arch/xtensa/Kconfig +++ b/arch/xtensa/Kconfig | |||
@@ -49,6 +49,10 @@ config ARCH_HAS_ILOG2_U64 | |||
49 | config NO_IOPORT | 49 | config NO_IOPORT |
50 | def_bool y | 50 | def_bool y |
51 | 51 | ||
52 | config HZ | ||
53 | int | ||
54 | default 100 | ||
55 | |||
52 | source "init/Kconfig" | 56 | source "init/Kconfig" |
53 | 57 | ||
54 | menu "Processor type and features" | 58 | menu "Processor type and features" |