diff options
| author | Tony Luck <tony.luck@intel.com> | 2005-10-28 17:32:56 -0400 |
|---|---|---|
| committer | Tony Luck <tony.luck@intel.com> | 2005-10-28 17:32:56 -0400 |
| commit | c87ff94333642ce3db4fc0857ad1f723cb42c1dd (patch) | |
| tree | 9577010b5ca20b692904c4728b305a9cbde5373e | |
| parent | 556902cd2d2cfdc54fe1f1d7f3ac5e2eb276ac09 (diff) | |
| parent | 1e5c936e3cc2ab745f66c0ae296c42f892ffd42a (diff) | |
Pull sparsemem-v5 into release branch
| -rw-r--r-- | arch/ia64/Kconfig | 94 | ||||
| -rw-r--r-- | arch/ia64/configs/gensparse_defconfig | 1319 | ||||
| -rw-r--r-- | arch/ia64/mm/Makefile | 5 | ||||
| -rw-r--r-- | arch/ia64/mm/contig.c | 4 | ||||
| -rw-r--r-- | arch/ia64/mm/discontig.c | 43 | ||||
| -rw-r--r-- | arch/ia64/mm/init.c | 2 | ||||
| -rw-r--r-- | arch/ia64/mm/numa.c | 24 | ||||
| -rw-r--r-- | include/asm-ia64/meminit.h | 2 | ||||
| -rw-r--r-- | include/asm-ia64/mmzone.h | 10 | ||||
| -rw-r--r-- | include/asm-ia64/nodedata.h | 4 | ||||
| -rw-r--r-- | include/asm-ia64/page.h | 6 | ||||
| -rw-r--r-- | include/asm-ia64/sparsemem.h | 20 |
12 files changed, 1478 insertions, 55 deletions
diff --git a/arch/ia64/Kconfig b/arch/ia64/Kconfig index cb7fc19ff080..1642375fb14e 100644 --- a/arch/ia64/Kconfig +++ b/arch/ia64/Kconfig | |||
| @@ -63,8 +63,6 @@ config IA64_GENERIC | |||
| 63 | select ACPI | 63 | select ACPI |
| 64 | select NUMA | 64 | select NUMA |
| 65 | select ACPI_NUMA | 65 | select ACPI_NUMA |
| 66 | select VIRTUAL_MEM_MAP | ||
| 67 | select DISCONTIGMEM | ||
| 68 | help | 66 | help |
| 69 | This selects the system type of your hardware. A "generic" kernel | 67 | This selects the system type of your hardware. A "generic" kernel |
| 70 | will run on any supported IA-64 system. However, if you configure | 68 | will run on any supported IA-64 system. However, if you configure |
| @@ -176,40 +174,6 @@ config IA64_L1_CACHE_SHIFT | |||
| 176 | default "6" if ITANIUM | 174 | default "6" if ITANIUM |
| 177 | 175 | ||
| 178 | # align cache-sensitive data to 64 bytes | 176 | # align cache-sensitive data to 64 bytes |
| 179 | config NUMA | ||
| 180 | bool "NUMA support" | ||
| 181 | depends on !IA64_HP_SIM | ||
| 182 | default y if IA64_SGI_SN2 | ||
| 183 | select ACPI_NUMA | ||
| 184 | help | ||
| 185 | Say Y to compile the kernel to support NUMA (Non-Uniform Memory | ||
| 186 | Access). This option is for configuring high-end multiprocessor | ||
| 187 | server systems. If in doubt, say N. | ||
| 188 | |||
| 189 | config VIRTUAL_MEM_MAP | ||
| 190 | bool "Virtual mem map" | ||
| 191 | default y if !IA64_HP_SIM | ||
| 192 | help | ||
| 193 | Say Y to compile the kernel with support for a virtual mem map. | ||
| 194 | This code also only takes effect if a memory hole of greater than | ||
| 195 | 1 Gb is found during boot. You must turn this option on if you | ||
| 196 | require the DISCONTIGMEM option for your machine. If you are | ||
| 197 | unsure, say Y. | ||
| 198 | |||
| 199 | config HOLES_IN_ZONE | ||
| 200 | bool | ||
| 201 | default y if VIRTUAL_MEM_MAP | ||
| 202 | |||
| 203 | config ARCH_DISCONTIGMEM_ENABLE | ||
| 204 | bool "Discontiguous memory support" | ||
| 205 | depends on (IA64_DIG || IA64_SGI_SN2 || IA64_GENERIC || IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB) && NUMA && VIRTUAL_MEM_MAP | ||
| 206 | default y if (IA64_SGI_SN2 || IA64_GENERIC) && NUMA | ||
| 207 | help | ||
| 208 | Say Y to support efficient handling of discontiguous physical memory, | ||
| 209 | for architectures which are either NUMA (Non-Uniform Memory Access) | ||
| 210 | or have huge holes in the physical address space for other reasons. | ||
| 211 | See <file:Documentation/vm/numa> for more. | ||
| 212 | |||
| 213 | config IA64_CYCLONE | 177 | config IA64_CYCLONE |
| 214 | bool "Cyclone (EXA) Time Source support" | 178 | bool "Cyclone (EXA) Time Source support" |
| 215 | help | 179 | help |
| @@ -232,8 +196,10 @@ config IA64_SGI_SN_XP | |||
| 232 | based on a network adapter and DMA messaging. | 196 | based on a network adapter and DMA messaging. |
| 233 | 197 | ||
| 234 | config FORCE_MAX_ZONEORDER | 198 | config FORCE_MAX_ZONEORDER |
| 235 | int | 199 | int "MAX_ORDER (11 - 17)" if !HUGETLB_PAGE |
| 236 | default "18" | 200 | range 11 17 if !HUGETLB_PAGE |
| 201 | default "17" if HUGETLB_PAGE | ||
| 202 | default "11" | ||
| 237 | 203 | ||
| 238 | config SMP | 204 | config SMP |
| 239 | bool "Symmetric multi-processing support" | 205 | bool "Symmetric multi-processing support" |
| @@ -298,6 +264,58 @@ config PREEMPT | |||
| 298 | 264 | ||
| 299 | source "mm/Kconfig" | 265 | source "mm/Kconfig" |
| 300 | 266 | ||
| 267 | config ARCH_SELECT_MEMORY_MODEL | ||
| 268 | def_bool y | ||
| 269 | |||
| 270 | config ARCH_DISCONTIGMEM_ENABLE | ||
| 271 | def_bool y | ||
| 272 | help | ||
| 273 | Say Y to support efficient handling of discontiguous physical memory, | ||
| 274 | for architectures which are either NUMA (Non-Uniform Memory Access) | ||
| 275 | or have huge holes in the physical address space for other reasons. | ||
| 276 | See <file:Documentation/vm/numa> for more. | ||
| 277 | |||
| 278 | config ARCH_FLATMEM_ENABLE | ||
| 279 | def_bool y | ||
| 280 | |||
| 281 | config ARCH_SPARSEMEM_ENABLE | ||
| 282 | def_bool y | ||
| 283 | depends on ARCH_DISCONTIGMEM_ENABLE | ||
| 284 | |||
| 285 | config ARCH_DISCONTIGMEM_DEFAULT | ||
| 286 | def_bool y if (IA64_SGI_SN2 || IA64_GENERIC || IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB) | ||
| 287 | depends on ARCH_DISCONTIGMEM_ENABLE | ||
| 288 | |||
| 289 | config NUMA | ||
| 290 | bool "NUMA support" | ||
| 291 | depends on !IA64_HP_SIM && !FLATMEM | ||
| 292 | default y if IA64_SGI_SN2 | ||
| 293 | help | ||
| 294 | Say Y to compile the kernel to support NUMA (Non-Uniform Memory | ||
| 295 | Access). This option is for configuring high-end multiprocessor | ||
| 296 | server systems. If in doubt, say N. | ||
| 297 | |||
| 298 | # VIRTUAL_MEM_MAP and FLAT_NODE_MEM_MAP are functionally equivalent. | ||
| 299 | # VIRTUAL_MEM_MAP has been retained for historical reasons. | ||
| 300 | config VIRTUAL_MEM_MAP | ||
| 301 | bool "Virtual mem map" | ||
| 302 | depends on !SPARSEMEM | ||
| 303 | default y if !IA64_HP_SIM | ||
| 304 | help | ||
| 305 | Say Y to compile the kernel with support for a virtual mem map. | ||
| 306 | This code also only takes effect if a memory hole of greater than | ||
| 307 | 1 Gb is found during boot. You must turn this option on if you | ||
| 308 | require the DISCONTIGMEM option for your machine. If you are | ||
| 309 | unsure, say Y. | ||
| 310 | |||
| 311 | config HOLES_IN_ZONE | ||
| 312 | bool | ||
| 313 | default y if VIRTUAL_MEM_MAP | ||
| 314 | |||
| 315 | config HAVE_ARCH_EARLY_PFN_TO_NID | ||
| 316 | def_bool y | ||
| 317 | depends on NEED_MULTIPLE_NODES | ||
| 318 | |||
| 301 | config IA32_SUPPORT | 319 | config IA32_SUPPORT |
| 302 | bool "Support for Linux/x86 binaries" | 320 | bool "Support for Linux/x86 binaries" |
| 303 | help | 321 | help |
diff --git a/arch/ia64/configs/gensparse_defconfig b/arch/ia64/configs/gensparse_defconfig new file mode 100644 index 000000000000..80f8663bc6d9 --- /dev/null +++ b/arch/ia64/configs/gensparse_defconfig | |||
| @@ -0,0 +1,1319 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.14-rc2 | ||
| 4 | # Wed Sep 28 08:27:29 2005 | ||
| 5 | # | ||
| 6 | |||
| 7 | # | ||
| 8 | # Code maturity level options | ||
| 9 | # | ||
| 10 | CONFIG_EXPERIMENTAL=y | ||
| 11 | CONFIG_CLEAN_COMPILE=y | ||
| 12 | CONFIG_LOCK_KERNEL=y | ||
| 13 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 14 | |||
| 15 | # | ||
| 16 | # General setup | ||
| 17 | # | ||
| 18 | CONFIG_LOCALVERSION="" | ||
| 19 | CONFIG_LOCALVERSION_AUTO=y | ||
| 20 | CONFIG_SWAP=y | ||
| 21 | CONFIG_SYSVIPC=y | ||
| 22 | CONFIG_POSIX_MQUEUE=y | ||
| 23 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 24 | CONFIG_SYSCTL=y | ||
| 25 | # CONFIG_AUDIT is not set | ||
| 26 | CONFIG_HOTPLUG=y | ||
| 27 | CONFIG_KOBJECT_UEVENT=y | ||
| 28 | CONFIG_IKCONFIG=y | ||
| 29 | CONFIG_IKCONFIG_PROC=y | ||
| 30 | # CONFIG_CPUSETS is not set | ||
| 31 | CONFIG_INITRAMFS_SOURCE="" | ||
| 32 | # CONFIG_EMBEDDED is not set | ||
| 33 | CONFIG_KALLSYMS=y | ||
| 34 | CONFIG_KALLSYMS_ALL=y | ||
| 35 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 36 | CONFIG_PRINTK=y | ||
| 37 | CONFIG_BUG=y | ||
| 38 | CONFIG_BASE_FULL=y | ||
| 39 | CONFIG_FUTEX=y | ||
| 40 | CONFIG_EPOLL=y | ||
| 41 | CONFIG_SHMEM=y | ||
| 42 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
| 43 | CONFIG_CC_ALIGN_LABELS=0 | ||
| 44 | CONFIG_CC_ALIGN_LOOPS=0 | ||
| 45 | CONFIG_CC_ALIGN_JUMPS=0 | ||
| 46 | # CONFIG_TINY_SHMEM is not set | ||
| 47 | CONFIG_BASE_SMALL=0 | ||
| 48 | |||
| 49 | # | ||
| 50 | # Loadable module support | ||
| 51 | # | ||
| 52 | CONFIG_MODULES=y | ||
| 53 | CONFIG_MODULE_UNLOAD=y | ||
| 54 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 55 | CONFIG_OBSOLETE_MODPARM=y | ||
| 56 | CONFIG_MODVERSIONS=y | ||
| 57 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 58 | CONFIG_KMOD=y | ||
| 59 | CONFIG_STOP_MACHINE=y | ||
| 60 | |||
| 61 | # | ||
| 62 | # Processor type and features | ||
| 63 | # | ||
| 64 | CONFIG_IA64=y | ||
| 65 | CONFIG_64BIT=y | ||
| 66 | CONFIG_MMU=y | ||
| 67 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
| 68 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 69 | CONFIG_TIME_INTERPOLATION=y | ||
| 70 | CONFIG_EFI=y | ||
| 71 | CONFIG_GENERIC_IOMAP=y | ||
| 72 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
| 73 | CONFIG_IA64_GENERIC=y | ||
| 74 | # CONFIG_IA64_DIG is not set | ||
| 75 | # CONFIG_IA64_HP_ZX1 is not set | ||
| 76 | # CONFIG_IA64_HP_ZX1_SWIOTLB is not set | ||
| 77 | # CONFIG_IA64_SGI_SN2 is not set | ||
| 78 | # CONFIG_IA64_HP_SIM is not set | ||
| 79 | # CONFIG_ITANIUM is not set | ||
| 80 | CONFIG_MCKINLEY=y | ||
| 81 | # CONFIG_IA64_PAGE_SIZE_4KB is not set | ||
| 82 | # CONFIG_IA64_PAGE_SIZE_8KB is not set | ||
| 83 | CONFIG_IA64_PAGE_SIZE_16KB=y | ||
| 84 | # CONFIG_IA64_PAGE_SIZE_64KB is not set | ||
| 85 | # CONFIG_HZ_100 is not set | ||
| 86 | CONFIG_HZ_250=y | ||
| 87 | # CONFIG_HZ_1000 is not set | ||
| 88 | CONFIG_HZ=250 | ||
| 89 | CONFIG_IA64_L1_CACHE_SHIFT=7 | ||
| 90 | CONFIG_IA64_CYCLONE=y | ||
| 91 | CONFIG_IOSAPIC=y | ||
| 92 | # CONFIG_IA64_SGI_SN_XP is not set | ||
| 93 | CONFIG_FORCE_MAX_ZONEORDER=17 | ||
| 94 | CONFIG_SMP=y | ||
| 95 | CONFIG_NR_CPUS=512 | ||
| 96 | CONFIG_HOTPLUG_CPU=y | ||
| 97 | # CONFIG_SCHED_SMT is not set | ||
| 98 | # CONFIG_PREEMPT is not set | ||
| 99 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 100 | # CONFIG_FLATMEM_MANUAL is not set | ||
| 101 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 102 | CONFIG_SPARSEMEM_MANUAL=y | ||
| 103 | CONFIG_SPARSEMEM=y | ||
| 104 | CONFIG_NEED_MULTIPLE_NODES=y | ||
| 105 | CONFIG_HAVE_MEMORY_PRESENT=y | ||
| 106 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 107 | CONFIG_SPARSEMEM_EXTREME=y | ||
| 108 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
| 109 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | ||
| 110 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 111 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
| 112 | CONFIG_ARCH_DISCONTIGMEM_DEFAULT=y | ||
| 113 | CONFIG_NUMA=y | ||
| 114 | CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y | ||
| 115 | CONFIG_IA32_SUPPORT=y | ||
| 116 | CONFIG_COMPAT=y | ||
| 117 | CONFIG_IA64_MCA_RECOVERY=y | ||
| 118 | CONFIG_PERFMON=y | ||
| 119 | CONFIG_IA64_PALINFO=y | ||
| 120 | |||
| 121 | # | ||
| 122 | # Firmware Drivers | ||
| 123 | # | ||
| 124 | CONFIG_EFI_VARS=y | ||
| 125 | CONFIG_EFI_PCDP=y | ||
| 126 | # CONFIG_DELL_RBU is not set | ||
| 127 | CONFIG_BINFMT_ELF=y | ||
| 128 | CONFIG_BINFMT_MISC=m | ||
| 129 | |||
| 130 | # | ||
| 131 | # Power management and ACPI | ||
| 132 | # | ||
| 133 | CONFIG_PM=y | ||
| 134 | # CONFIG_PM_DEBUG is not set | ||
| 135 | |||
| 136 | # | ||
| 137 | # ACPI (Advanced Configuration and Power Interface) Support | ||
| 138 | # | ||
| 139 | CONFIG_ACPI=y | ||
| 140 | CONFIG_ACPI_BUTTON=m | ||
| 141 | CONFIG_ACPI_FAN=m | ||
| 142 | CONFIG_ACPI_PROCESSOR=m | ||
| 143 | CONFIG_ACPI_HOTPLUG_CPU=y | ||
| 144 | CONFIG_ACPI_THERMAL=m | ||
| 145 | CONFIG_ACPI_NUMA=y | ||
| 146 | CONFIG_ACPI_BLACKLIST_YEAR=0 | ||
| 147 | # CONFIG_ACPI_DEBUG is not set | ||
| 148 | CONFIG_ACPI_POWER=y | ||
| 149 | CONFIG_ACPI_SYSTEM=y | ||
| 150 | CONFIG_ACPI_CONTAINER=m | ||
| 151 | |||
| 152 | # | ||
| 153 | # CPU Frequency scaling | ||
| 154 | # | ||
| 155 | # CONFIG_CPU_FREQ is not set | ||
| 156 | |||
| 157 | # | ||
| 158 | # Bus options (PCI, PCMCIA) | ||
| 159 | # | ||
| 160 | CONFIG_PCI=y | ||
| 161 | CONFIG_PCI_DOMAINS=y | ||
| 162 | # CONFIG_PCI_MSI is not set | ||
| 163 | CONFIG_PCI_LEGACY_PROC=y | ||
| 164 | # CONFIG_PCI_DEBUG is not set | ||
| 165 | |||
| 166 | # | ||
| 167 | # PCI Hotplug Support | ||
| 168 | # | ||
| 169 | CONFIG_HOTPLUG_PCI=m | ||
| 170 | # CONFIG_HOTPLUG_PCI_FAKE is not set | ||
| 171 | CONFIG_HOTPLUG_PCI_ACPI=m | ||
| 172 | # CONFIG_HOTPLUG_PCI_ACPI_IBM is not set | ||
| 173 | # CONFIG_HOTPLUG_PCI_CPCI is not set | ||
| 174 | # CONFIG_HOTPLUG_PCI_SHPC is not set | ||
| 175 | # CONFIG_HOTPLUG_PCI_SGI is not set | ||
| 176 | |||
| 177 | # | ||
| 178 | # PCCARD (PCMCIA/CardBus) support | ||
| 179 | # | ||
| 180 | # CONFIG_PCCARD is not set | ||
| 181 | |||
| 182 | # | ||
| 183 | # Networking | ||
| 184 | # | ||
| 185 | CONFIG_NET=y | ||
| 186 | |||
| 187 | # | ||
| 188 | # Networking options | ||
| 189 | # | ||
| 190 | CONFIG_PACKET=y | ||
| 191 | # CONFIG_PACKET_MMAP is not set | ||
| 192 | CONFIG_UNIX=y | ||
| 193 | # CONFIG_NET_KEY is not set | ||
| 194 | CONFIG_INET=y | ||
| 195 | CONFIG_IP_MULTICAST=y | ||
| 196 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 197 | CONFIG_IP_FIB_HASH=y | ||
| 198 | # CONFIG_IP_PNP is not set | ||
| 199 | # CONFIG_NET_IPIP is not set | ||
| 200 | # CONFIG_NET_IPGRE is not set | ||
| 201 | # CONFIG_IP_MROUTE is not set | ||
| 202 | CONFIG_ARPD=y | ||
| 203 | CONFIG_SYN_COOKIES=y | ||
| 204 | # CONFIG_INET_AH is not set | ||
| 205 | # CONFIG_INET_ESP is not set | ||
| 206 | # CONFIG_INET_IPCOMP is not set | ||
| 207 | # CONFIG_INET_TUNNEL is not set | ||
| 208 | CONFIG_INET_DIAG=y | ||
| 209 | CONFIG_INET_TCP_DIAG=y | ||
| 210 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 211 | CONFIG_TCP_CONG_BIC=y | ||
| 212 | # CONFIG_IPV6 is not set | ||
| 213 | # CONFIG_NETFILTER is not set | ||
| 214 | |||
| 215 | # | ||
| 216 | # DCCP Configuration (EXPERIMENTAL) | ||
| 217 | # | ||
| 218 | # CONFIG_IP_DCCP is not set | ||
| 219 | |||
| 220 | # | ||
| 221 | # SCTP Configuration (EXPERIMENTAL) | ||
| 222 | # | ||
| 223 | # CONFIG_IP_SCTP is not set | ||
| 224 | # CONFIG_ATM is not set | ||
| 225 | # CONFIG_BRIDGE is not set | ||
| 226 | # CONFIG_VLAN_8021Q is not set | ||
| 227 | # CONFIG_DECNET is not set | ||
| 228 | # CONFIG_LLC2 is not set | ||
| 229 | # CONFIG_IPX is not set | ||
| 230 | # CONFIG_ATALK is not set | ||
| 231 | # CONFIG_X25 is not set | ||
| 232 | # CONFIG_LAPB is not set | ||
| 233 | # CONFIG_NET_DIVERT is not set | ||
| 234 | # CONFIG_ECONET is not set | ||
| 235 | # CONFIG_WAN_ROUTER is not set | ||
| 236 | # CONFIG_NET_SCHED is not set | ||
| 237 | # CONFIG_NET_CLS_ROUTE is not set | ||
| 238 | |||
| 239 | # | ||
| 240 | # Network testing | ||
| 241 | # | ||
| 242 | # CONFIG_NET_PKTGEN is not set | ||
| 243 | # CONFIG_HAMRADIO is not set | ||
| 244 | # CONFIG_IRDA is not set | ||
| 245 | # CONFIG_BT is not set | ||
| 246 | # CONFIG_IEEE80211 is not set | ||
| 247 | |||
| 248 | # | ||
| 249 | # Device Drivers | ||
| 250 | # | ||
| 251 | |||
| 252 | # | ||
| 253 | # Generic Driver Options | ||
| 254 | # | ||
| 255 | CONFIG_STANDALONE=y | ||
| 256 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 257 | CONFIG_FW_LOADER=m | ||
| 258 | # CONFIG_DEBUG_DRIVER is not set | ||
| 259 | |||
| 260 | # | ||
| 261 | # Connector - unified userspace <-> kernelspace linker | ||
| 262 | # | ||
| 263 | # CONFIG_CONNECTOR is not set | ||
| 264 | |||
| 265 | # | ||
| 266 | # Memory Technology Devices (MTD) | ||
| 267 | # | ||
| 268 | # CONFIG_MTD is not set | ||
| 269 | |||
| 270 | # | ||
| 271 | # Parallel port support | ||
| 272 | # | ||
| 273 | # CONFIG_PARPORT is not set | ||
| 274 | |||
| 275 | # | ||
| 276 | # Plug and Play support | ||
| 277 | # | ||
| 278 | # CONFIG_PNP is not set | ||
| 279 | |||
| 280 | # | ||
| 281 | # Block devices | ||
| 282 | # | ||
| 283 | # CONFIG_BLK_CPQ_DA is not set | ||
| 284 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
| 285 | # CONFIG_BLK_DEV_DAC960 is not set | ||
| 286 | # CONFIG_BLK_DEV_UMEM is not set | ||
| 287 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 288 | CONFIG_BLK_DEV_LOOP=m | ||
| 289 | CONFIG_BLK_DEV_CRYPTOLOOP=m | ||
| 290 | CONFIG_BLK_DEV_NBD=m | ||
| 291 | # CONFIG_BLK_DEV_SX8 is not set | ||
| 292 | # CONFIG_BLK_DEV_UB is not set | ||
| 293 | CONFIG_BLK_DEV_RAM=y | ||
| 294 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 295 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
| 296 | CONFIG_BLK_DEV_INITRD=y | ||
| 297 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 298 | |||
| 299 | # | ||
| 300 | # IO Schedulers | ||
| 301 | # | ||
| 302 | CONFIG_IOSCHED_NOOP=y | ||
| 303 | CONFIG_IOSCHED_AS=y | ||
| 304 | CONFIG_IOSCHED_DEADLINE=y | ||
| 305 | CONFIG_IOSCHED_CFQ=y | ||
| 306 | # CONFIG_ATA_OVER_ETH is not set | ||
| 307 | |||
| 308 | # | ||
| 309 | # ATA/ATAPI/MFM/RLL support | ||
| 310 | # | ||
| 311 | CONFIG_IDE=y | ||
| 312 | CONFIG_BLK_DEV_IDE=y | ||
| 313 | |||
| 314 | # | ||
| 315 | # Please see Documentation/ide.txt for help/info on IDE drives | ||
| 316 | # | ||
| 317 | # CONFIG_BLK_DEV_IDE_SATA is not set | ||
| 318 | CONFIG_BLK_DEV_IDEDISK=y | ||
| 319 | # CONFIG_IDEDISK_MULTI_MODE is not set | ||
| 320 | CONFIG_BLK_DEV_IDECD=y | ||
| 321 | # CONFIG_BLK_DEV_IDETAPE is not set | ||
| 322 | CONFIG_BLK_DEV_IDEFLOPPY=y | ||
| 323 | CONFIG_BLK_DEV_IDESCSI=m | ||
| 324 | # CONFIG_IDE_TASK_IOCTL is not set | ||
| 325 | |||
| 326 | # | ||
| 327 | # IDE chipset support/bugfixes | ||
| 328 | # | ||
| 329 | CONFIG_IDE_GENERIC=y | ||
| 330 | CONFIG_BLK_DEV_IDEPCI=y | ||
| 331 | # CONFIG_IDEPCI_SHARE_IRQ is not set | ||
| 332 | # CONFIG_BLK_DEV_OFFBOARD is not set | ||
| 333 | CONFIG_BLK_DEV_GENERIC=y | ||
| 334 | # CONFIG_BLK_DEV_OPTI621 is not set | ||
| 335 | CONFIG_BLK_DEV_IDEDMA_PCI=y | ||
| 336 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set | ||
| 337 | CONFIG_IDEDMA_PCI_AUTO=y | ||
| 338 | # CONFIG_IDEDMA_ONLYDISK is not set | ||
| 339 | # CONFIG_BLK_DEV_AEC62XX is not set | ||
| 340 | # CONFIG_BLK_DEV_ALI15X3 is not set | ||
| 341 | # CONFIG_BLK_DEV_AMD74XX is not set | ||
| 342 | CONFIG_BLK_DEV_CMD64X=y | ||
| 343 | # CONFIG_BLK_DEV_TRIFLEX is not set | ||
| 344 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 345 | # CONFIG_BLK_DEV_CS5520 is not set | ||
| 346 | # CONFIG_BLK_DEV_CS5530 is not set | ||
| 347 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 348 | # CONFIG_BLK_DEV_HPT366 is not set | ||
| 349 | # CONFIG_BLK_DEV_SC1200 is not set | ||
| 350 | CONFIG_BLK_DEV_PIIX=y | ||
| 351 | # CONFIG_BLK_DEV_IT821X is not set | ||
| 352 | # CONFIG_BLK_DEV_NS87415 is not set | ||
| 353 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | ||
| 354 | # CONFIG_BLK_DEV_PDC202XX_NEW is not set | ||
| 355 | # CONFIG_BLK_DEV_SVWKS is not set | ||
| 356 | CONFIG_BLK_DEV_SGIIOC4=y | ||
| 357 | # CONFIG_BLK_DEV_SIIMAGE is not set | ||
| 358 | # CONFIG_BLK_DEV_SLC90E66 is not set | ||
| 359 | # CONFIG_BLK_DEV_TRM290 is not set | ||
| 360 | # CONFIG_BLK_DEV_VIA82CXXX is not set | ||
| 361 | # CONFIG_IDE_ARM is not set | ||
| 362 | CONFIG_BLK_DEV_IDEDMA=y | ||
| 363 | # CONFIG_IDEDMA_IVB is not set | ||
| 364 | CONFIG_IDEDMA_AUTO=y | ||
| 365 | # CONFIG_BLK_DEV_HD is not set | ||
| 366 | |||
| 367 | # | ||
| 368 | # SCSI device support | ||
| 369 | # | ||
| 370 | # CONFIG_RAID_ATTRS is not set | ||
| 371 | CONFIG_SCSI=y | ||
| 372 | CONFIG_SCSI_PROC_FS=y | ||
| 373 | |||
| 374 | # | ||
| 375 | # SCSI support type (disk, tape, CD-ROM) | ||
| 376 | # | ||
| 377 | CONFIG_BLK_DEV_SD=y | ||
| 378 | CONFIG_CHR_DEV_ST=m | ||
| 379 | # CONFIG_CHR_DEV_OSST is not set | ||
| 380 | CONFIG_BLK_DEV_SR=m | ||
| 381 | # CONFIG_BLK_DEV_SR_VENDOR is not set | ||
| 382 | CONFIG_CHR_DEV_SG=m | ||
| 383 | # CONFIG_CHR_DEV_SCH is not set | ||
| 384 | |||
| 385 | # | ||
| 386 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 387 | # | ||
| 388 | # CONFIG_SCSI_MULTI_LUN is not set | ||
| 389 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 390 | # CONFIG_SCSI_LOGGING is not set | ||
| 391 | |||
| 392 | # | ||
| 393 | # SCSI Transport Attributes | ||
| 394 | # | ||
| 395 | CONFIG_SCSI_SPI_ATTRS=y | ||
| 396 | CONFIG_SCSI_FC_ATTRS=y | ||
| 397 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 398 | # CONFIG_SCSI_SAS_ATTRS is not set | ||
| 399 | |||
| 400 | # | ||
| 401 | # SCSI low-level drivers | ||
| 402 | # | ||
| 403 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
| 404 | # CONFIG_SCSI_3W_9XXX is not set | ||
| 405 | # CONFIG_SCSI_ACARD is not set | ||
| 406 | # CONFIG_SCSI_AACRAID is not set | ||
| 407 | # CONFIG_SCSI_AIC7XXX is not set | ||
| 408 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
| 409 | # CONFIG_SCSI_AIC79XX is not set | ||
| 410 | # CONFIG_MEGARAID_NEWGEN is not set | ||
| 411 | # CONFIG_MEGARAID_LEGACY is not set | ||
| 412 | CONFIG_SCSI_SATA=y | ||
| 413 | # CONFIG_SCSI_SATA_AHCI is not set | ||
| 414 | # CONFIG_SCSI_SATA_SVW is not set | ||
| 415 | # CONFIG_SCSI_ATA_PIIX is not set | ||
| 416 | # CONFIG_SCSI_SATA_MV is not set | ||
| 417 | # CONFIG_SCSI_SATA_NV is not set | ||
| 418 | # CONFIG_SCSI_SATA_PROMISE is not set | ||
| 419 | # CONFIG_SCSI_SATA_QSTOR is not set | ||
| 420 | # CONFIG_SCSI_SATA_SX4 is not set | ||
| 421 | # CONFIG_SCSI_SATA_SIL is not set | ||
| 422 | # CONFIG_SCSI_SATA_SIS is not set | ||
| 423 | # CONFIG_SCSI_SATA_ULI is not set | ||
| 424 | # CONFIG_SCSI_SATA_VIA is not set | ||
| 425 | CONFIG_SCSI_SATA_VITESSE=y | ||
| 426 | # CONFIG_SCSI_DMX3191D is not set | ||
| 427 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
| 428 | # CONFIG_SCSI_IPS is not set | ||
| 429 | # CONFIG_SCSI_INITIO is not set | ||
| 430 | # CONFIG_SCSI_INIA100 is not set | ||
| 431 | CONFIG_SCSI_SYM53C8XX_2=y | ||
| 432 | CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 | ||
| 433 | CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 | ||
| 434 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | ||
| 435 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set | ||
| 436 | # CONFIG_SCSI_IPR is not set | ||
| 437 | # CONFIG_SCSI_QLOGIC_FC is not set | ||
| 438 | CONFIG_SCSI_QLOGIC_1280=y | ||
| 439 | # CONFIG_SCSI_QLOGIC_1280_1040 is not set | ||
| 440 | CONFIG_SCSI_QLA2XXX=y | ||
| 441 | CONFIG_SCSI_QLA21XX=m | ||
| 442 | CONFIG_SCSI_QLA22XX=m | ||
| 443 | CONFIG_SCSI_QLA2300=m | ||
| 444 | CONFIG_SCSI_QLA2322=m | ||
| 445 | # CONFIG_SCSI_QLA6312 is not set | ||
| 446 | # CONFIG_SCSI_QLA24XX is not set | ||
| 447 | # CONFIG_SCSI_LPFC is not set | ||
| 448 | # CONFIG_SCSI_DC395x is not set | ||
| 449 | # CONFIG_SCSI_DC390T is not set | ||
| 450 | # CONFIG_SCSI_DEBUG is not set | ||
| 451 | |||
| 452 | # | ||
| 453 | # Multi-device support (RAID and LVM) | ||
| 454 | # | ||
| 455 | CONFIG_MD=y | ||
| 456 | CONFIG_BLK_DEV_MD=m | ||
| 457 | CONFIG_MD_LINEAR=m | ||
| 458 | CONFIG_MD_RAID0=m | ||
| 459 | CONFIG_MD_RAID1=m | ||
| 460 | # CONFIG_MD_RAID10 is not set | ||
| 461 | CONFIG_MD_RAID5=m | ||
| 462 | CONFIG_MD_RAID6=m | ||
| 463 | CONFIG_MD_MULTIPATH=m | ||
| 464 | # CONFIG_MD_FAULTY is not set | ||
| 465 | CONFIG_BLK_DEV_DM=m | ||
| 466 | CONFIG_DM_CRYPT=m | ||
| 467 | CONFIG_DM_SNAPSHOT=m | ||
| 468 | CONFIG_DM_MIRROR=m | ||
| 469 | CONFIG_DM_ZERO=m | ||
| 470 | CONFIG_DM_MULTIPATH=m | ||
| 471 | # CONFIG_DM_MULTIPATH_EMC is not set | ||
| 472 | |||
| 473 | # | ||
| 474 | # Fusion MPT device support | ||
| 475 | # | ||
| 476 | CONFIG_FUSION=y | ||
| 477 | CONFIG_FUSION_SPI=y | ||
| 478 | CONFIG_FUSION_FC=m | ||
| 479 | CONFIG_FUSION_MAX_SGE=128 | ||
| 480 | # CONFIG_FUSION_CTL is not set | ||
| 481 | |||
| 482 | # | ||
| 483 | # IEEE 1394 (FireWire) support | ||
| 484 | # | ||
| 485 | # CONFIG_IEEE1394 is not set | ||
| 486 | |||
| 487 | # | ||
| 488 | # I2O device support | ||
| 489 | # | ||
| 490 | # CONFIG_I2O is not set | ||
| 491 | |||
| 492 | # | ||
| 493 | # Network device support | ||
| 494 | # | ||
| 495 | CONFIG_NETDEVICES=y | ||
| 496 | CONFIG_DUMMY=m | ||
| 497 | # CONFIG_BONDING is not set | ||
| 498 | # CONFIG_EQUALIZER is not set | ||
| 499 | # CONFIG_TUN is not set | ||
| 500 | |||
| 501 | # | ||
| 502 | # ARCnet devices | ||
| 503 | # | ||
| 504 | # CONFIG_ARCNET is not set | ||
| 505 | |||
| 506 | # | ||
| 507 | # PHY device support | ||
| 508 | # | ||
| 509 | # CONFIG_PHYLIB is not set | ||
| 510 | |||
| 511 | # | ||
| 512 | # Ethernet (10 or 100Mbit) | ||
| 513 | # | ||
| 514 | CONFIG_NET_ETHERNET=y | ||
| 515 | CONFIG_MII=m | ||
| 516 | # CONFIG_HAPPYMEAL is not set | ||
| 517 | # CONFIG_SUNGEM is not set | ||
| 518 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 519 | |||
| 520 | # | ||
| 521 | # Tulip family network device support | ||
| 522 | # | ||
| 523 | CONFIG_NET_TULIP=y | ||
| 524 | # CONFIG_DE2104X is not set | ||
| 525 | CONFIG_TULIP=m | ||
| 526 | # CONFIG_TULIP_MWI is not set | ||
| 527 | # CONFIG_TULIP_MMIO is not set | ||
| 528 | # CONFIG_TULIP_NAPI is not set | ||
| 529 | # CONFIG_DE4X5 is not set | ||
| 530 | # CONFIG_WINBOND_840 is not set | ||
| 531 | # CONFIG_DM9102 is not set | ||
| 532 | # CONFIG_ULI526X is not set | ||
| 533 | # CONFIG_HP100 is not set | ||
| 534 | CONFIG_NET_PCI=y | ||
| 535 | # CONFIG_PCNET32 is not set | ||
| 536 | # CONFIG_AMD8111_ETH is not set | ||
| 537 | # CONFIG_ADAPTEC_STARFIRE is not set | ||
| 538 | # CONFIG_B44 is not set | ||
| 539 | # CONFIG_FORCEDETH is not set | ||
| 540 | # CONFIG_DGRS is not set | ||
| 541 | CONFIG_EEPRO100=m | ||
| 542 | CONFIG_E100=m | ||
| 543 | # CONFIG_FEALNX is not set | ||
| 544 | # CONFIG_NATSEMI is not set | ||
| 545 | # CONFIG_NE2K_PCI is not set | ||
| 546 | # CONFIG_8139CP is not set | ||
| 547 | # CONFIG_8139TOO is not set | ||
| 548 | # CONFIG_SIS900 is not set | ||
| 549 | # CONFIG_EPIC100 is not set | ||
| 550 | # CONFIG_SUNDANCE is not set | ||
| 551 | # CONFIG_VIA_RHINE is not set | ||
| 552 | |||
| 553 | # | ||
| 554 | # Ethernet (1000 Mbit) | ||
| 555 | # | ||
| 556 | # CONFIG_ACENIC is not set | ||
| 557 | # CONFIG_DL2K is not set | ||
| 558 | CONFIG_E1000=y | ||
| 559 | # CONFIG_E1000_NAPI is not set | ||
| 560 | # CONFIG_NS83820 is not set | ||
| 561 | # CONFIG_HAMACHI is not set | ||
| 562 | # CONFIG_YELLOWFIN is not set | ||
| 563 | # CONFIG_R8169 is not set | ||
| 564 | # CONFIG_SIS190 is not set | ||
| 565 | # CONFIG_SKGE is not set | ||
| 566 | # CONFIG_SK98LIN is not set | ||
| 567 | # CONFIG_VIA_VELOCITY is not set | ||
| 568 | CONFIG_TIGON3=y | ||
| 569 | # CONFIG_BNX2 is not set | ||
| 570 | |||
| 571 | # | ||
| 572 | # Ethernet (10000 Mbit) | ||
| 573 | # | ||
| 574 | # CONFIG_CHELSIO_T1 is not set | ||
| 575 | # CONFIG_IXGB is not set | ||
| 576 | # CONFIG_S2IO is not set | ||
| 577 | |||
| 578 | # | ||
| 579 | # Token Ring devices | ||
| 580 | # | ||
| 581 | # CONFIG_TR is not set | ||
| 582 | |||
| 583 | # | ||
| 584 | # Wireless LAN (non-hamradio) | ||
| 585 | # | ||
| 586 | # CONFIG_NET_RADIO is not set | ||
| 587 | |||
| 588 | # | ||
| 589 | # Wan interfaces | ||
| 590 | # | ||
| 591 | # CONFIG_WAN is not set | ||
| 592 | # CONFIG_FDDI is not set | ||
| 593 | # CONFIG_HIPPI is not set | ||
| 594 | # CONFIG_PPP is not set | ||
| 595 | # CONFIG_SLIP is not set | ||
| 596 | # CONFIG_NET_FC is not set | ||
| 597 | # CONFIG_SHAPER is not set | ||
| 598 | CONFIG_NETCONSOLE=y | ||
| 599 | CONFIG_NETPOLL=y | ||
| 600 | # CONFIG_NETPOLL_RX is not set | ||
| 601 | # CONFIG_NETPOLL_TRAP is not set | ||
| 602 | CONFIG_NET_POLL_CONTROLLER=y | ||
| 603 | |||
| 604 | # | ||
| 605 | # ISDN subsystem | ||
| 606 | # | ||
| 607 | # CONFIG_ISDN is not set | ||
| 608 | |||
| 609 | # | ||
| 610 | # Telephony Support | ||
| 611 | # | ||
| 612 | # CONFIG_PHONE is not set | ||
| 613 | |||
| 614 | # | ||
| 615 | # Input device support | ||
| 616 | # | ||
| 617 | CONFIG_INPUT=y | ||
| 618 | |||
| 619 | # | ||
| 620 | # Userland interfaces | ||
| 621 | # | ||
| 622 | CONFIG_INPUT_MOUSEDEV=y | ||
| 623 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 624 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 625 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 626 | # CONFIG_INPUT_JOYDEV is not set | ||
| 627 | # CONFIG_INPUT_TSDEV is not set | ||
| 628 | # CONFIG_INPUT_EVDEV is not set | ||
| 629 | # CONFIG_INPUT_EVBUG is not set | ||
| 630 | |||
| 631 | # | ||
| 632 | # Input Device Drivers | ||
| 633 | # | ||
| 634 | CONFIG_INPUT_KEYBOARD=y | ||
| 635 | CONFIG_KEYBOARD_ATKBD=y | ||
| 636 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 637 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 638 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 639 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 640 | CONFIG_INPUT_MOUSE=y | ||
| 641 | CONFIG_MOUSE_PS2=y | ||
| 642 | # CONFIG_MOUSE_SERIAL is not set | ||
| 643 | # CONFIG_MOUSE_VSXXXAA is not set | ||
| 644 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 645 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 646 | # CONFIG_INPUT_MISC is not set | ||
| 647 | |||
| 648 | # | ||
| 649 | # Hardware I/O ports | ||
| 650 | # | ||
| 651 | CONFIG_SERIO=y | ||
| 652 | CONFIG_SERIO_I8042=y | ||
| 653 | # CONFIG_SERIO_SERPORT is not set | ||
| 654 | # CONFIG_SERIO_PCIPS2 is not set | ||
| 655 | CONFIG_SERIO_LIBPS2=y | ||
| 656 | # CONFIG_SERIO_RAW is not set | ||
| 657 | CONFIG_GAMEPORT=m | ||
| 658 | # CONFIG_GAMEPORT_NS558 is not set | ||
| 659 | # CONFIG_GAMEPORT_L4 is not set | ||
| 660 | # CONFIG_GAMEPORT_EMU10K1 is not set | ||
| 661 | # CONFIG_GAMEPORT_FM801 is not set | ||
| 662 | |||
| 663 | # | ||
| 664 | # Character devices | ||
| 665 | # | ||
| 666 | CONFIG_VT=y | ||
| 667 | CONFIG_VT_CONSOLE=y | ||
| 668 | CONFIG_HW_CONSOLE=y | ||
| 669 | CONFIG_SERIAL_NONSTANDARD=y | ||
| 670 | # CONFIG_ROCKETPORT is not set | ||
| 671 | # CONFIG_CYCLADES is not set | ||
| 672 | # CONFIG_DIGIEPCA is not set | ||
| 673 | # CONFIG_MOXA_SMARTIO is not set | ||
| 674 | # CONFIG_ISI is not set | ||
| 675 | # CONFIG_SYNCLINKMP is not set | ||
| 676 | # CONFIG_N_HDLC is not set | ||
| 677 | # CONFIG_SPECIALIX is not set | ||
| 678 | # CONFIG_SX is not set | ||
| 679 | # CONFIG_STALDRV is not set | ||
| 680 | CONFIG_SGI_SNSC=y | ||
| 681 | CONFIG_SGI_TIOCX=y | ||
| 682 | CONFIG_SGI_MBCS=m | ||
| 683 | |||
| 684 | # | ||
| 685 | # Serial drivers | ||
| 686 | # | ||
| 687 | CONFIG_SERIAL_8250=y | ||
| 688 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 689 | CONFIG_SERIAL_8250_ACPI=y | ||
| 690 | CONFIG_SERIAL_8250_NR_UARTS=6 | ||
| 691 | CONFIG_SERIAL_8250_EXTENDED=y | ||
| 692 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
| 693 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set | ||
| 694 | # CONFIG_SERIAL_8250_RSA is not set | ||
| 695 | |||
| 696 | # | ||
| 697 | # Non-8250 serial port support | ||
| 698 | # | ||
| 699 | CONFIG_SERIAL_CORE=y | ||
| 700 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 701 | CONFIG_SERIAL_SGI_L1_CONSOLE=y | ||
| 702 | # CONFIG_SERIAL_JSM is not set | ||
| 703 | CONFIG_SERIAL_SGI_IOC4=y | ||
| 704 | CONFIG_UNIX98_PTYS=y | ||
| 705 | CONFIG_LEGACY_PTYS=y | ||
| 706 | CONFIG_LEGACY_PTY_COUNT=256 | ||
| 707 | |||
| 708 | # | ||
| 709 | # IPMI | ||
| 710 | # | ||
| 711 | # CONFIG_IPMI_HANDLER is not set | ||
| 712 | |||
| 713 | # | ||
| 714 | # Watchdog Cards | ||
| 715 | # | ||
| 716 | # CONFIG_WATCHDOG is not set | ||
| 717 | # CONFIG_HW_RANDOM is not set | ||
| 718 | CONFIG_EFI_RTC=y | ||
| 719 | # CONFIG_DTLK is not set | ||
| 720 | # CONFIG_R3964 is not set | ||
| 721 | # CONFIG_APPLICOM is not set | ||
| 722 | |||
| 723 | # | ||
| 724 | # Ftape, the floppy tape device driver | ||
| 725 | # | ||
| 726 | CONFIG_AGP=m | ||
| 727 | CONFIG_AGP_I460=m | ||
| 728 | CONFIG_AGP_HP_ZX1=m | ||
| 729 | CONFIG_AGP_SGI_TIOCA=m | ||
| 730 | CONFIG_DRM=m | ||
| 731 | CONFIG_DRM_TDFX=m | ||
| 732 | CONFIG_DRM_R128=m | ||
| 733 | CONFIG_DRM_RADEON=m | ||
| 734 | CONFIG_DRM_MGA=m | ||
| 735 | CONFIG_DRM_SIS=m | ||
| 736 | # CONFIG_DRM_VIA is not set | ||
| 737 | # CONFIG_DRM_SAVAGE is not set | ||
| 738 | CONFIG_RAW_DRIVER=m | ||
| 739 | CONFIG_HPET=y | ||
| 740 | # CONFIG_HPET_RTC_IRQ is not set | ||
| 741 | CONFIG_HPET_MMAP=y | ||
| 742 | CONFIG_MAX_RAW_DEVS=256 | ||
| 743 | # CONFIG_HANGCHECK_TIMER is not set | ||
| 744 | CONFIG_MMTIMER=y | ||
| 745 | |||
| 746 | # | ||
| 747 | # TPM devices | ||
| 748 | # | ||
| 749 | # CONFIG_TCG_TPM is not set | ||
| 750 | |||
| 751 | # | ||
| 752 | # I2C support | ||
| 753 | # | ||
| 754 | # CONFIG_I2C is not set | ||
| 755 | |||
| 756 | # | ||
| 757 | # Dallas's 1-wire bus | ||
| 758 | # | ||
| 759 | # CONFIG_W1 is not set | ||
| 760 | |||
| 761 | # | ||
| 762 | # Hardware Monitoring support | ||
| 763 | # | ||
| 764 | CONFIG_HWMON=y | ||
| 765 | # CONFIG_HWMON_VID is not set | ||
| 766 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 767 | |||
| 768 | # | ||
| 769 | # Misc devices | ||
| 770 | # | ||
| 771 | |||
| 772 | # | ||
| 773 | # Multimedia Capabilities Port drivers | ||
| 774 | # | ||
| 775 | |||
| 776 | # | ||
| 777 | # Multimedia devices | ||
| 778 | # | ||
| 779 | # CONFIG_VIDEO_DEV is not set | ||
| 780 | |||
| 781 | # | ||
| 782 | # Digital Video Broadcasting Devices | ||
| 783 | # | ||
| 784 | # CONFIG_DVB is not set | ||
| 785 | |||
| 786 | # | ||
| 787 | # Graphics support | ||
| 788 | # | ||
| 789 | # CONFIG_FB is not set | ||
| 790 | |||
| 791 | # | ||
| 792 | # Console display driver support | ||
| 793 | # | ||
| 794 | CONFIG_VGA_CONSOLE=y | ||
| 795 | CONFIG_DUMMY_CONSOLE=y | ||
| 796 | |||
| 797 | # | ||
| 798 | # Sound | ||
| 799 | # | ||
| 800 | CONFIG_SOUND=m | ||
| 801 | |||
| 802 | # | ||
| 803 | # Advanced Linux Sound Architecture | ||
| 804 | # | ||
| 805 | CONFIG_SND=m | ||
| 806 | CONFIG_SND_TIMER=m | ||
| 807 | CONFIG_SND_PCM=m | ||
| 808 | CONFIG_SND_HWDEP=m | ||
| 809 | CONFIG_SND_RAWMIDI=m | ||
| 810 | CONFIG_SND_SEQUENCER=m | ||
| 811 | CONFIG_SND_SEQ_DUMMY=m | ||
| 812 | CONFIG_SND_OSSEMUL=y | ||
| 813 | CONFIG_SND_MIXER_OSS=m | ||
| 814 | CONFIG_SND_PCM_OSS=m | ||
| 815 | CONFIG_SND_SEQUENCER_OSS=y | ||
| 816 | CONFIG_SND_VERBOSE_PRINTK=y | ||
| 817 | # CONFIG_SND_DEBUG is not set | ||
| 818 | CONFIG_SND_GENERIC_DRIVER=y | ||
| 819 | |||
| 820 | # | ||
| 821 | # Generic devices | ||
| 822 | # | ||
| 823 | CONFIG_SND_MPU401_UART=m | ||
| 824 | CONFIG_SND_OPL3_LIB=m | ||
| 825 | CONFIG_SND_DUMMY=m | ||
| 826 | CONFIG_SND_VIRMIDI=m | ||
| 827 | CONFIG_SND_MTPAV=m | ||
| 828 | CONFIG_SND_SERIAL_U16550=m | ||
| 829 | CONFIG_SND_MPU401=m | ||
| 830 | CONFIG_SND_AC97_CODEC=m | ||
| 831 | CONFIG_SND_AC97_BUS=m | ||
| 832 | |||
| 833 | # | ||
| 834 | # PCI devices | ||
| 835 | # | ||
| 836 | # CONFIG_SND_ALI5451 is not set | ||
| 837 | # CONFIG_SND_ATIIXP is not set | ||
| 838 | # CONFIG_SND_ATIIXP_MODEM is not set | ||
| 839 | # CONFIG_SND_AU8810 is not set | ||
| 840 | # CONFIG_SND_AU8820 is not set | ||
| 841 | # CONFIG_SND_AU8830 is not set | ||
| 842 | # CONFIG_SND_AZT3328 is not set | ||
| 843 | # CONFIG_SND_BT87X is not set | ||
| 844 | CONFIG_SND_CS46XX=m | ||
| 845 | CONFIG_SND_CS46XX_NEW_DSP=y | ||
| 846 | CONFIG_SND_CS4281=m | ||
| 847 | CONFIG_SND_EMU10K1=m | ||
| 848 | # CONFIG_SND_EMU10K1X is not set | ||
| 849 | # CONFIG_SND_CA0106 is not set | ||
| 850 | # CONFIG_SND_KORG1212 is not set | ||
| 851 | # CONFIG_SND_MIXART is not set | ||
| 852 | # CONFIG_SND_NM256 is not set | ||
| 853 | # CONFIG_SND_RME32 is not set | ||
| 854 | # CONFIG_SND_RME96 is not set | ||
| 855 | # CONFIG_SND_RME9652 is not set | ||
| 856 | # CONFIG_SND_HDSP is not set | ||
| 857 | # CONFIG_SND_HDSPM is not set | ||
| 858 | # CONFIG_SND_TRIDENT is not set | ||
| 859 | # CONFIG_SND_YMFPCI is not set | ||
| 860 | # CONFIG_SND_AD1889 is not set | ||
| 861 | # CONFIG_SND_CMIPCI is not set | ||
| 862 | # CONFIG_SND_ENS1370 is not set | ||
| 863 | # CONFIG_SND_ENS1371 is not set | ||
| 864 | # CONFIG_SND_ES1938 is not set | ||
| 865 | # CONFIG_SND_ES1968 is not set | ||
| 866 | # CONFIG_SND_MAESTRO3 is not set | ||
| 867 | CONFIG_SND_FM801=m | ||
| 868 | # CONFIG_SND_FM801_TEA575X is not set | ||
| 869 | # CONFIG_SND_ICE1712 is not set | ||
| 870 | # CONFIG_SND_ICE1724 is not set | ||
| 871 | # CONFIG_SND_INTEL8X0 is not set | ||
| 872 | # CONFIG_SND_INTEL8X0M is not set | ||
| 873 | # CONFIG_SND_SONICVIBES is not set | ||
| 874 | # CONFIG_SND_VIA82XX is not set | ||
| 875 | # CONFIG_SND_VIA82XX_MODEM is not set | ||
| 876 | # CONFIG_SND_VX222 is not set | ||
| 877 | # CONFIG_SND_HDA_INTEL is not set | ||
| 878 | |||
| 879 | # | ||
| 880 | # USB devices | ||
| 881 | # | ||
| 882 | # CONFIG_SND_USB_AUDIO is not set | ||
| 883 | |||
| 884 | # | ||
| 885 | # Open Sound System | ||
| 886 | # | ||
| 887 | # CONFIG_SOUND_PRIME is not set | ||
| 888 | |||
| 889 | # | ||
| 890 | # USB support | ||
| 891 | # | ||
| 892 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 893 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 894 | CONFIG_USB=m | ||
| 895 | # CONFIG_USB_DEBUG is not set | ||
| 896 | |||
| 897 | # | ||
| 898 | # Miscellaneous USB options | ||
| 899 | # | ||
| 900 | CONFIG_USB_DEVICEFS=y | ||
| 901 | # CONFIG_USB_BANDWIDTH is not set | ||
| 902 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 903 | # CONFIG_USB_SUSPEND is not set | ||
| 904 | # CONFIG_USB_OTG is not set | ||
| 905 | |||
| 906 | # | ||
| 907 | # USB Host Controller Drivers | ||
| 908 | # | ||
| 909 | CONFIG_USB_EHCI_HCD=m | ||
| 910 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
| 911 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | ||
| 912 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 913 | CONFIG_USB_OHCI_HCD=m | ||
| 914 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set | ||
| 915 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 916 | CONFIG_USB_UHCI_HCD=m | ||
| 917 | # CONFIG_USB_SL811_HCD is not set | ||
| 918 | |||
| 919 | # | ||
| 920 | # USB Device Class drivers | ||
| 921 | # | ||
| 922 | # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set | ||
| 923 | # CONFIG_USB_BLUETOOTH_TTY is not set | ||
| 924 | # CONFIG_USB_ACM is not set | ||
| 925 | # CONFIG_USB_PRINTER is not set | ||
| 926 | |||
| 927 | # | ||
| 928 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | ||
| 929 | # | ||
| 930 | CONFIG_USB_STORAGE=m | ||
| 931 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 932 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
| 933 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
| 934 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
| 935 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 936 | # CONFIG_USB_STORAGE_USBAT is not set | ||
| 937 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
| 938 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
| 939 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
| 940 | |||
| 941 | # | ||
| 942 | # USB Input Devices | ||
| 943 | # | ||
| 944 | CONFIG_USB_HID=m | ||
| 945 | CONFIG_USB_HIDINPUT=y | ||
| 946 | # CONFIG_HID_FF is not set | ||
| 947 | # CONFIG_USB_HIDDEV is not set | ||
| 948 | |||
| 949 | # | ||
| 950 | # USB HID Boot Protocol drivers | ||
| 951 | # | ||
| 952 | # CONFIG_USB_KBD is not set | ||
| 953 | # CONFIG_USB_MOUSE is not set | ||
| 954 | # CONFIG_USB_AIPTEK is not set | ||
| 955 | # CONFIG_USB_WACOM is not set | ||
| 956 | # CONFIG_USB_ACECAD is not set | ||
| 957 | # CONFIG_USB_KBTAB is not set | ||
| 958 | # CONFIG_USB_POWERMATE is not set | ||
| 959 | # CONFIG_USB_MTOUCH is not set | ||
| 960 | # CONFIG_USB_ITMTOUCH is not set | ||
| 961 | # CONFIG_USB_EGALAX is not set | ||
| 962 | # CONFIG_USB_YEALINK is not set | ||
| 963 | # CONFIG_USB_XPAD is not set | ||
| 964 | # CONFIG_USB_ATI_REMOTE is not set | ||
| 965 | # CONFIG_USB_KEYSPAN_REMOTE is not set | ||
| 966 | # CONFIG_USB_APPLETOUCH is not set | ||
| 967 | |||
| 968 | # | ||
| 969 | # USB Imaging devices | ||
| 970 | # | ||
| 971 | # CONFIG_USB_MDC800 is not set | ||
| 972 | # CONFIG_USB_MICROTEK is not set | ||
| 973 | |||
| 974 | # | ||
| 975 | # USB Multimedia devices | ||
| 976 | # | ||
| 977 | # CONFIG_USB_DABUSB is not set | ||
| 978 | |||
| 979 | # | ||
| 980 | # Video4Linux support is needed for USB Multimedia device support | ||
| 981 | # | ||
| 982 | |||
| 983 | # | ||
| 984 | # USB Network Adapters | ||
| 985 | # | ||
| 986 | # CONFIG_USB_CATC is not set | ||
| 987 | # CONFIG_USB_KAWETH is not set | ||
| 988 | # CONFIG_USB_PEGASUS is not set | ||
| 989 | # CONFIG_USB_RTL8150 is not set | ||
| 990 | # CONFIG_USB_USBNET is not set | ||
| 991 | CONFIG_USB_MON=y | ||
| 992 | |||
| 993 | # | ||
| 994 | # USB port drivers | ||
| 995 | # | ||
| 996 | |||
| 997 | # | ||
| 998 | # USB Serial Converter support | ||
| 999 | # | ||
| 1000 | # CONFIG_USB_SERIAL is not set | ||
| 1001 | |||
| 1002 | # | ||
| 1003 | # USB Miscellaneous drivers | ||
| 1004 | # | ||
| 1005 | # CONFIG_USB_EMI62 is not set | ||
| 1006 | # CONFIG_USB_EMI26 is not set | ||
| 1007 | # CONFIG_USB_AUERSWALD is not set | ||
| 1008 | # CONFIG_USB_RIO500 is not set | ||
| 1009 | # CONFIG_USB_LEGOTOWER is not set | ||
| 1010 | # CONFIG_USB_LCD is not set | ||
| 1011 | # CONFIG_USB_LED is not set | ||
| 1012 | # CONFIG_USB_CYTHERM is not set | ||
| 1013 | # CONFIG_USB_PHIDGETKIT is not set | ||
| 1014 | # CONFIG_USB_PHIDGETSERVO is not set | ||
| 1015 | # CONFIG_USB_IDMOUSE is not set | ||
| 1016 | # CONFIG_USB_SISUSBVGA is not set | ||
| 1017 | # CONFIG_USB_LD is not set | ||
| 1018 | # CONFIG_USB_TEST is not set | ||
| 1019 | |||
| 1020 | # | ||
| 1021 | # USB DSL modem support | ||
| 1022 | # | ||
| 1023 | |||
| 1024 | # | ||
| 1025 | # USB Gadget Support | ||
| 1026 | # | ||
| 1027 | # CONFIG_USB_GADGET is not set | ||
| 1028 | |||
| 1029 | # | ||
| 1030 | # MMC/SD Card support | ||
| 1031 | # | ||
| 1032 | # CONFIG_MMC is not set | ||
| 1033 | |||
| 1034 | # | ||
| 1035 | # InfiniBand support | ||
| 1036 | # | ||
| 1037 | CONFIG_INFINIBAND=m | ||
| 1038 | # CONFIG_INFINIBAND_USER_MAD is not set | ||
| 1039 | # CONFIG_INFINIBAND_USER_ACCESS is not set | ||
| 1040 | CONFIG_INFINIBAND_MTHCA=m | ||
| 1041 | # CONFIG_INFINIBAND_MTHCA_DEBUG is not set | ||
| 1042 | CONFIG_INFINIBAND_IPOIB=m | ||
| 1043 | # CONFIG_INFINIBAND_IPOIB_DEBUG is not set | ||
| 1044 | |||
| 1045 | # | ||
| 1046 | # SN Devices | ||
| 1047 | # | ||
| 1048 | CONFIG_SGI_IOC4=y | ||
| 1049 | |||
| 1050 | # | ||
| 1051 | # File systems | ||
| 1052 | # | ||
| 1053 | CONFIG_EXT2_FS=y | ||
| 1054 | CONFIG_EXT2_FS_XATTR=y | ||
| 1055 | CONFIG_EXT2_FS_POSIX_ACL=y | ||
| 1056 | CONFIG_EXT2_FS_SECURITY=y | ||
| 1057 | # CONFIG_EXT2_FS_XIP is not set | ||
| 1058 | CONFIG_EXT3_FS=y | ||
| 1059 | CONFIG_EXT3_FS_XATTR=y | ||
| 1060 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
| 1061 | CONFIG_EXT3_FS_SECURITY=y | ||
| 1062 | CONFIG_JBD=y | ||
| 1063 | # CONFIG_JBD_DEBUG is not set | ||
| 1064 | CONFIG_FS_MBCACHE=y | ||
| 1065 | CONFIG_REISERFS_FS=y | ||
| 1066 | # CONFIG_REISERFS_CHECK is not set | ||
| 1067 | # CONFIG_REISERFS_PROC_INFO is not set | ||
| 1068 | CONFIG_REISERFS_FS_XATTR=y | ||
| 1069 | CONFIG_REISERFS_FS_POSIX_ACL=y | ||
| 1070 | CONFIG_REISERFS_FS_SECURITY=y | ||
| 1071 | # CONFIG_JFS_FS is not set | ||
| 1072 | CONFIG_FS_POSIX_ACL=y | ||
| 1073 | CONFIG_XFS_FS=y | ||
| 1074 | CONFIG_XFS_EXPORT=y | ||
| 1075 | # CONFIG_XFS_QUOTA is not set | ||
| 1076 | # CONFIG_XFS_SECURITY is not set | ||
| 1077 | # CONFIG_XFS_POSIX_ACL is not set | ||
| 1078 | # CONFIG_XFS_RT is not set | ||
| 1079 | # CONFIG_MINIX_FS is not set | ||
| 1080 | # CONFIG_ROMFS_FS is not set | ||
| 1081 | CONFIG_INOTIFY=y | ||
| 1082 | # CONFIG_QUOTA is not set | ||
| 1083 | CONFIG_DNOTIFY=y | ||
| 1084 | CONFIG_AUTOFS_FS=y | ||
| 1085 | CONFIG_AUTOFS4_FS=y | ||
| 1086 | # CONFIG_FUSE_FS is not set | ||
| 1087 | |||
| 1088 | # | ||
| 1089 | # CD-ROM/DVD Filesystems | ||
| 1090 | # | ||
| 1091 | CONFIG_ISO9660_FS=m | ||
| 1092 | CONFIG_JOLIET=y | ||
| 1093 | # CONFIG_ZISOFS is not set | ||
| 1094 | CONFIG_UDF_FS=m | ||
| 1095 | CONFIG_UDF_NLS=y | ||
| 1096 | |||
| 1097 | # | ||
| 1098 | # DOS/FAT/NT Filesystems | ||
| 1099 | # | ||
| 1100 | CONFIG_FAT_FS=y | ||
| 1101 | # CONFIG_MSDOS_FS is not set | ||
| 1102 | CONFIG_VFAT_FS=y | ||
| 1103 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
| 1104 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
| 1105 | CONFIG_NTFS_FS=m | ||
| 1106 | # CONFIG_NTFS_DEBUG is not set | ||
| 1107 | # CONFIG_NTFS_RW is not set | ||
| 1108 | |||
| 1109 | # | ||
| 1110 | # Pseudo filesystems | ||
| 1111 | # | ||
| 1112 | CONFIG_PROC_FS=y | ||
| 1113 | CONFIG_PROC_KCORE=y | ||
| 1114 | CONFIG_SYSFS=y | ||
| 1115 | CONFIG_TMPFS=y | ||
| 1116 | CONFIG_HUGETLBFS=y | ||
| 1117 | CONFIG_HUGETLB_PAGE=y | ||
| 1118 | CONFIG_RAMFS=y | ||
| 1119 | # CONFIG_RELAYFS_FS is not set | ||
| 1120 | |||
| 1121 | # | ||
| 1122 | # Miscellaneous filesystems | ||
| 1123 | # | ||
| 1124 | # CONFIG_ADFS_FS is not set | ||
| 1125 | # CONFIG_AFFS_FS is not set | ||
| 1126 | # CONFIG_HFS_FS is not set | ||
| 1127 | # CONFIG_HFSPLUS_FS is not set | ||
| 1128 | # CONFIG_BEFS_FS is not set | ||
| 1129 | # CONFIG_BFS_FS is not set | ||
| 1130 | # CONFIG_EFS_FS is not set | ||
| 1131 | # CONFIG_CRAMFS is not set | ||
| 1132 | # CONFIG_VXFS_FS is not set | ||
| 1133 | # CONFIG_HPFS_FS is not set | ||
| 1134 | # CONFIG_QNX4FS_FS is not set | ||
| 1135 | # CONFIG_SYSV_FS is not set | ||
| 1136 | # CONFIG_UFS_FS is not set | ||
| 1137 | |||
| 1138 | # | ||
| 1139 | # Network File Systems | ||
| 1140 | # | ||
| 1141 | CONFIG_NFS_FS=m | ||
| 1142 | CONFIG_NFS_V3=y | ||
| 1143 | # CONFIG_NFS_V3_ACL is not set | ||
| 1144 | CONFIG_NFS_V4=y | ||
| 1145 | CONFIG_NFS_DIRECTIO=y | ||
| 1146 | CONFIG_NFSD=m | ||
| 1147 | CONFIG_NFSD_V3=y | ||
| 1148 | # CONFIG_NFSD_V3_ACL is not set | ||
| 1149 | CONFIG_NFSD_V4=y | ||
| 1150 | CONFIG_NFSD_TCP=y | ||
| 1151 | CONFIG_LOCKD=m | ||
| 1152 | CONFIG_LOCKD_V4=y | ||
| 1153 | CONFIG_EXPORTFS=y | ||
| 1154 | CONFIG_NFS_COMMON=y | ||
| 1155 | CONFIG_SUNRPC=m | ||
| 1156 | CONFIG_SUNRPC_GSS=m | ||
| 1157 | CONFIG_RPCSEC_GSS_KRB5=m | ||
| 1158 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 1159 | CONFIG_SMB_FS=m | ||
| 1160 | CONFIG_SMB_NLS_DEFAULT=y | ||
| 1161 | CONFIG_SMB_NLS_REMOTE="cp437" | ||
| 1162 | CONFIG_CIFS=m | ||
| 1163 | # CONFIG_CIFS_STATS is not set | ||
| 1164 | # CONFIG_CIFS_XATTR is not set | ||
| 1165 | # CONFIG_CIFS_EXPERIMENTAL is not set | ||
| 1166 | # CONFIG_NCP_FS is not set | ||
| 1167 | # CONFIG_CODA_FS is not set | ||
| 1168 | # CONFIG_AFS_FS is not set | ||
| 1169 | # CONFIG_9P_FS is not set | ||
| 1170 | |||
| 1171 | # | ||
| 1172 | # Partition Types | ||
| 1173 | # | ||
| 1174 | CONFIG_PARTITION_ADVANCED=y | ||
| 1175 | # CONFIG_ACORN_PARTITION is not set | ||
| 1176 | # CONFIG_OSF_PARTITION is not set | ||
| 1177 | # CONFIG_AMIGA_PARTITION is not set | ||
| 1178 | # CONFIG_ATARI_PARTITION is not set | ||
| 1179 | # CONFIG_MAC_PARTITION is not set | ||
| 1180 | CONFIG_MSDOS_PARTITION=y | ||
| 1181 | # CONFIG_BSD_DISKLABEL is not set | ||
| 1182 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 1183 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 1184 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 1185 | # CONFIG_LDM_PARTITION is not set | ||
| 1186 | CONFIG_SGI_PARTITION=y | ||
| 1187 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 1188 | # CONFIG_SUN_PARTITION is not set | ||
| 1189 | CONFIG_EFI_PARTITION=y | ||
| 1190 | |||
| 1191 | # | ||
| 1192 | # Native Language Support | ||
| 1193 | # | ||
| 1194 | CONFIG_NLS=y | ||
| 1195 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 1196 | CONFIG_NLS_CODEPAGE_437=y | ||
| 1197 | CONFIG_NLS_CODEPAGE_737=m | ||
| 1198 | CONFIG_NLS_CODEPAGE_775=m | ||
| 1199 | CONFIG_NLS_CODEPAGE_850=m | ||
| 1200 | CONFIG_NLS_CODEPAGE_852=m | ||
| 1201 | CONFIG_NLS_CODEPAGE_855=m | ||
| 1202 | CONFIG_NLS_CODEPAGE_857=m | ||
| 1203 | CONFIG_NLS_CODEPAGE_860=m | ||
| 1204 | CONFIG_NLS_CODEPAGE_861=m | ||
| 1205 | CONFIG_NLS_CODEPAGE_862=m | ||
| 1206 | CONFIG_NLS_CODEPAGE_863=m | ||
| 1207 | CONFIG_NLS_CODEPAGE_864=m | ||
| 1208 | CONFIG_NLS_CODEPAGE_865=m | ||
| 1209 | CONFIG_NLS_CODEPAGE_866=m | ||
| 1210 | CONFIG_NLS_CODEPAGE_869=m | ||
| 1211 | CONFIG_NLS_CODEPAGE_936=m | ||
| 1212 | CONFIG_NLS_CODEPAGE_950=m | ||
| 1213 | CONFIG_NLS_CODEPAGE_932=m | ||
| 1214 | CONFIG_NLS_CODEPAGE_949=m | ||
| 1215 | CONFIG_NLS_CODEPAGE_874=m | ||
| 1216 | CONFIG_NLS_ISO8859_8=m | ||
| 1217 | CONFIG_NLS_CODEPAGE_1250=m | ||
| 1218 | CONFIG_NLS_CODEPAGE_1251=m | ||
| 1219 | # CONFIG_NLS_ASCII is not set | ||
| 1220 | CONFIG_NLS_ISO8859_1=y | ||
| 1221 | CONFIG_NLS_ISO8859_2=m | ||
| 1222 | CONFIG_NLS_ISO8859_3=m | ||
| 1223 | CONFIG_NLS_ISO8859_4=m | ||
| 1224 | CONFIG_NLS_ISO8859_5=m | ||
| 1225 | CONFIG_NLS_ISO8859_6=m | ||
| 1226 | CONFIG_NLS_ISO8859_7=m | ||
| 1227 | CONFIG_NLS_ISO8859_9=m | ||
| 1228 | CONFIG_NLS_ISO8859_13=m | ||
| 1229 | CONFIG_NLS_ISO8859_14=m | ||
| 1230 | CONFIG_NLS_ISO8859_15=m | ||
| 1231 | CONFIG_NLS_KOI8_R=m | ||
| 1232 | CONFIG_NLS_KOI8_U=m | ||
| 1233 | CONFIG_NLS_UTF8=m | ||
| 1234 | |||
| 1235 | # | ||
| 1236 | # Library routines | ||
| 1237 | # | ||
| 1238 | # CONFIG_CRC_CCITT is not set | ||
| 1239 | # CONFIG_CRC16 is not set | ||
| 1240 | CONFIG_CRC32=y | ||
| 1241 | # CONFIG_LIBCRC32C is not set | ||
| 1242 | CONFIG_GENERIC_HARDIRQS=y | ||
| 1243 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 1244 | CONFIG_GENERIC_PENDING_IRQ=y | ||
| 1245 | |||
| 1246 | # | ||
| 1247 | # HP Simulator drivers | ||
| 1248 | # | ||
| 1249 | # CONFIG_HP_SIMETH is not set | ||
| 1250 | # CONFIG_HP_SIMSERIAL is not set | ||
| 1251 | # CONFIG_HP_SIMSCSI is not set | ||
| 1252 | |||
| 1253 | # | ||
| 1254 | # Profiling support | ||
| 1255 | # | ||
| 1256 | # CONFIG_PROFILING is not set | ||
| 1257 | |||
| 1258 | # | ||
| 1259 | # Kernel hacking | ||
| 1260 | # | ||
| 1261 | # CONFIG_PRINTK_TIME is not set | ||
| 1262 | CONFIG_DEBUG_KERNEL=y | ||
| 1263 | CONFIG_MAGIC_SYSRQ=y | ||
| 1264 | CONFIG_LOG_BUF_SHIFT=20 | ||
| 1265 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1266 | # CONFIG_SCHEDSTATS is not set | ||
| 1267 | # CONFIG_DEBUG_SLAB is not set | ||
| 1268 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1269 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1270 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1271 | # CONFIG_DEBUG_INFO is not set | ||
| 1272 | # CONFIG_DEBUG_FS is not set | ||
| 1273 | # CONFIG_KPROBES is not set | ||
| 1274 | CONFIG_IA64_GRANULE_16MB=y | ||
| 1275 | # CONFIG_IA64_GRANULE_64MB is not set | ||
| 1276 | # CONFIG_IA64_PRINT_HAZARDS is not set | ||
| 1277 | # CONFIG_DISABLE_VHPT is not set | ||
| 1278 | # CONFIG_IA64_DEBUG_CMPXCHG is not set | ||
| 1279 | # CONFIG_IA64_DEBUG_IRQ is not set | ||
| 1280 | CONFIG_SYSVIPC_COMPAT=y | ||
| 1281 | |||
| 1282 | # | ||
| 1283 | # Security options | ||
| 1284 | # | ||
| 1285 | # CONFIG_KEYS is not set | ||
| 1286 | # CONFIG_SECURITY is not set | ||
| 1287 | |||
| 1288 | # | ||
| 1289 | # Cryptographic options | ||
| 1290 | # | ||
| 1291 | CONFIG_CRYPTO=y | ||
| 1292 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1293 | # CONFIG_CRYPTO_NULL is not set | ||
| 1294 | # CONFIG_CRYPTO_MD4 is not set | ||
| 1295 | CONFIG_CRYPTO_MD5=y | ||
| 1296 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 1297 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 1298 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 1299 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1300 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1301 | CONFIG_CRYPTO_DES=m | ||
| 1302 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1303 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1304 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1305 | # CONFIG_CRYPTO_AES is not set | ||
| 1306 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1307 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1308 | # CONFIG_CRYPTO_TEA is not set | ||
| 1309 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1310 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1311 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1312 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1313 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1314 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1315 | # CONFIG_CRYPTO_TEST is not set | ||
| 1316 | |||
| 1317 | # | ||
| 1318 | # Hardware crypto devices | ||
| 1319 | # | ||
diff --git a/arch/ia64/mm/Makefile b/arch/ia64/mm/Makefile index 7078f67887ec..d78d20f0a0f0 100644 --- a/arch/ia64/mm/Makefile +++ b/arch/ia64/mm/Makefile | |||
| @@ -7,6 +7,5 @@ obj-y := init.o fault.o tlb.o extable.o | |||
| 7 | obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o | 7 | obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o |
| 8 | obj-$(CONFIG_NUMA) += numa.o | 8 | obj-$(CONFIG_NUMA) += numa.o |
| 9 | obj-$(CONFIG_DISCONTIGMEM) += discontig.o | 9 | obj-$(CONFIG_DISCONTIGMEM) += discontig.o |
| 10 | ifndef CONFIG_DISCONTIGMEM | 10 | obj-$(CONFIG_SPARSEMEM) += discontig.o |
| 11 | obj-y += contig.o | 11 | obj-$(CONFIG_FLATMEM) += contig.o |
| 12 | endif | ||
diff --git a/arch/ia64/mm/contig.c b/arch/ia64/mm/contig.c index 91a055f5731f..acaaec4e4681 100644 --- a/arch/ia64/mm/contig.c +++ b/arch/ia64/mm/contig.c | |||
| @@ -269,7 +269,7 @@ paging_init (void) | |||
| 269 | efi_memmap_walk(find_largest_hole, (u64 *)&max_gap); | 269 | efi_memmap_walk(find_largest_hole, (u64 *)&max_gap); |
| 270 | if (max_gap < LARGE_GAP) { | 270 | if (max_gap < LARGE_GAP) { |
| 271 | vmem_map = (struct page *) 0; | 271 | vmem_map = (struct page *) 0; |
| 272 | free_area_init_node(0, &contig_page_data, zones_size, 0, | 272 | free_area_init_node(0, NODE_DATA(0), zones_size, 0, |
| 273 | zholes_size); | 273 | zholes_size); |
| 274 | } else { | 274 | } else { |
| 275 | unsigned long map_size; | 275 | unsigned long map_size; |
| @@ -282,7 +282,7 @@ paging_init (void) | |||
| 282 | efi_memmap_walk(create_mem_map_page_table, NULL); | 282 | efi_memmap_walk(create_mem_map_page_table, NULL); |
| 283 | 283 | ||
| 284 | NODE_DATA(0)->node_mem_map = vmem_map; | 284 | NODE_DATA(0)->node_mem_map = vmem_map; |
| 285 | free_area_init_node(0, &contig_page_data, zones_size, | 285 | free_area_init_node(0, NODE_DATA(0), zones_size, |
| 286 | 0, zholes_size); | 286 | 0, zholes_size); |
| 287 | 287 | ||
| 288 | printk("Virtual mem_map starts at 0x%p\n", mem_map); | 288 | printk("Virtual mem_map starts at 0x%p\n", mem_map); |
diff --git a/arch/ia64/mm/discontig.c b/arch/ia64/mm/discontig.c index b5c90e548195..a3788fb84809 100644 --- a/arch/ia64/mm/discontig.c +++ b/arch/ia64/mm/discontig.c | |||
| @@ -421,6 +421,37 @@ static void __init memory_less_nodes(void) | |||
| 421 | return; | 421 | return; |
| 422 | } | 422 | } |
| 423 | 423 | ||
| 424 | #ifdef CONFIG_SPARSEMEM | ||
| 425 | /** | ||
| 426 | * register_sparse_mem - notify SPARSEMEM that this memory range exists. | ||
| 427 | * @start: physical start of range | ||
| 428 | * @end: physical end of range | ||
| 429 | * @arg: unused | ||
| 430 | * | ||
| 431 | * Simply calls SPARSEMEM to register memory section(s). | ||
| 432 | */ | ||
| 433 | static int __init register_sparse_mem(unsigned long start, unsigned long end, | ||
| 434 | void *arg) | ||
| 435 | { | ||
| 436 | int nid; | ||
| 437 | |||
| 438 | start = __pa(start) >> PAGE_SHIFT; | ||
| 439 | end = __pa(end) >> PAGE_SHIFT; | ||
| 440 | nid = early_pfn_to_nid(start); | ||
| 441 | memory_present(nid, start, end); | ||
| 442 | |||
| 443 | return 0; | ||
| 444 | } | ||
| 445 | |||
| 446 | static void __init arch_sparse_init(void) | ||
| 447 | { | ||
| 448 | efi_memmap_walk(register_sparse_mem, NULL); | ||
| 449 | sparse_init(); | ||
| 450 | } | ||
| 451 | #else | ||
| 452 | #define arch_sparse_init() do {} while (0) | ||
| 453 | #endif | ||
| 454 | |||
| 424 | /** | 455 | /** |
| 425 | * find_memory - walk the EFI memory map and setup the bootmem allocator | 456 | * find_memory - walk the EFI memory map and setup the bootmem allocator |
| 426 | * | 457 | * |
| @@ -528,8 +559,10 @@ void show_mem(void) | |||
| 528 | int shared = 0, cached = 0, reserved = 0; | 559 | int shared = 0, cached = 0, reserved = 0; |
| 529 | printk("Node ID: %d\n", pgdat->node_id); | 560 | printk("Node ID: %d\n", pgdat->node_id); |
| 530 | for(i = 0; i < pgdat->node_spanned_pages; i++) { | 561 | for(i = 0; i < pgdat->node_spanned_pages; i++) { |
| 531 | struct page *page = pgdat_page_nr(pgdat, i); | 562 | struct page *page; |
| 532 | if (!ia64_pfn_valid(pgdat->node_start_pfn+i)) | 563 | if (pfn_valid(pgdat->node_start_pfn + i)) |
| 564 | page = pfn_to_page(pgdat->node_start_pfn + i); | ||
| 565 | else | ||
| 533 | continue; | 566 | continue; |
| 534 | if (PageReserved(page)) | 567 | if (PageReserved(page)) |
| 535 | reserved++; | 568 | reserved++; |
| @@ -648,12 +681,16 @@ void __init paging_init(void) | |||
| 648 | 681 | ||
| 649 | max_dma = virt_to_phys((void *) MAX_DMA_ADDRESS) >> PAGE_SHIFT; | 682 | max_dma = virt_to_phys((void *) MAX_DMA_ADDRESS) >> PAGE_SHIFT; |
| 650 | 683 | ||
| 684 | arch_sparse_init(); | ||
| 685 | |||
| 651 | efi_memmap_walk(filter_rsvd_memory, count_node_pages); | 686 | efi_memmap_walk(filter_rsvd_memory, count_node_pages); |
| 652 | 687 | ||
| 688 | #ifdef CONFIG_VIRTUAL_MEM_MAP | ||
| 653 | vmalloc_end -= PAGE_ALIGN(max_low_pfn * sizeof(struct page)); | 689 | vmalloc_end -= PAGE_ALIGN(max_low_pfn * sizeof(struct page)); |
| 654 | vmem_map = (struct page *) vmalloc_end; | 690 | vmem_map = (struct page *) vmalloc_end; |
| 655 | efi_memmap_walk(create_mem_map_page_table, NULL); | 691 | efi_memmap_walk(create_mem_map_page_table, NULL); |
| 656 | printk("Virtual mem_map starts at 0x%p\n", vmem_map); | 692 | printk("Virtual mem_map starts at 0x%p\n", vmem_map); |
| 693 | #endif | ||
| 657 | 694 | ||
| 658 | for_each_online_node(node) { | 695 | for_each_online_node(node) { |
| 659 | memset(zones_size, 0, sizeof(zones_size)); | 696 | memset(zones_size, 0, sizeof(zones_size)); |
| @@ -690,7 +727,9 @@ void __init paging_init(void) | |||
| 690 | 727 | ||
| 691 | pfn_offset = mem_data[node].min_pfn; | 728 | pfn_offset = mem_data[node].min_pfn; |
| 692 | 729 | ||
| 730 | #ifdef CONFIG_VIRTUAL_MEM_MAP | ||
| 693 | NODE_DATA(node)->node_mem_map = vmem_map + pfn_offset; | 731 | NODE_DATA(node)->node_mem_map = vmem_map + pfn_offset; |
| 732 | #endif | ||
| 694 | free_area_init_node(node, NODE_DATA(node), zones_size, | 733 | free_area_init_node(node, NODE_DATA(node), zones_size, |
| 695 | pfn_offset, zholes_size); | 734 | pfn_offset, zholes_size); |
| 696 | } | 735 | } |
diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c index 1281c609ee98..98246acd4991 100644 --- a/arch/ia64/mm/init.c +++ b/arch/ia64/mm/init.c | |||
| @@ -593,7 +593,7 @@ mem_init (void) | |||
| 593 | platform_dma_init(); | 593 | platform_dma_init(); |
| 594 | #endif | 594 | #endif |
| 595 | 595 | ||
| 596 | #ifndef CONFIG_DISCONTIGMEM | 596 | #ifdef CONFIG_FLATMEM |
| 597 | if (!mem_map) | 597 | if (!mem_map) |
| 598 | BUG(); | 598 | BUG(); |
| 599 | max_mapnr = max_low_pfn; | 599 | max_mapnr = max_low_pfn; |
diff --git a/arch/ia64/mm/numa.c b/arch/ia64/mm/numa.c index 77118bbf3d8b..4e5c8b36ad93 100644 --- a/arch/ia64/mm/numa.c +++ b/arch/ia64/mm/numa.c | |||
| @@ -47,3 +47,27 @@ paddr_to_nid(unsigned long paddr) | |||
| 47 | 47 | ||
| 48 | return (i < num_node_memblks) ? node_memblk[i].nid : (num_node_memblks ? -1 : 0); | 48 | return (i < num_node_memblks) ? node_memblk[i].nid : (num_node_memblks ? -1 : 0); |
| 49 | } | 49 | } |
| 50 | |||
| 51 | #if defined(CONFIG_SPARSEMEM) && defined(CONFIG_NUMA) | ||
| 52 | /* | ||
| 53 | * Because of holes evaluate on section limits. | ||
| 54 | * If the section of memory exists, then return the node where the section | ||
| 55 | * resides. Otherwise return node 0 as the default. This is used by | ||
| 56 | * SPARSEMEM to allocate the SPARSEMEM sectionmap on the NUMA node where | ||
| 57 | * the section resides. | ||
| 58 | */ | ||
| 59 | int early_pfn_to_nid(unsigned long pfn) | ||
| 60 | { | ||
| 61 | int i, section = pfn >> PFN_SECTION_SHIFT, ssec, esec; | ||
| 62 | |||
| 63 | for (i = 0; i < num_node_memblks; i++) { | ||
| 64 | ssec = node_memblk[i].start_paddr >> PA_SECTION_SHIFT; | ||
| 65 | esec = (node_memblk[i].start_paddr + node_memblk[i].size + | ||
| 66 | ((1L << PA_SECTION_SHIFT) - 1)) >> PA_SECTION_SHIFT; | ||
| 67 | if (section >= ssec && section < esec) | ||
| 68 | return node_memblk[i].nid; | ||
| 69 | } | ||
| 70 | |||
| 71 | return 0; | ||
| 72 | } | ||
| 73 | #endif | ||
diff --git a/include/asm-ia64/meminit.h b/include/asm-ia64/meminit.h index 90646632237c..46501b01a5c5 100644 --- a/include/asm-ia64/meminit.h +++ b/include/asm-ia64/meminit.h | |||
| @@ -43,7 +43,7 @@ extern void efi_memmap_init(unsigned long *, unsigned long *); | |||
| 43 | #define GRANULEROUNDUP(n) (((n)+IA64_GRANULE_SIZE-1) & ~(IA64_GRANULE_SIZE-1)) | 43 | #define GRANULEROUNDUP(n) (((n)+IA64_GRANULE_SIZE-1) & ~(IA64_GRANULE_SIZE-1)) |
| 44 | #define ORDERROUNDDOWN(n) ((n) & ~((PAGE_SIZE<<MAX_ORDER)-1)) | 44 | #define ORDERROUNDDOWN(n) ((n) & ~((PAGE_SIZE<<MAX_ORDER)-1)) |
| 45 | 45 | ||
| 46 | #ifdef CONFIG_DISCONTIGMEM | 46 | #ifdef CONFIG_NUMA |
| 47 | extern void call_pernode_memory (unsigned long start, unsigned long len, void *func); | 47 | extern void call_pernode_memory (unsigned long start, unsigned long len, void *func); |
| 48 | #else | 48 | #else |
| 49 | # define call_pernode_memory(start, len, func) (*func)(start, len, 0) | 49 | # define call_pernode_memory(start, len, func) (*func)(start, len, 0) |
diff --git a/include/asm-ia64/mmzone.h b/include/asm-ia64/mmzone.h index d32f51e3d6c2..34efe88eb849 100644 --- a/include/asm-ia64/mmzone.h +++ b/include/asm-ia64/mmzone.h | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #include <asm/page.h> | 15 | #include <asm/page.h> |
| 16 | #include <asm/meminit.h> | 16 | #include <asm/meminit.h> |
| 17 | 17 | ||
| 18 | #ifdef CONFIG_DISCONTIGMEM | 18 | #ifdef CONFIG_NUMA |
| 19 | 19 | ||
| 20 | static inline int pfn_to_nid(unsigned long pfn) | 20 | static inline int pfn_to_nid(unsigned long pfn) |
| 21 | { | 21 | { |
| @@ -31,6 +31,10 @@ static inline int pfn_to_nid(unsigned long pfn) | |||
| 31 | #endif | 31 | #endif |
| 32 | } | 32 | } |
| 33 | 33 | ||
| 34 | #ifdef CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID | ||
| 35 | extern int early_pfn_to_nid(unsigned long pfn); | ||
| 36 | #endif | ||
| 37 | |||
| 34 | #ifdef CONFIG_IA64_DIG /* DIG systems are small */ | 38 | #ifdef CONFIG_IA64_DIG /* DIG systems are small */ |
| 35 | # define MAX_PHYSNODE_ID 8 | 39 | # define MAX_PHYSNODE_ID 8 |
| 36 | # define NR_NODE_MEMBLKS (MAX_NUMNODES * 8) | 40 | # define NR_NODE_MEMBLKS (MAX_NUMNODES * 8) |
| @@ -39,8 +43,8 @@ static inline int pfn_to_nid(unsigned long pfn) | |||
| 39 | # define NR_NODE_MEMBLKS (MAX_NUMNODES * 4) | 43 | # define NR_NODE_MEMBLKS (MAX_NUMNODES * 4) |
| 40 | #endif | 44 | #endif |
| 41 | 45 | ||
| 42 | #else /* CONFIG_DISCONTIGMEM */ | 46 | #else /* CONFIG_NUMA */ |
| 43 | # define NR_NODE_MEMBLKS (MAX_NUMNODES * 4) | 47 | # define NR_NODE_MEMBLKS (MAX_NUMNODES * 4) |
| 44 | #endif /* CONFIG_DISCONTIGMEM */ | 48 | #endif /* CONFIG_NUMA */ |
| 45 | 49 | ||
| 46 | #endif /* _ASM_IA64_MMZONE_H */ | 50 | #endif /* _ASM_IA64_MMZONE_H */ |
diff --git a/include/asm-ia64/nodedata.h b/include/asm-ia64/nodedata.h index 6b0f3ed89b7e..9978c7ce7549 100644 --- a/include/asm-ia64/nodedata.h +++ b/include/asm-ia64/nodedata.h | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include <asm/percpu.h> | 17 | #include <asm/percpu.h> |
| 18 | #include <asm/mmzone.h> | 18 | #include <asm/mmzone.h> |
| 19 | 19 | ||
| 20 | #ifdef CONFIG_DISCONTIGMEM | 20 | #ifdef CONFIG_NUMA |
| 21 | 21 | ||
| 22 | /* | 22 | /* |
| 23 | * Node Data. One of these structures is located on each node of a NUMA system. | 23 | * Node Data. One of these structures is located on each node of a NUMA system. |
| @@ -47,6 +47,6 @@ struct ia64_node_data { | |||
| 47 | */ | 47 | */ |
| 48 | #define NODE_DATA(nid) (local_node_data->pg_data_ptrs[nid]) | 48 | #define NODE_DATA(nid) (local_node_data->pg_data_ptrs[nid]) |
| 49 | 49 | ||
| 50 | #endif /* CONFIG_DISCONTIGMEM */ | 50 | #endif /* CONFIG_NUMA */ |
| 51 | 51 | ||
| 52 | #endif /* _ASM_IA64_NODEDATA_H */ | 52 | #endif /* _ASM_IA64_NODEDATA_H */ |
diff --git a/include/asm-ia64/page.h b/include/asm-ia64/page.h index 9edffad8c28b..ef436b9d06ad 100644 --- a/include/asm-ia64/page.h +++ b/include/asm-ia64/page.h | |||
| @@ -102,15 +102,15 @@ do { \ | |||
| 102 | 102 | ||
| 103 | #ifdef CONFIG_VIRTUAL_MEM_MAP | 103 | #ifdef CONFIG_VIRTUAL_MEM_MAP |
| 104 | extern int ia64_pfn_valid (unsigned long pfn); | 104 | extern int ia64_pfn_valid (unsigned long pfn); |
| 105 | #else | 105 | #elif defined(CONFIG_FLATMEM) |
| 106 | # define ia64_pfn_valid(pfn) 1 | 106 | # define ia64_pfn_valid(pfn) 1 |
| 107 | #endif | 107 | #endif |
| 108 | 108 | ||
| 109 | #ifndef CONFIG_DISCONTIGMEM | 109 | #ifdef CONFIG_FLATMEM |
| 110 | # define pfn_valid(pfn) (((pfn) < max_mapnr) && ia64_pfn_valid(pfn)) | 110 | # define pfn_valid(pfn) (((pfn) < max_mapnr) && ia64_pfn_valid(pfn)) |
| 111 | # define page_to_pfn(page) ((unsigned long) (page - mem_map)) | 111 | # define page_to_pfn(page) ((unsigned long) (page - mem_map)) |
| 112 | # define pfn_to_page(pfn) (mem_map + (pfn)) | 112 | # define pfn_to_page(pfn) (mem_map + (pfn)) |
| 113 | #else | 113 | #elif defined(CONFIG_DISCONTIGMEM) |
| 114 | extern struct page *vmem_map; | 114 | extern struct page *vmem_map; |
| 115 | extern unsigned long max_low_pfn; | 115 | extern unsigned long max_low_pfn; |
| 116 | # define pfn_valid(pfn) (((pfn) < max_low_pfn) && ia64_pfn_valid(pfn)) | 116 | # define pfn_valid(pfn) (((pfn) < max_low_pfn) && ia64_pfn_valid(pfn)) |
diff --git a/include/asm-ia64/sparsemem.h b/include/asm-ia64/sparsemem.h new file mode 100644 index 000000000000..67a7c40ec27f --- /dev/null +++ b/include/asm-ia64/sparsemem.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #ifndef _ASM_IA64_SPARSEMEM_H | ||
| 2 | #define _ASM_IA64_SPARSEMEM_H | ||
| 3 | |||
| 4 | #ifdef CONFIG_SPARSEMEM | ||
| 5 | /* | ||
| 6 | * SECTION_SIZE_BITS 2^N: how big each section will be | ||
| 7 | * MAX_PHYSMEM_BITS 2^N: how much memory we can have in that space | ||
| 8 | */ | ||
| 9 | |||
| 10 | #define SECTION_SIZE_BITS (30) | ||
| 11 | #define MAX_PHYSMEM_BITS (50) | ||
| 12 | #ifdef CONFIG_FORCE_MAX_ZONEORDER | ||
| 13 | #if ((CONFIG_FORCE_MAX_ZONEORDER - 1 + PAGE_SHIFT) > SECTION_SIZE_BITS) | ||
| 14 | #undef SECTION_SIZE_BITS | ||
| 15 | #define SECTION_SIZE_BITS (CONFIG_FORCE_MAX_ZONEORDER - 1 + PAGE_SHIFT) | ||
| 16 | #endif | ||
| 17 | #endif | ||
| 18 | |||
| 19 | #endif /* CONFIG_SPARSEMEM */ | ||
| 20 | #endif /* _ASM_IA64_SPARSEMEM_H */ | ||
