diff options
| author | Paul Mackerras <paulus@samba.org> | 2006-03-08 22:32:05 -0500 |
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2006-03-08 22:32:05 -0500 |
| commit | 516450179454de9e689e0a53ed8f34b896e8651c (patch) | |
| tree | 78eae2f77de6cd39b18c7393fc5854456fc3fb1f /arch | |
| parent | 6749c5507388f3fc3719f57a54b540ee83f6661a (diff) | |
| parent | 0d514f040ac6629311974889d5b96bcf21c6461a (diff) | |
Merge ../linux-2.6
Diffstat (limited to 'arch')
71 files changed, 1102 insertions, 688 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 15dc1a0dffbb..9f80fa502f8f 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
| @@ -78,7 +78,7 @@ menu "System Type" | |||
| 78 | 78 | ||
| 79 | choice | 79 | choice |
| 80 | prompt "ARM system type" | 80 | prompt "ARM system type" |
| 81 | default ARCH_RPC | 81 | default ARCH_VERSATILE |
| 82 | 82 | ||
| 83 | config ARCH_CLPS7500 | 83 | config ARCH_CLPS7500 |
| 84 | bool "Cirrus-CL-PS7500FE" | 84 | bool "Cirrus-CL-PS7500FE" |
diff --git a/arch/arm/kernel/time.c b/arch/arm/kernel/time.c index d7d932c02866..d6bd435a6857 100644 --- a/arch/arm/kernel/time.c +++ b/arch/arm/kernel/time.c | |||
| @@ -422,12 +422,14 @@ static int timer_dyn_tick_disable(void) | |||
| 422 | void timer_dyn_reprogram(void) | 422 | void timer_dyn_reprogram(void) |
| 423 | { | 423 | { |
| 424 | struct dyn_tick_timer *dyn_tick = system_timer->dyn_tick; | 424 | struct dyn_tick_timer *dyn_tick = system_timer->dyn_tick; |
| 425 | unsigned long next, seq; | ||
| 425 | 426 | ||
| 426 | if (dyn_tick) { | 427 | if (dyn_tick && (dyn_tick->state & DYN_TICK_ENABLED)) { |
| 427 | write_seqlock(&xtime_lock); | 428 | next = next_timer_interrupt(); |
| 428 | if (dyn_tick->state & DYN_TICK_ENABLED) | 429 | do { |
| 430 | seq = read_seqbegin(&xtime_lock); | ||
| 429 | dyn_tick->reprogram(next_timer_interrupt() - jiffies); | 431 | dyn_tick->reprogram(next_timer_interrupt() - jiffies); |
| 430 | write_sequnlock(&xtime_lock); | 432 | } while (read_seqretry(&xtime_lock, seq)); |
| 431 | } | 433 | } |
| 432 | } | 434 | } |
| 433 | 435 | ||
diff --git a/arch/arm/mach-ixp4xx/nas100d-power.c b/arch/arm/mach-ixp4xx/nas100d-power.c index 2bec69bfa715..99d333d7ebdd 100644 --- a/arch/arm/mach-ixp4xx/nas100d-power.c +++ b/arch/arm/mach-ixp4xx/nas100d-power.c | |||
| @@ -56,6 +56,9 @@ static int __init nas100d_power_init(void) | |||
| 56 | 56 | ||
| 57 | static void __exit nas100d_power_exit(void) | 57 | static void __exit nas100d_power_exit(void) |
| 58 | { | 58 | { |
| 59 | if (!(machine_is_nas100d())) | ||
| 60 | return; | ||
| 61 | |||
| 59 | free_irq(NAS100D_RB_IRQ, NULL); | 62 | free_irq(NAS100D_RB_IRQ, NULL); |
| 60 | } | 63 | } |
| 61 | 64 | ||
diff --git a/arch/arm/mm/tlb-v6.S b/arch/arm/mm/tlb-v6.S index 6f76b89ef46e..fd6adde39091 100644 --- a/arch/arm/mm/tlb-v6.S +++ b/arch/arm/mm/tlb-v6.S | |||
| @@ -80,6 +80,7 @@ ENTRY(v6wbi_flush_kern_tlb_range) | |||
| 80 | add r0, r0, #PAGE_SZ | 80 | add r0, r0, #PAGE_SZ |
| 81 | cmp r0, r1 | 81 | cmp r0, r1 |
| 82 | blo 1b | 82 | blo 1b |
| 83 | mcr p15, 0, r2, c7, c10, 4 @ data synchronization barrier | ||
| 83 | mov pc, lr | 84 | mov pc, lr |
| 84 | 85 | ||
| 85 | .section ".text.init", #alloc, #execinstr | 86 | .section ".text.init", #alloc, #execinstr |
diff --git a/arch/h8300/kernel/process.c b/arch/h8300/kernel/process.c index ed79ae20e88d..dd344f112cfe 100644 --- a/arch/h8300/kernel/process.c +++ b/arch/h8300/kernel/process.c | |||
| @@ -45,6 +45,9 @@ | |||
| 45 | #include <asm/setup.h> | 45 | #include <asm/setup.h> |
| 46 | #include <asm/pgtable.h> | 46 | #include <asm/pgtable.h> |
| 47 | 47 | ||
| 48 | void (*pm_power_off)(void) = NULL; | ||
| 49 | EXPORT_SYMBOL(pm_power_off); | ||
| 50 | |||
| 48 | asmlinkage void ret_from_fork(void); | 51 | asmlinkage void ret_from_fork(void); |
| 49 | 52 | ||
| 50 | /* | 53 | /* |
diff --git a/arch/i386/kernel/Makefile b/arch/i386/kernel/Makefile index 53bb9a79e274..65656c033d70 100644 --- a/arch/i386/kernel/Makefile +++ b/arch/i386/kernel/Makefile | |||
| @@ -11,7 +11,7 @@ obj-y := process.o semaphore.o signal.o entry.o traps.o irq.o \ | |||
| 11 | 11 | ||
| 12 | obj-y += cpu/ | 12 | obj-y += cpu/ |
| 13 | obj-y += timers/ | 13 | obj-y += timers/ |
| 14 | obj-$(CONFIG_ACPI) += acpi/ | 14 | obj-y += acpi/ |
| 15 | obj-$(CONFIG_X86_BIOS_REBOOT) += reboot.o | 15 | obj-$(CONFIG_X86_BIOS_REBOOT) += reboot.o |
| 16 | obj-$(CONFIG_MCA) += mca.o | 16 | obj-$(CONFIG_MCA) += mca.o |
| 17 | obj-$(CONFIG_X86_MSR) += msr.o | 17 | obj-$(CONFIG_X86_MSR) += msr.o |
diff --git a/arch/i386/kernel/acpi/Makefile b/arch/i386/kernel/acpi/Makefile index d51c7313cae8..7e9ac99354f4 100644 --- a/arch/i386/kernel/acpi/Makefile +++ b/arch/i386/kernel/acpi/Makefile | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | obj-y := boot.o | 1 | obj-$(CONFIG_ACPI) += boot.o |
| 2 | obj-$(CONFIG_X86_IO_APIC) += earlyquirk.o | 2 | obj-$(CONFIG_X86_IO_APIC) += earlyquirk.o |
| 3 | obj-$(CONFIG_ACPI_SLEEP) += sleep.o wakeup.o | 3 | obj-$(CONFIG_ACPI_SLEEP) += sleep.o wakeup.o |
| 4 | 4 | ||
diff --git a/arch/i386/kernel/acpi/boot.c b/arch/i386/kernel/acpi/boot.c index 79577f0ace98..f1a21945963d 100644 --- a/arch/i386/kernel/acpi/boot.c +++ b/arch/i386/kernel/acpi/boot.c | |||
| @@ -1111,9 +1111,6 @@ int __init acpi_boot_table_init(void) | |||
| 1111 | disable_acpi(); | 1111 | disable_acpi(); |
| 1112 | return error; | 1112 | return error; |
| 1113 | } | 1113 | } |
| 1114 | #ifdef __i386__ | ||
| 1115 | check_acpi_pci(); | ||
| 1116 | #endif | ||
| 1117 | 1114 | ||
| 1118 | acpi_table_parse(ACPI_BOOT, acpi_parse_sbf); | 1115 | acpi_table_parse(ACPI_BOOT, acpi_parse_sbf); |
| 1119 | 1116 | ||
diff --git a/arch/i386/kernel/acpi/earlyquirk.c b/arch/i386/kernel/acpi/earlyquirk.c index f1b9d2a46dab..2e3b643a4dc4 100644 --- a/arch/i386/kernel/acpi/earlyquirk.c +++ b/arch/i386/kernel/acpi/earlyquirk.c | |||
| @@ -7,14 +7,22 @@ | |||
| 7 | #include <linux/pci.h> | 7 | #include <linux/pci.h> |
| 8 | #include <asm/pci-direct.h> | 8 | #include <asm/pci-direct.h> |
| 9 | #include <asm/acpi.h> | 9 | #include <asm/acpi.h> |
| 10 | #include <asm/apic.h> | ||
| 10 | 11 | ||
| 11 | static int __init check_bridge(int vendor, int device) | 12 | static int __init check_bridge(int vendor, int device) |
| 12 | { | 13 | { |
| 14 | #ifdef CONFIG_ACPI | ||
| 13 | /* According to Nvidia all timer overrides are bogus. Just ignore | 15 | /* According to Nvidia all timer overrides are bogus. Just ignore |
| 14 | them all. */ | 16 | them all. */ |
| 15 | if (vendor == PCI_VENDOR_ID_NVIDIA) { | 17 | if (vendor == PCI_VENDOR_ID_NVIDIA) { |
| 16 | acpi_skip_timer_override = 1; | 18 | acpi_skip_timer_override = 1; |
| 17 | } | 19 | } |
| 20 | #endif | ||
| 21 | if (vendor == PCI_VENDOR_ID_ATI && timer_over_8254 == 1) { | ||
| 22 | timer_over_8254 = 0; | ||
| 23 | printk(KERN_INFO "ATI board detected. Disabling timer routing " | ||
| 24 | "over 8254.\n"); | ||
| 25 | } | ||
| 18 | return 0; | 26 | return 0; |
| 19 | } | 27 | } |
| 20 | 28 | ||
diff --git a/arch/i386/kernel/cpu/common.c b/arch/i386/kernel/cpu/common.c index 4ecd4b326ded..e6bd095ae108 100644 --- a/arch/i386/kernel/cpu/common.c +++ b/arch/i386/kernel/cpu/common.c | |||
| @@ -278,10 +278,10 @@ void __devinit generic_identify(struct cpuinfo_x86 * c) | |||
| 278 | c->x86_capability[4] = excap; | 278 | c->x86_capability[4] = excap; |
| 279 | c->x86 = (tfms >> 8) & 15; | 279 | c->x86 = (tfms >> 8) & 15; |
| 280 | c->x86_model = (tfms >> 4) & 15; | 280 | c->x86_model = (tfms >> 4) & 15; |
| 281 | if (c->x86 == 0xf) { | 281 | if (c->x86 == 0xf) |
| 282 | c->x86 += (tfms >> 20) & 0xff; | 282 | c->x86 += (tfms >> 20) & 0xff; |
| 283 | if (c->x86 >= 0x6) | ||
| 283 | c->x86_model += ((tfms >> 16) & 0xF) << 4; | 284 | c->x86_model += ((tfms >> 16) & 0xF) << 4; |
| 284 | } | ||
| 285 | c->x86_mask = tfms & 15; | 285 | c->x86_mask = tfms & 15; |
| 286 | } else { | 286 | } else { |
| 287 | /* Have CPUID level 0 only - unheard of */ | 287 | /* Have CPUID level 0 only - unheard of */ |
diff --git a/arch/i386/kernel/efi.c b/arch/i386/kernel/efi.c index e3e42fd62401..c9cad7ba0d2d 100644 --- a/arch/i386/kernel/efi.c +++ b/arch/i386/kernel/efi.c | |||
| @@ -70,10 +70,13 @@ static void efi_call_phys_prelog(void) | |||
| 70 | { | 70 | { |
| 71 | unsigned long cr4; | 71 | unsigned long cr4; |
| 72 | unsigned long temp; | 72 | unsigned long temp; |
| 73 | struct Xgt_desc_struct *cpu_gdt_descr; | ||
| 73 | 74 | ||
| 74 | spin_lock(&efi_rt_lock); | 75 | spin_lock(&efi_rt_lock); |
| 75 | local_irq_save(efi_rt_eflags); | 76 | local_irq_save(efi_rt_eflags); |
| 76 | 77 | ||
| 78 | cpu_gdt_descr = &per_cpu(cpu_gdt_descr, 0); | ||
| 79 | |||
| 77 | /* | 80 | /* |
| 78 | * If I don't have PSE, I should just duplicate two entries in page | 81 | * If I don't have PSE, I should just duplicate two entries in page |
| 79 | * directory. If I have PSE, I just need to duplicate one entry in | 82 | * directory. If I have PSE, I just need to duplicate one entry in |
| @@ -103,18 +106,17 @@ static void efi_call_phys_prelog(void) | |||
| 103 | */ | 106 | */ |
| 104 | local_flush_tlb(); | 107 | local_flush_tlb(); |
| 105 | 108 | ||
| 106 | per_cpu(cpu_gdt_descr, 0).address = | 109 | cpu_gdt_descr->address = __pa(cpu_gdt_descr->address); |
| 107 | __pa(per_cpu(cpu_gdt_descr, 0).address); | 110 | load_gdt(cpu_gdt_descr); |
| 108 | load_gdt((struct Xgt_desc_struct *)__pa(&per_cpu(cpu_gdt_descr, 0))); | ||
| 109 | } | 111 | } |
| 110 | 112 | ||
| 111 | static void efi_call_phys_epilog(void) | 113 | static void efi_call_phys_epilog(void) |
| 112 | { | 114 | { |
| 113 | unsigned long cr4; | 115 | unsigned long cr4; |
| 116 | struct Xgt_desc_struct *cpu_gdt_descr = &per_cpu(cpu_gdt_descr, 0); | ||
| 114 | 117 | ||
| 115 | per_cpu(cpu_gdt_descr, 0).address = | 118 | cpu_gdt_descr->address = __va(cpu_gdt_descr->address); |
| 116 | (unsigned long)__va(per_cpu(cpu_gdt_descr, 0).address); | 119 | load_gdt(cpu_gdt_descr); |
| 117 | load_gdt((struct Xgt_desc_struct *)__va(&per_cpu(cpu_gdt_descr, 0))); | ||
| 118 | 120 | ||
| 119 | cr4 = read_cr4(); | 121 | cr4 = read_cr4(); |
| 120 | 122 | ||
diff --git a/arch/i386/kernel/io_apic.c b/arch/i386/kernel/io_apic.c index 235822b3f41b..39d9a5fa907e 100644 --- a/arch/i386/kernel/io_apic.c +++ b/arch/i386/kernel/io_apic.c | |||
| @@ -51,6 +51,8 @@ static struct { int pin, apic; } ioapic_i8259 = { -1, -1 }; | |||
| 51 | 51 | ||
| 52 | static DEFINE_SPINLOCK(ioapic_lock); | 52 | static DEFINE_SPINLOCK(ioapic_lock); |
| 53 | 53 | ||
| 54 | int timer_over_8254 __initdata = 1; | ||
| 55 | |||
| 54 | /* | 56 | /* |
| 55 | * Is the SiS APIC rmw bug present ? | 57 | * Is the SiS APIC rmw bug present ? |
| 56 | * -1 = don't know, 0 = no, 1 = yes | 58 | * -1 = don't know, 0 = no, 1 = yes |
| @@ -2267,7 +2269,8 @@ static inline void check_timer(void) | |||
| 2267 | apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT); | 2269 | apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT); |
| 2268 | init_8259A(1); | 2270 | init_8259A(1); |
| 2269 | timer_ack = 1; | 2271 | timer_ack = 1; |
| 2270 | enable_8259A_irq(0); | 2272 | if (timer_over_8254 > 0) |
| 2273 | enable_8259A_irq(0); | ||
| 2271 | 2274 | ||
| 2272 | pin1 = find_isa_irq_pin(0, mp_INT); | 2275 | pin1 = find_isa_irq_pin(0, mp_INT); |
| 2273 | apic1 = find_isa_irq_apic(0, mp_INT); | 2276 | apic1 = find_isa_irq_apic(0, mp_INT); |
| @@ -2392,6 +2395,20 @@ void __init setup_IO_APIC(void) | |||
| 2392 | print_IO_APIC(); | 2395 | print_IO_APIC(); |
| 2393 | } | 2396 | } |
| 2394 | 2397 | ||
| 2398 | static int __init setup_disable_8254_timer(char *s) | ||
| 2399 | { | ||
| 2400 | timer_over_8254 = -1; | ||
| 2401 | return 1; | ||
| 2402 | } | ||
| 2403 | static int __init setup_enable_8254_timer(char *s) | ||
| 2404 | { | ||
| 2405 | timer_over_8254 = 2; | ||
| 2406 | return 1; | ||
| 2407 | } | ||
| 2408 | |||
| 2409 | __setup("disable_8254_timer", setup_disable_8254_timer); | ||
| 2410 | __setup("enable_8254_timer", setup_enable_8254_timer); | ||
| 2411 | |||
| 2395 | /* | 2412 | /* |
| 2396 | * Called after all the initialization is done. If we didnt find any | 2413 | * Called after all the initialization is done. If we didnt find any |
| 2397 | * APIC bugs then we can allow the modify fast path | 2414 | * APIC bugs then we can allow the modify fast path |
diff --git a/arch/i386/kernel/machine_kexec.c b/arch/i386/kernel/machine_kexec.c index a912fed48482..f73d7374a2ba 100644 --- a/arch/i386/kernel/machine_kexec.c +++ b/arch/i386/kernel/machine_kexec.c | |||
| @@ -116,13 +116,13 @@ static void load_segments(void) | |||
| 116 | __asm__ __volatile__ ( | 116 | __asm__ __volatile__ ( |
| 117 | "\tljmp $"STR(__KERNEL_CS)",$1f\n" | 117 | "\tljmp $"STR(__KERNEL_CS)",$1f\n" |
| 118 | "\t1:\n" | 118 | "\t1:\n" |
| 119 | "\tmovl $"STR(__KERNEL_DS)",%eax\n" | 119 | "\tmovl $"STR(__KERNEL_DS)",%%eax\n" |
| 120 | "\tmovl %eax,%ds\n" | 120 | "\tmovl %%eax,%%ds\n" |
| 121 | "\tmovl %eax,%es\n" | 121 | "\tmovl %%eax,%%es\n" |
| 122 | "\tmovl %eax,%fs\n" | 122 | "\tmovl %%eax,%%fs\n" |
| 123 | "\tmovl %eax,%gs\n" | 123 | "\tmovl %%eax,%%gs\n" |
| 124 | "\tmovl %eax,%ss\n" | 124 | "\tmovl %%eax,%%ss\n" |
| 125 | ); | 125 | ::: "eax", "memory"); |
| 126 | #undef STR | 126 | #undef STR |
| 127 | #undef __STR | 127 | #undef __STR |
| 128 | } | 128 | } |
diff --git a/arch/i386/kernel/microcode.c b/arch/i386/kernel/microcode.c index d3fdf0057d82..5390b521aca0 100644 --- a/arch/i386/kernel/microcode.c +++ b/arch/i386/kernel/microcode.c | |||
| @@ -74,6 +74,7 @@ | |||
| 74 | #include <linux/kernel.h> | 74 | #include <linux/kernel.h> |
| 75 | #include <linux/init.h> | 75 | #include <linux/init.h> |
| 76 | #include <linux/sched.h> | 76 | #include <linux/sched.h> |
| 77 | #include <linux/cpumask.h> | ||
| 77 | #include <linux/module.h> | 78 | #include <linux/module.h> |
| 78 | #include <linux/slab.h> | 79 | #include <linux/slab.h> |
| 79 | #include <linux/vmalloc.h> | 80 | #include <linux/vmalloc.h> |
| @@ -250,8 +251,8 @@ static int find_matching_ucodes (void) | |||
| 250 | error = -EINVAL; | 251 | error = -EINVAL; |
| 251 | goto out; | 252 | goto out; |
| 252 | } | 253 | } |
| 253 | 254 | ||
| 254 | for (cpu_num = 0; cpu_num < num_online_cpus(); cpu_num++) { | 255 | for_each_online_cpu(cpu_num) { |
| 255 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; | 256 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; |
| 256 | if (uci->err != MC_NOTFOUND) /* already found a match or not an online cpu*/ | 257 | if (uci->err != MC_NOTFOUND) /* already found a match or not an online cpu*/ |
| 257 | continue; | 258 | continue; |
| @@ -293,7 +294,7 @@ static int find_matching_ucodes (void) | |||
| 293 | error = -EFAULT; | 294 | error = -EFAULT; |
| 294 | goto out; | 295 | goto out; |
| 295 | } | 296 | } |
| 296 | for (cpu_num = 0; cpu_num < num_online_cpus(); cpu_num++) { | 297 | for_each_online_cpu(cpu_num) { |
| 297 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; | 298 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; |
| 298 | if (uci->err != MC_NOTFOUND) /* already found a match or not an online cpu*/ | 299 | if (uci->err != MC_NOTFOUND) /* already found a match or not an online cpu*/ |
| 299 | continue; | 300 | continue; |
| @@ -304,7 +305,9 @@ static int find_matching_ucodes (void) | |||
| 304 | } | 305 | } |
| 305 | } | 306 | } |
| 306 | /* now check if any cpu has matched */ | 307 | /* now check if any cpu has matched */ |
| 307 | for (cpu_num = 0, allocated_flag = 0, sum = 0; cpu_num < num_online_cpus(); cpu_num++) { | 308 | allocated_flag = 0; |
| 309 | sum = 0; | ||
| 310 | for_each_online_cpu(cpu_num) { | ||
| 308 | if (ucode_cpu_info[cpu_num].err == MC_MARKED) { | 311 | if (ucode_cpu_info[cpu_num].err == MC_MARKED) { |
| 309 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; | 312 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; |
| 310 | if (!allocated_flag) { | 313 | if (!allocated_flag) { |
| @@ -415,12 +418,12 @@ static int do_microcode_update (void) | |||
| 415 | } | 418 | } |
| 416 | 419 | ||
| 417 | out_free: | 420 | out_free: |
| 418 | for (i = 0; i < num_online_cpus(); i++) { | 421 | for_each_online_cpu(i) { |
| 419 | if (ucode_cpu_info[i].mc) { | 422 | if (ucode_cpu_info[i].mc) { |
| 420 | int j; | 423 | int j; |
| 421 | void *tmp = ucode_cpu_info[i].mc; | 424 | void *tmp = ucode_cpu_info[i].mc; |
| 422 | vfree(tmp); | 425 | vfree(tmp); |
| 423 | for (j = i; j < num_online_cpus(); j++) { | 426 | for_each_online_cpu(j) { |
| 424 | if (ucode_cpu_info[j].mc == tmp) | 427 | if (ucode_cpu_info[j].mc == tmp) |
| 425 | ucode_cpu_info[j].mc = NULL; | 428 | ucode_cpu_info[j].mc = NULL; |
| 426 | } | 429 | } |
diff --git a/arch/i386/kernel/nmi.c b/arch/i386/kernel/nmi.c index 63f39a7e2c96..be87c5e2ee95 100644 --- a/arch/i386/kernel/nmi.c +++ b/arch/i386/kernel/nmi.c | |||
| @@ -357,7 +357,7 @@ static void clear_msr_range(unsigned int base, unsigned int n) | |||
| 357 | wrmsr(base+i, 0, 0); | 357 | wrmsr(base+i, 0, 0); |
| 358 | } | 358 | } |
| 359 | 359 | ||
| 360 | static inline void write_watchdog_counter(const char *descr) | 360 | static void write_watchdog_counter(const char *descr) |
| 361 | { | 361 | { |
| 362 | u64 count = (u64)cpu_khz * 1000; | 362 | u64 count = (u64)cpu_khz * 1000; |
| 363 | 363 | ||
| @@ -544,7 +544,7 @@ void nmi_watchdog_tick (struct pt_regs * regs) | |||
| 544 | * die_nmi will return ONLY if NOTIFY_STOP happens.. | 544 | * die_nmi will return ONLY if NOTIFY_STOP happens.. |
| 545 | */ | 545 | */ |
| 546 | die_nmi(regs, "NMI Watchdog detected LOCKUP"); | 546 | die_nmi(regs, "NMI Watchdog detected LOCKUP"); |
| 547 | 547 | } else { | |
| 548 | last_irq_sums[cpu] = sum; | 548 | last_irq_sums[cpu] = sum; |
| 549 | alert_counter[cpu] = 0; | 549 | alert_counter[cpu] = 0; |
| 550 | } | 550 | } |
diff --git a/arch/i386/kernel/setup.c b/arch/i386/kernel/setup.c index 51e513b4f72d..ab62a9f4701e 100644 --- a/arch/i386/kernel/setup.c +++ b/arch/i386/kernel/setup.c | |||
| @@ -1599,6 +1599,10 @@ void __init setup_arch(char **cmdline_p) | |||
| 1599 | if (efi_enabled) | 1599 | if (efi_enabled) |
| 1600 | efi_map_memmap(); | 1600 | efi_map_memmap(); |
| 1601 | 1601 | ||
| 1602 | #ifdef CONFIG_X86_IO_APIC | ||
| 1603 | check_acpi_pci(); /* Checks more than just ACPI actually */ | ||
| 1604 | #endif | ||
| 1605 | |||
| 1602 | #ifdef CONFIG_ACPI | 1606 | #ifdef CONFIG_ACPI |
| 1603 | /* | 1607 | /* |
| 1604 | * Parse the ACPI tables for possible boot-time SMP configuration. | 1608 | * Parse the ACPI tables for possible boot-time SMP configuration. |
diff --git a/arch/i386/kernel/time.c b/arch/i386/kernel/time.c index a14d594bfbeb..9d3074759856 100644 --- a/arch/i386/kernel/time.c +++ b/arch/i386/kernel/time.c | |||
| @@ -412,9 +412,9 @@ static int timer_resume(struct sys_device *dev) | |||
| 412 | write_seqlock_irqsave(&xtime_lock, flags); | 412 | write_seqlock_irqsave(&xtime_lock, flags); |
| 413 | xtime.tv_sec = sec; | 413 | xtime.tv_sec = sec; |
| 414 | xtime.tv_nsec = 0; | 414 | xtime.tv_nsec = 0; |
| 415 | write_sequnlock_irqrestore(&xtime_lock, flags); | 415 | jiffies_64 += sleep_length; |
| 416 | jiffies += sleep_length; | ||
| 417 | wall_jiffies += sleep_length; | 416 | wall_jiffies += sleep_length; |
| 417 | write_sequnlock_irqrestore(&xtime_lock, flags); | ||
| 418 | if (last_timer->resume) | 418 | if (last_timer->resume) |
| 419 | last_timer->resume(); | 419 | last_timer->resume(); |
| 420 | cur_timer = last_timer; | 420 | cur_timer = last_timer; |
diff --git a/arch/ia64/configs/bigsur_defconfig b/arch/ia64/configs/bigsur_defconfig index b40672bb3ab0..90e9c2e61bf4 100644 --- a/arch/ia64/configs/bigsur_defconfig +++ b/arch/ia64/configs/bigsur_defconfig | |||
| @@ -1,14 +1,13 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.14-rc1 | 3 | # Linux kernel version: 2.6.16-rc5 |
| 4 | # Wed Sep 14 15:18:49 2005 | 4 | # Mon Feb 27 16:10:42 2006 |
| 5 | # | 5 | # |
| 6 | 6 | ||
| 7 | # | 7 | # |
| 8 | # Code maturity level options | 8 | # Code maturity level options |
| 9 | # | 9 | # |
| 10 | CONFIG_EXPERIMENTAL=y | 10 | CONFIG_EXPERIMENTAL=y |
| 11 | CONFIG_CLEAN_COMPILE=y | ||
| 12 | CONFIG_LOCK_KERNEL=y | 11 | CONFIG_LOCK_KERNEL=y |
| 13 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 12 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 14 | 13 | ||
| @@ -23,17 +22,18 @@ CONFIG_POSIX_MQUEUE=y | |||
| 23 | # CONFIG_BSD_PROCESS_ACCT is not set | 22 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 24 | CONFIG_SYSCTL=y | 23 | CONFIG_SYSCTL=y |
| 25 | # CONFIG_AUDIT is not set | 24 | # CONFIG_AUDIT is not set |
| 26 | CONFIG_HOTPLUG=y | ||
| 27 | CONFIG_KOBJECT_UEVENT=y | ||
| 28 | # CONFIG_IKCONFIG is not set | 25 | # CONFIG_IKCONFIG is not set |
| 29 | # CONFIG_CPUSETS is not set | 26 | # CONFIG_CPUSETS is not set |
| 30 | CONFIG_INITRAMFS_SOURCE="" | 27 | CONFIG_INITRAMFS_SOURCE="" |
| 28 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 31 | # CONFIG_EMBEDDED is not set | 29 | # CONFIG_EMBEDDED is not set |
| 32 | CONFIG_KALLSYMS=y | 30 | CONFIG_KALLSYMS=y |
| 33 | # CONFIG_KALLSYMS_ALL is not set | 31 | # CONFIG_KALLSYMS_ALL is not set |
| 34 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 32 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 33 | CONFIG_HOTPLUG=y | ||
| 35 | CONFIG_PRINTK=y | 34 | CONFIG_PRINTK=y |
| 36 | CONFIG_BUG=y | 35 | CONFIG_BUG=y |
| 36 | CONFIG_ELF_CORE=y | ||
| 37 | CONFIG_BASE_FULL=y | 37 | CONFIG_BASE_FULL=y |
| 38 | CONFIG_FUTEX=y | 38 | CONFIG_FUTEX=y |
| 39 | CONFIG_EPOLL=y | 39 | CONFIG_EPOLL=y |
| @@ -42,8 +42,10 @@ CONFIG_CC_ALIGN_FUNCTIONS=0 | |||
| 42 | CONFIG_CC_ALIGN_LABELS=0 | 42 | CONFIG_CC_ALIGN_LABELS=0 |
| 43 | CONFIG_CC_ALIGN_LOOPS=0 | 43 | CONFIG_CC_ALIGN_LOOPS=0 |
| 44 | CONFIG_CC_ALIGN_JUMPS=0 | 44 | CONFIG_CC_ALIGN_JUMPS=0 |
| 45 | CONFIG_SLAB=y | ||
| 45 | # CONFIG_TINY_SHMEM is not set | 46 | # CONFIG_TINY_SHMEM is not set |
| 46 | CONFIG_BASE_SMALL=0 | 47 | CONFIG_BASE_SMALL=0 |
| 48 | # CONFIG_SLOB is not set | ||
| 47 | 49 | ||
| 48 | # | 50 | # |
| 49 | # Loadable module support | 51 | # Loadable module support |
| @@ -58,17 +60,36 @@ CONFIG_KMOD=y | |||
| 58 | CONFIG_STOP_MACHINE=y | 60 | CONFIG_STOP_MACHINE=y |
| 59 | 61 | ||
| 60 | # | 62 | # |
| 63 | # Block layer | ||
| 64 | # | ||
| 65 | |||
| 66 | # | ||
| 67 | # IO Schedulers | ||
| 68 | # | ||
| 69 | CONFIG_IOSCHED_NOOP=y | ||
| 70 | CONFIG_IOSCHED_AS=y | ||
| 71 | CONFIG_IOSCHED_DEADLINE=y | ||
| 72 | CONFIG_IOSCHED_CFQ=y | ||
| 73 | CONFIG_DEFAULT_AS=y | ||
| 74 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 75 | # CONFIG_DEFAULT_CFQ is not set | ||
| 76 | # CONFIG_DEFAULT_NOOP is not set | ||
| 77 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 78 | |||
| 79 | # | ||
| 61 | # Processor type and features | 80 | # Processor type and features |
| 62 | # | 81 | # |
| 63 | CONFIG_IA64=y | 82 | CONFIG_IA64=y |
| 64 | CONFIG_64BIT=y | 83 | CONFIG_64BIT=y |
| 65 | CONFIG_MMU=y | 84 | CONFIG_MMU=y |
| 85 | CONFIG_SWIOTLB=y | ||
| 66 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 86 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 67 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 87 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 68 | CONFIG_TIME_INTERPOLATION=y | 88 | CONFIG_TIME_INTERPOLATION=y |
| 69 | CONFIG_EFI=y | 89 | CONFIG_EFI=y |
| 70 | CONFIG_GENERIC_IOMAP=y | 90 | CONFIG_GENERIC_IOMAP=y |
| 71 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 91 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
| 92 | CONFIG_DMA_IS_DMA32=y | ||
| 72 | # CONFIG_IA64_GENERIC is not set | 93 | # CONFIG_IA64_GENERIC is not set |
| 73 | CONFIG_IA64_DIG=y | 94 | CONFIG_IA64_DIG=y |
| 74 | # CONFIG_IA64_HP_ZX1 is not set | 95 | # CONFIG_IA64_HP_ZX1 is not set |
| @@ -81,18 +102,17 @@ CONFIG_ITANIUM=y | |||
| 81 | # CONFIG_IA64_PAGE_SIZE_8KB is not set | 102 | # CONFIG_IA64_PAGE_SIZE_8KB is not set |
| 82 | CONFIG_IA64_PAGE_SIZE_16KB=y | 103 | CONFIG_IA64_PAGE_SIZE_16KB=y |
| 83 | # CONFIG_IA64_PAGE_SIZE_64KB is not set | 104 | # CONFIG_IA64_PAGE_SIZE_64KB is not set |
| 105 | CONFIG_PGTABLE_3=y | ||
| 106 | # CONFIG_PGTABLE_4 is not set | ||
| 84 | # CONFIG_HZ_100 is not set | 107 | # CONFIG_HZ_100 is not set |
| 85 | CONFIG_HZ_250=y | 108 | CONFIG_HZ_250=y |
| 86 | # CONFIG_HZ_1000 is not set | 109 | # CONFIG_HZ_1000 is not set |
| 87 | CONFIG_HZ=250 | 110 | CONFIG_HZ=250 |
| 88 | CONFIG_IA64_BRL_EMU=y | 111 | CONFIG_IA64_BRL_EMU=y |
| 89 | CONFIG_IA64_L1_CACHE_SHIFT=6 | 112 | CONFIG_IA64_L1_CACHE_SHIFT=6 |
| 90 | # CONFIG_NUMA is not set | ||
| 91 | # CONFIG_VIRTUAL_MEM_MAP is not set | ||
| 92 | # CONFIG_IA64_CYCLONE is not set | 113 | # CONFIG_IA64_CYCLONE is not set |
| 93 | CONFIG_IOSAPIC=y | 114 | CONFIG_IOSAPIC=y |
| 94 | # CONFIG_IA64_SGI_SN_XP is not set | 115 | CONFIG_FORCE_MAX_ZONEORDER=17 |
| 95 | CONFIG_FORCE_MAX_ZONEORDER=18 | ||
| 96 | CONFIG_SMP=y | 116 | CONFIG_SMP=y |
| 97 | CONFIG_NR_CPUS=2 | 117 | CONFIG_NR_CPUS=2 |
| 98 | # CONFIG_HOTPLUG_CPU is not set | 118 | # CONFIG_HOTPLUG_CPU is not set |
| @@ -105,7 +125,12 @@ CONFIG_FLATMEM_MANUAL=y | |||
| 105 | CONFIG_FLATMEM=y | 125 | CONFIG_FLATMEM=y |
| 106 | CONFIG_FLAT_NODE_MEM_MAP=y | 126 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 107 | # CONFIG_SPARSEMEM_STATIC is not set | 127 | # CONFIG_SPARSEMEM_STATIC is not set |
| 108 | CONFIG_HAVE_DEC_LOCK=y | 128 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 129 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
| 130 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | ||
| 131 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 132 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
| 133 | # CONFIG_VIRTUAL_MEM_MAP is not set | ||
| 109 | CONFIG_IA32_SUPPORT=y | 134 | CONFIG_IA32_SUPPORT=y |
| 110 | CONFIG_COMPAT=y | 135 | CONFIG_COMPAT=y |
| 111 | # CONFIG_IA64_MCA_RECOVERY is not set | 136 | # CONFIG_IA64_MCA_RECOVERY is not set |
| @@ -117,7 +142,6 @@ CONFIG_IA64_PALINFO=y | |||
| 117 | # | 142 | # |
| 118 | CONFIG_EFI_VARS=y | 143 | CONFIG_EFI_VARS=y |
| 119 | CONFIG_EFI_PCDP=y | 144 | CONFIG_EFI_PCDP=y |
| 120 | # CONFIG_DELL_RBU is not set | ||
| 121 | CONFIG_BINFMT_ELF=y | 145 | CONFIG_BINFMT_ELF=y |
| 122 | CONFIG_BINFMT_MISC=m | 146 | CONFIG_BINFMT_MISC=m |
| 123 | 147 | ||
| @@ -125,6 +149,7 @@ CONFIG_BINFMT_MISC=m | |||
| 125 | # Power management and ACPI | 149 | # Power management and ACPI |
| 126 | # | 150 | # |
| 127 | CONFIG_PM=y | 151 | CONFIG_PM=y |
| 152 | CONFIG_PM_LEGACY=y | ||
| 128 | # CONFIG_PM_DEBUG is not set | 153 | # CONFIG_PM_DEBUG is not set |
| 129 | 154 | ||
| 130 | # | 155 | # |
| @@ -137,6 +162,7 @@ CONFIG_ACPI_PROCESSOR=m | |||
| 137 | CONFIG_ACPI_THERMAL=m | 162 | CONFIG_ACPI_THERMAL=m |
| 138 | CONFIG_ACPI_BLACKLIST_YEAR=0 | 163 | CONFIG_ACPI_BLACKLIST_YEAR=0 |
| 139 | # CONFIG_ACPI_DEBUG is not set | 164 | # CONFIG_ACPI_DEBUG is not set |
| 165 | CONFIG_ACPI_EC=y | ||
| 140 | CONFIG_ACPI_POWER=y | 166 | CONFIG_ACPI_POWER=y |
| 141 | CONFIG_ACPI_SYSTEM=y | 167 | CONFIG_ACPI_SYSTEM=y |
| 142 | # CONFIG_ACPI_CONTAINER is not set | 168 | # CONFIG_ACPI_CONTAINER is not set |
| @@ -173,6 +199,7 @@ CONFIG_NET=y | |||
| 173 | # | 199 | # |
| 174 | # Networking options | 200 | # Networking options |
| 175 | # | 201 | # |
| 202 | # CONFIG_NETDEBUG is not set | ||
| 176 | CONFIG_PACKET=y | 203 | CONFIG_PACKET=y |
| 177 | CONFIG_PACKET_MMAP=y | 204 | CONFIG_PACKET_MMAP=y |
| 178 | CONFIG_UNIX=y | 205 | CONFIG_UNIX=y |
| @@ -206,6 +233,11 @@ CONFIG_TCP_CONG_BIC=y | |||
| 206 | # SCTP Configuration (EXPERIMENTAL) | 233 | # SCTP Configuration (EXPERIMENTAL) |
| 207 | # | 234 | # |
| 208 | # CONFIG_IP_SCTP is not set | 235 | # CONFIG_IP_SCTP is not set |
| 236 | |||
| 237 | # | ||
| 238 | # TIPC Configuration (EXPERIMENTAL) | ||
| 239 | # | ||
| 240 | # CONFIG_TIPC is not set | ||
| 209 | # CONFIG_ATM is not set | 241 | # CONFIG_ATM is not set |
| 210 | # CONFIG_BRIDGE is not set | 242 | # CONFIG_BRIDGE is not set |
| 211 | # CONFIG_VLAN_8021Q is not set | 243 | # CONFIG_VLAN_8021Q is not set |
| @@ -218,14 +250,16 @@ CONFIG_TCP_CONG_BIC=y | |||
| 218 | # CONFIG_NET_DIVERT is not set | 250 | # CONFIG_NET_DIVERT is not set |
| 219 | # CONFIG_ECONET is not set | 251 | # CONFIG_ECONET is not set |
| 220 | # CONFIG_WAN_ROUTER is not set | 252 | # CONFIG_WAN_ROUTER is not set |
| 253 | |||
| 254 | # | ||
| 255 | # QoS and/or fair queueing | ||
| 256 | # | ||
| 221 | # CONFIG_NET_SCHED is not set | 257 | # CONFIG_NET_SCHED is not set |
| 222 | # CONFIG_NET_CLS_ROUTE is not set | ||
| 223 | 258 | ||
| 224 | # | 259 | # |
| 225 | # Network testing | 260 | # Network testing |
| 226 | # | 261 | # |
| 227 | # CONFIG_NET_PKTGEN is not set | 262 | # CONFIG_NET_PKTGEN is not set |
| 228 | # CONFIG_NETFILTER_NETLINK is not set | ||
| 229 | # CONFIG_HAMRADIO is not set | 263 | # CONFIG_HAMRADIO is not set |
| 230 | # CONFIG_IRDA is not set | 264 | # CONFIG_IRDA is not set |
| 231 | # CONFIG_BT is not set | 265 | # CONFIG_BT is not set |
| @@ -286,20 +320,13 @@ CONFIG_BLK_DEV_RAM=m | |||
| 286 | CONFIG_BLK_DEV_RAM_COUNT=16 | 320 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 287 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 321 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
| 288 | # CONFIG_CDROM_PKTCDVD is not set | 322 | # CONFIG_CDROM_PKTCDVD is not set |
| 289 | |||
| 290 | # | ||
| 291 | # IO Schedulers | ||
| 292 | # | ||
| 293 | CONFIG_IOSCHED_NOOP=y | ||
| 294 | CONFIG_IOSCHED_AS=y | ||
| 295 | CONFIG_IOSCHED_DEADLINE=y | ||
| 296 | CONFIG_IOSCHED_CFQ=y | ||
| 297 | # CONFIG_ATA_OVER_ETH is not set | 323 | # CONFIG_ATA_OVER_ETH is not set |
| 298 | 324 | ||
| 299 | # | 325 | # |
| 300 | # ATA/ATAPI/MFM/RLL support | 326 | # ATA/ATAPI/MFM/RLL support |
| 301 | # | 327 | # |
| 302 | CONFIG_IDE=m | 328 | CONFIG_IDE=m |
| 329 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 303 | CONFIG_BLK_DEV_IDE=m | 330 | CONFIG_BLK_DEV_IDE=m |
| 304 | 331 | ||
| 305 | # | 332 | # |
| @@ -390,6 +417,7 @@ CONFIG_SCSI_SPI_ATTRS=m | |||
| 390 | # | 417 | # |
| 391 | # SCSI low-level drivers | 418 | # SCSI low-level drivers |
| 392 | # | 419 | # |
| 420 | # CONFIG_ISCSI_TCP is not set | ||
| 393 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 421 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
| 394 | # CONFIG_SCSI_3W_9XXX is not set | 422 | # CONFIG_SCSI_3W_9XXX is not set |
| 395 | # CONFIG_SCSI_ACARD is not set | 423 | # CONFIG_SCSI_ACARD is not set |
| @@ -399,6 +427,7 @@ CONFIG_SCSI_SPI_ATTRS=m | |||
| 399 | # CONFIG_SCSI_AIC79XX is not set | 427 | # CONFIG_SCSI_AIC79XX is not set |
| 400 | # CONFIG_MEGARAID_NEWGEN is not set | 428 | # CONFIG_MEGARAID_NEWGEN is not set |
| 401 | # CONFIG_MEGARAID_LEGACY is not set | 429 | # CONFIG_MEGARAID_LEGACY is not set |
| 430 | # CONFIG_MEGARAID_SAS is not set | ||
| 402 | # CONFIG_SCSI_SATA is not set | 431 | # CONFIG_SCSI_SATA is not set |
| 403 | # CONFIG_SCSI_DMX3191D is not set | 432 | # CONFIG_SCSI_DMX3191D is not set |
| 404 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 433 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
| @@ -409,14 +438,7 @@ CONFIG_SCSI_SPI_ATTRS=m | |||
| 409 | # CONFIG_SCSI_IPR is not set | 438 | # CONFIG_SCSI_IPR is not set |
| 410 | # CONFIG_SCSI_QLOGIC_FC is not set | 439 | # CONFIG_SCSI_QLOGIC_FC is not set |
| 411 | CONFIG_SCSI_QLOGIC_1280=y | 440 | CONFIG_SCSI_QLOGIC_1280=y |
| 412 | # CONFIG_SCSI_QLOGIC_1280_1040 is not set | 441 | # CONFIG_SCSI_QLA_FC is not set |
| 413 | CONFIG_SCSI_QLA2XXX=y | ||
| 414 | # CONFIG_SCSI_QLA21XX is not set | ||
| 415 | # CONFIG_SCSI_QLA22XX is not set | ||
| 416 | # CONFIG_SCSI_QLA2300 is not set | ||
| 417 | # CONFIG_SCSI_QLA2322 is not set | ||
| 418 | # CONFIG_SCSI_QLA6312 is not set | ||
| 419 | # CONFIG_SCSI_QLA24XX is not set | ||
| 420 | # CONFIG_SCSI_LPFC is not set | 442 | # CONFIG_SCSI_LPFC is not set |
| 421 | # CONFIG_SCSI_DC395x is not set | 443 | # CONFIG_SCSI_DC395x is not set |
| 422 | # CONFIG_SCSI_DC390T is not set | 444 | # CONFIG_SCSI_DC390T is not set |
| @@ -448,6 +470,7 @@ CONFIG_DM_ZERO=m | |||
| 448 | # CONFIG_FUSION is not set | 470 | # CONFIG_FUSION is not set |
| 449 | # CONFIG_FUSION_SPI is not set | 471 | # CONFIG_FUSION_SPI is not set |
| 450 | # CONFIG_FUSION_FC is not set | 472 | # CONFIG_FUSION_FC is not set |
| 473 | # CONFIG_FUSION_SAS is not set | ||
| 451 | 474 | ||
| 452 | # | 475 | # |
| 453 | # IEEE 1394 (FireWire) support | 476 | # IEEE 1394 (FireWire) support |
| @@ -486,6 +509,7 @@ CONFIG_NET_ETHERNET=y | |||
| 486 | CONFIG_MII=y | 509 | CONFIG_MII=y |
| 487 | # CONFIG_HAPPYMEAL is not set | 510 | # CONFIG_HAPPYMEAL is not set |
| 488 | # CONFIG_SUNGEM is not set | 511 | # CONFIG_SUNGEM is not set |
| 512 | # CONFIG_CASSINI is not set | ||
| 489 | # CONFIG_NET_VENDOR_3COM is not set | 513 | # CONFIG_NET_VENDOR_3COM is not set |
| 490 | 514 | ||
| 491 | # | 515 | # |
| @@ -524,6 +548,7 @@ CONFIG_EEPRO100=y | |||
| 524 | # CONFIG_R8169 is not set | 548 | # CONFIG_R8169 is not set |
| 525 | # CONFIG_SIS190 is not set | 549 | # CONFIG_SIS190 is not set |
| 526 | # CONFIG_SKGE is not set | 550 | # CONFIG_SKGE is not set |
| 551 | # CONFIG_SKY2 is not set | ||
| 527 | # CONFIG_SK98LIN is not set | 552 | # CONFIG_SK98LIN is not set |
| 528 | # CONFIG_VIA_VELOCITY is not set | 553 | # CONFIG_VIA_VELOCITY is not set |
| 529 | # CONFIG_TIGON3 is not set | 554 | # CONFIG_TIGON3 is not set |
| @@ -630,6 +655,7 @@ CONFIG_SERIAL_8250=y | |||
| 630 | CONFIG_SERIAL_8250_CONSOLE=y | 655 | CONFIG_SERIAL_8250_CONSOLE=y |
| 631 | CONFIG_SERIAL_8250_ACPI=y | 656 | CONFIG_SERIAL_8250_ACPI=y |
| 632 | CONFIG_SERIAL_8250_NR_UARTS=4 | 657 | CONFIG_SERIAL_8250_NR_UARTS=4 |
| 658 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 633 | CONFIG_SERIAL_8250_EXTENDED=y | 659 | CONFIG_SERIAL_8250_EXTENDED=y |
| 634 | CONFIG_SERIAL_8250_SHARE_IRQ=y | 660 | CONFIG_SERIAL_8250_SHARE_IRQ=y |
| 635 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set | 661 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set |
| @@ -681,6 +707,7 @@ CONFIG_DRM_R128=m | |||
| 681 | # TPM devices | 707 | # TPM devices |
| 682 | # | 708 | # |
| 683 | # CONFIG_TCG_TPM is not set | 709 | # CONFIG_TCG_TPM is not set |
| 710 | # CONFIG_TELCLOCK is not set | ||
| 684 | 711 | ||
| 685 | # | 712 | # |
| 686 | # I2C support | 713 | # I2C support |
| @@ -731,12 +758,19 @@ CONFIG_I2C_ALGOBIT=y | |||
| 731 | # CONFIG_SENSORS_PCF8591 is not set | 758 | # CONFIG_SENSORS_PCF8591 is not set |
| 732 | # CONFIG_SENSORS_RTC8564 is not set | 759 | # CONFIG_SENSORS_RTC8564 is not set |
| 733 | # CONFIG_SENSORS_MAX6875 is not set | 760 | # CONFIG_SENSORS_MAX6875 is not set |
| 761 | # CONFIG_RTC_X1205_I2C is not set | ||
| 734 | # CONFIG_I2C_DEBUG_CORE is not set | 762 | # CONFIG_I2C_DEBUG_CORE is not set |
| 735 | # CONFIG_I2C_DEBUG_ALGO is not set | 763 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 736 | # CONFIG_I2C_DEBUG_BUS is not set | 764 | # CONFIG_I2C_DEBUG_BUS is not set |
| 737 | # CONFIG_I2C_DEBUG_CHIP is not set | 765 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 738 | 766 | ||
| 739 | # | 767 | # |
| 768 | # SPI support | ||
| 769 | # | ||
| 770 | # CONFIG_SPI is not set | ||
| 771 | # CONFIG_SPI_MASTER is not set | ||
| 772 | |||
| 773 | # | ||
| 740 | # Dallas's 1-wire bus | 774 | # Dallas's 1-wire bus |
| 741 | # | 775 | # |
| 742 | # CONFIG_W1 is not set | 776 | # CONFIG_W1 is not set |
| @@ -754,6 +788,7 @@ CONFIG_HWMON=y | |||
| 754 | # CONFIG_SENSORS_ASB100 is not set | 788 | # CONFIG_SENSORS_ASB100 is not set |
| 755 | # CONFIG_SENSORS_ATXP1 is not set | 789 | # CONFIG_SENSORS_ATXP1 is not set |
| 756 | # CONFIG_SENSORS_DS1621 is not set | 790 | # CONFIG_SENSORS_DS1621 is not set |
| 791 | # CONFIG_SENSORS_F71805F is not set | ||
| 757 | # CONFIG_SENSORS_FSCHER is not set | 792 | # CONFIG_SENSORS_FSCHER is not set |
| 758 | # CONFIG_SENSORS_FSCPOS is not set | 793 | # CONFIG_SENSORS_FSCPOS is not set |
| 759 | # CONFIG_SENSORS_GL518SM is not set | 794 | # CONFIG_SENSORS_GL518SM is not set |
| @@ -775,6 +810,7 @@ CONFIG_HWMON=y | |||
| 775 | # CONFIG_SENSORS_SMSC47M1 is not set | 810 | # CONFIG_SENSORS_SMSC47M1 is not set |
| 776 | # CONFIG_SENSORS_SMSC47B397 is not set | 811 | # CONFIG_SENSORS_SMSC47B397 is not set |
| 777 | # CONFIG_SENSORS_VIA686A is not set | 812 | # CONFIG_SENSORS_VIA686A is not set |
| 813 | # CONFIG_SENSORS_VT8231 is not set | ||
| 778 | # CONFIG_SENSORS_W83781D is not set | 814 | # CONFIG_SENSORS_W83781D is not set |
| 779 | # CONFIG_SENSORS_W83792D is not set | 815 | # CONFIG_SENSORS_W83792D is not set |
| 780 | # CONFIG_SENSORS_W83L785TS is not set | 816 | # CONFIG_SENSORS_W83L785TS is not set |
| @@ -830,6 +866,8 @@ CONFIG_SND_OSSEMUL=y | |||
| 830 | CONFIG_SND_MIXER_OSS=m | 866 | CONFIG_SND_MIXER_OSS=m |
| 831 | CONFIG_SND_PCM_OSS=m | 867 | CONFIG_SND_PCM_OSS=m |
| 832 | # CONFIG_SND_SEQUENCER_OSS is not set | 868 | # CONFIG_SND_SEQUENCER_OSS is not set |
| 869 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
| 870 | CONFIG_SND_SUPPORT_OLD_API=y | ||
| 833 | # CONFIG_SND_VERBOSE_PRINTK is not set | 871 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 834 | # CONFIG_SND_DEBUG is not set | 872 | # CONFIG_SND_DEBUG is not set |
| 835 | 873 | ||
| @@ -837,17 +875,18 @@ CONFIG_SND_PCM_OSS=m | |||
| 837 | # Generic devices | 875 | # Generic devices |
| 838 | # | 876 | # |
| 839 | CONFIG_SND_OPL3_LIB=m | 877 | CONFIG_SND_OPL3_LIB=m |
| 878 | CONFIG_SND_AC97_CODEC=m | ||
| 879 | CONFIG_SND_AC97_BUS=m | ||
| 840 | # CONFIG_SND_DUMMY is not set | 880 | # CONFIG_SND_DUMMY is not set |
| 841 | # CONFIG_SND_VIRMIDI is not set | 881 | # CONFIG_SND_VIRMIDI is not set |
| 842 | # CONFIG_SND_MTPAV is not set | 882 | # CONFIG_SND_MTPAV is not set |
| 843 | # CONFIG_SND_SERIAL_U16550 is not set | 883 | # CONFIG_SND_SERIAL_U16550 is not set |
| 844 | # CONFIG_SND_MPU401 is not set | 884 | # CONFIG_SND_MPU401 is not set |
| 845 | CONFIG_SND_AC97_CODEC=m | ||
| 846 | CONFIG_SND_AC97_BUS=m | ||
| 847 | 885 | ||
| 848 | # | 886 | # |
| 849 | # PCI devices | 887 | # PCI devices |
| 850 | # | 888 | # |
| 889 | # CONFIG_SND_AD1889 is not set | ||
| 851 | # CONFIG_SND_ALI5451 is not set | 890 | # CONFIG_SND_ALI5451 is not set |
| 852 | # CONFIG_SND_ATIIXP is not set | 891 | # CONFIG_SND_ATIIXP is not set |
| 853 | # CONFIG_SND_ATIIXP_MODEM is not set | 892 | # CONFIG_SND_ATIIXP_MODEM is not set |
| @@ -856,38 +895,38 @@ CONFIG_SND_AC97_BUS=m | |||
| 856 | # CONFIG_SND_AU8830 is not set | 895 | # CONFIG_SND_AU8830 is not set |
| 857 | # CONFIG_SND_AZT3328 is not set | 896 | # CONFIG_SND_AZT3328 is not set |
| 858 | # CONFIG_SND_BT87X is not set | 897 | # CONFIG_SND_BT87X is not set |
| 859 | # CONFIG_SND_CS46XX is not set | 898 | # CONFIG_SND_CA0106 is not set |
| 899 | # CONFIG_SND_CMIPCI is not set | ||
| 860 | CONFIG_SND_CS4281=m | 900 | CONFIG_SND_CS4281=m |
| 901 | # CONFIG_SND_CS46XX is not set | ||
| 861 | # CONFIG_SND_EMU10K1 is not set | 902 | # CONFIG_SND_EMU10K1 is not set |
| 862 | # CONFIG_SND_EMU10K1X is not set | 903 | # CONFIG_SND_EMU10K1X is not set |
| 863 | # CONFIG_SND_CA0106 is not set | ||
| 864 | # CONFIG_SND_KORG1212 is not set | ||
| 865 | # CONFIG_SND_MIXART is not set | ||
| 866 | # CONFIG_SND_NM256 is not set | ||
| 867 | # CONFIG_SND_RME32 is not set | ||
| 868 | # CONFIG_SND_RME96 is not set | ||
| 869 | # CONFIG_SND_RME9652 is not set | ||
| 870 | # CONFIG_SND_HDSP is not set | ||
| 871 | # CONFIG_SND_HDSPM is not set | ||
| 872 | # CONFIG_SND_TRIDENT is not set | ||
| 873 | # CONFIG_SND_YMFPCI is not set | ||
| 874 | # CONFIG_SND_AD1889 is not set | ||
| 875 | # CONFIG_SND_CMIPCI is not set | ||
| 876 | # CONFIG_SND_ENS1370 is not set | 904 | # CONFIG_SND_ENS1370 is not set |
| 877 | # CONFIG_SND_ENS1371 is not set | 905 | # CONFIG_SND_ENS1371 is not set |
| 878 | # CONFIG_SND_ES1938 is not set | 906 | # CONFIG_SND_ES1938 is not set |
| 879 | # CONFIG_SND_ES1968 is not set | 907 | # CONFIG_SND_ES1968 is not set |
| 880 | # CONFIG_SND_MAESTRO3 is not set | ||
| 881 | # CONFIG_SND_FM801 is not set | 908 | # CONFIG_SND_FM801 is not set |
| 909 | # CONFIG_SND_HDA_INTEL is not set | ||
| 910 | # CONFIG_SND_HDSP is not set | ||
| 911 | # CONFIG_SND_HDSPM is not set | ||
| 882 | # CONFIG_SND_ICE1712 is not set | 912 | # CONFIG_SND_ICE1712 is not set |
| 883 | # CONFIG_SND_ICE1724 is not set | 913 | # CONFIG_SND_ICE1724 is not set |
| 884 | # CONFIG_SND_INTEL8X0 is not set | 914 | # CONFIG_SND_INTEL8X0 is not set |
| 885 | # CONFIG_SND_INTEL8X0M is not set | 915 | # CONFIG_SND_INTEL8X0M is not set |
| 916 | # CONFIG_SND_KORG1212 is not set | ||
| 917 | # CONFIG_SND_MAESTRO3 is not set | ||
| 918 | # CONFIG_SND_MIXART is not set | ||
| 919 | # CONFIG_SND_NM256 is not set | ||
| 920 | # CONFIG_SND_PCXHR is not set | ||
| 921 | # CONFIG_SND_RME32 is not set | ||
| 922 | # CONFIG_SND_RME96 is not set | ||
| 923 | # CONFIG_SND_RME9652 is not set | ||
| 886 | # CONFIG_SND_SONICVIBES is not set | 924 | # CONFIG_SND_SONICVIBES is not set |
| 925 | # CONFIG_SND_TRIDENT is not set | ||
| 887 | # CONFIG_SND_VIA82XX is not set | 926 | # CONFIG_SND_VIA82XX is not set |
| 888 | # CONFIG_SND_VIA82XX_MODEM is not set | 927 | # CONFIG_SND_VIA82XX_MODEM is not set |
| 889 | # CONFIG_SND_VX222 is not set | 928 | # CONFIG_SND_VX222 is not set |
| 890 | # CONFIG_SND_HDA_INTEL is not set | 929 | # CONFIG_SND_YMFPCI is not set |
| 891 | 930 | ||
| 892 | # | 931 | # |
| 893 | # USB devices | 932 | # USB devices |
| @@ -929,12 +968,15 @@ CONFIG_USB_UHCI_HCD=m | |||
| 929 | # USB Device Class drivers | 968 | # USB Device Class drivers |
| 930 | # | 969 | # |
| 931 | # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set | 970 | # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set |
| 932 | CONFIG_USB_BLUETOOTH_TTY=m | ||
| 933 | CONFIG_USB_ACM=m | 971 | CONFIG_USB_ACM=m |
| 934 | CONFIG_USB_PRINTER=m | 972 | CONFIG_USB_PRINTER=m |
| 935 | 973 | ||
| 936 | # | 974 | # |
| 937 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | 975 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 976 | # | ||
| 977 | |||
| 978 | # | ||
| 979 | # may also be needed; see USB_STORAGE Help for more information | ||
| 938 | # | 980 | # |
| 939 | CONFIG_USB_STORAGE=m | 981 | CONFIG_USB_STORAGE=m |
| 940 | # CONFIG_USB_STORAGE_DEBUG is not set | 982 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -946,13 +988,15 @@ CONFIG_USB_STORAGE=m | |||
| 946 | # CONFIG_USB_STORAGE_SDDR09 is not set | 988 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 947 | # CONFIG_USB_STORAGE_SDDR55 is not set | 989 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 948 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 990 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 949 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 991 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 992 | # CONFIG_USB_LIBUSUAL is not set | ||
| 950 | 993 | ||
| 951 | # | 994 | # |
| 952 | # USB Input Devices | 995 | # USB Input Devices |
| 953 | # | 996 | # |
| 954 | CONFIG_USB_HID=m | 997 | CONFIG_USB_HID=m |
| 955 | CONFIG_USB_HIDINPUT=y | 998 | CONFIG_USB_HIDINPUT=y |
| 999 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 956 | # CONFIG_HID_FF is not set | 1000 | # CONFIG_HID_FF is not set |
| 957 | CONFIG_USB_HIDDEV=y | 1001 | CONFIG_USB_HIDDEV=y |
| 958 | 1002 | ||
| @@ -972,6 +1016,7 @@ CONFIG_USB_HIDDEV=y | |||
| 972 | # CONFIG_USB_YEALINK is not set | 1016 | # CONFIG_USB_YEALINK is not set |
| 973 | # CONFIG_USB_XPAD is not set | 1017 | # CONFIG_USB_XPAD is not set |
| 974 | # CONFIG_USB_ATI_REMOTE is not set | 1018 | # CONFIG_USB_ATI_REMOTE is not set |
| 1019 | # CONFIG_USB_ATI_REMOTE2 is not set | ||
| 975 | # CONFIG_USB_KEYSPAN_REMOTE is not set | 1020 | # CONFIG_USB_KEYSPAN_REMOTE is not set |
| 976 | # CONFIG_USB_APPLETOUCH is not set | 1021 | # CONFIG_USB_APPLETOUCH is not set |
| 977 | 1022 | ||
| @@ -1046,7 +1091,7 @@ CONFIG_USB_MON=y | |||
| 1046 | # CONFIG_INFINIBAND is not set | 1091 | # CONFIG_INFINIBAND is not set |
| 1047 | 1092 | ||
| 1048 | # | 1093 | # |
| 1049 | # SN Devices | 1094 | # EDAC - error detection and reporting (RAS) |
| 1050 | # | 1095 | # |
| 1051 | 1096 | ||
| 1052 | # | 1097 | # |
| @@ -1071,6 +1116,7 @@ CONFIG_XFS_QUOTA=y | |||
| 1071 | CONFIG_XFS_SECURITY=y | 1116 | CONFIG_XFS_SECURITY=y |
| 1072 | CONFIG_XFS_POSIX_ACL=y | 1117 | CONFIG_XFS_POSIX_ACL=y |
| 1073 | # CONFIG_XFS_RT is not set | 1118 | # CONFIG_XFS_RT is not set |
| 1119 | # CONFIG_OCFS2_FS is not set | ||
| 1074 | # CONFIG_MINIX_FS is not set | 1120 | # CONFIG_MINIX_FS is not set |
| 1075 | # CONFIG_ROMFS_FS is not set | 1121 | # CONFIG_ROMFS_FS is not set |
| 1076 | CONFIG_INOTIFY=y | 1122 | CONFIG_INOTIFY=y |
| @@ -1111,6 +1157,7 @@ CONFIG_HUGETLBFS=y | |||
| 1111 | CONFIG_HUGETLB_PAGE=y | 1157 | CONFIG_HUGETLB_PAGE=y |
| 1112 | CONFIG_RAMFS=y | 1158 | CONFIG_RAMFS=y |
| 1113 | # CONFIG_RELAYFS_FS is not set | 1159 | # CONFIG_RELAYFS_FS is not set |
| 1160 | # CONFIG_CONFIGFS_FS is not set | ||
| 1114 | 1161 | ||
| 1115 | # | 1162 | # |
| 1116 | # Miscellaneous filesystems | 1163 | # Miscellaneous filesystems |
| @@ -1153,6 +1200,7 @@ CONFIG_RPCSEC_GSS_KRB5=m | |||
| 1153 | # CONFIG_SMB_FS is not set | 1200 | # CONFIG_SMB_FS is not set |
| 1154 | CONFIG_CIFS=m | 1201 | CONFIG_CIFS=m |
| 1155 | CONFIG_CIFS_STATS=y | 1202 | CONFIG_CIFS_STATS=y |
| 1203 | # CONFIG_CIFS_STATS2 is not set | ||
| 1156 | CONFIG_CIFS_XATTR=y | 1204 | CONFIG_CIFS_XATTR=y |
| 1157 | CONFIG_CIFS_POSIX=y | 1205 | CONFIG_CIFS_POSIX=y |
| 1158 | # CONFIG_CIFS_EXPERIMENTAL is not set | 1206 | # CONFIG_CIFS_EXPERIMENTAL is not set |
| @@ -1179,6 +1227,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1179 | CONFIG_SGI_PARTITION=y | 1227 | CONFIG_SGI_PARTITION=y |
| 1180 | # CONFIG_ULTRIX_PARTITION is not set | 1228 | # CONFIG_ULTRIX_PARTITION is not set |
| 1181 | # CONFIG_SUN_PARTITION is not set | 1229 | # CONFIG_SUN_PARTITION is not set |
| 1230 | # CONFIG_KARMA_PARTITION is not set | ||
| 1182 | CONFIG_EFI_PARTITION=y | 1231 | CONFIG_EFI_PARTITION=y |
| 1183 | 1232 | ||
| 1184 | # | 1233 | # |
| @@ -1237,28 +1286,32 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 1237 | CONFIG_GENERIC_PENDING_IRQ=y | 1286 | CONFIG_GENERIC_PENDING_IRQ=y |
| 1238 | 1287 | ||
| 1239 | # | 1288 | # |
| 1240 | # Profiling support | 1289 | # Instrumentation Support |
| 1241 | # | 1290 | # |
| 1242 | CONFIG_PROFILING=y | 1291 | CONFIG_PROFILING=y |
| 1243 | CONFIG_OPROFILE=y | 1292 | CONFIG_OPROFILE=y |
| 1293 | # CONFIG_KPROBES is not set | ||
| 1244 | 1294 | ||
| 1245 | # | 1295 | # |
| 1246 | # Kernel hacking | 1296 | # Kernel hacking |
| 1247 | # | 1297 | # |
| 1248 | # CONFIG_PRINTK_TIME is not set | 1298 | # CONFIG_PRINTK_TIME is not set |
| 1249 | CONFIG_DEBUG_KERNEL=y | ||
| 1250 | CONFIG_MAGIC_SYSRQ=y | 1299 | CONFIG_MAGIC_SYSRQ=y |
| 1300 | CONFIG_DEBUG_KERNEL=y | ||
| 1251 | CONFIG_LOG_BUF_SHIFT=16 | 1301 | CONFIG_LOG_BUF_SHIFT=16 |
| 1252 | CONFIG_DETECT_SOFTLOCKUP=y | 1302 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1253 | # CONFIG_SCHEDSTATS is not set | 1303 | # CONFIG_SCHEDSTATS is not set |
| 1254 | # CONFIG_DEBUG_SLAB is not set | 1304 | # CONFIG_DEBUG_SLAB is not set |
| 1255 | CONFIG_DEBUG_PREEMPT=y | 1305 | CONFIG_DEBUG_PREEMPT=y |
| 1306 | CONFIG_DEBUG_MUTEXES=y | ||
| 1256 | # CONFIG_DEBUG_SPINLOCK is not set | 1307 | # CONFIG_DEBUG_SPINLOCK is not set |
| 1257 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1308 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1258 | # CONFIG_DEBUG_KOBJECT is not set | 1309 | # CONFIG_DEBUG_KOBJECT is not set |
| 1259 | # CONFIG_DEBUG_INFO is not set | 1310 | # CONFIG_DEBUG_INFO is not set |
| 1260 | # CONFIG_DEBUG_FS is not set | 1311 | # CONFIG_DEBUG_FS is not set |
| 1261 | # CONFIG_KPROBES is not set | 1312 | # CONFIG_DEBUG_VM is not set |
| 1313 | CONFIG_FORCED_INLINING=y | ||
| 1314 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1262 | # CONFIG_IA64_GRANULE_16MB is not set | 1315 | # CONFIG_IA64_GRANULE_16MB is not set |
| 1263 | CONFIG_IA64_GRANULE_64MB=y | 1316 | CONFIG_IA64_GRANULE_64MB=y |
| 1264 | # CONFIG_IA64_PRINT_HAZARDS is not set | 1317 | # CONFIG_IA64_PRINT_HAZARDS is not set |
diff --git a/arch/ia64/configs/gensparse_defconfig b/arch/ia64/configs/gensparse_defconfig index 991c07b57c24..744fd2f79f61 100644 --- a/arch/ia64/configs/gensparse_defconfig +++ b/arch/ia64/configs/gensparse_defconfig | |||
| @@ -1,14 +1,13 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.14-rc2 | 3 | # Linux kernel version: 2.6.16-rc5 |
| 4 | # Wed Sep 28 08:27:29 2005 | 4 | # Thu Mar 2 16:39:10 2006 |
| 5 | # | 5 | # |
| 6 | 6 | ||
| 7 | # | 7 | # |
| 8 | # Code maturity level options | 8 | # Code maturity level options |
| 9 | # | 9 | # |
| 10 | CONFIG_EXPERIMENTAL=y | 10 | CONFIG_EXPERIMENTAL=y |
| 11 | CONFIG_CLEAN_COMPILE=y | ||
| 12 | CONFIG_LOCK_KERNEL=y | 11 | CONFIG_LOCK_KERNEL=y |
| 13 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 12 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 14 | 13 | ||
| @@ -23,18 +22,19 @@ CONFIG_POSIX_MQUEUE=y | |||
| 23 | # CONFIG_BSD_PROCESS_ACCT is not set | 22 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 24 | CONFIG_SYSCTL=y | 23 | CONFIG_SYSCTL=y |
| 25 | # CONFIG_AUDIT is not set | 24 | # CONFIG_AUDIT is not set |
| 26 | CONFIG_HOTPLUG=y | ||
| 27 | CONFIG_KOBJECT_UEVENT=y | ||
| 28 | CONFIG_IKCONFIG=y | 25 | CONFIG_IKCONFIG=y |
| 29 | CONFIG_IKCONFIG_PROC=y | 26 | CONFIG_IKCONFIG_PROC=y |
| 30 | # CONFIG_CPUSETS is not set | 27 | # CONFIG_CPUSETS is not set |
| 31 | CONFIG_INITRAMFS_SOURCE="" | 28 | CONFIG_INITRAMFS_SOURCE="" |
| 29 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 32 | # CONFIG_EMBEDDED is not set | 30 | # CONFIG_EMBEDDED is not set |
| 33 | CONFIG_KALLSYMS=y | 31 | CONFIG_KALLSYMS=y |
| 34 | CONFIG_KALLSYMS_ALL=y | 32 | CONFIG_KALLSYMS_ALL=y |
| 35 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 33 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 34 | CONFIG_HOTPLUG=y | ||
| 36 | CONFIG_PRINTK=y | 35 | CONFIG_PRINTK=y |
| 37 | CONFIG_BUG=y | 36 | CONFIG_BUG=y |
| 37 | CONFIG_ELF_CORE=y | ||
| 38 | CONFIG_BASE_FULL=y | 38 | CONFIG_BASE_FULL=y |
| 39 | CONFIG_FUTEX=y | 39 | CONFIG_FUTEX=y |
| 40 | CONFIG_EPOLL=y | 40 | CONFIG_EPOLL=y |
| @@ -43,8 +43,10 @@ CONFIG_CC_ALIGN_FUNCTIONS=0 | |||
| 43 | CONFIG_CC_ALIGN_LABELS=0 | 43 | CONFIG_CC_ALIGN_LABELS=0 |
| 44 | CONFIG_CC_ALIGN_LOOPS=0 | 44 | CONFIG_CC_ALIGN_LOOPS=0 |
| 45 | CONFIG_CC_ALIGN_JUMPS=0 | 45 | CONFIG_CC_ALIGN_JUMPS=0 |
| 46 | CONFIG_SLAB=y | ||
| 46 | # CONFIG_TINY_SHMEM is not set | 47 | # CONFIG_TINY_SHMEM is not set |
| 47 | CONFIG_BASE_SMALL=0 | 48 | CONFIG_BASE_SMALL=0 |
| 49 | # CONFIG_SLOB is not set | ||
| 48 | 50 | ||
| 49 | # | 51 | # |
| 50 | # Loadable module support | 52 | # Loadable module support |
| @@ -59,17 +61,36 @@ CONFIG_KMOD=y | |||
| 59 | CONFIG_STOP_MACHINE=y | 61 | CONFIG_STOP_MACHINE=y |
| 60 | 62 | ||
| 61 | # | 63 | # |
| 64 | # Block layer | ||
| 65 | # | ||
| 66 | |||
| 67 | # | ||
| 68 | # IO Schedulers | ||
| 69 | # | ||
| 70 | CONFIG_IOSCHED_NOOP=y | ||
| 71 | CONFIG_IOSCHED_AS=y | ||
| 72 | CONFIG_IOSCHED_DEADLINE=y | ||
| 73 | CONFIG_IOSCHED_CFQ=y | ||
| 74 | CONFIG_DEFAULT_AS=y | ||
| 75 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 76 | # CONFIG_DEFAULT_CFQ is not set | ||
| 77 | # CONFIG_DEFAULT_NOOP is not set | ||
| 78 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 79 | |||
| 80 | # | ||
| 62 | # Processor type and features | 81 | # Processor type and features |
| 63 | # | 82 | # |
| 64 | CONFIG_IA64=y | 83 | CONFIG_IA64=y |
| 65 | CONFIG_64BIT=y | 84 | CONFIG_64BIT=y |
| 66 | CONFIG_MMU=y | 85 | CONFIG_MMU=y |
| 86 | CONFIG_SWIOTLB=y | ||
| 67 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 87 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 68 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 88 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 69 | CONFIG_TIME_INTERPOLATION=y | 89 | CONFIG_TIME_INTERPOLATION=y |
| 70 | CONFIG_EFI=y | 90 | CONFIG_EFI=y |
| 71 | CONFIG_GENERIC_IOMAP=y | 91 | CONFIG_GENERIC_IOMAP=y |
| 72 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 92 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
| 93 | CONFIG_DMA_IS_DMA32=y | ||
| 73 | CONFIG_IA64_GENERIC=y | 94 | CONFIG_IA64_GENERIC=y |
| 74 | # CONFIG_IA64_DIG is not set | 95 | # CONFIG_IA64_DIG is not set |
| 75 | # CONFIG_IA64_HP_ZX1 is not set | 96 | # CONFIG_IA64_HP_ZX1 is not set |
| @@ -82,6 +103,8 @@ CONFIG_MCKINLEY=y | |||
| 82 | # CONFIG_IA64_PAGE_SIZE_8KB is not set | 103 | # CONFIG_IA64_PAGE_SIZE_8KB is not set |
| 83 | CONFIG_IA64_PAGE_SIZE_16KB=y | 104 | CONFIG_IA64_PAGE_SIZE_16KB=y |
| 84 | # CONFIG_IA64_PAGE_SIZE_64KB is not set | 105 | # CONFIG_IA64_PAGE_SIZE_64KB is not set |
| 106 | CONFIG_PGTABLE_3=y | ||
| 107 | # CONFIG_PGTABLE_4 is not set | ||
| 85 | # CONFIG_HZ_100 is not set | 108 | # CONFIG_HZ_100 is not set |
| 86 | CONFIG_HZ_250=y | 109 | CONFIG_HZ_250=y |
| 87 | # CONFIG_HZ_1000 is not set | 110 | # CONFIG_HZ_1000 is not set |
| @@ -105,6 +128,9 @@ CONFIG_NEED_MULTIPLE_NODES=y | |||
| 105 | CONFIG_HAVE_MEMORY_PRESENT=y | 128 | CONFIG_HAVE_MEMORY_PRESENT=y |
| 106 | # CONFIG_SPARSEMEM_STATIC is not set | 129 | # CONFIG_SPARSEMEM_STATIC is not set |
| 107 | CONFIG_SPARSEMEM_EXTREME=y | 130 | CONFIG_SPARSEMEM_EXTREME=y |
| 131 | # CONFIG_MEMORY_HOTPLUG is not set | ||
| 132 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 133 | CONFIG_MIGRATION=y | ||
| 108 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | 134 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y |
| 109 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | 135 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y |
| 110 | CONFIG_ARCH_FLATMEM_ENABLE=y | 136 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| @@ -117,13 +143,13 @@ CONFIG_COMPAT=y | |||
| 117 | CONFIG_IA64_MCA_RECOVERY=y | 143 | CONFIG_IA64_MCA_RECOVERY=y |
| 118 | CONFIG_PERFMON=y | 144 | CONFIG_PERFMON=y |
| 119 | CONFIG_IA64_PALINFO=y | 145 | CONFIG_IA64_PALINFO=y |
| 146 | CONFIG_SGI_SN=y | ||
| 120 | 147 | ||
| 121 | # | 148 | # |
| 122 | # Firmware Drivers | 149 | # Firmware Drivers |
| 123 | # | 150 | # |
| 124 | CONFIG_EFI_VARS=y | 151 | CONFIG_EFI_VARS=y |
| 125 | CONFIG_EFI_PCDP=y | 152 | CONFIG_EFI_PCDP=y |
| 126 | # CONFIG_DELL_RBU is not set | ||
| 127 | CONFIG_BINFMT_ELF=y | 153 | CONFIG_BINFMT_ELF=y |
| 128 | CONFIG_BINFMT_MISC=m | 154 | CONFIG_BINFMT_MISC=m |
| 129 | 155 | ||
| @@ -131,6 +157,7 @@ CONFIG_BINFMT_MISC=m | |||
| 131 | # Power management and ACPI | 157 | # Power management and ACPI |
| 132 | # | 158 | # |
| 133 | CONFIG_PM=y | 159 | CONFIG_PM=y |
| 160 | CONFIG_PM_LEGACY=y | ||
| 134 | # CONFIG_PM_DEBUG is not set | 161 | # CONFIG_PM_DEBUG is not set |
| 135 | 162 | ||
| 136 | # | 163 | # |
| @@ -145,6 +172,7 @@ CONFIG_ACPI_THERMAL=m | |||
| 145 | CONFIG_ACPI_NUMA=y | 172 | CONFIG_ACPI_NUMA=y |
| 146 | CONFIG_ACPI_BLACKLIST_YEAR=0 | 173 | CONFIG_ACPI_BLACKLIST_YEAR=0 |
| 147 | # CONFIG_ACPI_DEBUG is not set | 174 | # CONFIG_ACPI_DEBUG is not set |
| 175 | CONFIG_ACPI_EC=y | ||
| 148 | CONFIG_ACPI_POWER=y | 176 | CONFIG_ACPI_POWER=y |
| 149 | CONFIG_ACPI_SYSTEM=y | 177 | CONFIG_ACPI_SYSTEM=y |
| 150 | CONFIG_ACPI_CONTAINER=m | 178 | CONFIG_ACPI_CONTAINER=m |
| @@ -187,6 +215,7 @@ CONFIG_NET=y | |||
| 187 | # | 215 | # |
| 188 | # Networking options | 216 | # Networking options |
| 189 | # | 217 | # |
| 218 | # CONFIG_NETDEBUG is not set | ||
| 190 | CONFIG_PACKET=y | 219 | CONFIG_PACKET=y |
| 191 | # CONFIG_PACKET_MMAP is not set | 220 | # CONFIG_PACKET_MMAP is not set |
| 192 | CONFIG_UNIX=y | 221 | CONFIG_UNIX=y |
| @@ -221,6 +250,11 @@ CONFIG_TCP_CONG_BIC=y | |||
| 221 | # SCTP Configuration (EXPERIMENTAL) | 250 | # SCTP Configuration (EXPERIMENTAL) |
| 222 | # | 251 | # |
| 223 | # CONFIG_IP_SCTP is not set | 252 | # CONFIG_IP_SCTP is not set |
| 253 | |||
| 254 | # | ||
| 255 | # TIPC Configuration (EXPERIMENTAL) | ||
| 256 | # | ||
| 257 | # CONFIG_TIPC is not set | ||
| 224 | # CONFIG_ATM is not set | 258 | # CONFIG_ATM is not set |
| 225 | # CONFIG_BRIDGE is not set | 259 | # CONFIG_BRIDGE is not set |
| 226 | # CONFIG_VLAN_8021Q is not set | 260 | # CONFIG_VLAN_8021Q is not set |
| @@ -233,8 +267,11 @@ CONFIG_TCP_CONG_BIC=y | |||
| 233 | # CONFIG_NET_DIVERT is not set | 267 | # CONFIG_NET_DIVERT is not set |
| 234 | # CONFIG_ECONET is not set | 268 | # CONFIG_ECONET is not set |
| 235 | # CONFIG_WAN_ROUTER is not set | 269 | # CONFIG_WAN_ROUTER is not set |
| 270 | |||
| 271 | # | ||
| 272 | # QoS and/or fair queueing | ||
| 273 | # | ||
| 236 | # CONFIG_NET_SCHED is not set | 274 | # CONFIG_NET_SCHED is not set |
| 237 | # CONFIG_NET_CLS_ROUTE is not set | ||
| 238 | 275 | ||
| 239 | # | 276 | # |
| 240 | # Network testing | 277 | # Network testing |
| @@ -275,7 +312,13 @@ CONFIG_FW_LOADER=m | |||
| 275 | # | 312 | # |
| 276 | # Plug and Play support | 313 | # Plug and Play support |
| 277 | # | 314 | # |
| 278 | # CONFIG_PNP is not set | 315 | CONFIG_PNP=y |
| 316 | # CONFIG_PNP_DEBUG is not set | ||
| 317 | |||
| 318 | # | ||
| 319 | # Protocols | ||
| 320 | # | ||
| 321 | CONFIG_PNPACPI=y | ||
| 279 | 322 | ||
| 280 | # | 323 | # |
| 281 | # Block devices | 324 | # Block devices |
| @@ -295,20 +338,13 @@ CONFIG_BLK_DEV_RAM_COUNT=16 | |||
| 295 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 338 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
| 296 | CONFIG_BLK_DEV_INITRD=y | 339 | CONFIG_BLK_DEV_INITRD=y |
| 297 | # CONFIG_CDROM_PKTCDVD is not set | 340 | # 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 | 341 | # CONFIG_ATA_OVER_ETH is not set |
| 307 | 342 | ||
| 308 | # | 343 | # |
| 309 | # ATA/ATAPI/MFM/RLL support | 344 | # ATA/ATAPI/MFM/RLL support |
| 310 | # | 345 | # |
| 311 | CONFIG_IDE=y | 346 | CONFIG_IDE=y |
| 347 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 312 | CONFIG_BLK_DEV_IDE=y | 348 | CONFIG_BLK_DEV_IDE=y |
| 313 | 349 | ||
| 314 | # | 350 | # |
| @@ -327,6 +363,7 @@ CONFIG_BLK_DEV_IDESCSI=m | |||
| 327 | # IDE chipset support/bugfixes | 363 | # IDE chipset support/bugfixes |
| 328 | # | 364 | # |
| 329 | CONFIG_IDE_GENERIC=y | 365 | CONFIG_IDE_GENERIC=y |
| 366 | # CONFIG_BLK_DEV_IDEPNP is not set | ||
| 330 | CONFIG_BLK_DEV_IDEPCI=y | 367 | CONFIG_BLK_DEV_IDEPCI=y |
| 331 | # CONFIG_IDEPCI_SHARE_IRQ is not set | 368 | # CONFIG_IDEPCI_SHARE_IRQ is not set |
| 332 | # CONFIG_BLK_DEV_OFFBOARD is not set | 369 | # CONFIG_BLK_DEV_OFFBOARD is not set |
| @@ -400,6 +437,7 @@ CONFIG_SCSI_FC_ATTRS=y | |||
| 400 | # | 437 | # |
| 401 | # SCSI low-level drivers | 438 | # SCSI low-level drivers |
| 402 | # | 439 | # |
| 440 | # CONFIG_ISCSI_TCP is not set | ||
| 403 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 441 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
| 404 | # CONFIG_SCSI_3W_9XXX is not set | 442 | # CONFIG_SCSI_3W_9XXX is not set |
| 405 | # CONFIG_SCSI_ACARD is not set | 443 | # CONFIG_SCSI_ACARD is not set |
| @@ -409,16 +447,19 @@ CONFIG_SCSI_FC_ATTRS=y | |||
| 409 | # CONFIG_SCSI_AIC79XX is not set | 447 | # CONFIG_SCSI_AIC79XX is not set |
| 410 | # CONFIG_MEGARAID_NEWGEN is not set | 448 | # CONFIG_MEGARAID_NEWGEN is not set |
| 411 | # CONFIG_MEGARAID_LEGACY is not set | 449 | # CONFIG_MEGARAID_LEGACY is not set |
| 450 | # CONFIG_MEGARAID_SAS is not set | ||
| 412 | CONFIG_SCSI_SATA=y | 451 | CONFIG_SCSI_SATA=y |
| 413 | # CONFIG_SCSI_SATA_AHCI is not set | 452 | # CONFIG_SCSI_SATA_AHCI is not set |
| 414 | # CONFIG_SCSI_SATA_SVW is not set | 453 | # CONFIG_SCSI_SATA_SVW is not set |
| 415 | # CONFIG_SCSI_ATA_PIIX is not set | 454 | # CONFIG_SCSI_ATA_PIIX is not set |
| 416 | # CONFIG_SCSI_SATA_MV is not set | 455 | # CONFIG_SCSI_SATA_MV is not set |
| 417 | # CONFIG_SCSI_SATA_NV is not set | 456 | # CONFIG_SCSI_SATA_NV is not set |
| 418 | # CONFIG_SCSI_SATA_PROMISE is not set | 457 | # CONFIG_SCSI_PDC_ADMA is not set |
| 419 | # CONFIG_SCSI_SATA_QSTOR is not set | 458 | # CONFIG_SCSI_SATA_QSTOR is not set |
| 459 | # CONFIG_SCSI_SATA_PROMISE is not set | ||
| 420 | # CONFIG_SCSI_SATA_SX4 is not set | 460 | # CONFIG_SCSI_SATA_SX4 is not set |
| 421 | # CONFIG_SCSI_SATA_SIL is not set | 461 | # CONFIG_SCSI_SATA_SIL is not set |
| 462 | # CONFIG_SCSI_SATA_SIL24 is not set | ||
| 422 | # CONFIG_SCSI_SATA_SIS is not set | 463 | # CONFIG_SCSI_SATA_SIS is not set |
| 423 | # CONFIG_SCSI_SATA_ULI is not set | 464 | # CONFIG_SCSI_SATA_ULI is not set |
| 424 | # CONFIG_SCSI_SATA_VIA is not set | 465 | # CONFIG_SCSI_SATA_VIA is not set |
| @@ -436,14 +477,7 @@ CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | |||
| 436 | # CONFIG_SCSI_IPR is not set | 477 | # CONFIG_SCSI_IPR is not set |
| 437 | # CONFIG_SCSI_QLOGIC_FC is not set | 478 | # CONFIG_SCSI_QLOGIC_FC is not set |
| 438 | CONFIG_SCSI_QLOGIC_1280=y | 479 | CONFIG_SCSI_QLOGIC_1280=y |
| 439 | # CONFIG_SCSI_QLOGIC_1280_1040 is not set | 480 | # CONFIG_SCSI_QLA_FC 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 | 481 | # CONFIG_SCSI_LPFC is not set |
| 448 | # CONFIG_SCSI_DC395x is not set | 482 | # CONFIG_SCSI_DC395x is not set |
| 449 | # CONFIG_SCSI_DC390T is not set | 483 | # CONFIG_SCSI_DC390T is not set |
| @@ -476,6 +510,7 @@ CONFIG_DM_MULTIPATH=m | |||
| 476 | CONFIG_FUSION=y | 510 | CONFIG_FUSION=y |
| 477 | CONFIG_FUSION_SPI=y | 511 | CONFIG_FUSION_SPI=y |
| 478 | CONFIG_FUSION_FC=m | 512 | CONFIG_FUSION_FC=m |
| 513 | # CONFIG_FUSION_SAS is not set | ||
| 479 | CONFIG_FUSION_MAX_SGE=128 | 514 | CONFIG_FUSION_MAX_SGE=128 |
| 480 | # CONFIG_FUSION_CTL is not set | 515 | # CONFIG_FUSION_CTL is not set |
| 481 | 516 | ||
| @@ -497,6 +532,7 @@ CONFIG_DUMMY=m | |||
| 497 | # CONFIG_BONDING is not set | 532 | # CONFIG_BONDING is not set |
| 498 | # CONFIG_EQUALIZER is not set | 533 | # CONFIG_EQUALIZER is not set |
| 499 | # CONFIG_TUN is not set | 534 | # CONFIG_TUN is not set |
| 535 | # CONFIG_NET_SB1000 is not set | ||
| 500 | 536 | ||
| 501 | # | 537 | # |
| 502 | # ARCnet devices | 538 | # ARCnet devices |
| @@ -515,6 +551,7 @@ CONFIG_NET_ETHERNET=y | |||
| 515 | CONFIG_MII=m | 551 | CONFIG_MII=m |
| 516 | # CONFIG_HAPPYMEAL is not set | 552 | # CONFIG_HAPPYMEAL is not set |
| 517 | # CONFIG_SUNGEM is not set | 553 | # CONFIG_SUNGEM is not set |
| 554 | # CONFIG_CASSINI is not set | ||
| 518 | # CONFIG_NET_VENDOR_3COM is not set | 555 | # CONFIG_NET_VENDOR_3COM is not set |
| 519 | 556 | ||
| 520 | # | 557 | # |
| @@ -564,6 +601,7 @@ CONFIG_E1000=y | |||
| 564 | # CONFIG_R8169 is not set | 601 | # CONFIG_R8169 is not set |
| 565 | # CONFIG_SIS190 is not set | 602 | # CONFIG_SIS190 is not set |
| 566 | # CONFIG_SKGE is not set | 603 | # CONFIG_SKGE is not set |
| 604 | # CONFIG_SKY2 is not set | ||
| 567 | # CONFIG_SK98LIN is not set | 605 | # CONFIG_SK98LIN is not set |
| 568 | # CONFIG_VIA_VELOCITY is not set | 606 | # CONFIG_VIA_VELOCITY is not set |
| 569 | CONFIG_TIGON3=y | 607 | CONFIG_TIGON3=y |
| @@ -668,12 +706,15 @@ CONFIG_VT=y | |||
| 668 | CONFIG_VT_CONSOLE=y | 706 | CONFIG_VT_CONSOLE=y |
| 669 | CONFIG_HW_CONSOLE=y | 707 | CONFIG_HW_CONSOLE=y |
| 670 | CONFIG_SERIAL_NONSTANDARD=y | 708 | CONFIG_SERIAL_NONSTANDARD=y |
| 709 | # CONFIG_COMPUTONE is not set | ||
| 671 | # CONFIG_ROCKETPORT is not set | 710 | # CONFIG_ROCKETPORT is not set |
| 672 | # CONFIG_CYCLADES is not set | 711 | # CONFIG_CYCLADES is not set |
| 673 | # CONFIG_DIGIEPCA is not set | 712 | # CONFIG_DIGIEPCA is not set |
| 713 | # CONFIG_MOXA_INTELLIO is not set | ||
| 674 | # CONFIG_MOXA_SMARTIO is not set | 714 | # CONFIG_MOXA_SMARTIO is not set |
| 675 | # CONFIG_ISI is not set | 715 | # CONFIG_ISI is not set |
| 676 | # CONFIG_SYNCLINKMP is not set | 716 | # CONFIG_SYNCLINKMP is not set |
| 717 | # CONFIG_SYNCLINK_GT is not set | ||
| 677 | # CONFIG_N_HDLC is not set | 718 | # CONFIG_N_HDLC is not set |
| 678 | # CONFIG_SPECIALIX is not set | 719 | # CONFIG_SPECIALIX is not set |
| 679 | # CONFIG_SX is not set | 720 | # CONFIG_SX is not set |
| @@ -689,6 +730,7 @@ CONFIG_SERIAL_8250=y | |||
| 689 | CONFIG_SERIAL_8250_CONSOLE=y | 730 | CONFIG_SERIAL_8250_CONSOLE=y |
| 690 | CONFIG_SERIAL_8250_ACPI=y | 731 | CONFIG_SERIAL_8250_ACPI=y |
| 691 | CONFIG_SERIAL_8250_NR_UARTS=6 | 732 | CONFIG_SERIAL_8250_NR_UARTS=6 |
| 733 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 692 | CONFIG_SERIAL_8250_EXTENDED=y | 734 | CONFIG_SERIAL_8250_EXTENDED=y |
| 693 | CONFIG_SERIAL_8250_SHARE_IRQ=y | 735 | CONFIG_SERIAL_8250_SHARE_IRQ=y |
| 694 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set | 736 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set |
| @@ -738,10 +780,10 @@ CONFIG_DRM_SIS=m | |||
| 738 | # CONFIG_DRM_VIA is not set | 780 | # CONFIG_DRM_VIA is not set |
| 739 | # CONFIG_DRM_SAVAGE is not set | 781 | # CONFIG_DRM_SAVAGE is not set |
| 740 | CONFIG_RAW_DRIVER=m | 782 | CONFIG_RAW_DRIVER=m |
| 783 | CONFIG_MAX_RAW_DEVS=256 | ||
| 741 | CONFIG_HPET=y | 784 | CONFIG_HPET=y |
| 742 | # CONFIG_HPET_RTC_IRQ is not set | 785 | # CONFIG_HPET_RTC_IRQ is not set |
| 743 | CONFIG_HPET_MMAP=y | 786 | CONFIG_HPET_MMAP=y |
| 744 | CONFIG_MAX_RAW_DEVS=256 | ||
| 745 | # CONFIG_HANGCHECK_TIMER is not set | 787 | # CONFIG_HANGCHECK_TIMER is not set |
| 746 | CONFIG_MMTIMER=y | 788 | CONFIG_MMTIMER=y |
| 747 | 789 | ||
| @@ -749,6 +791,7 @@ CONFIG_MMTIMER=y | |||
| 749 | # TPM devices | 791 | # TPM devices |
| 750 | # | 792 | # |
| 751 | # CONFIG_TCG_TPM is not set | 793 | # CONFIG_TCG_TPM is not set |
| 794 | # CONFIG_TELCLOCK is not set | ||
| 752 | 795 | ||
| 753 | # | 796 | # |
| 754 | # I2C support | 797 | # I2C support |
| @@ -756,6 +799,12 @@ CONFIG_MMTIMER=y | |||
| 756 | # CONFIG_I2C is not set | 799 | # CONFIG_I2C is not set |
| 757 | 800 | ||
| 758 | # | 801 | # |
| 802 | # SPI support | ||
| 803 | # | ||
| 804 | # CONFIG_SPI is not set | ||
| 805 | # CONFIG_SPI_MASTER is not set | ||
| 806 | |||
| 807 | # | ||
| 759 | # Dallas's 1-wire bus | 808 | # Dallas's 1-wire bus |
| 760 | # | 809 | # |
| 761 | # CONFIG_W1 is not set | 810 | # CONFIG_W1 is not set |
| @@ -765,6 +814,7 @@ CONFIG_MMTIMER=y | |||
| 765 | # | 814 | # |
| 766 | CONFIG_HWMON=y | 815 | CONFIG_HWMON=y |
| 767 | # CONFIG_HWMON_VID is not set | 816 | # CONFIG_HWMON_VID is not set |
| 817 | # CONFIG_SENSORS_F71805F is not set | ||
| 768 | # CONFIG_HWMON_DEBUG_CHIP is not set | 818 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 769 | 819 | ||
| 770 | # | 820 | # |
| @@ -815,26 +865,28 @@ CONFIG_SND_OSSEMUL=y | |||
| 815 | CONFIG_SND_MIXER_OSS=m | 865 | CONFIG_SND_MIXER_OSS=m |
| 816 | CONFIG_SND_PCM_OSS=m | 866 | CONFIG_SND_PCM_OSS=m |
| 817 | CONFIG_SND_SEQUENCER_OSS=y | 867 | CONFIG_SND_SEQUENCER_OSS=y |
| 868 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
| 869 | CONFIG_SND_SUPPORT_OLD_API=y | ||
| 818 | CONFIG_SND_VERBOSE_PRINTK=y | 870 | CONFIG_SND_VERBOSE_PRINTK=y |
| 819 | # CONFIG_SND_DEBUG is not set | 871 | # CONFIG_SND_DEBUG is not set |
| 820 | CONFIG_SND_GENERIC_DRIVER=y | ||
| 821 | 872 | ||
| 822 | # | 873 | # |
| 823 | # Generic devices | 874 | # Generic devices |
| 824 | # | 875 | # |
| 825 | CONFIG_SND_MPU401_UART=m | 876 | CONFIG_SND_MPU401_UART=m |
| 826 | CONFIG_SND_OPL3_LIB=m | 877 | CONFIG_SND_OPL3_LIB=m |
| 878 | CONFIG_SND_AC97_CODEC=m | ||
| 879 | CONFIG_SND_AC97_BUS=m | ||
| 827 | CONFIG_SND_DUMMY=m | 880 | CONFIG_SND_DUMMY=m |
| 828 | CONFIG_SND_VIRMIDI=m | 881 | CONFIG_SND_VIRMIDI=m |
| 829 | CONFIG_SND_MTPAV=m | 882 | CONFIG_SND_MTPAV=m |
| 830 | CONFIG_SND_SERIAL_U16550=m | 883 | CONFIG_SND_SERIAL_U16550=m |
| 831 | CONFIG_SND_MPU401=m | 884 | CONFIG_SND_MPU401=m |
| 832 | CONFIG_SND_AC97_CODEC=m | ||
| 833 | CONFIG_SND_AC97_BUS=m | ||
| 834 | 885 | ||
| 835 | # | 886 | # |
| 836 | # PCI devices | 887 | # PCI devices |
| 837 | # | 888 | # |
| 889 | # CONFIG_SND_AD1889 is not set | ||
| 838 | # CONFIG_SND_ALI5451 is not set | 890 | # CONFIG_SND_ALI5451 is not set |
| 839 | # CONFIG_SND_ATIIXP is not set | 891 | # CONFIG_SND_ATIIXP is not set |
| 840 | # CONFIG_SND_ATIIXP_MODEM is not set | 892 | # CONFIG_SND_ATIIXP_MODEM is not set |
| @@ -843,40 +895,40 @@ CONFIG_SND_AC97_BUS=m | |||
| 843 | # CONFIG_SND_AU8830 is not set | 895 | # CONFIG_SND_AU8830 is not set |
| 844 | # CONFIG_SND_AZT3328 is not set | 896 | # CONFIG_SND_AZT3328 is not set |
| 845 | # CONFIG_SND_BT87X is not set | 897 | # CONFIG_SND_BT87X is not set |
| 898 | # CONFIG_SND_CA0106 is not set | ||
| 899 | # CONFIG_SND_CMIPCI is not set | ||
| 900 | CONFIG_SND_CS4281=m | ||
| 846 | CONFIG_SND_CS46XX=m | 901 | CONFIG_SND_CS46XX=m |
| 847 | CONFIG_SND_CS46XX_NEW_DSP=y | 902 | CONFIG_SND_CS46XX_NEW_DSP=y |
| 848 | CONFIG_SND_CS4281=m | ||
| 849 | CONFIG_SND_EMU10K1=m | 903 | CONFIG_SND_EMU10K1=m |
| 850 | # CONFIG_SND_EMU10K1X is not set | 904 | # CONFIG_SND_EMU10K1X is not set |
| 851 | # CONFIG_SND_CA0106 is not set | ||
| 852 | # CONFIG_SND_KORG1212 is not set | ||
| 853 | # CONFIG_SND_MIXART is not set | ||
| 854 | # CONFIG_SND_NM256 is not set | ||
| 855 | # CONFIG_SND_RME32 is not set | ||
| 856 | # CONFIG_SND_RME96 is not set | ||
| 857 | # CONFIG_SND_RME9652 is not set | ||
| 858 | # CONFIG_SND_HDSP is not set | ||
| 859 | # CONFIG_SND_HDSPM is not set | ||
| 860 | # CONFIG_SND_TRIDENT is not set | ||
| 861 | # CONFIG_SND_YMFPCI is not set | ||
| 862 | # CONFIG_SND_AD1889 is not set | ||
| 863 | # CONFIG_SND_CMIPCI is not set | ||
| 864 | # CONFIG_SND_ENS1370 is not set | 905 | # CONFIG_SND_ENS1370 is not set |
| 865 | # CONFIG_SND_ENS1371 is not set | 906 | # CONFIG_SND_ENS1371 is not set |
| 866 | # CONFIG_SND_ES1938 is not set | 907 | # CONFIG_SND_ES1938 is not set |
| 867 | # CONFIG_SND_ES1968 is not set | 908 | # CONFIG_SND_ES1968 is not set |
| 868 | # CONFIG_SND_MAESTRO3 is not set | ||
| 869 | CONFIG_SND_FM801=m | 909 | CONFIG_SND_FM801=m |
| 870 | # CONFIG_SND_FM801_TEA575X is not set | 910 | # CONFIG_SND_FM801_TEA575X is not set |
| 911 | # CONFIG_SND_HDA_INTEL is not set | ||
| 912 | # CONFIG_SND_HDSP is not set | ||
| 913 | # CONFIG_SND_HDSPM is not set | ||
| 871 | # CONFIG_SND_ICE1712 is not set | 914 | # CONFIG_SND_ICE1712 is not set |
| 872 | # CONFIG_SND_ICE1724 is not set | 915 | # CONFIG_SND_ICE1724 is not set |
| 873 | # CONFIG_SND_INTEL8X0 is not set | 916 | # CONFIG_SND_INTEL8X0 is not set |
| 874 | # CONFIG_SND_INTEL8X0M is not set | 917 | # CONFIG_SND_INTEL8X0M is not set |
| 918 | # CONFIG_SND_KORG1212 is not set | ||
| 919 | # CONFIG_SND_MAESTRO3 is not set | ||
| 920 | # CONFIG_SND_MIXART is not set | ||
| 921 | # CONFIG_SND_NM256 is not set | ||
| 922 | # CONFIG_SND_PCXHR is not set | ||
| 923 | # CONFIG_SND_RME32 is not set | ||
| 924 | # CONFIG_SND_RME96 is not set | ||
| 925 | # CONFIG_SND_RME9652 is not set | ||
| 875 | # CONFIG_SND_SONICVIBES is not set | 926 | # CONFIG_SND_SONICVIBES is not set |
| 927 | # CONFIG_SND_TRIDENT is not set | ||
| 876 | # CONFIG_SND_VIA82XX is not set | 928 | # CONFIG_SND_VIA82XX is not set |
| 877 | # CONFIG_SND_VIA82XX_MODEM is not set | 929 | # CONFIG_SND_VIA82XX_MODEM is not set |
| 878 | # CONFIG_SND_VX222 is not set | 930 | # CONFIG_SND_VX222 is not set |
| 879 | # CONFIG_SND_HDA_INTEL is not set | 931 | # CONFIG_SND_YMFPCI is not set |
| 880 | 932 | ||
| 881 | # | 933 | # |
| 882 | # USB devices | 934 | # USB devices |
| @@ -922,12 +974,15 @@ CONFIG_USB_UHCI_HCD=m | |||
| 922 | # USB Device Class drivers | 974 | # USB Device Class drivers |
| 923 | # | 975 | # |
| 924 | # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set | 976 | # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set |
| 925 | # CONFIG_USB_BLUETOOTH_TTY is not set | ||
| 926 | # CONFIG_USB_ACM is not set | 977 | # CONFIG_USB_ACM is not set |
| 927 | # CONFIG_USB_PRINTER is not set | 978 | # CONFIG_USB_PRINTER is not set |
| 928 | 979 | ||
| 929 | # | 980 | # |
| 930 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | 981 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 982 | # | ||
| 983 | |||
| 984 | # | ||
| 985 | # may also be needed; see USB_STORAGE Help for more information | ||
| 931 | # | 986 | # |
| 932 | CONFIG_USB_STORAGE=m | 987 | CONFIG_USB_STORAGE=m |
| 933 | # CONFIG_USB_STORAGE_DEBUG is not set | 988 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -939,12 +994,15 @@ CONFIG_USB_STORAGE=m | |||
| 939 | # CONFIG_USB_STORAGE_SDDR09 is not set | 994 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 940 | # CONFIG_USB_STORAGE_SDDR55 is not set | 995 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 941 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 996 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 997 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 998 | # CONFIG_USB_LIBUSUAL is not set | ||
| 942 | 999 | ||
| 943 | # | 1000 | # |
| 944 | # USB Input Devices | 1001 | # USB Input Devices |
| 945 | # | 1002 | # |
| 946 | CONFIG_USB_HID=m | 1003 | CONFIG_USB_HID=m |
| 947 | CONFIG_USB_HIDINPUT=y | 1004 | CONFIG_USB_HIDINPUT=y |
| 1005 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 948 | # CONFIG_HID_FF is not set | 1006 | # CONFIG_HID_FF is not set |
| 949 | # CONFIG_USB_HIDDEV is not set | 1007 | # CONFIG_USB_HIDDEV is not set |
| 950 | 1008 | ||
| @@ -964,6 +1022,7 @@ CONFIG_USB_HIDINPUT=y | |||
| 964 | # CONFIG_USB_YEALINK is not set | 1022 | # CONFIG_USB_YEALINK is not set |
| 965 | # CONFIG_USB_XPAD is not set | 1023 | # CONFIG_USB_XPAD is not set |
| 966 | # CONFIG_USB_ATI_REMOTE is not set | 1024 | # CONFIG_USB_ATI_REMOTE is not set |
| 1025 | # CONFIG_USB_ATI_REMOTE2 is not set | ||
| 967 | # CONFIG_USB_KEYSPAN_REMOTE is not set | 1026 | # CONFIG_USB_KEYSPAN_REMOTE is not set |
| 968 | # CONFIG_USB_APPLETOUCH is not set | 1027 | # CONFIG_USB_APPLETOUCH is not set |
| 969 | 1028 | ||
| @@ -1043,6 +1102,7 @@ CONFIG_INFINIBAND_MTHCA=m | |||
| 1043 | # CONFIG_INFINIBAND_MTHCA_DEBUG is not set | 1102 | # CONFIG_INFINIBAND_MTHCA_DEBUG is not set |
| 1044 | CONFIG_INFINIBAND_IPOIB=m | 1103 | CONFIG_INFINIBAND_IPOIB=m |
| 1045 | # CONFIG_INFINIBAND_IPOIB_DEBUG is not set | 1104 | # CONFIG_INFINIBAND_IPOIB_DEBUG is not set |
| 1105 | # CONFIG_INFINIBAND_SRP is not set | ||
| 1046 | 1106 | ||
| 1047 | # | 1107 | # |
| 1048 | # SN Devices | 1108 | # SN Devices |
| @@ -1051,6 +1111,10 @@ CONFIG_SGI_IOC4=y | |||
| 1051 | CONFIG_SGI_IOC3=y | 1111 | CONFIG_SGI_IOC3=y |
| 1052 | 1112 | ||
| 1053 | # | 1113 | # |
| 1114 | # EDAC - error detection and reporting (RAS) | ||
| 1115 | # | ||
| 1116 | |||
| 1117 | # | ||
| 1054 | # File systems | 1118 | # File systems |
| 1055 | # | 1119 | # |
| 1056 | CONFIG_EXT2_FS=y | 1120 | CONFIG_EXT2_FS=y |
| @@ -1079,6 +1143,7 @@ CONFIG_XFS_EXPORT=y | |||
| 1079 | # CONFIG_XFS_SECURITY is not set | 1143 | # CONFIG_XFS_SECURITY is not set |
| 1080 | # CONFIG_XFS_POSIX_ACL is not set | 1144 | # CONFIG_XFS_POSIX_ACL is not set |
| 1081 | # CONFIG_XFS_RT is not set | 1145 | # CONFIG_XFS_RT is not set |
| 1146 | # CONFIG_OCFS2_FS is not set | ||
| 1082 | # CONFIG_MINIX_FS is not set | 1147 | # CONFIG_MINIX_FS is not set |
| 1083 | # CONFIG_ROMFS_FS is not set | 1148 | # CONFIG_ROMFS_FS is not set |
| 1084 | CONFIG_INOTIFY=y | 1149 | CONFIG_INOTIFY=y |
| @@ -1120,6 +1185,7 @@ CONFIG_HUGETLBFS=y | |||
| 1120 | CONFIG_HUGETLB_PAGE=y | 1185 | CONFIG_HUGETLB_PAGE=y |
| 1121 | CONFIG_RAMFS=y | 1186 | CONFIG_RAMFS=y |
| 1122 | # CONFIG_RELAYFS_FS is not set | 1187 | # CONFIG_RELAYFS_FS is not set |
| 1188 | # CONFIG_CONFIGFS_FS is not set | ||
| 1123 | 1189 | ||
| 1124 | # | 1190 | # |
| 1125 | # Miscellaneous filesystems | 1191 | # Miscellaneous filesystems |
| @@ -1189,6 +1255,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1189 | CONFIG_SGI_PARTITION=y | 1255 | CONFIG_SGI_PARTITION=y |
| 1190 | # CONFIG_ULTRIX_PARTITION is not set | 1256 | # CONFIG_ULTRIX_PARTITION is not set |
| 1191 | # CONFIG_SUN_PARTITION is not set | 1257 | # CONFIG_SUN_PARTITION is not set |
| 1258 | # CONFIG_KARMA_PARTITION is not set | ||
| 1192 | CONFIG_EFI_PARTITION=y | 1259 | CONFIG_EFI_PARTITION=y |
| 1193 | 1260 | ||
| 1194 | # | 1261 | # |
| @@ -1254,26 +1321,30 @@ CONFIG_GENERIC_PENDING_IRQ=y | |||
| 1254 | # CONFIG_HP_SIMSCSI is not set | 1321 | # CONFIG_HP_SIMSCSI is not set |
| 1255 | 1322 | ||
| 1256 | # | 1323 | # |
| 1257 | # Profiling support | 1324 | # Instrumentation Support |
| 1258 | # | 1325 | # |
| 1259 | # CONFIG_PROFILING is not set | 1326 | # CONFIG_PROFILING is not set |
| 1327 | # CONFIG_KPROBES is not set | ||
| 1260 | 1328 | ||
| 1261 | # | 1329 | # |
| 1262 | # Kernel hacking | 1330 | # Kernel hacking |
| 1263 | # | 1331 | # |
| 1264 | # CONFIG_PRINTK_TIME is not set | 1332 | # CONFIG_PRINTK_TIME is not set |
| 1265 | CONFIG_DEBUG_KERNEL=y | ||
| 1266 | CONFIG_MAGIC_SYSRQ=y | 1333 | CONFIG_MAGIC_SYSRQ=y |
| 1334 | CONFIG_DEBUG_KERNEL=y | ||
| 1267 | CONFIG_LOG_BUF_SHIFT=20 | 1335 | CONFIG_LOG_BUF_SHIFT=20 |
| 1268 | CONFIG_DETECT_SOFTLOCKUP=y | 1336 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1269 | # CONFIG_SCHEDSTATS is not set | 1337 | # CONFIG_SCHEDSTATS is not set |
| 1270 | # CONFIG_DEBUG_SLAB is not set | 1338 | # CONFIG_DEBUG_SLAB is not set |
| 1339 | CONFIG_DEBUG_MUTEXES=y | ||
| 1271 | # CONFIG_DEBUG_SPINLOCK is not set | 1340 | # CONFIG_DEBUG_SPINLOCK is not set |
| 1272 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1341 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1273 | # CONFIG_DEBUG_KOBJECT is not set | 1342 | # CONFIG_DEBUG_KOBJECT is not set |
| 1274 | # CONFIG_DEBUG_INFO is not set | 1343 | # CONFIG_DEBUG_INFO is not set |
| 1275 | # CONFIG_DEBUG_FS is not set | 1344 | # CONFIG_DEBUG_FS is not set |
| 1276 | # CONFIG_KPROBES is not set | 1345 | # CONFIG_DEBUG_VM is not set |
| 1346 | CONFIG_FORCED_INLINING=y | ||
| 1347 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1277 | CONFIG_IA64_GRANULE_16MB=y | 1348 | CONFIG_IA64_GRANULE_16MB=y |
| 1278 | # CONFIG_IA64_GRANULE_64MB is not set | 1349 | # CONFIG_IA64_GRANULE_64MB is not set |
| 1279 | # CONFIG_IA64_PRINT_HAZARDS is not set | 1350 | # CONFIG_IA64_PRINT_HAZARDS is not set |
diff --git a/arch/ia64/configs/sim_defconfig b/arch/ia64/configs/sim_defconfig index a26781cfe8bf..d9146c31ea13 100644 --- a/arch/ia64/configs/sim_defconfig +++ b/arch/ia64/configs/sim_defconfig | |||
| @@ -1,39 +1,52 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.16-rc5 | ||
| 4 | # Mon Feb 27 16:13:41 2006 | ||
| 3 | # | 5 | # |
| 4 | 6 | ||
| 5 | # | 7 | # |
| 6 | # Code maturity level options | 8 | # Code maturity level options |
| 7 | # | 9 | # |
| 8 | CONFIG_EXPERIMENTAL=y | 10 | CONFIG_EXPERIMENTAL=y |
| 9 | # CONFIG_CLEAN_COMPILE is not set | 11 | CONFIG_LOCK_KERNEL=y |
| 10 | # CONFIG_STANDALONE is not set | 12 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 11 | CONFIG_BROKEN=y | ||
| 12 | CONFIG_BROKEN_ON_SMP=y | ||
| 13 | 13 | ||
| 14 | # | 14 | # |
| 15 | # General setup | 15 | # General setup |
| 16 | # | 16 | # |
| 17 | CONFIG_LOCALVERSION="" | ||
| 18 | CONFIG_LOCALVERSION_AUTO=y | ||
| 17 | CONFIG_SWAP=y | 19 | CONFIG_SWAP=y |
| 18 | CONFIG_SYSVIPC=y | 20 | CONFIG_SYSVIPC=y |
| 19 | # CONFIG_POSIX_MQUEUE is not set | 21 | # CONFIG_POSIX_MQUEUE is not set |
| 20 | # CONFIG_BSD_PROCESS_ACCT is not set | 22 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 21 | CONFIG_SYSCTL=y | 23 | CONFIG_SYSCTL=y |
| 22 | # CONFIG_AUDIT is not set | 24 | # CONFIG_AUDIT is not set |
| 23 | CONFIG_LOG_BUF_SHIFT=16 | ||
| 24 | # CONFIG_HOTPLUG is not set | ||
| 25 | CONFIG_IKCONFIG=y | 25 | CONFIG_IKCONFIG=y |
| 26 | CONFIG_IKCONFIG_PROC=y | 26 | CONFIG_IKCONFIG_PROC=y |
| 27 | # CONFIG_CPUSETS is not set | ||
| 28 | CONFIG_INITRAMFS_SOURCE="" | ||
| 29 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
| 27 | # CONFIG_EMBEDDED is not set | 30 | # CONFIG_EMBEDDED is not set |
| 28 | CONFIG_KALLSYMS=y | 31 | CONFIG_KALLSYMS=y |
| 29 | # CONFIG_KALLSYMS_ALL is not set | 32 | # CONFIG_KALLSYMS_ALL is not set |
| 33 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 34 | CONFIG_HOTPLUG=y | ||
| 35 | CONFIG_PRINTK=y | ||
| 36 | CONFIG_BUG=y | ||
| 37 | CONFIG_ELF_CORE=y | ||
| 38 | CONFIG_BASE_FULL=y | ||
| 30 | CONFIG_FUTEX=y | 39 | CONFIG_FUTEX=y |
| 31 | CONFIG_EPOLL=y | 40 | CONFIG_EPOLL=y |
| 32 | CONFIG_IOSCHED_NOOP=y | 41 | CONFIG_SHMEM=y |
| 33 | CONFIG_IOSCHED_AS=y | 42 | CONFIG_CC_ALIGN_FUNCTIONS=0 |
| 34 | CONFIG_IOSCHED_DEADLINE=y | 43 | CONFIG_CC_ALIGN_LABELS=0 |
| 35 | CONFIG_IOSCHED_CFQ=y | 44 | CONFIG_CC_ALIGN_LOOPS=0 |
| 36 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 45 | CONFIG_CC_ALIGN_JUMPS=0 |
| 46 | CONFIG_SLAB=y | ||
| 47 | # CONFIG_TINY_SHMEM is not set | ||
| 48 | CONFIG_BASE_SMALL=0 | ||
| 49 | # CONFIG_SLOB is not set | ||
| 37 | 50 | ||
| 38 | # | 51 | # |
| 39 | # Loadable module support | 52 | # Loadable module support |
| @@ -43,21 +56,45 @@ CONFIG_MODULE_UNLOAD=y | |||
| 43 | CONFIG_MODULE_FORCE_UNLOAD=y | 56 | CONFIG_MODULE_FORCE_UNLOAD=y |
| 44 | CONFIG_OBSOLETE_MODPARM=y | 57 | CONFIG_OBSOLETE_MODPARM=y |
| 45 | CONFIG_MODVERSIONS=y | 58 | CONFIG_MODVERSIONS=y |
| 59 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 46 | CONFIG_KMOD=y | 60 | CONFIG_KMOD=y |
| 47 | CONFIG_STOP_MACHINE=y | 61 | CONFIG_STOP_MACHINE=y |
| 48 | 62 | ||
| 49 | # | 63 | # |
| 64 | # Block layer | ||
| 65 | # | ||
| 66 | |||
| 67 | # | ||
| 68 | # IO Schedulers | ||
| 69 | # | ||
| 70 | CONFIG_IOSCHED_NOOP=y | ||
| 71 | CONFIG_IOSCHED_AS=y | ||
| 72 | CONFIG_IOSCHED_DEADLINE=y | ||
| 73 | CONFIG_IOSCHED_CFQ=y | ||
| 74 | CONFIG_DEFAULT_AS=y | ||
| 75 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 76 | # CONFIG_DEFAULT_CFQ is not set | ||
| 77 | # CONFIG_DEFAULT_NOOP is not set | ||
| 78 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 79 | |||
| 80 | # | ||
| 50 | # Processor type and features | 81 | # Processor type and features |
| 51 | # | 82 | # |
| 52 | CONFIG_IA64=y | 83 | CONFIG_IA64=y |
| 53 | CONFIG_64BIT=y | 84 | CONFIG_64BIT=y |
| 54 | CONFIG_MMU=y | 85 | CONFIG_MMU=y |
| 86 | CONFIG_SWIOTLB=y | ||
| 55 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 87 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 88 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 56 | CONFIG_TIME_INTERPOLATION=y | 89 | CONFIG_TIME_INTERPOLATION=y |
| 57 | CONFIG_EFI=y | 90 | CONFIG_EFI=y |
| 91 | CONFIG_GENERIC_IOMAP=y | ||
| 92 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
| 93 | CONFIG_DMA_IS_DMA32=y | ||
| 58 | # CONFIG_IA64_GENERIC is not set | 94 | # CONFIG_IA64_GENERIC is not set |
| 59 | # CONFIG_IA64_DIG is not set | 95 | # CONFIG_IA64_DIG is not set |
| 60 | # CONFIG_IA64_HP_ZX1 is not set | 96 | # CONFIG_IA64_HP_ZX1 is not set |
| 97 | # CONFIG_IA64_HP_ZX1_SWIOTLB is not set | ||
| 61 | # CONFIG_IA64_SGI_SN2 is not set | 98 | # CONFIG_IA64_SGI_SN2 is not set |
| 62 | CONFIG_IA64_HP_SIM=y | 99 | CONFIG_IA64_HP_SIM=y |
| 63 | # CONFIG_ITANIUM is not set | 100 | # CONFIG_ITANIUM is not set |
| @@ -66,17 +103,36 @@ CONFIG_MCKINLEY=y | |||
| 66 | # CONFIG_IA64_PAGE_SIZE_8KB is not set | 103 | # CONFIG_IA64_PAGE_SIZE_8KB is not set |
| 67 | # CONFIG_IA64_PAGE_SIZE_16KB is not set | 104 | # CONFIG_IA64_PAGE_SIZE_16KB is not set |
| 68 | CONFIG_IA64_PAGE_SIZE_64KB=y | 105 | CONFIG_IA64_PAGE_SIZE_64KB=y |
| 106 | CONFIG_PGTABLE_3=y | ||
| 107 | # CONFIG_PGTABLE_4 is not set | ||
| 108 | # CONFIG_HZ_100 is not set | ||
| 109 | CONFIG_HZ_250=y | ||
| 110 | # CONFIG_HZ_1000 is not set | ||
| 111 | CONFIG_HZ=250 | ||
| 69 | CONFIG_IA64_L1_CACHE_SHIFT=7 | 112 | CONFIG_IA64_L1_CACHE_SHIFT=7 |
| 70 | # CONFIG_MCKINLEY_ASTEP_SPECIFIC is not set | ||
| 71 | # CONFIG_VIRTUAL_MEM_MAP is not set | ||
| 72 | # CONFIG_IA64_CYCLONE is not set | 113 | # CONFIG_IA64_CYCLONE is not set |
| 73 | CONFIG_FORCE_MAX_ZONEORDER=18 | 114 | CONFIG_FORCE_MAX_ZONEORDER=17 |
| 74 | CONFIG_SMP=y | 115 | CONFIG_SMP=y |
| 75 | CONFIG_NR_CPUS=64 | 116 | CONFIG_NR_CPUS=64 |
| 117 | # CONFIG_HOTPLUG_CPU is not set | ||
| 118 | # CONFIG_SCHED_SMT is not set | ||
| 76 | CONFIG_PREEMPT=y | 119 | CONFIG_PREEMPT=y |
| 77 | CONFIG_HAVE_DEC_LOCK=y | 120 | CONFIG_SELECT_MEMORY_MODEL=y |
| 121 | CONFIG_FLATMEM_MANUAL=y | ||
| 122 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 123 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 124 | CONFIG_FLATMEM=y | ||
| 125 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 126 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 127 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 128 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
| 129 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | ||
| 130 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 131 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
| 132 | # CONFIG_VIRTUAL_MEM_MAP is not set | ||
| 78 | CONFIG_IA32_SUPPORT=y | 133 | CONFIG_IA32_SUPPORT=y |
| 79 | CONFIG_COMPAT=y | 134 | CONFIG_COMPAT=y |
| 135 | # CONFIG_IA64_MCA_RECOVERY is not set | ||
| 80 | # CONFIG_PERFMON is not set | 136 | # CONFIG_PERFMON is not set |
| 81 | CONFIG_IA64_PALINFO=m | 137 | CONFIG_IA64_PALINFO=m |
| 82 | 138 | ||
| @@ -84,7 +140,6 @@ CONFIG_IA64_PALINFO=m | |||
| 84 | # Firmware Drivers | 140 | # Firmware Drivers |
| 85 | # | 141 | # |
| 86 | CONFIG_EFI_VARS=y | 142 | CONFIG_EFI_VARS=y |
| 87 | # CONFIG_SMBIOS is not set | ||
| 88 | CONFIG_BINFMT_ELF=y | 143 | CONFIG_BINFMT_ELF=y |
| 89 | CONFIG_BINFMT_MISC=y | 144 | CONFIG_BINFMT_MISC=y |
| 90 | 145 | ||
| @@ -93,15 +148,98 @@ CONFIG_BINFMT_MISC=y | |||
| 93 | # | 148 | # |
| 94 | 149 | ||
| 95 | # | 150 | # |
| 151 | # Networking | ||
| 152 | # | ||
| 153 | CONFIG_NET=y | ||
| 154 | |||
| 155 | # | ||
| 156 | # Networking options | ||
| 157 | # | ||
| 158 | # CONFIG_NETDEBUG is not set | ||
| 159 | CONFIG_PACKET=y | ||
| 160 | # CONFIG_PACKET_MMAP is not set | ||
| 161 | # CONFIG_UNIX is not set | ||
| 162 | # CONFIG_NET_KEY is not set | ||
| 163 | CONFIG_INET=y | ||
| 164 | CONFIG_IP_MULTICAST=y | ||
| 165 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 166 | CONFIG_IP_FIB_HASH=y | ||
| 167 | # CONFIG_IP_PNP is not set | ||
| 168 | # CONFIG_NET_IPIP is not set | ||
| 169 | # CONFIG_NET_IPGRE is not set | ||
| 170 | # CONFIG_IP_MROUTE is not set | ||
| 171 | # CONFIG_ARPD is not set | ||
| 172 | # CONFIG_SYN_COOKIES is not set | ||
| 173 | # CONFIG_INET_AH is not set | ||
| 174 | # CONFIG_INET_ESP is not set | ||
| 175 | # CONFIG_INET_IPCOMP is not set | ||
| 176 | # CONFIG_INET_TUNNEL is not set | ||
| 177 | CONFIG_INET_DIAG=y | ||
| 178 | CONFIG_INET_TCP_DIAG=y | ||
| 179 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 180 | CONFIG_TCP_CONG_BIC=y | ||
| 181 | # CONFIG_IPV6 is not set | ||
| 182 | # CONFIG_NETFILTER is not set | ||
| 183 | |||
| 184 | # | ||
| 185 | # DCCP Configuration (EXPERIMENTAL) | ||
| 186 | # | ||
| 187 | # CONFIG_IP_DCCP is not set | ||
| 188 | |||
| 189 | # | ||
| 190 | # SCTP Configuration (EXPERIMENTAL) | ||
| 191 | # | ||
| 192 | # CONFIG_IP_SCTP is not set | ||
| 193 | |||
| 194 | # | ||
| 195 | # TIPC Configuration (EXPERIMENTAL) | ||
| 196 | # | ||
| 197 | # CONFIG_TIPC is not set | ||
| 198 | # CONFIG_ATM is not set | ||
| 199 | # CONFIG_BRIDGE is not set | ||
| 200 | # CONFIG_VLAN_8021Q is not set | ||
| 201 | # CONFIG_DECNET is not set | ||
| 202 | # CONFIG_LLC2 is not set | ||
| 203 | # CONFIG_IPX is not set | ||
| 204 | # CONFIG_ATALK is not set | ||
| 205 | # CONFIG_X25 is not set | ||
| 206 | # CONFIG_LAPB is not set | ||
| 207 | # CONFIG_NET_DIVERT is not set | ||
| 208 | # CONFIG_ECONET is not set | ||
| 209 | # CONFIG_WAN_ROUTER is not set | ||
| 210 | |||
| 211 | # | ||
| 212 | # QoS and/or fair queueing | ||
| 213 | # | ||
| 214 | # CONFIG_NET_SCHED is not set | ||
| 215 | |||
| 216 | # | ||
| 217 | # Network testing | ||
| 218 | # | ||
| 219 | # CONFIG_NET_PKTGEN is not set | ||
| 220 | # CONFIG_HAMRADIO is not set | ||
| 221 | # CONFIG_IRDA is not set | ||
| 222 | # CONFIG_BT is not set | ||
| 223 | # CONFIG_IEEE80211 is not set | ||
| 224 | |||
| 225 | # | ||
| 96 | # Device Drivers | 226 | # Device Drivers |
| 97 | # | 227 | # |
| 98 | 228 | ||
| 99 | # | 229 | # |
| 100 | # Generic Driver Options | 230 | # Generic Driver Options |
| 101 | # | 231 | # |
| 232 | # CONFIG_STANDALONE is not set | ||
| 233 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 234 | # CONFIG_FW_LOADER is not set | ||
| 102 | # CONFIG_DEBUG_DRIVER is not set | 235 | # CONFIG_DEBUG_DRIVER is not set |
| 103 | 236 | ||
| 104 | # | 237 | # |
| 238 | # Connector - unified userspace <-> kernelspace linker | ||
| 239 | # | ||
| 240 | # CONFIG_CONNECTOR is not set | ||
| 241 | |||
| 242 | # | ||
| 105 | # Memory Technology Devices (MTD) | 243 | # Memory Technology Devices (MTD) |
| 106 | # | 244 | # |
| 107 | # CONFIG_MTD is not set | 245 | # CONFIG_MTD is not set |
| @@ -118,12 +256,16 @@ CONFIG_BINFMT_MISC=y | |||
| 118 | # | 256 | # |
| 119 | # Block devices | 257 | # Block devices |
| 120 | # | 258 | # |
| 259 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 121 | CONFIG_BLK_DEV_LOOP=y | 260 | CONFIG_BLK_DEV_LOOP=y |
| 122 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 261 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
| 123 | # CONFIG_BLK_DEV_NBD is not set | 262 | # CONFIG_BLK_DEV_NBD is not set |
| 124 | CONFIG_BLK_DEV_RAM=y | 263 | CONFIG_BLK_DEV_RAM=y |
| 264 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 125 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 265 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
| 126 | # CONFIG_BLK_DEV_INITRD is not set | 266 | # CONFIG_BLK_DEV_INITRD is not set |
| 267 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 268 | # CONFIG_ATA_OVER_ETH is not set | ||
| 127 | 269 | ||
| 128 | # | 270 | # |
| 129 | # ATA/ATAPI/MFM/RLL support | 271 | # ATA/ATAPI/MFM/RLL support |
| @@ -133,6 +275,7 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 133 | # | 275 | # |
| 134 | # SCSI device support | 276 | # SCSI device support |
| 135 | # | 277 | # |
| 278 | # CONFIG_RAID_ATTRS is not set | ||
| 136 | CONFIG_SCSI=y | 279 | CONFIG_SCSI=y |
| 137 | CONFIG_SCSI_PROC_FS=y | 280 | CONFIG_SCSI_PROC_FS=y |
| 138 | 281 | ||
| @@ -144,6 +287,7 @@ CONFIG_BLK_DEV_SD=y | |||
| 144 | # CONFIG_CHR_DEV_OSST is not set | 287 | # CONFIG_CHR_DEV_OSST is not set |
| 145 | # CONFIG_BLK_DEV_SR is not set | 288 | # CONFIG_BLK_DEV_SR is not set |
| 146 | # CONFIG_CHR_DEV_SG is not set | 289 | # CONFIG_CHR_DEV_SG is not set |
| 290 | # CONFIG_CHR_DEV_SCH is not set | ||
| 147 | 291 | ||
| 148 | # | 292 | # |
| 149 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | 293 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs |
| @@ -157,13 +301,14 @@ CONFIG_SCSI_LOGGING=y | |||
| 157 | # | 301 | # |
| 158 | CONFIG_SCSI_SPI_ATTRS=y | 302 | CONFIG_SCSI_SPI_ATTRS=y |
| 159 | # CONFIG_SCSI_FC_ATTRS is not set | 303 | # CONFIG_SCSI_FC_ATTRS is not set |
| 304 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 305 | # CONFIG_SCSI_SAS_ATTRS is not set | ||
| 160 | 306 | ||
| 161 | # | 307 | # |
| 162 | # SCSI low-level drivers | 308 | # SCSI low-level drivers |
| 163 | # | 309 | # |
| 164 | # CONFIG_SCSI_AIC7XXX_OLD is not set | 310 | # CONFIG_ISCSI_TCP is not set |
| 165 | # CONFIG_SCSI_SATA is not set | 311 | # CONFIG_SCSI_SATA is not set |
| 166 | # CONFIG_SCSI_EATA_PIO is not set | ||
| 167 | # CONFIG_SCSI_DEBUG is not set | 312 | # CONFIG_SCSI_DEBUG is not set |
| 168 | 313 | ||
| 169 | # | 314 | # |
| @@ -174,77 +319,47 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
| 174 | # | 319 | # |
| 175 | # Fusion MPT device support | 320 | # Fusion MPT device support |
| 176 | # | 321 | # |
| 322 | # CONFIG_FUSION is not set | ||
| 177 | 323 | ||
| 178 | # | 324 | # |
| 179 | # IEEE 1394 (FireWire) support | 325 | # IEEE 1394 (FireWire) support |
| 180 | # | 326 | # |
| 181 | # CONFIG_IEEE1394 is not set | ||
| 182 | 327 | ||
| 183 | # | 328 | # |
| 184 | # I2O device support | 329 | # I2O device support |
| 185 | # | 330 | # |
| 186 | 331 | ||
| 187 | # | 332 | # |
| 188 | # Networking support | 333 | # Network device support |
| 189 | # | 334 | # |
| 190 | CONFIG_NET=y | 335 | # CONFIG_NETDEVICES is not set |
| 336 | # CONFIG_DUMMY is not set | ||
| 337 | # CONFIG_BONDING is not set | ||
| 338 | # CONFIG_EQUALIZER is not set | ||
| 339 | # CONFIG_TUN is not set | ||
| 191 | 340 | ||
| 192 | # | 341 | # |
| 193 | # Networking options | 342 | # PHY device support |
| 194 | # | 343 | # |
| 195 | CONFIG_PACKET=y | ||
| 196 | # CONFIG_PACKET_MMAP is not set | ||
| 197 | # CONFIG_NETLINK_DEV is not set | ||
| 198 | # CONFIG_UNIX is not set | ||
| 199 | # CONFIG_NET_KEY is not set | ||
| 200 | CONFIG_INET=y | ||
| 201 | CONFIG_IP_MULTICAST=y | ||
| 202 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 203 | # CONFIG_IP_PNP is not set | ||
| 204 | # CONFIG_NET_IPIP is not set | ||
| 205 | # CONFIG_NET_IPGRE is not set | ||
| 206 | # CONFIG_IP_MROUTE is not set | ||
| 207 | # CONFIG_ARPD is not set | ||
| 208 | # CONFIG_SYN_COOKIES is not set | ||
| 209 | # CONFIG_INET_AH is not set | ||
| 210 | # CONFIG_INET_ESP is not set | ||
| 211 | # CONFIG_INET_IPCOMP is not set | ||
| 212 | # CONFIG_IPV6 is not set | ||
| 213 | # CONFIG_NETFILTER is not set | ||
| 214 | 344 | ||
| 215 | # | 345 | # |
| 216 | # SCTP Configuration (EXPERIMENTAL) | 346 | # Ethernet (10 or 100Mbit) |
| 217 | # | 347 | # |
| 218 | # CONFIG_IP_SCTP is not set | 348 | # CONFIG_NET_ETHERNET is not set |
| 219 | # CONFIG_ATM is not set | ||
| 220 | # CONFIG_BRIDGE is not set | ||
| 221 | # CONFIG_VLAN_8021Q is not set | ||
| 222 | # CONFIG_DECNET is not set | ||
| 223 | # CONFIG_LLC2 is not set | ||
| 224 | # CONFIG_IPX is not set | ||
| 225 | # CONFIG_ATALK is not set | ||
| 226 | # CONFIG_X25 is not set | ||
| 227 | # CONFIG_LAPB is not set | ||
| 228 | # CONFIG_NET_DIVERT is not set | ||
| 229 | # CONFIG_ECONET is not set | ||
| 230 | # CONFIG_WAN_ROUTER is not set | ||
| 231 | # CONFIG_NET_HW_FLOWCONTROL is not set | ||
| 232 | 349 | ||
| 233 | # | 350 | # |
| 234 | # QoS and/or fair queueing | 351 | # Ethernet (1000 Mbit) |
| 235 | # | 352 | # |
| 236 | # CONFIG_NET_SCHED is not set | ||
| 237 | 353 | ||
| 238 | # | 354 | # |
| 239 | # Network testing | 355 | # Ethernet (10000 Mbit) |
| 240 | # | 356 | # |
| 241 | # CONFIG_NET_PKTGEN is not set | 357 | # CONFIG_PPP is not set |
| 358 | # CONFIG_SLIP is not set | ||
| 359 | # CONFIG_SHAPER is not set | ||
| 360 | # CONFIG_NETCONSOLE is not set | ||
| 242 | # CONFIG_NETPOLL is not set | 361 | # CONFIG_NETPOLL is not set |
| 243 | # CONFIG_NET_POLL_CONTROLLER is not set | 362 | # CONFIG_NET_POLL_CONTROLLER is not set |
| 244 | # CONFIG_HAMRADIO is not set | ||
| 245 | # CONFIG_IRDA is not set | ||
| 246 | # CONFIG_BT is not set | ||
| 247 | # CONFIG_NETDEVICES is not set | ||
| 248 | 363 | ||
| 249 | # | 364 | # |
| 250 | # ISDN subsystem | 365 | # ISDN subsystem |
| @@ -274,16 +389,6 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | |||
| 274 | # CONFIG_INPUT_EVBUG is not set | 389 | # CONFIG_INPUT_EVBUG is not set |
| 275 | 390 | ||
| 276 | # | 391 | # |
| 277 | # Input I/O drivers | ||
| 278 | # | ||
| 279 | # CONFIG_GAMEPORT is not set | ||
| 280 | CONFIG_SOUND_GAMEPORT=y | ||
| 281 | CONFIG_SERIO=y | ||
| 282 | # CONFIG_SERIO_I8042 is not set | ||
| 283 | CONFIG_SERIO_SERPORT=y | ||
| 284 | # CONFIG_SERIO_CT82C710 is not set | ||
| 285 | |||
| 286 | # | ||
| 287 | # Input Device Drivers | 392 | # Input Device Drivers |
| 288 | # | 393 | # |
| 289 | # CONFIG_INPUT_KEYBOARD is not set | 394 | # CONFIG_INPUT_KEYBOARD is not set |
| @@ -293,6 +398,15 @@ CONFIG_SERIO_SERPORT=y | |||
| 293 | # CONFIG_INPUT_MISC is not set | 398 | # CONFIG_INPUT_MISC is not set |
| 294 | 399 | ||
| 295 | # | 400 | # |
| 401 | # Hardware I/O ports | ||
| 402 | # | ||
| 403 | CONFIG_SERIO=y | ||
| 404 | # CONFIG_SERIO_I8042 is not set | ||
| 405 | CONFIG_SERIO_SERPORT=y | ||
| 406 | # CONFIG_SERIO_RAW is not set | ||
| 407 | # CONFIG_GAMEPORT is not set | ||
| 408 | |||
| 409 | # | ||
| 296 | # Character devices | 410 | # Character devices |
| 297 | # | 411 | # |
| 298 | CONFIG_VT=y | 412 | CONFIG_VT=y |
| @@ -310,7 +424,6 @@ CONFIG_HW_CONSOLE=y | |||
| 310 | # | 424 | # |
| 311 | CONFIG_UNIX98_PTYS=y | 425 | CONFIG_UNIX98_PTYS=y |
| 312 | # CONFIG_LEGACY_PTYS is not set | 426 | # CONFIG_LEGACY_PTYS is not set |
| 313 | # CONFIG_QIC02_TAPE is not set | ||
| 314 | 427 | ||
| 315 | # | 428 | # |
| 316 | # IPMI | 429 | # IPMI |
| @@ -324,15 +437,19 @@ CONFIG_UNIX98_PTYS=y | |||
| 324 | CONFIG_EFI_RTC=y | 437 | CONFIG_EFI_RTC=y |
| 325 | # CONFIG_DTLK is not set | 438 | # CONFIG_DTLK is not set |
| 326 | # CONFIG_R3964 is not set | 439 | # CONFIG_R3964 is not set |
| 327 | # CONFIG_APPLICOM is not set | ||
| 328 | 440 | ||
| 329 | # | 441 | # |
| 330 | # Ftape, the floppy tape device driver | 442 | # Ftape, the floppy tape device driver |
| 331 | # | 443 | # |
| 332 | # CONFIG_FTAPE is not set | ||
| 333 | # CONFIG_AGP is not set | 444 | # CONFIG_AGP is not set |
| 334 | # CONFIG_DRM is not set | ||
| 335 | # CONFIG_RAW_DRIVER is not set | 445 | # CONFIG_RAW_DRIVER is not set |
| 446 | # CONFIG_HANGCHECK_TIMER is not set | ||
| 447 | |||
| 448 | # | ||
| 449 | # TPM devices | ||
| 450 | # | ||
| 451 | # CONFIG_TCG_TPM is not set | ||
| 452 | # CONFIG_TELCLOCK is not set | ||
| 336 | 453 | ||
| 337 | # | 454 | # |
| 338 | # I2C support | 455 | # I2C support |
| @@ -340,10 +457,33 @@ CONFIG_EFI_RTC=y | |||
| 340 | # CONFIG_I2C is not set | 457 | # CONFIG_I2C is not set |
| 341 | 458 | ||
| 342 | # | 459 | # |
| 460 | # SPI support | ||
| 461 | # | ||
| 462 | # CONFIG_SPI is not set | ||
| 463 | # CONFIG_SPI_MASTER is not set | ||
| 464 | |||
| 465 | # | ||
| 466 | # Dallas's 1-wire bus | ||
| 467 | # | ||
| 468 | # CONFIG_W1 is not set | ||
| 469 | |||
| 470 | # | ||
| 471 | # Hardware Monitoring support | ||
| 472 | # | ||
| 473 | CONFIG_HWMON=y | ||
| 474 | # CONFIG_HWMON_VID is not set | ||
| 475 | # CONFIG_SENSORS_F71805F is not set | ||
| 476 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 477 | |||
| 478 | # | ||
| 343 | # Misc devices | 479 | # Misc devices |
| 344 | # | 480 | # |
| 345 | 481 | ||
| 346 | # | 482 | # |
| 483 | # Multimedia Capabilities Port drivers | ||
| 484 | # | ||
| 485 | |||
| 486 | # | ||
| 347 | # Multimedia devices | 487 | # Multimedia devices |
| 348 | # | 488 | # |
| 349 | # CONFIG_VIDEO_DEV is not set | 489 | # CONFIG_VIDEO_DEV is not set |
| @@ -362,7 +502,6 @@ CONFIG_EFI_RTC=y | |||
| 362 | # Console display driver support | 502 | # Console display driver support |
| 363 | # | 503 | # |
| 364 | # CONFIG_VGA_CONSOLE is not set | 504 | # CONFIG_VGA_CONSOLE is not set |
| 365 | # CONFIG_MDA_CONSOLE is not set | ||
| 366 | CONFIG_DUMMY_CONSOLE=y | 505 | CONFIG_DUMMY_CONSOLE=y |
| 367 | 506 | ||
| 368 | # | 507 | # |
| @@ -373,6 +512,12 @@ CONFIG_DUMMY_CONSOLE=y | |||
| 373 | # | 512 | # |
| 374 | # USB support | 513 | # USB support |
| 375 | # | 514 | # |
| 515 | # CONFIG_USB_ARCH_HAS_HCD is not set | ||
| 516 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
| 517 | |||
| 518 | # | ||
| 519 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 520 | # | ||
| 376 | 521 | ||
| 377 | # | 522 | # |
| 378 | # USB Gadget Support | 523 | # USB Gadget Support |
| @@ -380,22 +525,41 @@ CONFIG_DUMMY_CONSOLE=y | |||
| 380 | # CONFIG_USB_GADGET is not set | 525 | # CONFIG_USB_GADGET is not set |
| 381 | 526 | ||
| 382 | # | 527 | # |
| 528 | # MMC/SD Card support | ||
| 529 | # | ||
| 530 | # CONFIG_MMC is not set | ||
| 531 | |||
| 532 | # | ||
| 533 | # InfiniBand support | ||
| 534 | # | ||
| 535 | |||
| 536 | # | ||
| 537 | # EDAC - error detection and reporting (RAS) | ||
| 538 | # | ||
| 539 | |||
| 540 | # | ||
| 383 | # File systems | 541 | # File systems |
| 384 | # | 542 | # |
| 385 | CONFIG_EXT2_FS=y | 543 | CONFIG_EXT2_FS=y |
| 386 | # CONFIG_EXT2_FS_XATTR is not set | 544 | # CONFIG_EXT2_FS_XATTR is not set |
| 545 | # CONFIG_EXT2_FS_XIP is not set | ||
| 387 | CONFIG_EXT3_FS=y | 546 | CONFIG_EXT3_FS=y |
| 388 | # CONFIG_EXT3_FS_XATTR is not set | 547 | # CONFIG_EXT3_FS_XATTR is not set |
| 389 | CONFIG_JBD=y | 548 | CONFIG_JBD=y |
| 390 | # CONFIG_JBD_DEBUG is not set | 549 | # CONFIG_JBD_DEBUG is not set |
| 391 | # CONFIG_REISERFS_FS is not set | 550 | # CONFIG_REISERFS_FS is not set |
| 392 | # CONFIG_JFS_FS is not set | 551 | # CONFIG_JFS_FS is not set |
| 552 | # CONFIG_FS_POSIX_ACL is not set | ||
| 393 | # CONFIG_XFS_FS is not set | 553 | # CONFIG_XFS_FS is not set |
| 554 | # CONFIG_OCFS2_FS is not set | ||
| 394 | # CONFIG_MINIX_FS is not set | 555 | # CONFIG_MINIX_FS is not set |
| 395 | # CONFIG_ROMFS_FS is not set | 556 | # CONFIG_ROMFS_FS is not set |
| 557 | CONFIG_INOTIFY=y | ||
| 396 | # CONFIG_QUOTA is not set | 558 | # CONFIG_QUOTA is not set |
| 559 | CONFIG_DNOTIFY=y | ||
| 397 | # CONFIG_AUTOFS_FS is not set | 560 | # CONFIG_AUTOFS_FS is not set |
| 398 | # CONFIG_AUTOFS4_FS is not set | 561 | # CONFIG_AUTOFS4_FS is not set |
| 562 | # CONFIG_FUSE_FS is not set | ||
| 399 | 563 | ||
| 400 | # | 564 | # |
| 401 | # CD-ROM/DVD Filesystems | 565 | # CD-ROM/DVD Filesystems |
| @@ -406,7 +570,8 @@ CONFIG_JBD=y | |||
| 406 | # | 570 | # |
| 407 | # DOS/FAT/NT Filesystems | 571 | # DOS/FAT/NT Filesystems |
| 408 | # | 572 | # |
| 409 | # CONFIG_FAT_FS is not set | 573 | # CONFIG_MSDOS_FS is not set |
| 574 | # CONFIG_VFAT_FS is not set | ||
| 410 | # CONFIG_NTFS_FS is not set | 575 | # CONFIG_NTFS_FS is not set |
| 411 | 576 | ||
| 412 | # | 577 | # |
| @@ -415,12 +580,12 @@ CONFIG_JBD=y | |||
| 415 | CONFIG_PROC_FS=y | 580 | CONFIG_PROC_FS=y |
| 416 | CONFIG_PROC_KCORE=y | 581 | CONFIG_PROC_KCORE=y |
| 417 | CONFIG_SYSFS=y | 582 | CONFIG_SYSFS=y |
| 418 | # CONFIG_DEVFS_FS is not set | ||
| 419 | # CONFIG_DEVPTS_FS_XATTR is not set | ||
| 420 | # CONFIG_TMPFS is not set | 583 | # CONFIG_TMPFS is not set |
| 421 | CONFIG_HUGETLBFS=y | 584 | CONFIG_HUGETLBFS=y |
| 422 | CONFIG_HUGETLB_PAGE=y | 585 | CONFIG_HUGETLB_PAGE=y |
| 423 | CONFIG_RAMFS=y | 586 | CONFIG_RAMFS=y |
| 587 | # CONFIG_RELAYFS_FS is not set | ||
| 588 | # CONFIG_CONFIGFS_FS is not set | ||
| 424 | 589 | ||
| 425 | # | 590 | # |
| 426 | # Miscellaneous filesystems | 591 | # Miscellaneous filesystems |
| @@ -448,18 +613,22 @@ CONFIG_NFS_FS=y | |||
| 448 | CONFIG_NFS_DIRECTIO=y | 613 | CONFIG_NFS_DIRECTIO=y |
| 449 | CONFIG_NFSD=y | 614 | CONFIG_NFSD=y |
| 450 | CONFIG_NFSD_V3=y | 615 | CONFIG_NFSD_V3=y |
| 616 | # CONFIG_NFSD_V3_ACL is not set | ||
| 451 | # CONFIG_NFSD_V4 is not set | 617 | # CONFIG_NFSD_V4 is not set |
| 452 | # CONFIG_NFSD_TCP is not set | 618 | # CONFIG_NFSD_TCP is not set |
| 453 | CONFIG_LOCKD=y | 619 | CONFIG_LOCKD=y |
| 454 | CONFIG_LOCKD_V4=y | 620 | CONFIG_LOCKD_V4=y |
| 455 | CONFIG_EXPORTFS=y | 621 | CONFIG_EXPORTFS=y |
| 622 | CONFIG_NFS_COMMON=y | ||
| 456 | CONFIG_SUNRPC=y | 623 | CONFIG_SUNRPC=y |
| 457 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 624 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 625 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 458 | # CONFIG_SMB_FS is not set | 626 | # CONFIG_SMB_FS is not set |
| 459 | # CONFIG_CIFS is not set | 627 | # CONFIG_CIFS is not set |
| 460 | # CONFIG_NCP_FS is not set | 628 | # CONFIG_NCP_FS is not set |
| 461 | # CONFIG_CODA_FS is not set | 629 | # CONFIG_CODA_FS is not set |
| 462 | # CONFIG_AFS_FS is not set | 630 | # CONFIG_AFS_FS is not set |
| 631 | # CONFIG_9P_FS is not set | ||
| 463 | 632 | ||
| 464 | # | 633 | # |
| 465 | # Partition Types | 634 | # Partition Types |
| @@ -476,10 +645,10 @@ CONFIG_MSDOS_PARTITION=y | |||
| 476 | # CONFIG_SOLARIS_X86_PARTITION is not set | 645 | # CONFIG_SOLARIS_X86_PARTITION is not set |
| 477 | # CONFIG_UNIXWARE_DISKLABEL is not set | 646 | # CONFIG_UNIXWARE_DISKLABEL is not set |
| 478 | # CONFIG_LDM_PARTITION is not set | 647 | # CONFIG_LDM_PARTITION is not set |
| 479 | # CONFIG_NEC98_PARTITION is not set | ||
| 480 | # CONFIG_SGI_PARTITION is not set | 648 | # CONFIG_SGI_PARTITION is not set |
| 481 | # CONFIG_ULTRIX_PARTITION is not set | 649 | # CONFIG_ULTRIX_PARTITION is not set |
| 482 | # CONFIG_SUN_PARTITION is not set | 650 | # CONFIG_SUN_PARTITION is not set |
| 651 | # CONFIG_KARMA_PARTITION is not set | ||
| 483 | CONFIG_EFI_PARTITION=y | 652 | CONFIG_EFI_PARTITION=y |
| 484 | 653 | ||
| 485 | # | 654 | # |
| @@ -490,8 +659,13 @@ CONFIG_EFI_PARTITION=y | |||
| 490 | # | 659 | # |
| 491 | # Library routines | 660 | # Library routines |
| 492 | # | 661 | # |
| 662 | # CONFIG_CRC_CCITT is not set | ||
| 663 | # CONFIG_CRC16 is not set | ||
| 493 | CONFIG_CRC32=y | 664 | CONFIG_CRC32=y |
| 494 | # CONFIG_LIBCRC32C is not set | 665 | # CONFIG_LIBCRC32C is not set |
| 666 | CONFIG_GENERIC_HARDIRQS=y | ||
| 667 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 668 | CONFIG_GENERIC_PENDING_IRQ=y | ||
| 495 | 669 | ||
| 496 | # | 670 | # |
| 497 | # HP Simulator drivers | 671 | # HP Simulator drivers |
| @@ -502,33 +676,50 @@ CONFIG_HP_SIMSERIAL_CONSOLE=y | |||
| 502 | CONFIG_HP_SIMSCSI=y | 676 | CONFIG_HP_SIMSCSI=y |
| 503 | 677 | ||
| 504 | # | 678 | # |
| 505 | # Profiling support | 679 | # Instrumentation Support |
| 506 | # | 680 | # |
| 507 | # CONFIG_PROFILING is not set | 681 | # CONFIG_PROFILING is not set |
| 682 | # CONFIG_KPROBES is not set | ||
| 508 | 683 | ||
| 509 | # | 684 | # |
| 510 | # Kernel hacking | 685 | # Kernel hacking |
| 511 | # | 686 | # |
| 512 | # CONFIG_IA64_GRANULE_16MB is not set | 687 | # CONFIG_PRINTK_TIME is not set |
| 513 | CONFIG_IA64_GRANULE_64MB=y | ||
| 514 | CONFIG_DEBUG_KERNEL=y | ||
| 515 | # CONFIG_IA64_PRINT_HAZARDS is not set | ||
| 516 | # CONFIG_DISABLE_VHPT is not set | ||
| 517 | # CONFIG_MAGIC_SYSRQ is not set | 688 | # CONFIG_MAGIC_SYSRQ is not set |
| 689 | CONFIG_DEBUG_KERNEL=y | ||
| 690 | CONFIG_LOG_BUF_SHIFT=16 | ||
| 691 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 692 | # CONFIG_SCHEDSTATS is not set | ||
| 518 | # CONFIG_DEBUG_SLAB is not set | 693 | # CONFIG_DEBUG_SLAB is not set |
| 694 | CONFIG_DEBUG_PREEMPT=y | ||
| 695 | CONFIG_DEBUG_MUTEXES=y | ||
| 519 | # CONFIG_DEBUG_SPINLOCK is not set | 696 | # CONFIG_DEBUG_SPINLOCK is not set |
| 520 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 697 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 698 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 699 | CONFIG_DEBUG_INFO=y | ||
| 700 | # CONFIG_DEBUG_FS is not set | ||
| 701 | # CONFIG_DEBUG_VM is not set | ||
| 702 | CONFIG_FORCED_INLINING=y | ||
| 703 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 704 | # CONFIG_IA64_GRANULE_16MB is not set | ||
| 705 | CONFIG_IA64_GRANULE_64MB=y | ||
| 706 | # CONFIG_IA64_PRINT_HAZARDS is not set | ||
| 707 | # CONFIG_DISABLE_VHPT is not set | ||
| 521 | # CONFIG_IA64_DEBUG_CMPXCHG is not set | 708 | # CONFIG_IA64_DEBUG_CMPXCHG is not set |
| 522 | # CONFIG_IA64_DEBUG_IRQ is not set | 709 | # CONFIG_IA64_DEBUG_IRQ is not set |
| 523 | CONFIG_DEBUG_INFO=y | ||
| 524 | CONFIG_SYSVIPC_COMPAT=y | 710 | CONFIG_SYSVIPC_COMPAT=y |
| 525 | 711 | ||
| 526 | # | 712 | # |
| 527 | # Security options | 713 | # Security options |
| 528 | # | 714 | # |
| 715 | # CONFIG_KEYS is not set | ||
| 529 | # CONFIG_SECURITY is not set | 716 | # CONFIG_SECURITY is not set |
| 530 | 717 | ||
| 531 | # | 718 | # |
| 532 | # Cryptographic options | 719 | # Cryptographic options |
| 533 | # | 720 | # |
| 534 | # CONFIG_CRYPTO is not set | 721 | # CONFIG_CRYPTO is not set |
| 722 | |||
| 723 | # | ||
| 724 | # Hardware crypto devices | ||
| 725 | # | ||
diff --git a/arch/ia64/configs/sn2_defconfig b/arch/ia64/configs/sn2_defconfig index 3cb503b659e6..8206752161bb 100644 --- a/arch/ia64/configs/sn2_defconfig +++ b/arch/ia64/configs/sn2_defconfig | |||
| @@ -1,14 +1,13 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.15-rc4 | 3 | # Linux kernel version: 2.6.16-rc5 |
| 4 | # Fri Dec 2 10:33:48 2005 | 4 | # Mon Feb 27 16:06:38 2006 |
| 5 | # | 5 | # |
| 6 | 6 | ||
| 7 | # | 7 | # |
| 8 | # Code maturity level options | 8 | # Code maturity level options |
| 9 | # | 9 | # |
| 10 | CONFIG_EXPERIMENTAL=y | 10 | CONFIG_EXPERIMENTAL=y |
| 11 | CONFIG_CLEAN_COMPILE=y | ||
| 12 | CONFIG_LOCK_KERNEL=y | 11 | CONFIG_LOCK_KERNEL=y |
| 13 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 12 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 14 | 13 | ||
| @@ -23,17 +22,18 @@ CONFIG_POSIX_MQUEUE=y | |||
| 23 | # CONFIG_BSD_PROCESS_ACCT is not set | 22 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 24 | CONFIG_SYSCTL=y | 23 | CONFIG_SYSCTL=y |
| 25 | # CONFIG_AUDIT is not set | 24 | # CONFIG_AUDIT is not set |
| 26 | CONFIG_HOTPLUG=y | ||
| 27 | CONFIG_KOBJECT_UEVENT=y | ||
| 28 | # CONFIG_IKCONFIG is not set | 25 | # CONFIG_IKCONFIG is not set |
| 29 | CONFIG_CPUSETS=y | 26 | CONFIG_CPUSETS=y |
| 30 | CONFIG_INITRAMFS_SOURCE="" | 27 | CONFIG_INITRAMFS_SOURCE="" |
| 28 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 31 | # CONFIG_EMBEDDED is not set | 29 | # CONFIG_EMBEDDED is not set |
| 32 | CONFIG_KALLSYMS=y | 30 | CONFIG_KALLSYMS=y |
| 33 | CONFIG_KALLSYMS_ALL=y | 31 | CONFIG_KALLSYMS_ALL=y |
| 34 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 32 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 33 | CONFIG_HOTPLUG=y | ||
| 35 | CONFIG_PRINTK=y | 34 | CONFIG_PRINTK=y |
| 36 | CONFIG_BUG=y | 35 | CONFIG_BUG=y |
| 36 | CONFIG_ELF_CORE=y | ||
| 37 | CONFIG_BASE_FULL=y | 37 | CONFIG_BASE_FULL=y |
| 38 | CONFIG_FUTEX=y | 38 | CONFIG_FUTEX=y |
| 39 | CONFIG_EPOLL=y | 39 | CONFIG_EPOLL=y |
| @@ -42,8 +42,10 @@ CONFIG_CC_ALIGN_FUNCTIONS=0 | |||
| 42 | CONFIG_CC_ALIGN_LABELS=0 | 42 | CONFIG_CC_ALIGN_LABELS=0 |
| 43 | CONFIG_CC_ALIGN_LOOPS=0 | 43 | CONFIG_CC_ALIGN_LOOPS=0 |
| 44 | CONFIG_CC_ALIGN_JUMPS=0 | 44 | CONFIG_CC_ALIGN_JUMPS=0 |
| 45 | CONFIG_SLAB=y | ||
| 45 | # CONFIG_TINY_SHMEM is not set | 46 | # CONFIG_TINY_SHMEM is not set |
| 46 | CONFIG_BASE_SMALL=0 | 47 | CONFIG_BASE_SMALL=0 |
| 48 | # CONFIG_SLOB is not set | ||
| 47 | 49 | ||
| 48 | # | 50 | # |
| 49 | # Loadable module support | 51 | # Loadable module support |
| @@ -88,7 +90,7 @@ CONFIG_EFI=y | |||
| 88 | CONFIG_GENERIC_IOMAP=y | 90 | CONFIG_GENERIC_IOMAP=y |
| 89 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 91 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
| 90 | CONFIG_IA64_UNCACHED_ALLOCATOR=y | 92 | CONFIG_IA64_UNCACHED_ALLOCATOR=y |
| 91 | CONFIG_ZONE_DMA_IS_DMA32=y | 93 | CONFIG_DMA_IS_DMA32=y |
| 92 | # CONFIG_IA64_GENERIC is not set | 94 | # CONFIG_IA64_GENERIC is not set |
| 93 | # CONFIG_IA64_DIG is not set | 95 | # CONFIG_IA64_DIG is not set |
| 94 | # CONFIG_IA64_HP_ZX1 is not set | 96 | # CONFIG_IA64_HP_ZX1 is not set |
| @@ -126,6 +128,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 126 | CONFIG_NEED_MULTIPLE_NODES=y | 128 | CONFIG_NEED_MULTIPLE_NODES=y |
| 127 | # CONFIG_SPARSEMEM_STATIC is not set | 129 | # CONFIG_SPARSEMEM_STATIC is not set |
| 128 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 130 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 131 | CONFIG_MIGRATION=y | ||
| 129 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | 132 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y |
| 130 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | 133 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y |
| 131 | CONFIG_ARCH_FLATMEM_ENABLE=y | 134 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| @@ -140,6 +143,7 @@ CONFIG_COMPAT=y | |||
| 140 | CONFIG_IA64_MCA_RECOVERY=y | 143 | CONFIG_IA64_MCA_RECOVERY=y |
| 141 | CONFIG_PERFMON=y | 144 | CONFIG_PERFMON=y |
| 142 | CONFIG_IA64_PALINFO=y | 145 | CONFIG_IA64_PALINFO=y |
| 146 | CONFIG_SGI_SN=y | ||
| 143 | 147 | ||
| 144 | # | 148 | # |
| 145 | # Firmware Drivers | 149 | # Firmware Drivers |
| @@ -166,6 +170,7 @@ CONFIG_ACPI=y | |||
| 166 | CONFIG_ACPI_NUMA=y | 170 | CONFIG_ACPI_NUMA=y |
| 167 | CONFIG_ACPI_BLACKLIST_YEAR=0 | 171 | CONFIG_ACPI_BLACKLIST_YEAR=0 |
| 168 | # CONFIG_ACPI_DEBUG is not set | 172 | # CONFIG_ACPI_DEBUG is not set |
| 173 | CONFIG_ACPI_EC=y | ||
| 169 | CONFIG_ACPI_POWER=y | 174 | CONFIG_ACPI_POWER=y |
| 170 | CONFIG_ACPI_SYSTEM=y | 175 | CONFIG_ACPI_SYSTEM=y |
| 171 | # CONFIG_ACPI_CONTAINER is not set | 176 | # CONFIG_ACPI_CONTAINER is not set |
| @@ -207,6 +212,7 @@ CONFIG_NET=y | |||
| 207 | # | 212 | # |
| 208 | # Networking options | 213 | # Networking options |
| 209 | # | 214 | # |
| 215 | # CONFIG_NETDEBUG is not set | ||
| 210 | CONFIG_PACKET=y | 216 | CONFIG_PACKET=y |
| 211 | CONFIG_PACKET_MMAP=y | 217 | CONFIG_PACKET_MMAP=y |
| 212 | CONFIG_UNIX=y | 218 | CONFIG_UNIX=y |
| @@ -247,6 +253,11 @@ CONFIG_IPV6=m | |||
| 247 | # SCTP Configuration (EXPERIMENTAL) | 253 | # SCTP Configuration (EXPERIMENTAL) |
| 248 | # | 254 | # |
| 249 | # CONFIG_IP_SCTP is not set | 255 | # CONFIG_IP_SCTP is not set |
| 256 | |||
| 257 | # | ||
| 258 | # TIPC Configuration (EXPERIMENTAL) | ||
| 259 | # | ||
| 260 | # CONFIG_TIPC is not set | ||
| 250 | # CONFIG_ATM is not set | 261 | # CONFIG_ATM is not set |
| 251 | # CONFIG_BRIDGE is not set | 262 | # CONFIG_BRIDGE is not set |
| 252 | # CONFIG_VLAN_8021Q is not set | 263 | # CONFIG_VLAN_8021Q is not set |
| @@ -330,6 +341,7 @@ CONFIG_ATA_OVER_ETH=m | |||
| 330 | # ATA/ATAPI/MFM/RLL support | 341 | # ATA/ATAPI/MFM/RLL support |
| 331 | # | 342 | # |
| 332 | CONFIG_IDE=y | 343 | CONFIG_IDE=y |
| 344 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 333 | CONFIG_BLK_DEV_IDE=y | 345 | CONFIG_BLK_DEV_IDE=y |
| 334 | 346 | ||
| 335 | # | 347 | # |
| @@ -457,13 +469,7 @@ CONFIG_SCSI_SATA_VITESSE=y | |||
| 457 | # CONFIG_SCSI_IPR is not set | 469 | # CONFIG_SCSI_IPR is not set |
| 458 | # CONFIG_SCSI_QLOGIC_FC is not set | 470 | # CONFIG_SCSI_QLOGIC_FC is not set |
| 459 | CONFIG_SCSI_QLOGIC_1280=y | 471 | CONFIG_SCSI_QLOGIC_1280=y |
| 460 | CONFIG_SCSI_QLA2XXX=y | 472 | # CONFIG_SCSI_QLA_FC is not set |
| 461 | # CONFIG_SCSI_QLA21XX is not set | ||
| 462 | CONFIG_SCSI_QLA22XX=y | ||
| 463 | CONFIG_SCSI_QLA2300=y | ||
| 464 | CONFIG_SCSI_QLA2322=y | ||
| 465 | # CONFIG_SCSI_QLA6312 is not set | ||
| 466 | # CONFIG_SCSI_QLA24XX is not set | ||
| 467 | # CONFIG_SCSI_LPFC is not set | 473 | # CONFIG_SCSI_LPFC is not set |
| 468 | # CONFIG_SCSI_DC395x is not set | 474 | # CONFIG_SCSI_DC395x is not set |
| 469 | # CONFIG_SCSI_DC390T is not set | 475 | # CONFIG_SCSI_DC390T is not set |
| @@ -545,6 +551,7 @@ CONFIG_NETDEVICES=y | |||
| 545 | # CONFIG_R8169 is not set | 551 | # CONFIG_R8169 is not set |
| 546 | # CONFIG_SIS190 is not set | 552 | # CONFIG_SIS190 is not set |
| 547 | # CONFIG_SKGE is not set | 553 | # CONFIG_SKGE is not set |
| 554 | # CONFIG_SKY2 is not set | ||
| 548 | # CONFIG_SK98LIN is not set | 555 | # CONFIG_SK98LIN is not set |
| 549 | CONFIG_TIGON3=y | 556 | CONFIG_TIGON3=y |
| 550 | # CONFIG_BNX2 is not set | 557 | # CONFIG_BNX2 is not set |
| @@ -632,12 +639,15 @@ CONFIG_VT=y | |||
| 632 | CONFIG_VT_CONSOLE=y | 639 | CONFIG_VT_CONSOLE=y |
| 633 | CONFIG_HW_CONSOLE=y | 640 | CONFIG_HW_CONSOLE=y |
| 634 | CONFIG_SERIAL_NONSTANDARD=y | 641 | CONFIG_SERIAL_NONSTANDARD=y |
| 642 | # CONFIG_COMPUTONE is not set | ||
| 635 | # CONFIG_ROCKETPORT is not set | 643 | # CONFIG_ROCKETPORT is not set |
| 636 | # CONFIG_CYCLADES is not set | 644 | # CONFIG_CYCLADES is not set |
| 637 | # CONFIG_DIGIEPCA is not set | 645 | # CONFIG_DIGIEPCA is not set |
| 646 | # CONFIG_MOXA_INTELLIO is not set | ||
| 638 | # CONFIG_MOXA_SMARTIO is not set | 647 | # CONFIG_MOXA_SMARTIO is not set |
| 639 | # CONFIG_ISI is not set | 648 | # CONFIG_ISI is not set |
| 640 | # CONFIG_SYNCLINKMP is not set | 649 | # CONFIG_SYNCLINKMP is not set |
| 650 | # CONFIG_SYNCLINK_GT is not set | ||
| 641 | # CONFIG_N_HDLC is not set | 651 | # CONFIG_N_HDLC is not set |
| 642 | # CONFIG_SPECIALIX is not set | 652 | # CONFIG_SPECIALIX is not set |
| 643 | # CONFIG_SX is not set | 653 | # CONFIG_SX is not set |
| @@ -686,8 +696,8 @@ CONFIG_AGP=y | |||
| 686 | CONFIG_AGP_SGI_TIOCA=y | 696 | CONFIG_AGP_SGI_TIOCA=y |
| 687 | # CONFIG_DRM is not set | 697 | # CONFIG_DRM is not set |
| 688 | CONFIG_RAW_DRIVER=m | 698 | CONFIG_RAW_DRIVER=m |
| 689 | # CONFIG_HPET is not set | ||
| 690 | CONFIG_MAX_RAW_DEVS=256 | 699 | CONFIG_MAX_RAW_DEVS=256 |
| 700 | # CONFIG_HPET is not set | ||
| 691 | # CONFIG_HANGCHECK_TIMER is not set | 701 | # CONFIG_HANGCHECK_TIMER is not set |
| 692 | CONFIG_MMTIMER=y | 702 | CONFIG_MMTIMER=y |
| 693 | 703 | ||
| @@ -703,6 +713,12 @@ CONFIG_MMTIMER=y | |||
| 703 | # CONFIG_I2C is not set | 713 | # CONFIG_I2C is not set |
| 704 | 714 | ||
| 705 | # | 715 | # |
| 716 | # SPI support | ||
| 717 | # | ||
| 718 | # CONFIG_SPI is not set | ||
| 719 | # CONFIG_SPI_MASTER is not set | ||
| 720 | |||
| 721 | # | ||
| 706 | # Dallas's 1-wire bus | 722 | # Dallas's 1-wire bus |
| 707 | # | 723 | # |
| 708 | # CONFIG_W1 is not set | 724 | # CONFIG_W1 is not set |
| @@ -791,12 +807,14 @@ CONFIG_USB_UHCI_HCD=m | |||
| 791 | # may also be needed; see USB_STORAGE Help for more information | 807 | # may also be needed; see USB_STORAGE Help for more information |
| 792 | # | 808 | # |
| 793 | # CONFIG_USB_STORAGE is not set | 809 | # CONFIG_USB_STORAGE is not set |
| 810 | # CONFIG_USB_LIBUSUAL is not set | ||
| 794 | 811 | ||
| 795 | # | 812 | # |
| 796 | # USB Input Devices | 813 | # USB Input Devices |
| 797 | # | 814 | # |
| 798 | CONFIG_USB_HID=m | 815 | CONFIG_USB_HID=m |
| 799 | CONFIG_USB_HIDINPUT=y | 816 | CONFIG_USB_HIDINPUT=y |
| 817 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 800 | # CONFIG_HID_FF is not set | 818 | # CONFIG_HID_FF is not set |
| 801 | # CONFIG_USB_HIDDEV is not set | 819 | # CONFIG_USB_HIDDEV is not set |
| 802 | 820 | ||
| @@ -816,6 +834,7 @@ CONFIG_USB_HIDINPUT=y | |||
| 816 | # CONFIG_USB_YEALINK is not set | 834 | # CONFIG_USB_YEALINK is not set |
| 817 | # CONFIG_USB_XPAD is not set | 835 | # CONFIG_USB_XPAD is not set |
| 818 | # CONFIG_USB_ATI_REMOTE is not set | 836 | # CONFIG_USB_ATI_REMOTE is not set |
| 837 | # CONFIG_USB_ATI_REMOTE2 is not set | ||
| 819 | # CONFIG_USB_KEYSPAN_REMOTE is not set | 838 | # CONFIG_USB_KEYSPAN_REMOTE is not set |
| 820 | # CONFIG_USB_APPLETOUCH is not set | 839 | # CONFIG_USB_APPLETOUCH is not set |
| 821 | 840 | ||
| @@ -903,6 +922,10 @@ CONFIG_SGI_IOC4=y | |||
| 903 | CONFIG_SGI_IOC3=y | 922 | CONFIG_SGI_IOC3=y |
| 904 | 923 | ||
| 905 | # | 924 | # |
| 925 | # EDAC - error detection and reporting (RAS) | ||
| 926 | # | ||
| 927 | |||
| 928 | # | ||
| 906 | # File systems | 929 | # File systems |
| 907 | # | 930 | # |
| 908 | CONFIG_EXT2_FS=y | 931 | CONFIG_EXT2_FS=y |
| @@ -931,6 +954,7 @@ CONFIG_XFS_QUOTA=y | |||
| 931 | # CONFIG_XFS_SECURITY is not set | 954 | # CONFIG_XFS_SECURITY is not set |
| 932 | CONFIG_XFS_POSIX_ACL=y | 955 | CONFIG_XFS_POSIX_ACL=y |
| 933 | CONFIG_XFS_RT=y | 956 | CONFIG_XFS_RT=y |
| 957 | # CONFIG_OCFS2_FS is not set | ||
| 934 | # CONFIG_MINIX_FS is not set | 958 | # CONFIG_MINIX_FS is not set |
| 935 | # CONFIG_ROMFS_FS is not set | 959 | # CONFIG_ROMFS_FS is not set |
| 936 | CONFIG_INOTIFY=y | 960 | CONFIG_INOTIFY=y |
| @@ -973,6 +997,7 @@ CONFIG_HUGETLBFS=y | |||
| 973 | CONFIG_HUGETLB_PAGE=y | 997 | CONFIG_HUGETLB_PAGE=y |
| 974 | CONFIG_RAMFS=y | 998 | CONFIG_RAMFS=y |
| 975 | CONFIG_RELAYFS_FS=m | 999 | CONFIG_RELAYFS_FS=m |
| 1000 | # CONFIG_CONFIGFS_FS is not set | ||
| 976 | 1001 | ||
| 977 | # | 1002 | # |
| 978 | # Miscellaneous filesystems | 1003 | # Miscellaneous filesystems |
| @@ -1041,6 +1066,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1041 | CONFIG_SGI_PARTITION=y | 1066 | CONFIG_SGI_PARTITION=y |
| 1042 | # CONFIG_ULTRIX_PARTITION is not set | 1067 | # CONFIG_ULTRIX_PARTITION is not set |
| 1043 | # CONFIG_SUN_PARTITION is not set | 1068 | # CONFIG_SUN_PARTITION is not set |
| 1069 | # CONFIG_KARMA_PARTITION is not set | ||
| 1044 | CONFIG_EFI_PARTITION=y | 1070 | CONFIG_EFI_PARTITION=y |
| 1045 | 1071 | ||
| 1046 | # | 1072 | # |
| @@ -1111,19 +1137,21 @@ CONFIG_GENERIC_PENDING_IRQ=y | |||
| 1111 | # Kernel hacking | 1137 | # Kernel hacking |
| 1112 | # | 1138 | # |
| 1113 | # CONFIG_PRINTK_TIME is not set | 1139 | # CONFIG_PRINTK_TIME is not set |
| 1114 | CONFIG_DEBUG_KERNEL=y | ||
| 1115 | CONFIG_MAGIC_SYSRQ=y | 1140 | CONFIG_MAGIC_SYSRQ=y |
| 1141 | CONFIG_DEBUG_KERNEL=y | ||
| 1116 | CONFIG_LOG_BUF_SHIFT=20 | 1142 | CONFIG_LOG_BUF_SHIFT=20 |
| 1117 | CONFIG_DETECT_SOFTLOCKUP=y | 1143 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1118 | # CONFIG_SCHEDSTATS is not set | 1144 | # CONFIG_SCHEDSTATS is not set |
| 1119 | # CONFIG_DEBUG_SLAB is not set | 1145 | # CONFIG_DEBUG_SLAB is not set |
| 1120 | CONFIG_DEBUG_PREEMPT=y | 1146 | CONFIG_DEBUG_PREEMPT=y |
| 1147 | CONFIG_DEBUG_MUTEXES=y | ||
| 1121 | # CONFIG_DEBUG_SPINLOCK is not set | 1148 | # CONFIG_DEBUG_SPINLOCK is not set |
| 1122 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1149 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1123 | # CONFIG_DEBUG_KOBJECT is not set | 1150 | # CONFIG_DEBUG_KOBJECT is not set |
| 1124 | CONFIG_DEBUG_INFO=y | 1151 | CONFIG_DEBUG_INFO=y |
| 1125 | # CONFIG_DEBUG_FS is not set | 1152 | # CONFIG_DEBUG_FS is not set |
| 1126 | # CONFIG_DEBUG_VM is not set | 1153 | # CONFIG_DEBUG_VM is not set |
| 1154 | CONFIG_FORCED_INLINING=y | ||
| 1127 | # CONFIG_RCU_TORTURE_TEST is not set | 1155 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1128 | CONFIG_IA64_GRANULE_16MB=y | 1156 | CONFIG_IA64_GRANULE_16MB=y |
| 1129 | # CONFIG_IA64_GRANULE_64MB is not set | 1157 | # CONFIG_IA64_GRANULE_64MB is not set |
diff --git a/arch/ia64/configs/tiger_defconfig b/arch/ia64/configs/tiger_defconfig index 6859119bc9dd..125568118b84 100644 --- a/arch/ia64/configs/tiger_defconfig +++ b/arch/ia64/configs/tiger_defconfig | |||
| @@ -1,14 +1,13 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.15-rc4 | 3 | # Linux kernel version: 2.6.16-rc5 |
| 4 | # Fri Dec 2 16:06:32 2005 | 4 | # Mon Feb 27 15:49:18 2006 |
| 5 | # | 5 | # |
| 6 | 6 | ||
| 7 | # | 7 | # |
| 8 | # Code maturity level options | 8 | # Code maturity level options |
| 9 | # | 9 | # |
| 10 | CONFIG_EXPERIMENTAL=y | 10 | CONFIG_EXPERIMENTAL=y |
| 11 | CONFIG_CLEAN_COMPILE=y | ||
| 12 | CONFIG_LOCK_KERNEL=y | 11 | CONFIG_LOCK_KERNEL=y |
| 13 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 12 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 14 | 13 | ||
| @@ -23,18 +22,19 @@ CONFIG_POSIX_MQUEUE=y | |||
| 23 | # CONFIG_BSD_PROCESS_ACCT is not set | 22 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 24 | CONFIG_SYSCTL=y | 23 | CONFIG_SYSCTL=y |
| 25 | # CONFIG_AUDIT is not set | 24 | # CONFIG_AUDIT is not set |
| 26 | CONFIG_HOTPLUG=y | ||
| 27 | CONFIG_KOBJECT_UEVENT=y | ||
| 28 | CONFIG_IKCONFIG=y | 25 | CONFIG_IKCONFIG=y |
| 29 | CONFIG_IKCONFIG_PROC=y | 26 | CONFIG_IKCONFIG_PROC=y |
| 30 | # CONFIG_CPUSETS is not set | 27 | # CONFIG_CPUSETS is not set |
| 31 | CONFIG_INITRAMFS_SOURCE="" | 28 | CONFIG_INITRAMFS_SOURCE="" |
| 29 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 32 | # CONFIG_EMBEDDED is not set | 30 | # CONFIG_EMBEDDED is not set |
| 33 | CONFIG_KALLSYMS=y | 31 | CONFIG_KALLSYMS=y |
| 34 | CONFIG_KALLSYMS_ALL=y | 32 | CONFIG_KALLSYMS_ALL=y |
| 35 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 33 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 34 | CONFIG_HOTPLUG=y | ||
| 36 | CONFIG_PRINTK=y | 35 | CONFIG_PRINTK=y |
| 37 | CONFIG_BUG=y | 36 | CONFIG_BUG=y |
| 37 | CONFIG_ELF_CORE=y | ||
| 38 | CONFIG_BASE_FULL=y | 38 | CONFIG_BASE_FULL=y |
| 39 | CONFIG_FUTEX=y | 39 | CONFIG_FUTEX=y |
| 40 | CONFIG_EPOLL=y | 40 | CONFIG_EPOLL=y |
| @@ -43,8 +43,10 @@ CONFIG_CC_ALIGN_FUNCTIONS=0 | |||
| 43 | CONFIG_CC_ALIGN_LABELS=0 | 43 | CONFIG_CC_ALIGN_LABELS=0 |
| 44 | CONFIG_CC_ALIGN_LOOPS=0 | 44 | CONFIG_CC_ALIGN_LOOPS=0 |
| 45 | CONFIG_CC_ALIGN_JUMPS=0 | 45 | CONFIG_CC_ALIGN_JUMPS=0 |
| 46 | CONFIG_SLAB=y | ||
| 46 | # CONFIG_TINY_SHMEM is not set | 47 | # CONFIG_TINY_SHMEM is not set |
| 47 | CONFIG_BASE_SMALL=0 | 48 | CONFIG_BASE_SMALL=0 |
| 49 | # CONFIG_SLOB is not set | ||
| 48 | 50 | ||
| 49 | # | 51 | # |
| 50 | # Loadable module support | 52 | # Loadable module support |
| @@ -88,7 +90,7 @@ CONFIG_TIME_INTERPOLATION=y | |||
| 88 | CONFIG_EFI=y | 90 | CONFIG_EFI=y |
| 89 | CONFIG_GENERIC_IOMAP=y | 91 | CONFIG_GENERIC_IOMAP=y |
| 90 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 92 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
| 91 | CONFIG_ZONE_DMA_IS_DMA32=y | 93 | CONFIG_DMA_IS_DMA32=y |
| 92 | # CONFIG_IA64_GENERIC is not set | 94 | # CONFIG_IA64_GENERIC is not set |
| 93 | CONFIG_IA64_DIG=y | 95 | CONFIG_IA64_DIG=y |
| 94 | # CONFIG_IA64_HP_ZX1 is not set | 96 | # CONFIG_IA64_HP_ZX1 is not set |
| @@ -162,6 +164,7 @@ CONFIG_ACPI_HOTPLUG_CPU=y | |||
| 162 | CONFIG_ACPI_THERMAL=m | 164 | CONFIG_ACPI_THERMAL=m |
| 163 | CONFIG_ACPI_BLACKLIST_YEAR=0 | 165 | CONFIG_ACPI_BLACKLIST_YEAR=0 |
| 164 | # CONFIG_ACPI_DEBUG is not set | 166 | # CONFIG_ACPI_DEBUG is not set |
| 167 | CONFIG_ACPI_EC=y | ||
| 165 | CONFIG_ACPI_POWER=y | 168 | CONFIG_ACPI_POWER=y |
| 166 | CONFIG_ACPI_SYSTEM=y | 169 | CONFIG_ACPI_SYSTEM=y |
| 167 | CONFIG_ACPI_CONTAINER=m | 170 | CONFIG_ACPI_CONTAINER=m |
| @@ -203,6 +206,7 @@ CONFIG_NET=y | |||
| 203 | # | 206 | # |
| 204 | # Networking options | 207 | # Networking options |
| 205 | # | 208 | # |
| 209 | # CONFIG_NETDEBUG is not set | ||
| 206 | CONFIG_PACKET=y | 210 | CONFIG_PACKET=y |
| 207 | # CONFIG_PACKET_MMAP is not set | 211 | # CONFIG_PACKET_MMAP is not set |
| 208 | CONFIG_UNIX=y | 212 | CONFIG_UNIX=y |
| @@ -237,6 +241,11 @@ CONFIG_TCP_CONG_BIC=y | |||
| 237 | # SCTP Configuration (EXPERIMENTAL) | 241 | # SCTP Configuration (EXPERIMENTAL) |
| 238 | # | 242 | # |
| 239 | # CONFIG_IP_SCTP is not set | 243 | # CONFIG_IP_SCTP is not set |
| 244 | |||
| 245 | # | ||
| 246 | # TIPC Configuration (EXPERIMENTAL) | ||
| 247 | # | ||
| 248 | # CONFIG_TIPC is not set | ||
| 240 | # CONFIG_ATM is not set | 249 | # CONFIG_ATM is not set |
| 241 | # CONFIG_BRIDGE is not set | 250 | # CONFIG_BRIDGE is not set |
| 242 | # CONFIG_VLAN_8021Q is not set | 251 | # CONFIG_VLAN_8021Q is not set |
| @@ -326,6 +335,7 @@ CONFIG_BLK_DEV_INITRD=y | |||
| 326 | # ATA/ATAPI/MFM/RLL support | 335 | # ATA/ATAPI/MFM/RLL support |
| 327 | # | 336 | # |
| 328 | CONFIG_IDE=y | 337 | CONFIG_IDE=y |
| 338 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 329 | CONFIG_BLK_DEV_IDE=y | 339 | CONFIG_BLK_DEV_IDE=y |
| 330 | 340 | ||
| 331 | # | 341 | # |
| @@ -443,13 +453,7 @@ CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | |||
| 443 | CONFIG_SCSI_QLOGIC_FC=y | 453 | CONFIG_SCSI_QLOGIC_FC=y |
| 444 | # CONFIG_SCSI_QLOGIC_FC_FIRMWARE is not set | 454 | # CONFIG_SCSI_QLOGIC_FC_FIRMWARE is not set |
| 445 | CONFIG_SCSI_QLOGIC_1280=y | 455 | CONFIG_SCSI_QLOGIC_1280=y |
| 446 | CONFIG_SCSI_QLA2XXX=y | 456 | # CONFIG_SCSI_QLA_FC is not set |
| 447 | CONFIG_SCSI_QLA21XX=m | ||
| 448 | CONFIG_SCSI_QLA22XX=m | ||
| 449 | CONFIG_SCSI_QLA2300=m | ||
| 450 | CONFIG_SCSI_QLA2322=m | ||
| 451 | # CONFIG_SCSI_QLA6312 is not set | ||
| 452 | # CONFIG_SCSI_QLA24XX is not set | ||
| 453 | # CONFIG_SCSI_LPFC is not set | 457 | # CONFIG_SCSI_LPFC is not set |
| 454 | # CONFIG_SCSI_DC395x is not set | 458 | # CONFIG_SCSI_DC395x is not set |
| 455 | # CONFIG_SCSI_DC390T is not set | 459 | # CONFIG_SCSI_DC390T is not set |
| @@ -572,6 +576,7 @@ CONFIG_E1000=y | |||
| 572 | # CONFIG_R8169 is not set | 576 | # CONFIG_R8169 is not set |
| 573 | # CONFIG_SIS190 is not set | 577 | # CONFIG_SIS190 is not set |
| 574 | # CONFIG_SKGE is not set | 578 | # CONFIG_SKGE is not set |
| 579 | # CONFIG_SKY2 is not set | ||
| 575 | # CONFIG_SK98LIN is not set | 580 | # CONFIG_SK98LIN is not set |
| 576 | # CONFIG_VIA_VELOCITY is not set | 581 | # CONFIG_VIA_VELOCITY is not set |
| 577 | CONFIG_TIGON3=y | 582 | CONFIG_TIGON3=y |
| @@ -676,12 +681,15 @@ CONFIG_VT=y | |||
| 676 | CONFIG_VT_CONSOLE=y | 681 | CONFIG_VT_CONSOLE=y |
| 677 | CONFIG_HW_CONSOLE=y | 682 | CONFIG_HW_CONSOLE=y |
| 678 | CONFIG_SERIAL_NONSTANDARD=y | 683 | CONFIG_SERIAL_NONSTANDARD=y |
| 684 | # CONFIG_COMPUTONE is not set | ||
| 679 | # CONFIG_ROCKETPORT is not set | 685 | # CONFIG_ROCKETPORT is not set |
| 680 | # CONFIG_CYCLADES is not set | 686 | # CONFIG_CYCLADES is not set |
| 681 | # CONFIG_DIGIEPCA is not set | 687 | # CONFIG_DIGIEPCA is not set |
| 688 | # CONFIG_MOXA_INTELLIO is not set | ||
| 682 | # CONFIG_MOXA_SMARTIO is not set | 689 | # CONFIG_MOXA_SMARTIO is not set |
| 683 | # CONFIG_ISI is not set | 690 | # CONFIG_ISI is not set |
| 684 | # CONFIG_SYNCLINKMP is not set | 691 | # CONFIG_SYNCLINKMP is not set |
| 692 | # CONFIG_SYNCLINK_GT is not set | ||
| 685 | # CONFIG_N_HDLC is not set | 693 | # CONFIG_N_HDLC is not set |
| 686 | # CONFIG_SPECIALIX is not set | 694 | # CONFIG_SPECIALIX is not set |
| 687 | # CONFIG_SX is not set | 695 | # CONFIG_SX is not set |
| @@ -694,6 +702,7 @@ CONFIG_SERIAL_8250=y | |||
| 694 | CONFIG_SERIAL_8250_CONSOLE=y | 702 | CONFIG_SERIAL_8250_CONSOLE=y |
| 695 | CONFIG_SERIAL_8250_ACPI=y | 703 | CONFIG_SERIAL_8250_ACPI=y |
| 696 | CONFIG_SERIAL_8250_NR_UARTS=6 | 704 | CONFIG_SERIAL_8250_NR_UARTS=6 |
| 705 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 697 | CONFIG_SERIAL_8250_EXTENDED=y | 706 | CONFIG_SERIAL_8250_EXTENDED=y |
| 698 | CONFIG_SERIAL_8250_SHARE_IRQ=y | 707 | CONFIG_SERIAL_8250_SHARE_IRQ=y |
| 699 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set | 708 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set |
| @@ -738,10 +747,10 @@ CONFIG_DRM_SIS=m | |||
| 738 | # CONFIG_DRM_VIA is not set | 747 | # CONFIG_DRM_VIA is not set |
| 739 | # CONFIG_DRM_SAVAGE is not set | 748 | # CONFIG_DRM_SAVAGE is not set |
| 740 | CONFIG_RAW_DRIVER=m | 749 | CONFIG_RAW_DRIVER=m |
| 750 | CONFIG_MAX_RAW_DEVS=256 | ||
| 741 | CONFIG_HPET=y | 751 | CONFIG_HPET=y |
| 742 | # CONFIG_HPET_RTC_IRQ is not set | 752 | # CONFIG_HPET_RTC_IRQ is not set |
| 743 | CONFIG_HPET_MMAP=y | 753 | CONFIG_HPET_MMAP=y |
| 744 | CONFIG_MAX_RAW_DEVS=256 | ||
| 745 | # CONFIG_HANGCHECK_TIMER is not set | 754 | # CONFIG_HANGCHECK_TIMER is not set |
| 746 | 755 | ||
| 747 | # | 756 | # |
| @@ -756,6 +765,12 @@ CONFIG_MAX_RAW_DEVS=256 | |||
| 756 | # CONFIG_I2C is not set | 765 | # CONFIG_I2C is not set |
| 757 | 766 | ||
| 758 | # | 767 | # |
| 768 | # SPI support | ||
| 769 | # | ||
| 770 | # CONFIG_SPI is not set | ||
| 771 | # CONFIG_SPI_MASTER is not set | ||
| 772 | |||
| 773 | # | ||
| 759 | # Dallas's 1-wire bus | 774 | # Dallas's 1-wire bus |
| 760 | # | 775 | # |
| 761 | # CONFIG_W1 is not set | 776 | # CONFIG_W1 is not set |
| @@ -765,6 +780,7 @@ CONFIG_MAX_RAW_DEVS=256 | |||
| 765 | # | 780 | # |
| 766 | CONFIG_HWMON=y | 781 | CONFIG_HWMON=y |
| 767 | # CONFIG_HWMON_VID is not set | 782 | # CONFIG_HWMON_VID is not set |
| 783 | # CONFIG_SENSORS_F71805F is not set | ||
| 768 | # CONFIG_HWMON_DEBUG_CHIP is not set | 784 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 769 | 785 | ||
| 770 | # | 786 | # |
| @@ -854,12 +870,15 @@ CONFIG_USB_STORAGE=m | |||
| 854 | # CONFIG_USB_STORAGE_SDDR09 is not set | 870 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 855 | # CONFIG_USB_STORAGE_SDDR55 is not set | 871 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 856 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 872 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 873 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 874 | # CONFIG_USB_LIBUSUAL is not set | ||
| 857 | 875 | ||
| 858 | # | 876 | # |
| 859 | # USB Input Devices | 877 | # USB Input Devices |
| 860 | # | 878 | # |
| 861 | CONFIG_USB_HID=y | 879 | CONFIG_USB_HID=y |
| 862 | CONFIG_USB_HIDINPUT=y | 880 | CONFIG_USB_HIDINPUT=y |
| 881 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 863 | # CONFIG_HID_FF is not set | 882 | # CONFIG_HID_FF is not set |
| 864 | # CONFIG_USB_HIDDEV is not set | 883 | # CONFIG_USB_HIDDEV is not set |
| 865 | # CONFIG_USB_AIPTEK is not set | 884 | # CONFIG_USB_AIPTEK is not set |
| @@ -873,6 +892,7 @@ CONFIG_USB_HIDINPUT=y | |||
| 873 | # CONFIG_USB_YEALINK is not set | 892 | # CONFIG_USB_YEALINK is not set |
| 874 | # CONFIG_USB_XPAD is not set | 893 | # CONFIG_USB_XPAD is not set |
| 875 | # CONFIG_USB_ATI_REMOTE is not set | 894 | # CONFIG_USB_ATI_REMOTE is not set |
| 895 | # CONFIG_USB_ATI_REMOTE2 is not set | ||
| 876 | # CONFIG_USB_KEYSPAN_REMOTE is not set | 896 | # CONFIG_USB_KEYSPAN_REMOTE is not set |
| 877 | # CONFIG_USB_APPLETOUCH is not set | 897 | # CONFIG_USB_APPLETOUCH is not set |
| 878 | 898 | ||
| @@ -948,7 +968,7 @@ CONFIG_USB_HIDINPUT=y | |||
| 948 | # CONFIG_INFINIBAND is not set | 968 | # CONFIG_INFINIBAND is not set |
| 949 | 969 | ||
| 950 | # | 970 | # |
| 951 | # SN Devices | 971 | # EDAC - error detection and reporting (RAS) |
| 952 | # | 972 | # |
| 953 | 973 | ||
| 954 | # | 974 | # |
| @@ -980,6 +1000,7 @@ CONFIG_XFS_EXPORT=y | |||
| 980 | # CONFIG_XFS_SECURITY is not set | 1000 | # CONFIG_XFS_SECURITY is not set |
| 981 | # CONFIG_XFS_POSIX_ACL is not set | 1001 | # CONFIG_XFS_POSIX_ACL is not set |
| 982 | # CONFIG_XFS_RT is not set | 1002 | # CONFIG_XFS_RT is not set |
| 1003 | # CONFIG_OCFS2_FS is not set | ||
| 983 | # CONFIG_MINIX_FS is not set | 1004 | # CONFIG_MINIX_FS is not set |
| 984 | # CONFIG_ROMFS_FS is not set | 1005 | # CONFIG_ROMFS_FS is not set |
| 985 | CONFIG_INOTIFY=y | 1006 | CONFIG_INOTIFY=y |
| @@ -1021,6 +1042,7 @@ CONFIG_HUGETLBFS=y | |||
| 1021 | CONFIG_HUGETLB_PAGE=y | 1042 | CONFIG_HUGETLB_PAGE=y |
| 1022 | CONFIG_RAMFS=y | 1043 | CONFIG_RAMFS=y |
| 1023 | # CONFIG_RELAYFS_FS is not set | 1044 | # CONFIG_RELAYFS_FS is not set |
| 1045 | # CONFIG_CONFIGFS_FS is not set | ||
| 1024 | 1046 | ||
| 1025 | # | 1047 | # |
| 1026 | # Miscellaneous filesystems | 1048 | # Miscellaneous filesystems |
| @@ -1090,6 +1112,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1090 | CONFIG_SGI_PARTITION=y | 1112 | CONFIG_SGI_PARTITION=y |
| 1091 | # CONFIG_ULTRIX_PARTITION is not set | 1113 | # CONFIG_ULTRIX_PARTITION is not set |
| 1092 | # CONFIG_SUN_PARTITION is not set | 1114 | # CONFIG_SUN_PARTITION is not set |
| 1115 | # CONFIG_KARMA_PARTITION is not set | ||
| 1093 | CONFIG_EFI_PARTITION=y | 1116 | CONFIG_EFI_PARTITION=y |
| 1094 | 1117 | ||
| 1095 | # | 1118 | # |
| @@ -1157,18 +1180,20 @@ CONFIG_GENERIC_PENDING_IRQ=y | |||
| 1157 | # Kernel hacking | 1180 | # Kernel hacking |
| 1158 | # | 1181 | # |
| 1159 | # CONFIG_PRINTK_TIME is not set | 1182 | # CONFIG_PRINTK_TIME is not set |
| 1160 | CONFIG_DEBUG_KERNEL=y | ||
| 1161 | CONFIG_MAGIC_SYSRQ=y | 1183 | CONFIG_MAGIC_SYSRQ=y |
| 1184 | CONFIG_DEBUG_KERNEL=y | ||
| 1162 | CONFIG_LOG_BUF_SHIFT=20 | 1185 | CONFIG_LOG_BUF_SHIFT=20 |
| 1163 | CONFIG_DETECT_SOFTLOCKUP=y | 1186 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1164 | # CONFIG_SCHEDSTATS is not set | 1187 | # CONFIG_SCHEDSTATS is not set |
| 1165 | # CONFIG_DEBUG_SLAB is not set | 1188 | # CONFIG_DEBUG_SLAB is not set |
| 1189 | CONFIG_DEBUG_MUTEXES=y | ||
| 1166 | # CONFIG_DEBUG_SPINLOCK is not set | 1190 | # CONFIG_DEBUG_SPINLOCK is not set |
| 1167 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1191 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1168 | # CONFIG_DEBUG_KOBJECT is not set | 1192 | # CONFIG_DEBUG_KOBJECT is not set |
| 1169 | # CONFIG_DEBUG_INFO is not set | 1193 | # CONFIG_DEBUG_INFO is not set |
| 1170 | # CONFIG_DEBUG_FS is not set | 1194 | # CONFIG_DEBUG_FS is not set |
| 1171 | # CONFIG_DEBUG_VM is not set | 1195 | # CONFIG_DEBUG_VM is not set |
| 1196 | CONFIG_FORCED_INLINING=y | ||
| 1172 | # CONFIG_RCU_TORTURE_TEST is not set | 1197 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1173 | CONFIG_IA64_GRANULE_16MB=y | 1198 | CONFIG_IA64_GRANULE_16MB=y |
| 1174 | # CONFIG_IA64_GRANULE_64MB is not set | 1199 | # CONFIG_IA64_GRANULE_64MB is not set |
diff --git a/arch/ia64/configs/zx1_defconfig b/arch/ia64/configs/zx1_defconfig index 53899dc8eb53..949dc4670a0c 100644 --- a/arch/ia64/configs/zx1_defconfig +++ b/arch/ia64/configs/zx1_defconfig | |||
| @@ -1,16 +1,13 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.14-rc1 | 3 | # Linux kernel version: 2.6.16-rc5 |
| 4 | # Wed Sep 14 15:15:01 2005 | 4 | # Mon Feb 27 15:55:36 2006 |
| 5 | # | 5 | # |
| 6 | 6 | ||
| 7 | # | 7 | # |
| 8 | # Code maturity level options | 8 | # Code maturity level options |
| 9 | # | 9 | # |
| 10 | CONFIG_EXPERIMENTAL=y | 10 | CONFIG_EXPERIMENTAL=y |
| 11 | # CONFIG_CLEAN_COMPILE is not set | ||
| 12 | CONFIG_BROKEN=y | ||
| 13 | CONFIG_BROKEN_ON_SMP=y | ||
| 14 | CONFIG_LOCK_KERNEL=y | 11 | CONFIG_LOCK_KERNEL=y |
| 15 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 12 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 16 | 13 | ||
| @@ -26,17 +23,18 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 26 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 23 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 27 | CONFIG_SYSCTL=y | 24 | CONFIG_SYSCTL=y |
| 28 | # CONFIG_AUDIT is not set | 25 | # CONFIG_AUDIT is not set |
| 29 | CONFIG_HOTPLUG=y | ||
| 30 | CONFIG_KOBJECT_UEVENT=y | ||
| 31 | # CONFIG_IKCONFIG is not set | 26 | # CONFIG_IKCONFIG is not set |
| 32 | # CONFIG_CPUSETS is not set | 27 | # CONFIG_CPUSETS is not set |
| 33 | CONFIG_INITRAMFS_SOURCE="" | 28 | CONFIG_INITRAMFS_SOURCE="" |
| 29 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 34 | # CONFIG_EMBEDDED is not set | 30 | # CONFIG_EMBEDDED is not set |
| 35 | CONFIG_KALLSYMS=y | 31 | CONFIG_KALLSYMS=y |
| 36 | # CONFIG_KALLSYMS_ALL is not set | 32 | # CONFIG_KALLSYMS_ALL is not set |
| 37 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 33 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 34 | CONFIG_HOTPLUG=y | ||
| 38 | CONFIG_PRINTK=y | 35 | CONFIG_PRINTK=y |
| 39 | CONFIG_BUG=y | 36 | CONFIG_BUG=y |
| 37 | CONFIG_ELF_CORE=y | ||
| 40 | CONFIG_BASE_FULL=y | 38 | CONFIG_BASE_FULL=y |
| 41 | CONFIG_FUTEX=y | 39 | CONFIG_FUTEX=y |
| 42 | CONFIG_EPOLL=y | 40 | CONFIG_EPOLL=y |
| @@ -45,8 +43,10 @@ CONFIG_CC_ALIGN_FUNCTIONS=0 | |||
| 45 | CONFIG_CC_ALIGN_LABELS=0 | 43 | CONFIG_CC_ALIGN_LABELS=0 |
| 46 | CONFIG_CC_ALIGN_LOOPS=0 | 44 | CONFIG_CC_ALIGN_LOOPS=0 |
| 47 | CONFIG_CC_ALIGN_JUMPS=0 | 45 | CONFIG_CC_ALIGN_JUMPS=0 |
| 46 | CONFIG_SLAB=y | ||
| 48 | # CONFIG_TINY_SHMEM is not set | 47 | # CONFIG_TINY_SHMEM is not set |
| 49 | CONFIG_BASE_SMALL=0 | 48 | CONFIG_BASE_SMALL=0 |
| 49 | # CONFIG_SLOB is not set | ||
| 50 | 50 | ||
| 51 | # | 51 | # |
| 52 | # Loadable module support | 52 | # Loadable module support |
| @@ -59,17 +59,36 @@ CONFIG_OBSOLETE_MODPARM=y | |||
| 59 | # CONFIG_KMOD is not set | 59 | # CONFIG_KMOD is not set |
| 60 | 60 | ||
| 61 | # | 61 | # |
| 62 | # Block layer | ||
| 63 | # | ||
| 64 | |||
| 65 | # | ||
| 66 | # IO Schedulers | ||
| 67 | # | ||
| 68 | CONFIG_IOSCHED_NOOP=y | ||
| 69 | CONFIG_IOSCHED_AS=y | ||
| 70 | CONFIG_IOSCHED_DEADLINE=y | ||
| 71 | CONFIG_IOSCHED_CFQ=y | ||
| 72 | CONFIG_DEFAULT_AS=y | ||
| 73 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 74 | # CONFIG_DEFAULT_CFQ is not set | ||
| 75 | # CONFIG_DEFAULT_NOOP is not set | ||
| 76 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 77 | |||
| 78 | # | ||
| 62 | # Processor type and features | 79 | # Processor type and features |
| 63 | # | 80 | # |
| 64 | CONFIG_IA64=y | 81 | CONFIG_IA64=y |
| 65 | CONFIG_64BIT=y | 82 | CONFIG_64BIT=y |
| 66 | CONFIG_MMU=y | 83 | CONFIG_MMU=y |
| 84 | CONFIG_SWIOTLB=y | ||
| 67 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 85 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 68 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 86 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 69 | CONFIG_TIME_INTERPOLATION=y | 87 | CONFIG_TIME_INTERPOLATION=y |
| 70 | CONFIG_EFI=y | 88 | CONFIG_EFI=y |
| 71 | CONFIG_GENERIC_IOMAP=y | 89 | CONFIG_GENERIC_IOMAP=y |
| 72 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 90 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
| 91 | CONFIG_DMA_IS_DMA32=y | ||
| 73 | # CONFIG_IA64_GENERIC is not set | 92 | # CONFIG_IA64_GENERIC is not set |
| 74 | # CONFIG_IA64_DIG is not set | 93 | # CONFIG_IA64_DIG is not set |
| 75 | CONFIG_IA64_HP_ZX1=y | 94 | CONFIG_IA64_HP_ZX1=y |
| @@ -82,18 +101,16 @@ CONFIG_MCKINLEY=y | |||
| 82 | # CONFIG_IA64_PAGE_SIZE_8KB is not set | 101 | # CONFIG_IA64_PAGE_SIZE_8KB is not set |
| 83 | CONFIG_IA64_PAGE_SIZE_16KB=y | 102 | CONFIG_IA64_PAGE_SIZE_16KB=y |
| 84 | # CONFIG_IA64_PAGE_SIZE_64KB is not set | 103 | # CONFIG_IA64_PAGE_SIZE_64KB is not set |
| 104 | CONFIG_PGTABLE_3=y | ||
| 105 | # CONFIG_PGTABLE_4 is not set | ||
| 85 | # CONFIG_HZ_100 is not set | 106 | # CONFIG_HZ_100 is not set |
| 86 | CONFIG_HZ_250=y | 107 | CONFIG_HZ_250=y |
| 87 | # CONFIG_HZ_1000 is not set | 108 | # CONFIG_HZ_1000 is not set |
| 88 | CONFIG_HZ=250 | 109 | CONFIG_HZ=250 |
| 89 | CONFIG_IA64_L1_CACHE_SHIFT=7 | 110 | CONFIG_IA64_L1_CACHE_SHIFT=7 |
| 90 | # CONFIG_NUMA is not set | ||
| 91 | CONFIG_VIRTUAL_MEM_MAP=y | ||
| 92 | CONFIG_HOLES_IN_ZONE=y | ||
| 93 | # CONFIG_IA64_CYCLONE is not set | 111 | # CONFIG_IA64_CYCLONE is not set |
| 94 | CONFIG_IOSAPIC=y | 112 | CONFIG_IOSAPIC=y |
| 95 | # CONFIG_IA64_SGI_SN_XP is not set | 113 | CONFIG_FORCE_MAX_ZONEORDER=17 |
| 96 | CONFIG_FORCE_MAX_ZONEORDER=18 | ||
| 97 | CONFIG_SMP=y | 114 | CONFIG_SMP=y |
| 98 | CONFIG_NR_CPUS=16 | 115 | CONFIG_NR_CPUS=16 |
| 99 | # CONFIG_HOTPLUG_CPU is not set | 116 | # CONFIG_HOTPLUG_CPU is not set |
| @@ -106,7 +123,14 @@ CONFIG_FLATMEM_MANUAL=y | |||
| 106 | CONFIG_FLATMEM=y | 123 | CONFIG_FLATMEM=y |
| 107 | CONFIG_FLAT_NODE_MEM_MAP=y | 124 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 108 | # CONFIG_SPARSEMEM_STATIC is not set | 125 | # CONFIG_SPARSEMEM_STATIC is not set |
| 109 | CONFIG_HAVE_DEC_LOCK=y | 126 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 127 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
| 128 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | ||
| 129 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 130 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
| 131 | CONFIG_ARCH_DISCONTIGMEM_DEFAULT=y | ||
| 132 | CONFIG_VIRTUAL_MEM_MAP=y | ||
| 133 | CONFIG_HOLES_IN_ZONE=y | ||
| 110 | CONFIG_IA32_SUPPORT=y | 134 | CONFIG_IA32_SUPPORT=y |
| 111 | CONFIG_COMPAT=y | 135 | CONFIG_COMPAT=y |
| 112 | CONFIG_IA64_MCA_RECOVERY=y | 136 | CONFIG_IA64_MCA_RECOVERY=y |
| @@ -118,7 +142,6 @@ CONFIG_IA64_PALINFO=y | |||
| 118 | # | 142 | # |
| 119 | CONFIG_EFI_VARS=y | 143 | CONFIG_EFI_VARS=y |
| 120 | CONFIG_EFI_PCDP=y | 144 | CONFIG_EFI_PCDP=y |
| 121 | # CONFIG_DELL_RBU is not set | ||
| 122 | CONFIG_BINFMT_ELF=y | 145 | CONFIG_BINFMT_ELF=y |
| 123 | CONFIG_BINFMT_MISC=y | 146 | CONFIG_BINFMT_MISC=y |
| 124 | 147 | ||
| @@ -126,6 +149,7 @@ CONFIG_BINFMT_MISC=y | |||
| 126 | # Power management and ACPI | 149 | # Power management and ACPI |
| 127 | # | 150 | # |
| 128 | CONFIG_PM=y | 151 | CONFIG_PM=y |
| 152 | CONFIG_PM_LEGACY=y | ||
| 129 | # CONFIG_PM_DEBUG is not set | 153 | # CONFIG_PM_DEBUG is not set |
| 130 | 154 | ||
| 131 | # | 155 | # |
| @@ -138,6 +162,7 @@ CONFIG_ACPI_PROCESSOR=y | |||
| 138 | CONFIG_ACPI_THERMAL=y | 162 | CONFIG_ACPI_THERMAL=y |
| 139 | CONFIG_ACPI_BLACKLIST_YEAR=0 | 163 | CONFIG_ACPI_BLACKLIST_YEAR=0 |
| 140 | # CONFIG_ACPI_DEBUG is not set | 164 | # CONFIG_ACPI_DEBUG is not set |
| 165 | CONFIG_ACPI_EC=y | ||
| 141 | CONFIG_ACPI_POWER=y | 166 | CONFIG_ACPI_POWER=y |
| 142 | CONFIG_ACPI_SYSTEM=y | 167 | CONFIG_ACPI_SYSTEM=y |
| 143 | # CONFIG_ACPI_CONTAINER is not set | 168 | # CONFIG_ACPI_CONTAINER is not set |
| @@ -179,6 +204,7 @@ CONFIG_NET=y | |||
| 179 | # | 204 | # |
| 180 | # Networking options | 205 | # Networking options |
| 181 | # | 206 | # |
| 207 | # CONFIG_NETDEBUG is not set | ||
| 182 | CONFIG_PACKET=y | 208 | CONFIG_PACKET=y |
| 183 | # CONFIG_PACKET_MMAP is not set | 209 | # CONFIG_PACKET_MMAP is not set |
| 184 | CONFIG_UNIX=y | 210 | CONFIG_UNIX=y |
| @@ -211,14 +237,17 @@ CONFIG_NETFILTER=y | |||
| 211 | # CONFIG_NETFILTER_DEBUG is not set | 237 | # CONFIG_NETFILTER_DEBUG is not set |
| 212 | 238 | ||
| 213 | # | 239 | # |
| 240 | # Core Netfilter Configuration | ||
| 241 | # | ||
| 242 | # CONFIG_NETFILTER_NETLINK is not set | ||
| 243 | # CONFIG_NF_CONNTRACK is not set | ||
| 244 | # CONFIG_NETFILTER_XTABLES is not set | ||
| 245 | |||
| 246 | # | ||
| 214 | # IP: Netfilter Configuration | 247 | # IP: Netfilter Configuration |
| 215 | # | 248 | # |
| 216 | # CONFIG_IP_NF_CONNTRACK is not set | 249 | # CONFIG_IP_NF_CONNTRACK is not set |
| 217 | # CONFIG_IP_NF_QUEUE is not set | 250 | # CONFIG_IP_NF_QUEUE is not set |
| 218 | # CONFIG_IP_NF_IPTABLES is not set | ||
| 219 | CONFIG_IP_NF_ARPTABLES=y | ||
| 220 | # CONFIG_IP_NF_ARPFILTER is not set | ||
| 221 | # CONFIG_IP_NF_ARP_MANGLE is not set | ||
| 222 | 251 | ||
| 223 | # | 252 | # |
| 224 | # DCCP Configuration (EXPERIMENTAL) | 253 | # DCCP Configuration (EXPERIMENTAL) |
| @@ -229,6 +258,11 @@ CONFIG_IP_NF_ARPTABLES=y | |||
| 229 | # SCTP Configuration (EXPERIMENTAL) | 258 | # SCTP Configuration (EXPERIMENTAL) |
| 230 | # | 259 | # |
| 231 | # CONFIG_IP_SCTP is not set | 260 | # CONFIG_IP_SCTP is not set |
| 261 | |||
| 262 | # | ||
| 263 | # TIPC Configuration (EXPERIMENTAL) | ||
| 264 | # | ||
| 265 | # CONFIG_TIPC is not set | ||
| 232 | # CONFIG_ATM is not set | 266 | # CONFIG_ATM is not set |
| 233 | # CONFIG_BRIDGE is not set | 267 | # CONFIG_BRIDGE is not set |
| 234 | # CONFIG_VLAN_8021Q is not set | 268 | # CONFIG_VLAN_8021Q is not set |
| @@ -241,14 +275,16 @@ CONFIG_IP_NF_ARPTABLES=y | |||
| 241 | # CONFIG_NET_DIVERT is not set | 275 | # CONFIG_NET_DIVERT is not set |
| 242 | # CONFIG_ECONET is not set | 276 | # CONFIG_ECONET is not set |
| 243 | # CONFIG_WAN_ROUTER is not set | 277 | # CONFIG_WAN_ROUTER is not set |
| 278 | |||
| 279 | # | ||
| 280 | # QoS and/or fair queueing | ||
| 281 | # | ||
| 244 | # CONFIG_NET_SCHED is not set | 282 | # CONFIG_NET_SCHED is not set |
| 245 | # CONFIG_NET_CLS_ROUTE is not set | ||
| 246 | 283 | ||
| 247 | # | 284 | # |
| 248 | # Network testing | 285 | # Network testing |
| 249 | # | 286 | # |
| 250 | # CONFIG_NET_PKTGEN is not set | 287 | # CONFIG_NET_PKTGEN is not set |
| 251 | # CONFIG_NETFILTER_NETLINK is not set | ||
| 252 | # CONFIG_HAMRADIO is not set | 288 | # CONFIG_HAMRADIO is not set |
| 253 | # CONFIG_IRDA is not set | 289 | # CONFIG_IRDA is not set |
| 254 | # CONFIG_BT is not set | 290 | # CONFIG_BT is not set |
| @@ -310,20 +346,13 @@ CONFIG_BLK_DEV_RAM_COUNT=16 | |||
| 310 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 346 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
| 311 | CONFIG_BLK_DEV_INITRD=y | 347 | CONFIG_BLK_DEV_INITRD=y |
| 312 | # CONFIG_CDROM_PKTCDVD is not set | 348 | # CONFIG_CDROM_PKTCDVD is not set |
| 313 | |||
| 314 | # | ||
| 315 | # IO Schedulers | ||
| 316 | # | ||
| 317 | CONFIG_IOSCHED_NOOP=y | ||
| 318 | CONFIG_IOSCHED_AS=y | ||
| 319 | CONFIG_IOSCHED_DEADLINE=y | ||
| 320 | CONFIG_IOSCHED_CFQ=y | ||
| 321 | # CONFIG_ATA_OVER_ETH is not set | 349 | # CONFIG_ATA_OVER_ETH is not set |
| 322 | 350 | ||
| 323 | # | 351 | # |
| 324 | # ATA/ATAPI/MFM/RLL support | 352 | # ATA/ATAPI/MFM/RLL support |
| 325 | # | 353 | # |
| 326 | CONFIG_IDE=y | 354 | CONFIG_IDE=y |
| 355 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 327 | CONFIG_BLK_DEV_IDE=y | 356 | CONFIG_BLK_DEV_IDE=y |
| 328 | 357 | ||
| 329 | # | 358 | # |
| @@ -407,13 +436,14 @@ CONFIG_SCSI_LOGGING=y | |||
| 407 | # SCSI Transport Attributes | 436 | # SCSI Transport Attributes |
| 408 | # | 437 | # |
| 409 | CONFIG_SCSI_SPI_ATTRS=y | 438 | CONFIG_SCSI_SPI_ATTRS=y |
| 410 | # CONFIG_SCSI_FC_ATTRS is not set | 439 | CONFIG_SCSI_FC_ATTRS=y |
| 411 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 440 | # CONFIG_SCSI_ISCSI_ATTRS is not set |
| 412 | # CONFIG_SCSI_SAS_ATTRS is not set | 441 | # CONFIG_SCSI_SAS_ATTRS is not set |
| 413 | 442 | ||
| 414 | # | 443 | # |
| 415 | # SCSI low-level drivers | 444 | # SCSI low-level drivers |
| 416 | # | 445 | # |
| 446 | # CONFIG_ISCSI_TCP is not set | ||
| 417 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 447 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
| 418 | # CONFIG_SCSI_3W_9XXX is not set | 448 | # CONFIG_SCSI_3W_9XXX is not set |
| 419 | # CONFIG_SCSI_ACARD is not set | 449 | # CONFIG_SCSI_ACARD is not set |
| @@ -421,13 +451,11 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
| 421 | # CONFIG_SCSI_AIC7XXX is not set | 451 | # CONFIG_SCSI_AIC7XXX is not set |
| 422 | # CONFIG_SCSI_AIC7XXX_OLD is not set | 452 | # CONFIG_SCSI_AIC7XXX_OLD is not set |
| 423 | # CONFIG_SCSI_AIC79XX is not set | 453 | # CONFIG_SCSI_AIC79XX is not set |
| 424 | # CONFIG_SCSI_ADVANSYS is not set | ||
| 425 | # CONFIG_MEGARAID_NEWGEN is not set | 454 | # CONFIG_MEGARAID_NEWGEN is not set |
| 426 | # CONFIG_MEGARAID_LEGACY is not set | 455 | # CONFIG_MEGARAID_LEGACY is not set |
| 456 | # CONFIG_MEGARAID_SAS is not set | ||
| 427 | # CONFIG_SCSI_SATA is not set | 457 | # CONFIG_SCSI_SATA is not set |
| 428 | # CONFIG_SCSI_CPQFCTS is not set | ||
| 429 | # CONFIG_SCSI_DMX3191D is not set | 458 | # CONFIG_SCSI_DMX3191D is not set |
| 430 | # CONFIG_SCSI_EATA_PIO is not set | ||
| 431 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 459 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
| 432 | # CONFIG_SCSI_IPS is not set | 460 | # CONFIG_SCSI_IPS is not set |
| 433 | # CONFIG_SCSI_INITIO is not set | 461 | # CONFIG_SCSI_INITIO is not set |
| @@ -438,17 +466,9 @@ CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 | |||
| 438 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | 466 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 |
| 439 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set | 467 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set |
| 440 | # CONFIG_SCSI_IPR is not set | 468 | # CONFIG_SCSI_IPR is not set |
| 441 | # CONFIG_SCSI_QLOGIC_ISP is not set | ||
| 442 | # CONFIG_SCSI_QLOGIC_FC is not set | 469 | # CONFIG_SCSI_QLOGIC_FC is not set |
| 443 | CONFIG_SCSI_QLOGIC_1280=y | 470 | CONFIG_SCSI_QLOGIC_1280=y |
| 444 | # CONFIG_SCSI_QLOGIC_1280_1040 is not set | 471 | # CONFIG_SCSI_QLA_FC is not set |
| 445 | CONFIG_SCSI_QLA2XXX=y | ||
| 446 | # CONFIG_SCSI_QLA21XX is not set | ||
| 447 | # CONFIG_SCSI_QLA22XX is not set | ||
| 448 | # CONFIG_SCSI_QLA2300 is not set | ||
| 449 | # CONFIG_SCSI_QLA2322 is not set | ||
| 450 | # CONFIG_SCSI_QLA6312 is not set | ||
| 451 | # CONFIG_SCSI_QLA24XX is not set | ||
| 452 | # CONFIG_SCSI_LPFC is not set | 472 | # CONFIG_SCSI_LPFC is not set |
| 453 | # CONFIG_SCSI_DC395x is not set | 473 | # CONFIG_SCSI_DC395x is not set |
| 454 | # CONFIG_SCSI_DC390T is not set | 474 | # CONFIG_SCSI_DC390T is not set |
| @@ -465,6 +485,7 @@ CONFIG_SCSI_QLA2XXX=y | |||
| 465 | CONFIG_FUSION=y | 485 | CONFIG_FUSION=y |
| 466 | CONFIG_FUSION_SPI=y | 486 | CONFIG_FUSION_SPI=y |
| 467 | CONFIG_FUSION_FC=y | 487 | CONFIG_FUSION_FC=y |
| 488 | # CONFIG_FUSION_SAS is not set | ||
| 468 | CONFIG_FUSION_MAX_SGE=128 | 489 | CONFIG_FUSION_MAX_SGE=128 |
| 469 | CONFIG_FUSION_CTL=m | 490 | CONFIG_FUSION_CTL=m |
| 470 | 491 | ||
| @@ -505,6 +526,7 @@ CONFIG_NET_ETHERNET=y | |||
| 505 | CONFIG_MII=y | 526 | CONFIG_MII=y |
| 506 | # CONFIG_HAPPYMEAL is not set | 527 | # CONFIG_HAPPYMEAL is not set |
| 507 | # CONFIG_SUNGEM is not set | 528 | # CONFIG_SUNGEM is not set |
| 529 | # CONFIG_CASSINI is not set | ||
| 508 | # CONFIG_NET_VENDOR_3COM is not set | 530 | # CONFIG_NET_VENDOR_3COM is not set |
| 509 | 531 | ||
| 510 | # | 532 | # |
| @@ -555,6 +577,7 @@ CONFIG_E1000=y | |||
| 555 | # CONFIG_R8169 is not set | 577 | # CONFIG_R8169 is not set |
| 556 | # CONFIG_SIS190 is not set | 578 | # CONFIG_SIS190 is not set |
| 557 | # CONFIG_SKGE is not set | 579 | # CONFIG_SKGE is not set |
| 580 | # CONFIG_SKY2 is not set | ||
| 558 | # CONFIG_SK98LIN is not set | 581 | # CONFIG_SK98LIN is not set |
| 559 | # CONFIG_VIA_VELOCITY is not set | 582 | # CONFIG_VIA_VELOCITY is not set |
| 560 | CONFIG_TIGON3=y | 583 | CONFIG_TIGON3=y |
| @@ -652,6 +675,7 @@ CONFIG_SERIAL_8250=y | |||
| 652 | CONFIG_SERIAL_8250_CONSOLE=y | 675 | CONFIG_SERIAL_8250_CONSOLE=y |
| 653 | CONFIG_SERIAL_8250_ACPI=y | 676 | CONFIG_SERIAL_8250_ACPI=y |
| 654 | CONFIG_SERIAL_8250_NR_UARTS=8 | 677 | CONFIG_SERIAL_8250_NR_UARTS=8 |
| 678 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 655 | CONFIG_SERIAL_8250_EXTENDED=y | 679 | CONFIG_SERIAL_8250_EXTENDED=y |
| 656 | CONFIG_SERIAL_8250_SHARE_IRQ=y | 680 | CONFIG_SERIAL_8250_SHARE_IRQ=y |
| 657 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set | 681 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set |
| @@ -703,6 +727,7 @@ CONFIG_DRM_RADEON=y | |||
| 703 | # TPM devices | 727 | # TPM devices |
| 704 | # | 728 | # |
| 705 | # CONFIG_TCG_TPM is not set | 729 | # CONFIG_TCG_TPM is not set |
| 730 | # CONFIG_TELCLOCK is not set | ||
| 706 | 731 | ||
| 707 | # | 732 | # |
| 708 | # I2C support | 733 | # I2C support |
| @@ -753,12 +778,19 @@ CONFIG_I2C_ALGOPCF=y | |||
| 753 | # CONFIG_SENSORS_PCF8591 is not set | 778 | # CONFIG_SENSORS_PCF8591 is not set |
| 754 | # CONFIG_SENSORS_RTC8564 is not set | 779 | # CONFIG_SENSORS_RTC8564 is not set |
| 755 | # CONFIG_SENSORS_MAX6875 is not set | 780 | # CONFIG_SENSORS_MAX6875 is not set |
| 781 | # CONFIG_RTC_X1205_I2C is not set | ||
| 756 | # CONFIG_I2C_DEBUG_CORE is not set | 782 | # CONFIG_I2C_DEBUG_CORE is not set |
| 757 | # CONFIG_I2C_DEBUG_ALGO is not set | 783 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 758 | # CONFIG_I2C_DEBUG_BUS is not set | 784 | # CONFIG_I2C_DEBUG_BUS is not set |
| 759 | # CONFIG_I2C_DEBUG_CHIP is not set | 785 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 760 | 786 | ||
| 761 | # | 787 | # |
| 788 | # SPI support | ||
| 789 | # | ||
| 790 | # CONFIG_SPI is not set | ||
| 791 | # CONFIG_SPI_MASTER is not set | ||
| 792 | |||
| 793 | # | ||
| 762 | # Dallas's 1-wire bus | 794 | # Dallas's 1-wire bus |
| 763 | # | 795 | # |
| 764 | # CONFIG_W1 is not set | 796 | # CONFIG_W1 is not set |
| @@ -789,6 +821,7 @@ CONFIG_VIDEO_DEV=y | |||
| 789 | # | 821 | # |
| 790 | # Video Adapters | 822 | # Video Adapters |
| 791 | # | 823 | # |
| 824 | # CONFIG_VIDEO_ADV_DEBUG is not set | ||
| 792 | # CONFIG_VIDEO_BT848 is not set | 825 | # CONFIG_VIDEO_BT848 is not set |
| 793 | # CONFIG_VIDEO_CPIA is not set | 826 | # CONFIG_VIDEO_CPIA is not set |
| 794 | # CONFIG_VIDEO_SAA5246A is not set | 827 | # CONFIG_VIDEO_SAA5246A is not set |
| @@ -796,14 +829,16 @@ CONFIG_VIDEO_DEV=y | |||
| 796 | # CONFIG_TUNER_3036 is not set | 829 | # CONFIG_TUNER_3036 is not set |
| 797 | # CONFIG_VIDEO_STRADIS is not set | 830 | # CONFIG_VIDEO_STRADIS is not set |
| 798 | # CONFIG_VIDEO_ZORAN is not set | 831 | # CONFIG_VIDEO_ZORAN is not set |
| 799 | # CONFIG_VIDEO_ZR36120 is not set | ||
| 800 | # CONFIG_VIDEO_SAA7134 is not set | 832 | # CONFIG_VIDEO_SAA7134 is not set |
| 801 | # CONFIG_VIDEO_MXB is not set | 833 | # CONFIG_VIDEO_MXB is not set |
| 802 | # CONFIG_VIDEO_DPC is not set | 834 | # CONFIG_VIDEO_DPC is not set |
| 803 | # CONFIG_VIDEO_HEXIUM_ORION is not set | 835 | # CONFIG_VIDEO_HEXIUM_ORION is not set |
| 804 | # CONFIG_VIDEO_HEXIUM_GEMINI is not set | 836 | # CONFIG_VIDEO_HEXIUM_GEMINI is not set |
| 805 | # CONFIG_VIDEO_CX88 is not set | 837 | # CONFIG_VIDEO_CX88 is not set |
| 838 | # CONFIG_VIDEO_EM28XX is not set | ||
| 806 | # CONFIG_VIDEO_OVCAMCHIP is not set | 839 | # CONFIG_VIDEO_OVCAMCHIP is not set |
| 840 | # CONFIG_VIDEO_AUDIO_DECODER is not set | ||
| 841 | # CONFIG_VIDEO_DECODER is not set | ||
| 807 | 842 | ||
| 808 | # | 843 | # |
| 809 | # Radio Adapters | 844 | # Radio Adapters |
| @@ -824,7 +859,6 @@ CONFIG_FB=y | |||
| 824 | CONFIG_FB_CFB_FILLRECT=y | 859 | CONFIG_FB_CFB_FILLRECT=y |
| 825 | CONFIG_FB_CFB_COPYAREA=y | 860 | CONFIG_FB_CFB_COPYAREA=y |
| 826 | CONFIG_FB_CFB_IMAGEBLIT=y | 861 | CONFIG_FB_CFB_IMAGEBLIT=y |
| 827 | CONFIG_FB_SOFT_CURSOR=y | ||
| 828 | # CONFIG_FB_MACMODES is not set | 862 | # CONFIG_FB_MACMODES is not set |
| 829 | CONFIG_FB_MODE_HELPERS=y | 863 | CONFIG_FB_MODE_HELPERS=y |
| 830 | # CONFIG_FB_TILEBLITTING is not set | 864 | # CONFIG_FB_TILEBLITTING is not set |
| @@ -833,6 +867,7 @@ CONFIG_FB_MODE_HELPERS=y | |||
| 833 | # CONFIG_FB_CYBER2000 is not set | 867 | # CONFIG_FB_CYBER2000 is not set |
| 834 | # CONFIG_FB_ASILIANT is not set | 868 | # CONFIG_FB_ASILIANT is not set |
| 835 | # CONFIG_FB_IMSTT is not set | 869 | # CONFIG_FB_IMSTT is not set |
| 870 | # CONFIG_FB_S1D13XXX is not set | ||
| 836 | # CONFIG_FB_NVIDIA is not set | 871 | # CONFIG_FB_NVIDIA is not set |
| 837 | # CONFIG_FB_RIVA is not set | 872 | # CONFIG_FB_RIVA is not set |
| 838 | # CONFIG_FB_MATROX is not set | 873 | # CONFIG_FB_MATROX is not set |
| @@ -848,10 +883,7 @@ CONFIG_FB_RADEON_DEBUG=y | |||
| 848 | # CONFIG_FB_KYRO is not set | 883 | # CONFIG_FB_KYRO is not set |
| 849 | # CONFIG_FB_3DFX is not set | 884 | # CONFIG_FB_3DFX is not set |
| 850 | # CONFIG_FB_VOODOO1 is not set | 885 | # CONFIG_FB_VOODOO1 is not set |
| 851 | # CONFIG_FB_CYBLA is not set | ||
| 852 | # CONFIG_FB_TRIDENT is not set | 886 | # CONFIG_FB_TRIDENT is not set |
| 853 | # CONFIG_FB_PM3 is not set | ||
| 854 | # CONFIG_FB_S1D13XXX is not set | ||
| 855 | # CONFIG_FB_VIRTUAL is not set | 887 | # CONFIG_FB_VIRTUAL is not set |
| 856 | 888 | ||
| 857 | # | 889 | # |
| @@ -860,6 +892,7 @@ CONFIG_FB_RADEON_DEBUG=y | |||
| 860 | CONFIG_VGA_CONSOLE=y | 892 | CONFIG_VGA_CONSOLE=y |
| 861 | CONFIG_DUMMY_CONSOLE=y | 893 | CONFIG_DUMMY_CONSOLE=y |
| 862 | CONFIG_FRAMEBUFFER_CONSOLE=y | 894 | CONFIG_FRAMEBUFFER_CONSOLE=y |
| 895 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 863 | # CONFIG_FONTS is not set | 896 | # CONFIG_FONTS is not set |
| 864 | CONFIG_FONT_8x8=y | 897 | CONFIG_FONT_8x8=y |
| 865 | CONFIG_FONT_8x16=y | 898 | CONFIG_FONT_8x16=y |
| @@ -892,6 +925,8 @@ CONFIG_SND_OSSEMUL=y | |||
| 892 | CONFIG_SND_MIXER_OSS=y | 925 | CONFIG_SND_MIXER_OSS=y |
| 893 | CONFIG_SND_PCM_OSS=y | 926 | CONFIG_SND_PCM_OSS=y |
| 894 | CONFIG_SND_SEQUENCER_OSS=y | 927 | CONFIG_SND_SEQUENCER_OSS=y |
| 928 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
| 929 | CONFIG_SND_SUPPORT_OLD_API=y | ||
| 895 | # CONFIG_SND_VERBOSE_PRINTK is not set | 930 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 896 | # CONFIG_SND_DEBUG is not set | 931 | # CONFIG_SND_DEBUG is not set |
| 897 | 932 | ||
| @@ -900,17 +935,18 @@ CONFIG_SND_SEQUENCER_OSS=y | |||
| 900 | # | 935 | # |
| 901 | CONFIG_SND_MPU401_UART=y | 936 | CONFIG_SND_MPU401_UART=y |
| 902 | CONFIG_SND_OPL3_LIB=y | 937 | CONFIG_SND_OPL3_LIB=y |
| 938 | CONFIG_SND_AC97_CODEC=y | ||
| 939 | CONFIG_SND_AC97_BUS=y | ||
| 903 | # CONFIG_SND_DUMMY is not set | 940 | # CONFIG_SND_DUMMY is not set |
| 904 | # CONFIG_SND_VIRMIDI is not set | 941 | # CONFIG_SND_VIRMIDI is not set |
| 905 | # CONFIG_SND_MTPAV is not set | 942 | # CONFIG_SND_MTPAV is not set |
| 906 | # CONFIG_SND_SERIAL_U16550 is not set | 943 | # CONFIG_SND_SERIAL_U16550 is not set |
| 907 | # CONFIG_SND_MPU401 is not set | 944 | # CONFIG_SND_MPU401 is not set |
| 908 | CONFIG_SND_AC97_CODEC=y | ||
| 909 | CONFIG_SND_AC97_BUS=y | ||
| 910 | 945 | ||
| 911 | # | 946 | # |
| 912 | # PCI devices | 947 | # PCI devices |
| 913 | # | 948 | # |
| 949 | # CONFIG_SND_AD1889 is not set | ||
| 914 | # CONFIG_SND_ALI5451 is not set | 950 | # CONFIG_SND_ALI5451 is not set |
| 915 | # CONFIG_SND_ATIIXP is not set | 951 | # CONFIG_SND_ATIIXP is not set |
| 916 | # CONFIG_SND_ATIIXP_MODEM is not set | 952 | # CONFIG_SND_ATIIXP_MODEM is not set |
| @@ -919,39 +955,39 @@ CONFIG_SND_AC97_BUS=y | |||
| 919 | # CONFIG_SND_AU8830 is not set | 955 | # CONFIG_SND_AU8830 is not set |
| 920 | # CONFIG_SND_AZT3328 is not set | 956 | # CONFIG_SND_AZT3328 is not set |
| 921 | # CONFIG_SND_BT87X is not set | 957 | # CONFIG_SND_BT87X is not set |
| 922 | # CONFIG_SND_CS46XX is not set | 958 | # CONFIG_SND_CA0106 is not set |
| 959 | # CONFIG_SND_CMIPCI is not set | ||
| 923 | # CONFIG_SND_CS4281 is not set | 960 | # CONFIG_SND_CS4281 is not set |
| 961 | # CONFIG_SND_CS46XX is not set | ||
| 924 | # CONFIG_SND_EMU10K1 is not set | 962 | # CONFIG_SND_EMU10K1 is not set |
| 925 | # CONFIG_SND_EMU10K1X is not set | 963 | # CONFIG_SND_EMU10K1X is not set |
| 926 | # CONFIG_SND_CA0106 is not set | ||
| 927 | # CONFIG_SND_KORG1212 is not set | ||
| 928 | # CONFIG_SND_MIXART is not set | ||
| 929 | # CONFIG_SND_NM256 is not set | ||
| 930 | # CONFIG_SND_RME32 is not set | ||
| 931 | # CONFIG_SND_RME96 is not set | ||
| 932 | # CONFIG_SND_RME9652 is not set | ||
| 933 | # CONFIG_SND_HDSP is not set | ||
| 934 | # CONFIG_SND_HDSPM is not set | ||
| 935 | # CONFIG_SND_TRIDENT is not set | ||
| 936 | # CONFIG_SND_YMFPCI is not set | ||
| 937 | # CONFIG_SND_AD1889 is not set | ||
| 938 | # CONFIG_SND_CMIPCI is not set | ||
| 939 | # CONFIG_SND_ENS1370 is not set | 964 | # CONFIG_SND_ENS1370 is not set |
| 940 | # CONFIG_SND_ENS1371 is not set | 965 | # CONFIG_SND_ENS1371 is not set |
| 941 | # CONFIG_SND_ES1938 is not set | 966 | # CONFIG_SND_ES1938 is not set |
| 942 | # CONFIG_SND_ES1968 is not set | 967 | # CONFIG_SND_ES1968 is not set |
| 943 | # CONFIG_SND_MAESTRO3 is not set | ||
| 944 | CONFIG_SND_FM801=y | 968 | CONFIG_SND_FM801=y |
| 945 | CONFIG_SND_FM801_TEA575X=y | 969 | CONFIG_SND_FM801_TEA575X=y |
| 970 | # CONFIG_SND_HDA_INTEL is not set | ||
| 971 | # CONFIG_SND_HDSP is not set | ||
| 972 | # CONFIG_SND_HDSPM is not set | ||
| 946 | # CONFIG_SND_ICE1712 is not set | 973 | # CONFIG_SND_ICE1712 is not set |
| 947 | # CONFIG_SND_ICE1724 is not set | 974 | # CONFIG_SND_ICE1724 is not set |
| 948 | # CONFIG_SND_INTEL8X0 is not set | 975 | # CONFIG_SND_INTEL8X0 is not set |
| 949 | # CONFIG_SND_INTEL8X0M is not set | 976 | # CONFIG_SND_INTEL8X0M is not set |
| 977 | # CONFIG_SND_KORG1212 is not set | ||
| 978 | # CONFIG_SND_MAESTRO3 is not set | ||
| 979 | # CONFIG_SND_MIXART is not set | ||
| 980 | # CONFIG_SND_NM256 is not set | ||
| 981 | # CONFIG_SND_PCXHR is not set | ||
| 982 | # CONFIG_SND_RME32 is not set | ||
| 983 | # CONFIG_SND_RME96 is not set | ||
| 984 | # CONFIG_SND_RME9652 is not set | ||
| 950 | # CONFIG_SND_SONICVIBES is not set | 985 | # CONFIG_SND_SONICVIBES is not set |
| 986 | # CONFIG_SND_TRIDENT is not set | ||
| 951 | # CONFIG_SND_VIA82XX is not set | 987 | # CONFIG_SND_VIA82XX is not set |
| 952 | # CONFIG_SND_VIA82XX_MODEM is not set | 988 | # CONFIG_SND_VIA82XX_MODEM is not set |
| 953 | # CONFIG_SND_VX222 is not set | 989 | # CONFIG_SND_VX222 is not set |
| 954 | # CONFIG_SND_HDA_INTEL is not set | 990 | # CONFIG_SND_YMFPCI is not set |
| 955 | 991 | ||
| 956 | # | 992 | # |
| 957 | # USB devices | 993 | # USB devices |
| @@ -997,12 +1033,15 @@ CONFIG_USB_UHCI_HCD=y | |||
| 997 | # USB Device Class drivers | 1033 | # USB Device Class drivers |
| 998 | # | 1034 | # |
| 999 | # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set | 1035 | # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set |
| 1000 | # CONFIG_USB_BLUETOOTH_TTY is not set | ||
| 1001 | # CONFIG_USB_ACM is not set | 1036 | # CONFIG_USB_ACM is not set |
| 1002 | # CONFIG_USB_PRINTER is not set | 1037 | # CONFIG_USB_PRINTER is not set |
| 1003 | 1038 | ||
| 1004 | # | 1039 | # |
| 1005 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | 1040 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 1041 | # | ||
| 1042 | |||
| 1043 | # | ||
| 1044 | # may also be needed; see USB_STORAGE Help for more information | ||
| 1006 | # | 1045 | # |
| 1007 | CONFIG_USB_STORAGE=y | 1046 | CONFIG_USB_STORAGE=y |
| 1008 | # CONFIG_USB_STORAGE_DEBUG is not set | 1047 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1014,13 +1053,15 @@ CONFIG_USB_STORAGE=y | |||
| 1014 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1053 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 1015 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1054 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 1016 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1055 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 1017 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1056 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1057 | # CONFIG_USB_LIBUSUAL is not set | ||
| 1018 | 1058 | ||
| 1019 | # | 1059 | # |
| 1020 | # USB Input Devices | 1060 | # USB Input Devices |
| 1021 | # | 1061 | # |
| 1022 | CONFIG_USB_HID=y | 1062 | CONFIG_USB_HID=y |
| 1023 | CONFIG_USB_HIDINPUT=y | 1063 | CONFIG_USB_HIDINPUT=y |
| 1064 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 1024 | # CONFIG_HID_FF is not set | 1065 | # CONFIG_HID_FF is not set |
| 1025 | CONFIG_USB_HIDDEV=y | 1066 | CONFIG_USB_HIDDEV=y |
| 1026 | # CONFIG_USB_AIPTEK is not set | 1067 | # CONFIG_USB_AIPTEK is not set |
| @@ -1034,6 +1075,7 @@ CONFIG_USB_HIDDEV=y | |||
| 1034 | # CONFIG_USB_YEALINK is not set | 1075 | # CONFIG_USB_YEALINK is not set |
| 1035 | # CONFIG_USB_XPAD is not set | 1076 | # CONFIG_USB_XPAD is not set |
| 1036 | # CONFIG_USB_ATI_REMOTE is not set | 1077 | # CONFIG_USB_ATI_REMOTE is not set |
| 1078 | # CONFIG_USB_ATI_REMOTE2 is not set | ||
| 1037 | # CONFIG_USB_KEYSPAN_REMOTE is not set | 1079 | # CONFIG_USB_KEYSPAN_REMOTE is not set |
| 1038 | # CONFIG_USB_APPLETOUCH is not set | 1080 | # CONFIG_USB_APPLETOUCH is not set |
| 1039 | 1081 | ||
| @@ -1049,6 +1091,7 @@ CONFIG_USB_HIDDEV=y | |||
| 1049 | # CONFIG_USB_DABUSB is not set | 1091 | # CONFIG_USB_DABUSB is not set |
| 1050 | # CONFIG_USB_VICAM is not set | 1092 | # CONFIG_USB_VICAM is not set |
| 1051 | # CONFIG_USB_DSBR is not set | 1093 | # CONFIG_USB_DSBR is not set |
| 1094 | # CONFIG_USB_ET61X251 is not set | ||
| 1052 | # CONFIG_USB_IBMCAM is not set | 1095 | # CONFIG_USB_IBMCAM is not set |
| 1053 | # CONFIG_USB_KONICAWC is not set | 1096 | # CONFIG_USB_KONICAWC is not set |
| 1054 | # CONFIG_USB_OV511 is not set | 1097 | # CONFIG_USB_OV511 is not set |
| @@ -1113,7 +1156,7 @@ CONFIG_USB_MON=y | |||
| 1113 | # CONFIG_INFINIBAND is not set | 1156 | # CONFIG_INFINIBAND is not set |
| 1114 | 1157 | ||
| 1115 | # | 1158 | # |
| 1116 | # SN Devices | 1159 | # EDAC - error detection and reporting (RAS) |
| 1117 | # | 1160 | # |
| 1118 | 1161 | ||
| 1119 | # | 1162 | # |
| @@ -1135,6 +1178,7 @@ CONFIG_FS_MBCACHE=y | |||
| 1135 | # CONFIG_JFS_FS is not set | 1178 | # CONFIG_JFS_FS is not set |
| 1136 | # CONFIG_FS_POSIX_ACL is not set | 1179 | # CONFIG_FS_POSIX_ACL is not set |
| 1137 | # CONFIG_XFS_FS is not set | 1180 | # CONFIG_XFS_FS is not set |
| 1181 | # CONFIG_OCFS2_FS is not set | ||
| 1138 | # CONFIG_MINIX_FS is not set | 1182 | # CONFIG_MINIX_FS is not set |
| 1139 | # CONFIG_ROMFS_FS is not set | 1183 | # CONFIG_ROMFS_FS is not set |
| 1140 | # CONFIG_INOTIFY is not set | 1184 | # CONFIG_INOTIFY is not set |
| @@ -1174,6 +1218,7 @@ CONFIG_HUGETLBFS=y | |||
| 1174 | CONFIG_HUGETLB_PAGE=y | 1218 | CONFIG_HUGETLB_PAGE=y |
| 1175 | CONFIG_RAMFS=y | 1219 | CONFIG_RAMFS=y |
| 1176 | # CONFIG_RELAYFS_FS is not set | 1220 | # CONFIG_RELAYFS_FS is not set |
| 1221 | # CONFIG_CONFIGFS_FS is not set | ||
| 1177 | 1222 | ||
| 1178 | # | 1223 | # |
| 1179 | # Miscellaneous filesystems | 1224 | # Miscellaneous filesystems |
| @@ -1238,6 +1283,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1238 | # CONFIG_SGI_PARTITION is not set | 1283 | # CONFIG_SGI_PARTITION is not set |
| 1239 | # CONFIG_ULTRIX_PARTITION is not set | 1284 | # CONFIG_ULTRIX_PARTITION is not set |
| 1240 | # CONFIG_SUN_PARTITION is not set | 1285 | # CONFIG_SUN_PARTITION is not set |
| 1286 | # CONFIG_KARMA_PARTITION is not set | ||
| 1241 | CONFIG_EFI_PARTITION=y | 1287 | CONFIG_EFI_PARTITION=y |
| 1242 | 1288 | ||
| 1243 | # | 1289 | # |
| @@ -1296,26 +1342,30 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 1296 | CONFIG_GENERIC_PENDING_IRQ=y | 1342 | CONFIG_GENERIC_PENDING_IRQ=y |
| 1297 | 1343 | ||
| 1298 | # | 1344 | # |
| 1299 | # Profiling support | 1345 | # Instrumentation Support |
| 1300 | # | 1346 | # |
| 1301 | # CONFIG_PROFILING is not set | 1347 | # CONFIG_PROFILING is not set |
| 1348 | CONFIG_KPROBES=y | ||
| 1302 | 1349 | ||
| 1303 | # | 1350 | # |
| 1304 | # Kernel hacking | 1351 | # Kernel hacking |
| 1305 | # | 1352 | # |
| 1306 | # CONFIG_PRINTK_TIME is not set | 1353 | # CONFIG_PRINTK_TIME is not set |
| 1307 | CONFIG_DEBUG_KERNEL=y | ||
| 1308 | CONFIG_MAGIC_SYSRQ=y | 1354 | CONFIG_MAGIC_SYSRQ=y |
| 1355 | CONFIG_DEBUG_KERNEL=y | ||
| 1309 | CONFIG_LOG_BUF_SHIFT=17 | 1356 | CONFIG_LOG_BUF_SHIFT=17 |
| 1310 | CONFIG_DETECT_SOFTLOCKUP=y | 1357 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1311 | # CONFIG_SCHEDSTATS is not set | 1358 | # CONFIG_SCHEDSTATS is not set |
| 1312 | # CONFIG_DEBUG_SLAB is not set | 1359 | # CONFIG_DEBUG_SLAB is not set |
| 1360 | CONFIG_DEBUG_MUTEXES=y | ||
| 1313 | # CONFIG_DEBUG_SPINLOCK is not set | 1361 | # CONFIG_DEBUG_SPINLOCK is not set |
| 1314 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1362 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1315 | # CONFIG_DEBUG_KOBJECT is not set | 1363 | # CONFIG_DEBUG_KOBJECT is not set |
| 1316 | # CONFIG_DEBUG_INFO is not set | 1364 | # CONFIG_DEBUG_INFO is not set |
| 1317 | # CONFIG_DEBUG_FS is not set | 1365 | # CONFIG_DEBUG_FS is not set |
| 1318 | CONFIG_KPROBES=y | 1366 | # CONFIG_DEBUG_VM is not set |
| 1367 | CONFIG_FORCED_INLINING=y | ||
| 1368 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1319 | CONFIG_IA64_GRANULE_16MB=y | 1369 | CONFIG_IA64_GRANULE_16MB=y |
| 1320 | # CONFIG_IA64_GRANULE_64MB is not set | 1370 | # CONFIG_IA64_GRANULE_64MB is not set |
| 1321 | CONFIG_IA64_PRINT_HAZARDS=y | 1371 | CONFIG_IA64_PRINT_HAZARDS=y |
diff --git a/arch/ia64/defconfig b/arch/ia64/defconfig index dcbc78a4cfa4..3e767288a745 100644 --- a/arch/ia64/defconfig +++ b/arch/ia64/defconfig | |||
| @@ -1,14 +1,13 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.14-rc1 | 3 | # Linux kernel version: 2.6.16-rc5 |
| 4 | # Wed Sep 14 15:13:03 2005 | 4 | # Mon Feb 27 16:02:28 2006 |
| 5 | # | 5 | # |
| 6 | 6 | ||
| 7 | # | 7 | # |
| 8 | # Code maturity level options | 8 | # Code maturity level options |
| 9 | # | 9 | # |
| 10 | CONFIG_EXPERIMENTAL=y | 10 | CONFIG_EXPERIMENTAL=y |
| 11 | CONFIG_CLEAN_COMPILE=y | ||
| 12 | CONFIG_LOCK_KERNEL=y | 11 | CONFIG_LOCK_KERNEL=y |
| 13 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 12 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 14 | 13 | ||
| @@ -23,18 +22,19 @@ CONFIG_POSIX_MQUEUE=y | |||
| 23 | # CONFIG_BSD_PROCESS_ACCT is not set | 22 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 24 | CONFIG_SYSCTL=y | 23 | CONFIG_SYSCTL=y |
| 25 | # CONFIG_AUDIT is not set | 24 | # CONFIG_AUDIT is not set |
| 26 | CONFIG_HOTPLUG=y | ||
| 27 | CONFIG_KOBJECT_UEVENT=y | ||
| 28 | CONFIG_IKCONFIG=y | 25 | CONFIG_IKCONFIG=y |
| 29 | CONFIG_IKCONFIG_PROC=y | 26 | CONFIG_IKCONFIG_PROC=y |
| 30 | # CONFIG_CPUSETS is not set | 27 | # CONFIG_CPUSETS is not set |
| 31 | CONFIG_INITRAMFS_SOURCE="" | 28 | CONFIG_INITRAMFS_SOURCE="" |
| 29 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 32 | # CONFIG_EMBEDDED is not set | 30 | # CONFIG_EMBEDDED is not set |
| 33 | CONFIG_KALLSYMS=y | 31 | CONFIG_KALLSYMS=y |
| 34 | CONFIG_KALLSYMS_ALL=y | 32 | CONFIG_KALLSYMS_ALL=y |
| 35 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 33 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 34 | CONFIG_HOTPLUG=y | ||
| 36 | CONFIG_PRINTK=y | 35 | CONFIG_PRINTK=y |
| 37 | CONFIG_BUG=y | 36 | CONFIG_BUG=y |
| 37 | CONFIG_ELF_CORE=y | ||
| 38 | CONFIG_BASE_FULL=y | 38 | CONFIG_BASE_FULL=y |
| 39 | CONFIG_FUTEX=y | 39 | CONFIG_FUTEX=y |
| 40 | CONFIG_EPOLL=y | 40 | CONFIG_EPOLL=y |
| @@ -43,8 +43,10 @@ CONFIG_CC_ALIGN_FUNCTIONS=0 | |||
| 43 | CONFIG_CC_ALIGN_LABELS=0 | 43 | CONFIG_CC_ALIGN_LABELS=0 |
| 44 | CONFIG_CC_ALIGN_LOOPS=0 | 44 | CONFIG_CC_ALIGN_LOOPS=0 |
| 45 | CONFIG_CC_ALIGN_JUMPS=0 | 45 | CONFIG_CC_ALIGN_JUMPS=0 |
| 46 | CONFIG_SLAB=y | ||
| 46 | # CONFIG_TINY_SHMEM is not set | 47 | # CONFIG_TINY_SHMEM is not set |
| 47 | CONFIG_BASE_SMALL=0 | 48 | CONFIG_BASE_SMALL=0 |
| 49 | # CONFIG_SLOB is not set | ||
| 48 | 50 | ||
| 49 | # | 51 | # |
| 50 | # Loadable module support | 52 | # Loadable module support |
| @@ -59,17 +61,36 @@ CONFIG_KMOD=y | |||
| 59 | CONFIG_STOP_MACHINE=y | 61 | CONFIG_STOP_MACHINE=y |
| 60 | 62 | ||
| 61 | # | 63 | # |
| 64 | # Block layer | ||
| 65 | # | ||
| 66 | |||
| 67 | # | ||
| 68 | # IO Schedulers | ||
| 69 | # | ||
| 70 | CONFIG_IOSCHED_NOOP=y | ||
| 71 | CONFIG_IOSCHED_AS=y | ||
| 72 | CONFIG_IOSCHED_DEADLINE=y | ||
| 73 | CONFIG_IOSCHED_CFQ=y | ||
| 74 | CONFIG_DEFAULT_AS=y | ||
| 75 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 76 | # CONFIG_DEFAULT_CFQ is not set | ||
| 77 | # CONFIG_DEFAULT_NOOP is not set | ||
| 78 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 79 | |||
| 80 | # | ||
| 62 | # Processor type and features | 81 | # Processor type and features |
| 63 | # | 82 | # |
| 64 | CONFIG_IA64=y | 83 | CONFIG_IA64=y |
| 65 | CONFIG_64BIT=y | 84 | CONFIG_64BIT=y |
| 66 | CONFIG_MMU=y | 85 | CONFIG_MMU=y |
| 86 | CONFIG_SWIOTLB=y | ||
| 67 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 87 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 68 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 88 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 69 | CONFIG_TIME_INTERPOLATION=y | 89 | CONFIG_TIME_INTERPOLATION=y |
| 70 | CONFIG_EFI=y | 90 | CONFIG_EFI=y |
| 71 | CONFIG_GENERIC_IOMAP=y | 91 | CONFIG_GENERIC_IOMAP=y |
| 72 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 92 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
| 93 | CONFIG_DMA_IS_DMA32=y | ||
| 73 | CONFIG_IA64_GENERIC=y | 94 | CONFIG_IA64_GENERIC=y |
| 74 | # CONFIG_IA64_DIG is not set | 95 | # CONFIG_IA64_DIG is not set |
| 75 | # CONFIG_IA64_HP_ZX1 is not set | 96 | # CONFIG_IA64_HP_ZX1 is not set |
| @@ -89,14 +110,10 @@ CONFIG_HZ_250=y | |||
| 89 | # CONFIG_HZ_1000 is not set | 110 | # CONFIG_HZ_1000 is not set |
| 90 | CONFIG_HZ=250 | 111 | CONFIG_HZ=250 |
| 91 | CONFIG_IA64_L1_CACHE_SHIFT=7 | 112 | CONFIG_IA64_L1_CACHE_SHIFT=7 |
| 92 | CONFIG_NUMA=y | ||
| 93 | CONFIG_VIRTUAL_MEM_MAP=y | ||
| 94 | CONFIG_HOLES_IN_ZONE=y | ||
| 95 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | ||
| 96 | CONFIG_IA64_CYCLONE=y | 113 | CONFIG_IA64_CYCLONE=y |
| 97 | CONFIG_IOSAPIC=y | 114 | CONFIG_IOSAPIC=y |
| 98 | # CONFIG_IA64_SGI_SN_XP is not set | 115 | # CONFIG_IA64_SGI_SN_XP is not set |
| 99 | CONFIG_FORCE_MAX_ZONEORDER=18 | 116 | CONFIG_FORCE_MAX_ZONEORDER=17 |
| 100 | CONFIG_SMP=y | 117 | CONFIG_SMP=y |
| 101 | CONFIG_NR_CPUS=512 | 118 | CONFIG_NR_CPUS=512 |
| 102 | CONFIG_HOTPLUG_CPU=y | 119 | CONFIG_HOTPLUG_CPU=y |
| @@ -110,19 +127,29 @@ CONFIG_DISCONTIGMEM=y | |||
| 110 | CONFIG_FLAT_NODE_MEM_MAP=y | 127 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 111 | CONFIG_NEED_MULTIPLE_NODES=y | 128 | CONFIG_NEED_MULTIPLE_NODES=y |
| 112 | # CONFIG_SPARSEMEM_STATIC is not set | 129 | # CONFIG_SPARSEMEM_STATIC is not set |
| 113 | CONFIG_HAVE_DEC_LOCK=y | 130 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 131 | CONFIG_MIGRATION=y | ||
| 132 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
| 133 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | ||
| 134 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 135 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
| 136 | CONFIG_ARCH_DISCONTIGMEM_DEFAULT=y | ||
| 137 | CONFIG_NUMA=y | ||
| 138 | CONFIG_VIRTUAL_MEM_MAP=y | ||
| 139 | CONFIG_HOLES_IN_ZONE=y | ||
| 140 | CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y | ||
| 114 | CONFIG_IA32_SUPPORT=y | 141 | CONFIG_IA32_SUPPORT=y |
| 115 | CONFIG_COMPAT=y | 142 | CONFIG_COMPAT=y |
| 116 | CONFIG_IA64_MCA_RECOVERY=y | 143 | CONFIG_IA64_MCA_RECOVERY=y |
| 117 | CONFIG_PERFMON=y | 144 | CONFIG_PERFMON=y |
| 118 | CONFIG_IA64_PALINFO=y | 145 | CONFIG_IA64_PALINFO=y |
| 146 | CONFIG_SGI_SN=y | ||
| 119 | 147 | ||
| 120 | # | 148 | # |
| 121 | # Firmware Drivers | 149 | # Firmware Drivers |
| 122 | # | 150 | # |
| 123 | CONFIG_EFI_VARS=y | 151 | CONFIG_EFI_VARS=y |
| 124 | CONFIG_EFI_PCDP=y | 152 | CONFIG_EFI_PCDP=y |
| 125 | # CONFIG_DELL_RBU is not set | ||
| 126 | CONFIG_BINFMT_ELF=y | 153 | CONFIG_BINFMT_ELF=y |
| 127 | CONFIG_BINFMT_MISC=m | 154 | CONFIG_BINFMT_MISC=m |
| 128 | 155 | ||
| @@ -130,6 +157,7 @@ CONFIG_BINFMT_MISC=m | |||
| 130 | # Power management and ACPI | 157 | # Power management and ACPI |
| 131 | # | 158 | # |
| 132 | CONFIG_PM=y | 159 | CONFIG_PM=y |
| 160 | CONFIG_PM_LEGACY=y | ||
| 133 | # CONFIG_PM_DEBUG is not set | 161 | # CONFIG_PM_DEBUG is not set |
| 134 | 162 | ||
| 135 | # | 163 | # |
| @@ -144,6 +172,7 @@ CONFIG_ACPI_THERMAL=m | |||
| 144 | CONFIG_ACPI_NUMA=y | 172 | CONFIG_ACPI_NUMA=y |
| 145 | CONFIG_ACPI_BLACKLIST_YEAR=0 | 173 | CONFIG_ACPI_BLACKLIST_YEAR=0 |
| 146 | # CONFIG_ACPI_DEBUG is not set | 174 | # CONFIG_ACPI_DEBUG is not set |
| 175 | CONFIG_ACPI_EC=y | ||
| 147 | CONFIG_ACPI_POWER=y | 176 | CONFIG_ACPI_POWER=y |
| 148 | CONFIG_ACPI_SYSTEM=y | 177 | CONFIG_ACPI_SYSTEM=y |
| 149 | CONFIG_ACPI_CONTAINER=m | 178 | CONFIG_ACPI_CONTAINER=m |
| @@ -186,6 +215,7 @@ CONFIG_NET=y | |||
| 186 | # | 215 | # |
| 187 | # Networking options | 216 | # Networking options |
| 188 | # | 217 | # |
| 218 | # CONFIG_NETDEBUG is not set | ||
| 189 | CONFIG_PACKET=y | 219 | CONFIG_PACKET=y |
| 190 | # CONFIG_PACKET_MMAP is not set | 220 | # CONFIG_PACKET_MMAP is not set |
| 191 | CONFIG_UNIX=y | 221 | CONFIG_UNIX=y |
| @@ -220,6 +250,11 @@ CONFIG_TCP_CONG_BIC=y | |||
| 220 | # SCTP Configuration (EXPERIMENTAL) | 250 | # SCTP Configuration (EXPERIMENTAL) |
| 221 | # | 251 | # |
| 222 | # CONFIG_IP_SCTP is not set | 252 | # CONFIG_IP_SCTP is not set |
| 253 | |||
| 254 | # | ||
| 255 | # TIPC Configuration (EXPERIMENTAL) | ||
| 256 | # | ||
| 257 | # CONFIG_TIPC is not set | ||
| 223 | # CONFIG_ATM is not set | 258 | # CONFIG_ATM is not set |
| 224 | # CONFIG_BRIDGE is not set | 259 | # CONFIG_BRIDGE is not set |
| 225 | # CONFIG_VLAN_8021Q is not set | 260 | # CONFIG_VLAN_8021Q is not set |
| @@ -232,14 +267,16 @@ CONFIG_TCP_CONG_BIC=y | |||
| 232 | # CONFIG_NET_DIVERT is not set | 267 | # CONFIG_NET_DIVERT is not set |
| 233 | # CONFIG_ECONET is not set | 268 | # CONFIG_ECONET is not set |
| 234 | # CONFIG_WAN_ROUTER is not set | 269 | # CONFIG_WAN_ROUTER is not set |
| 270 | |||
| 271 | # | ||
| 272 | # QoS and/or fair queueing | ||
| 273 | # | ||
| 235 | # CONFIG_NET_SCHED is not set | 274 | # CONFIG_NET_SCHED is not set |
| 236 | # CONFIG_NET_CLS_ROUTE is not set | ||
| 237 | 275 | ||
| 238 | # | 276 | # |
| 239 | # Network testing | 277 | # Network testing |
| 240 | # | 278 | # |
| 241 | # CONFIG_NET_PKTGEN is not set | 279 | # CONFIG_NET_PKTGEN is not set |
| 242 | # CONFIG_NETFILTER_NETLINK is not set | ||
| 243 | # CONFIG_HAMRADIO is not set | 280 | # CONFIG_HAMRADIO is not set |
| 244 | # CONFIG_IRDA is not set | 281 | # CONFIG_IRDA is not set |
| 245 | # CONFIG_BT is not set | 282 | # CONFIG_BT is not set |
| @@ -301,20 +338,13 @@ CONFIG_BLK_DEV_RAM_COUNT=16 | |||
| 301 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 338 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
| 302 | CONFIG_BLK_DEV_INITRD=y | 339 | CONFIG_BLK_DEV_INITRD=y |
| 303 | # CONFIG_CDROM_PKTCDVD is not set | 340 | # CONFIG_CDROM_PKTCDVD is not set |
| 304 | |||
| 305 | # | ||
| 306 | # IO Schedulers | ||
| 307 | # | ||
| 308 | CONFIG_IOSCHED_NOOP=y | ||
| 309 | CONFIG_IOSCHED_AS=y | ||
| 310 | CONFIG_IOSCHED_DEADLINE=y | ||
| 311 | CONFIG_IOSCHED_CFQ=y | ||
| 312 | # CONFIG_ATA_OVER_ETH is not set | 341 | # CONFIG_ATA_OVER_ETH is not set |
| 313 | 342 | ||
| 314 | # | 343 | # |
| 315 | # ATA/ATAPI/MFM/RLL support | 344 | # ATA/ATAPI/MFM/RLL support |
| 316 | # | 345 | # |
| 317 | CONFIG_IDE=y | 346 | CONFIG_IDE=y |
| 347 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 318 | CONFIG_BLK_DEV_IDE=y | 348 | CONFIG_BLK_DEV_IDE=y |
| 319 | 349 | ||
| 320 | # | 350 | # |
| @@ -407,6 +437,7 @@ CONFIG_SCSI_FC_ATTRS=y | |||
| 407 | # | 437 | # |
| 408 | # SCSI low-level drivers | 438 | # SCSI low-level drivers |
| 409 | # | 439 | # |
| 440 | # CONFIG_ISCSI_TCP is not set | ||
| 410 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 441 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
| 411 | # CONFIG_SCSI_3W_9XXX is not set | 442 | # CONFIG_SCSI_3W_9XXX is not set |
| 412 | # CONFIG_SCSI_ACARD is not set | 443 | # CONFIG_SCSI_ACARD is not set |
| @@ -416,16 +447,19 @@ CONFIG_SCSI_FC_ATTRS=y | |||
| 416 | # CONFIG_SCSI_AIC79XX is not set | 447 | # CONFIG_SCSI_AIC79XX is not set |
| 417 | # CONFIG_MEGARAID_NEWGEN is not set | 448 | # CONFIG_MEGARAID_NEWGEN is not set |
| 418 | # CONFIG_MEGARAID_LEGACY is not set | 449 | # CONFIG_MEGARAID_LEGACY is not set |
| 450 | # CONFIG_MEGARAID_SAS is not set | ||
| 419 | CONFIG_SCSI_SATA=y | 451 | CONFIG_SCSI_SATA=y |
| 420 | # CONFIG_SCSI_SATA_AHCI is not set | 452 | # CONFIG_SCSI_SATA_AHCI is not set |
| 421 | # CONFIG_SCSI_SATA_SVW is not set | 453 | # CONFIG_SCSI_SATA_SVW is not set |
| 422 | # CONFIG_SCSI_ATA_PIIX is not set | 454 | # CONFIG_SCSI_ATA_PIIX is not set |
| 423 | # CONFIG_SCSI_SATA_MV is not set | 455 | # CONFIG_SCSI_SATA_MV is not set |
| 424 | # CONFIG_SCSI_SATA_NV is not set | 456 | # CONFIG_SCSI_SATA_NV is not set |
| 425 | # CONFIG_SCSI_SATA_PROMISE is not set | 457 | # CONFIG_SCSI_PDC_ADMA is not set |
| 426 | # CONFIG_SCSI_SATA_QSTOR is not set | 458 | # CONFIG_SCSI_SATA_QSTOR is not set |
| 459 | # CONFIG_SCSI_SATA_PROMISE is not set | ||
| 427 | # CONFIG_SCSI_SATA_SX4 is not set | 460 | # CONFIG_SCSI_SATA_SX4 is not set |
| 428 | # CONFIG_SCSI_SATA_SIL is not set | 461 | # CONFIG_SCSI_SATA_SIL is not set |
| 462 | # CONFIG_SCSI_SATA_SIL24 is not set | ||
| 429 | # CONFIG_SCSI_SATA_SIS is not set | 463 | # CONFIG_SCSI_SATA_SIS is not set |
| 430 | # CONFIG_SCSI_SATA_ULI is not set | 464 | # CONFIG_SCSI_SATA_ULI is not set |
| 431 | # CONFIG_SCSI_SATA_VIA is not set | 465 | # CONFIG_SCSI_SATA_VIA is not set |
| @@ -443,14 +477,7 @@ CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | |||
| 443 | # CONFIG_SCSI_IPR is not set | 477 | # CONFIG_SCSI_IPR is not set |
| 444 | # CONFIG_SCSI_QLOGIC_FC is not set | 478 | # CONFIG_SCSI_QLOGIC_FC is not set |
| 445 | CONFIG_SCSI_QLOGIC_1280=y | 479 | CONFIG_SCSI_QLOGIC_1280=y |
| 446 | # CONFIG_SCSI_QLOGIC_1280_1040 is not set | 480 | # CONFIG_SCSI_QLA_FC is not set |
| 447 | CONFIG_SCSI_QLA2XXX=y | ||
| 448 | CONFIG_SCSI_QLA21XX=m | ||
| 449 | CONFIG_SCSI_QLA22XX=m | ||
| 450 | CONFIG_SCSI_QLA2300=m | ||
| 451 | CONFIG_SCSI_QLA2322=m | ||
| 452 | # CONFIG_SCSI_QLA6312 is not set | ||
| 453 | # CONFIG_SCSI_QLA24XX is not set | ||
| 454 | # CONFIG_SCSI_LPFC is not set | 481 | # CONFIG_SCSI_LPFC is not set |
| 455 | # CONFIG_SCSI_DC395x is not set | 482 | # CONFIG_SCSI_DC395x is not set |
| 456 | # CONFIG_SCSI_DC390T is not set | 483 | # CONFIG_SCSI_DC390T is not set |
| @@ -483,6 +510,7 @@ CONFIG_DM_MULTIPATH=m | |||
| 483 | CONFIG_FUSION=y | 510 | CONFIG_FUSION=y |
| 484 | CONFIG_FUSION_SPI=y | 511 | CONFIG_FUSION_SPI=y |
| 485 | CONFIG_FUSION_FC=m | 512 | CONFIG_FUSION_FC=m |
| 513 | # CONFIG_FUSION_SAS is not set | ||
| 486 | CONFIG_FUSION_MAX_SGE=128 | 514 | CONFIG_FUSION_MAX_SGE=128 |
| 487 | # CONFIG_FUSION_CTL is not set | 515 | # CONFIG_FUSION_CTL is not set |
| 488 | 516 | ||
| @@ -523,6 +551,7 @@ CONFIG_NET_ETHERNET=y | |||
| 523 | CONFIG_MII=m | 551 | CONFIG_MII=m |
| 524 | # CONFIG_HAPPYMEAL is not set | 552 | # CONFIG_HAPPYMEAL is not set |
| 525 | # CONFIG_SUNGEM is not set | 553 | # CONFIG_SUNGEM is not set |
| 554 | # CONFIG_CASSINI is not set | ||
| 526 | # CONFIG_NET_VENDOR_3COM is not set | 555 | # CONFIG_NET_VENDOR_3COM is not set |
| 527 | 556 | ||
| 528 | # | 557 | # |
| @@ -572,6 +601,7 @@ CONFIG_E1000=y | |||
| 572 | # CONFIG_R8169 is not set | 601 | # CONFIG_R8169 is not set |
| 573 | # CONFIG_SIS190 is not set | 602 | # CONFIG_SIS190 is not set |
| 574 | # CONFIG_SKGE is not set | 603 | # CONFIG_SKGE is not set |
| 604 | # CONFIG_SKY2 is not set | ||
| 575 | # CONFIG_SK98LIN is not set | 605 | # CONFIG_SK98LIN is not set |
| 576 | # CONFIG_VIA_VELOCITY is not set | 606 | # CONFIG_VIA_VELOCITY is not set |
| 577 | CONFIG_TIGON3=y | 607 | CONFIG_TIGON3=y |
| @@ -676,12 +706,15 @@ CONFIG_VT=y | |||
| 676 | CONFIG_VT_CONSOLE=y | 706 | CONFIG_VT_CONSOLE=y |
| 677 | CONFIG_HW_CONSOLE=y | 707 | CONFIG_HW_CONSOLE=y |
| 678 | CONFIG_SERIAL_NONSTANDARD=y | 708 | CONFIG_SERIAL_NONSTANDARD=y |
| 709 | # CONFIG_COMPUTONE is not set | ||
| 679 | # CONFIG_ROCKETPORT is not set | 710 | # CONFIG_ROCKETPORT is not set |
| 680 | # CONFIG_CYCLADES is not set | 711 | # CONFIG_CYCLADES is not set |
| 681 | # CONFIG_DIGIEPCA is not set | 712 | # CONFIG_DIGIEPCA is not set |
| 713 | # CONFIG_MOXA_INTELLIO is not set | ||
| 682 | # CONFIG_MOXA_SMARTIO is not set | 714 | # CONFIG_MOXA_SMARTIO is not set |
| 683 | # CONFIG_ISI is not set | 715 | # CONFIG_ISI is not set |
| 684 | # CONFIG_SYNCLINKMP is not set | 716 | # CONFIG_SYNCLINKMP is not set |
| 717 | # CONFIG_SYNCLINK_GT is not set | ||
| 685 | # CONFIG_N_HDLC is not set | 718 | # CONFIG_N_HDLC is not set |
| 686 | # CONFIG_SPECIALIX is not set | 719 | # CONFIG_SPECIALIX is not set |
| 687 | # CONFIG_SX is not set | 720 | # CONFIG_SX is not set |
| @@ -697,6 +730,7 @@ CONFIG_SERIAL_8250=y | |||
| 697 | CONFIG_SERIAL_8250_CONSOLE=y | 730 | CONFIG_SERIAL_8250_CONSOLE=y |
| 698 | CONFIG_SERIAL_8250_ACPI=y | 731 | CONFIG_SERIAL_8250_ACPI=y |
| 699 | CONFIG_SERIAL_8250_NR_UARTS=6 | 732 | CONFIG_SERIAL_8250_NR_UARTS=6 |
| 733 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 700 | CONFIG_SERIAL_8250_EXTENDED=y | 734 | CONFIG_SERIAL_8250_EXTENDED=y |
| 701 | CONFIG_SERIAL_8250_SHARE_IRQ=y | 735 | CONFIG_SERIAL_8250_SHARE_IRQ=y |
| 702 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set | 736 | # CONFIG_SERIAL_8250_DETECT_IRQ is not set |
| @@ -710,6 +744,7 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
| 710 | CONFIG_SERIAL_SGI_L1_CONSOLE=y | 744 | CONFIG_SERIAL_SGI_L1_CONSOLE=y |
| 711 | # CONFIG_SERIAL_JSM is not set | 745 | # CONFIG_SERIAL_JSM is not set |
| 712 | CONFIG_SERIAL_SGI_IOC4=y | 746 | CONFIG_SERIAL_SGI_IOC4=y |
| 747 | # CONFIG_SERIAL_SGI_IOC3 is not set | ||
| 713 | CONFIG_UNIX98_PTYS=y | 748 | CONFIG_UNIX98_PTYS=y |
| 714 | CONFIG_LEGACY_PTYS=y | 749 | CONFIG_LEGACY_PTYS=y |
| 715 | CONFIG_LEGACY_PTY_COUNT=256 | 750 | CONFIG_LEGACY_PTY_COUNT=256 |
| @@ -745,10 +780,10 @@ CONFIG_DRM_SIS=m | |||
| 745 | # CONFIG_DRM_VIA is not set | 780 | # CONFIG_DRM_VIA is not set |
| 746 | # CONFIG_DRM_SAVAGE is not set | 781 | # CONFIG_DRM_SAVAGE is not set |
| 747 | CONFIG_RAW_DRIVER=m | 782 | CONFIG_RAW_DRIVER=m |
| 783 | CONFIG_MAX_RAW_DEVS=256 | ||
| 748 | CONFIG_HPET=y | 784 | CONFIG_HPET=y |
| 749 | # CONFIG_HPET_RTC_IRQ is not set | 785 | # CONFIG_HPET_RTC_IRQ is not set |
| 750 | CONFIG_HPET_MMAP=y | 786 | CONFIG_HPET_MMAP=y |
| 751 | CONFIG_MAX_RAW_DEVS=256 | ||
| 752 | # CONFIG_HANGCHECK_TIMER is not set | 787 | # CONFIG_HANGCHECK_TIMER is not set |
| 753 | CONFIG_MMTIMER=y | 788 | CONFIG_MMTIMER=y |
| 754 | 789 | ||
| @@ -756,6 +791,7 @@ CONFIG_MMTIMER=y | |||
| 756 | # TPM devices | 791 | # TPM devices |
| 757 | # | 792 | # |
| 758 | # CONFIG_TCG_TPM is not set | 793 | # CONFIG_TCG_TPM is not set |
| 794 | # CONFIG_TELCLOCK is not set | ||
| 759 | 795 | ||
| 760 | # | 796 | # |
| 761 | # I2C support | 797 | # I2C support |
| @@ -763,6 +799,12 @@ CONFIG_MMTIMER=y | |||
| 763 | # CONFIG_I2C is not set | 799 | # CONFIG_I2C is not set |
| 764 | 800 | ||
| 765 | # | 801 | # |
| 802 | # SPI support | ||
| 803 | # | ||
| 804 | # CONFIG_SPI is not set | ||
| 805 | # CONFIG_SPI_MASTER is not set | ||
| 806 | |||
| 807 | # | ||
| 766 | # Dallas's 1-wire bus | 808 | # Dallas's 1-wire bus |
| 767 | # | 809 | # |
| 768 | # CONFIG_W1 is not set | 810 | # CONFIG_W1 is not set |
| @@ -772,6 +814,7 @@ CONFIG_MMTIMER=y | |||
| 772 | # | 814 | # |
| 773 | CONFIG_HWMON=y | 815 | CONFIG_HWMON=y |
| 774 | # CONFIG_HWMON_VID is not set | 816 | # CONFIG_HWMON_VID is not set |
| 817 | # CONFIG_SENSORS_F71805F is not set | ||
| 775 | # CONFIG_HWMON_DEBUG_CHIP is not set | 818 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 776 | 819 | ||
| 777 | # | 820 | # |
| @@ -822,26 +865,28 @@ CONFIG_SND_OSSEMUL=y | |||
| 822 | CONFIG_SND_MIXER_OSS=m | 865 | CONFIG_SND_MIXER_OSS=m |
| 823 | CONFIG_SND_PCM_OSS=m | 866 | CONFIG_SND_PCM_OSS=m |
| 824 | CONFIG_SND_SEQUENCER_OSS=y | 867 | CONFIG_SND_SEQUENCER_OSS=y |
| 868 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
| 869 | CONFIG_SND_SUPPORT_OLD_API=y | ||
| 825 | CONFIG_SND_VERBOSE_PRINTK=y | 870 | CONFIG_SND_VERBOSE_PRINTK=y |
| 826 | # CONFIG_SND_DEBUG is not set | 871 | # CONFIG_SND_DEBUG is not set |
| 827 | CONFIG_SND_GENERIC_DRIVER=y | ||
| 828 | 872 | ||
| 829 | # | 873 | # |
| 830 | # Generic devices | 874 | # Generic devices |
| 831 | # | 875 | # |
| 832 | CONFIG_SND_MPU401_UART=m | 876 | CONFIG_SND_MPU401_UART=m |
| 833 | CONFIG_SND_OPL3_LIB=m | 877 | CONFIG_SND_OPL3_LIB=m |
| 878 | CONFIG_SND_AC97_CODEC=m | ||
| 879 | CONFIG_SND_AC97_BUS=m | ||
| 834 | CONFIG_SND_DUMMY=m | 880 | CONFIG_SND_DUMMY=m |
| 835 | CONFIG_SND_VIRMIDI=m | 881 | CONFIG_SND_VIRMIDI=m |
| 836 | CONFIG_SND_MTPAV=m | 882 | CONFIG_SND_MTPAV=m |
| 837 | CONFIG_SND_SERIAL_U16550=m | 883 | CONFIG_SND_SERIAL_U16550=m |
| 838 | CONFIG_SND_MPU401=m | 884 | CONFIG_SND_MPU401=m |
| 839 | CONFIG_SND_AC97_CODEC=m | ||
| 840 | CONFIG_SND_AC97_BUS=m | ||
| 841 | 885 | ||
| 842 | # | 886 | # |
| 843 | # PCI devices | 887 | # PCI devices |
| 844 | # | 888 | # |
| 889 | # CONFIG_SND_AD1889 is not set | ||
| 845 | # CONFIG_SND_ALI5451 is not set | 890 | # CONFIG_SND_ALI5451 is not set |
| 846 | # CONFIG_SND_ATIIXP is not set | 891 | # CONFIG_SND_ATIIXP is not set |
| 847 | # CONFIG_SND_ATIIXP_MODEM is not set | 892 | # CONFIG_SND_ATIIXP_MODEM is not set |
| @@ -850,40 +895,40 @@ CONFIG_SND_AC97_BUS=m | |||
| 850 | # CONFIG_SND_AU8830 is not set | 895 | # CONFIG_SND_AU8830 is not set |
| 851 | # CONFIG_SND_AZT3328 is not set | 896 | # CONFIG_SND_AZT3328 is not set |
| 852 | # CONFIG_SND_BT87X is not set | 897 | # CONFIG_SND_BT87X is not set |
| 898 | # CONFIG_SND_CA0106 is not set | ||
| 899 | # CONFIG_SND_CMIPCI is not set | ||
| 900 | CONFIG_SND_CS4281=m | ||
| 853 | CONFIG_SND_CS46XX=m | 901 | CONFIG_SND_CS46XX=m |
| 854 | CONFIG_SND_CS46XX_NEW_DSP=y | 902 | CONFIG_SND_CS46XX_NEW_DSP=y |
| 855 | CONFIG_SND_CS4281=m | ||
| 856 | CONFIG_SND_EMU10K1=m | 903 | CONFIG_SND_EMU10K1=m |
| 857 | # CONFIG_SND_EMU10K1X is not set | 904 | # CONFIG_SND_EMU10K1X is not set |
| 858 | # CONFIG_SND_CA0106 is not set | ||
| 859 | # CONFIG_SND_KORG1212 is not set | ||
| 860 | # CONFIG_SND_MIXART is not set | ||
| 861 | # CONFIG_SND_NM256 is not set | ||
| 862 | # CONFIG_SND_RME32 is not set | ||
| 863 | # CONFIG_SND_RME96 is not set | ||
| 864 | # CONFIG_SND_RME9652 is not set | ||
| 865 | # CONFIG_SND_HDSP is not set | ||
| 866 | # CONFIG_SND_HDSPM is not set | ||
| 867 | # CONFIG_SND_TRIDENT is not set | ||
| 868 | # CONFIG_SND_YMFPCI is not set | ||
| 869 | # CONFIG_SND_AD1889 is not set | ||
| 870 | # CONFIG_SND_CMIPCI is not set | ||
| 871 | # CONFIG_SND_ENS1370 is not set | 905 | # CONFIG_SND_ENS1370 is not set |
| 872 | # CONFIG_SND_ENS1371 is not set | 906 | # CONFIG_SND_ENS1371 is not set |
| 873 | # CONFIG_SND_ES1938 is not set | 907 | # CONFIG_SND_ES1938 is not set |
| 874 | # CONFIG_SND_ES1968 is not set | 908 | # CONFIG_SND_ES1968 is not set |
| 875 | # CONFIG_SND_MAESTRO3 is not set | ||
| 876 | CONFIG_SND_FM801=m | 909 | CONFIG_SND_FM801=m |
| 877 | # CONFIG_SND_FM801_TEA575X is not set | 910 | # CONFIG_SND_FM801_TEA575X is not set |
| 911 | # CONFIG_SND_HDA_INTEL is not set | ||
| 912 | # CONFIG_SND_HDSP is not set | ||
| 913 | # CONFIG_SND_HDSPM is not set | ||
| 878 | # CONFIG_SND_ICE1712 is not set | 914 | # CONFIG_SND_ICE1712 is not set |
| 879 | # CONFIG_SND_ICE1724 is not set | 915 | # CONFIG_SND_ICE1724 is not set |
| 880 | # CONFIG_SND_INTEL8X0 is not set | 916 | # CONFIG_SND_INTEL8X0 is not set |
| 881 | # CONFIG_SND_INTEL8X0M is not set | 917 | # CONFIG_SND_INTEL8X0M is not set |
| 918 | # CONFIG_SND_KORG1212 is not set | ||
| 919 | # CONFIG_SND_MAESTRO3 is not set | ||
| 920 | # CONFIG_SND_MIXART is not set | ||
| 921 | # CONFIG_SND_NM256 is not set | ||
| 922 | # CONFIG_SND_PCXHR is not set | ||
| 923 | # CONFIG_SND_RME32 is not set | ||
| 924 | # CONFIG_SND_RME96 is not set | ||
| 925 | # CONFIG_SND_RME9652 is not set | ||
| 882 | # CONFIG_SND_SONICVIBES is not set | 926 | # CONFIG_SND_SONICVIBES is not set |
| 927 | # CONFIG_SND_TRIDENT is not set | ||
| 883 | # CONFIG_SND_VIA82XX is not set | 928 | # CONFIG_SND_VIA82XX is not set |
| 884 | # CONFIG_SND_VIA82XX_MODEM is not set | 929 | # CONFIG_SND_VIA82XX_MODEM is not set |
| 885 | # CONFIG_SND_VX222 is not set | 930 | # CONFIG_SND_VX222 is not set |
| 886 | # CONFIG_SND_HDA_INTEL is not set | 931 | # CONFIG_SND_YMFPCI is not set |
| 887 | 932 | ||
| 888 | # | 933 | # |
| 889 | # USB devices | 934 | # USB devices |
| @@ -929,12 +974,15 @@ CONFIG_USB_UHCI_HCD=m | |||
| 929 | # USB Device Class drivers | 974 | # USB Device Class drivers |
| 930 | # | 975 | # |
| 931 | # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set | 976 | # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set |
| 932 | # CONFIG_USB_BLUETOOTH_TTY is not set | ||
| 933 | # CONFIG_USB_ACM is not set | 977 | # CONFIG_USB_ACM is not set |
| 934 | # CONFIG_USB_PRINTER is not set | 978 | # CONFIG_USB_PRINTER is not set |
| 935 | 979 | ||
| 936 | # | 980 | # |
| 937 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | 981 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 982 | # | ||
| 983 | |||
| 984 | # | ||
| 985 | # may also be needed; see USB_STORAGE Help for more information | ||
| 938 | # | 986 | # |
| 939 | CONFIG_USB_STORAGE=m | 987 | CONFIG_USB_STORAGE=m |
| 940 | # CONFIG_USB_STORAGE_DEBUG is not set | 988 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -946,12 +994,15 @@ CONFIG_USB_STORAGE=m | |||
| 946 | # CONFIG_USB_STORAGE_SDDR09 is not set | 994 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 947 | # CONFIG_USB_STORAGE_SDDR55 is not set | 995 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 948 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 996 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 997 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 998 | # CONFIG_USB_LIBUSUAL is not set | ||
| 949 | 999 | ||
| 950 | # | 1000 | # |
| 951 | # USB Input Devices | 1001 | # USB Input Devices |
| 952 | # | 1002 | # |
| 953 | CONFIG_USB_HID=m | 1003 | CONFIG_USB_HID=m |
| 954 | CONFIG_USB_HIDINPUT=y | 1004 | CONFIG_USB_HIDINPUT=y |
| 1005 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 955 | # CONFIG_HID_FF is not set | 1006 | # CONFIG_HID_FF is not set |
| 956 | # CONFIG_USB_HIDDEV is not set | 1007 | # CONFIG_USB_HIDDEV is not set |
| 957 | 1008 | ||
| @@ -971,6 +1022,7 @@ CONFIG_USB_HIDINPUT=y | |||
| 971 | # CONFIG_USB_YEALINK is not set | 1022 | # CONFIG_USB_YEALINK is not set |
| 972 | # CONFIG_USB_XPAD is not set | 1023 | # CONFIG_USB_XPAD is not set |
| 973 | # CONFIG_USB_ATI_REMOTE is not set | 1024 | # CONFIG_USB_ATI_REMOTE is not set |
| 1025 | # CONFIG_USB_ATI_REMOTE2 is not set | ||
| 974 | # CONFIG_USB_KEYSPAN_REMOTE is not set | 1026 | # CONFIG_USB_KEYSPAN_REMOTE is not set |
| 975 | # CONFIG_USB_APPLETOUCH is not set | 1027 | # CONFIG_USB_APPLETOUCH is not set |
| 976 | 1028 | ||
| @@ -1050,11 +1102,17 @@ CONFIG_INFINIBAND_MTHCA=m | |||
| 1050 | # CONFIG_INFINIBAND_MTHCA_DEBUG is not set | 1102 | # CONFIG_INFINIBAND_MTHCA_DEBUG is not set |
| 1051 | CONFIG_INFINIBAND_IPOIB=m | 1103 | CONFIG_INFINIBAND_IPOIB=m |
| 1052 | # CONFIG_INFINIBAND_IPOIB_DEBUG is not set | 1104 | # CONFIG_INFINIBAND_IPOIB_DEBUG is not set |
| 1105 | # CONFIG_INFINIBAND_SRP is not set | ||
| 1053 | 1106 | ||
| 1054 | # | 1107 | # |
| 1055 | # SN Devices | 1108 | # SN Devices |
| 1056 | # | 1109 | # |
| 1057 | CONFIG_SGI_IOC4=y | 1110 | CONFIG_SGI_IOC4=y |
| 1111 | CONFIG_SGI_IOC3=m | ||
| 1112 | |||
| 1113 | # | ||
| 1114 | # EDAC - error detection and reporting (RAS) | ||
| 1115 | # | ||
| 1058 | 1116 | ||
| 1059 | # | 1117 | # |
| 1060 | # File systems | 1118 | # File systems |
| @@ -1085,6 +1143,7 @@ CONFIG_XFS_EXPORT=y | |||
| 1085 | # CONFIG_XFS_SECURITY is not set | 1143 | # CONFIG_XFS_SECURITY is not set |
| 1086 | # CONFIG_XFS_POSIX_ACL is not set | 1144 | # CONFIG_XFS_POSIX_ACL is not set |
| 1087 | # CONFIG_XFS_RT is not set | 1145 | # CONFIG_XFS_RT is not set |
| 1146 | # CONFIG_OCFS2_FS is not set | ||
| 1088 | # CONFIG_MINIX_FS is not set | 1147 | # CONFIG_MINIX_FS is not set |
| 1089 | # CONFIG_ROMFS_FS is not set | 1148 | # CONFIG_ROMFS_FS is not set |
| 1090 | CONFIG_INOTIFY=y | 1149 | CONFIG_INOTIFY=y |
| @@ -1126,6 +1185,7 @@ CONFIG_HUGETLBFS=y | |||
| 1126 | CONFIG_HUGETLB_PAGE=y | 1185 | CONFIG_HUGETLB_PAGE=y |
| 1127 | CONFIG_RAMFS=y | 1186 | CONFIG_RAMFS=y |
| 1128 | # CONFIG_RELAYFS_FS is not set | 1187 | # CONFIG_RELAYFS_FS is not set |
| 1188 | # CONFIG_CONFIGFS_FS is not set | ||
| 1129 | 1189 | ||
| 1130 | # | 1190 | # |
| 1131 | # Miscellaneous filesystems | 1191 | # Miscellaneous filesystems |
| @@ -1195,6 +1255,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1195 | CONFIG_SGI_PARTITION=y | 1255 | CONFIG_SGI_PARTITION=y |
| 1196 | # CONFIG_ULTRIX_PARTITION is not set | 1256 | # CONFIG_ULTRIX_PARTITION is not set |
| 1197 | # CONFIG_SUN_PARTITION is not set | 1257 | # CONFIG_SUN_PARTITION is not set |
| 1258 | # CONFIG_KARMA_PARTITION is not set | ||
| 1198 | CONFIG_EFI_PARTITION=y | 1259 | CONFIG_EFI_PARTITION=y |
| 1199 | 1260 | ||
| 1200 | # | 1261 | # |
| @@ -1260,26 +1321,30 @@ CONFIG_GENERIC_PENDING_IRQ=y | |||
| 1260 | # CONFIG_HP_SIMSCSI is not set | 1321 | # CONFIG_HP_SIMSCSI is not set |
| 1261 | 1322 | ||
| 1262 | # | 1323 | # |
| 1263 | # Profiling support | 1324 | # Instrumentation Support |
| 1264 | # | 1325 | # |
| 1265 | # CONFIG_PROFILING is not set | 1326 | # CONFIG_PROFILING is not set |
| 1327 | # CONFIG_KPROBES is not set | ||
| 1266 | 1328 | ||
| 1267 | # | 1329 | # |
| 1268 | # Kernel hacking | 1330 | # Kernel hacking |
| 1269 | # | 1331 | # |
| 1270 | # CONFIG_PRINTK_TIME is not set | 1332 | # CONFIG_PRINTK_TIME is not set |
| 1271 | CONFIG_DEBUG_KERNEL=y | ||
| 1272 | CONFIG_MAGIC_SYSRQ=y | 1333 | CONFIG_MAGIC_SYSRQ=y |
| 1334 | CONFIG_DEBUG_KERNEL=y | ||
| 1273 | CONFIG_LOG_BUF_SHIFT=20 | 1335 | CONFIG_LOG_BUF_SHIFT=20 |
| 1274 | CONFIG_DETECT_SOFTLOCKUP=y | 1336 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1275 | # CONFIG_SCHEDSTATS is not set | 1337 | # CONFIG_SCHEDSTATS is not set |
| 1276 | # CONFIG_DEBUG_SLAB is not set | 1338 | # CONFIG_DEBUG_SLAB is not set |
| 1339 | CONFIG_DEBUG_MUTEXES=y | ||
| 1277 | # CONFIG_DEBUG_SPINLOCK is not set | 1340 | # CONFIG_DEBUG_SPINLOCK is not set |
| 1278 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1341 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1279 | # CONFIG_DEBUG_KOBJECT is not set | 1342 | # CONFIG_DEBUG_KOBJECT is not set |
| 1280 | # CONFIG_DEBUG_INFO is not set | 1343 | # CONFIG_DEBUG_INFO is not set |
| 1281 | # CONFIG_DEBUG_FS is not set | 1344 | # CONFIG_DEBUG_FS is not set |
| 1282 | # CONFIG_KPROBES is not set | 1345 | # CONFIG_DEBUG_VM is not set |
| 1346 | CONFIG_FORCED_INLINING=y | ||
| 1347 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1283 | CONFIG_IA64_GRANULE_16MB=y | 1348 | CONFIG_IA64_GRANULE_16MB=y |
| 1284 | # CONFIG_IA64_GRANULE_64MB is not set | 1349 | # CONFIG_IA64_GRANULE_64MB is not set |
| 1285 | # CONFIG_IA64_PRINT_HAZARDS is not set | 1350 | # CONFIG_IA64_PRINT_HAZARDS is not set |
diff --git a/arch/ia64/kernel/cyclone.c b/arch/ia64/kernel/cyclone.c index 6ade3790ce07..e00b21514f7c 100644 --- a/arch/ia64/kernel/cyclone.c +++ b/arch/ia64/kernel/cyclone.c | |||
| @@ -36,7 +36,7 @@ int __init init_cyclone_clock(void) | |||
| 36 | u32* volatile cyclone_timer; /* Cyclone MPMC0 register */ | 36 | u32* volatile cyclone_timer; /* Cyclone MPMC0 register */ |
| 37 | 37 | ||
| 38 | if (!use_cyclone) | 38 | if (!use_cyclone) |
| 39 | return -ENODEV; | 39 | return 0; |
| 40 | 40 | ||
| 41 | printk(KERN_INFO "Summit chipset: Starting Cyclone Counter.\n"); | 41 | printk(KERN_INFO "Summit chipset: Starting Cyclone Counter.\n"); |
| 42 | 42 | ||
diff --git a/arch/ia64/kernel/fsys.S b/arch/ia64/kernel/fsys.S index ac6055c83115..7a05b1cb2ad5 100644 --- a/arch/ia64/kernel/fsys.S +++ b/arch/ia64/kernel/fsys.S | |||
| @@ -878,8 +878,7 @@ fsyscall_table: | |||
| 878 | data8 0 // timer_delete | 878 | data8 0 // timer_delete |
| 879 | data8 0 // clock_settime | 879 | data8 0 // clock_settime |
| 880 | data8 fsys_clock_gettime // clock_gettime | 880 | data8 fsys_clock_gettime // clock_gettime |
| 881 | #define __NR_syscall_last 1255 | ||
| 882 | 881 | ||
| 883 | .space 8*(NR_syscalls + 1024 - __NR_syscall_last), 0 | 882 | // fill in zeros for the remaining entries |
| 884 | 883 | .zero: | |
| 885 | .org fsyscall_table + 8*NR_syscalls // guard against failures to increase NR_syscalls | 884 | .space fsyscall_table + 8*NR_syscalls - .zero, 0 |
diff --git a/arch/ia64/kernel/ivt.S b/arch/ia64/kernel/ivt.S index 301f2e9d262e..9f80569a32b0 100644 --- a/arch/ia64/kernel/ivt.S +++ b/arch/ia64/kernel/ivt.S | |||
| @@ -1362,7 +1362,6 @@ END(debug_vector) | |||
| 1362 | // 0x5a00 Entry 30 (size 16 bundles) Unaligned Reference (57) | 1362 | // 0x5a00 Entry 30 (size 16 bundles) Unaligned Reference (57) |
| 1363 | ENTRY(unaligned_access) | 1363 | ENTRY(unaligned_access) |
| 1364 | DBG_FAULT(30) | 1364 | DBG_FAULT(30) |
| 1365 | mov r16=cr.ipsr | ||
| 1366 | mov r31=pr // prepare to save predicates | 1365 | mov r31=pr // prepare to save predicates |
| 1367 | ;; | 1366 | ;; |
| 1368 | br.sptk.many dispatch_unaligned_handler | 1367 | br.sptk.many dispatch_unaligned_handler |
diff --git a/arch/ia64/kernel/mca_drv.c b/arch/ia64/kernel/mca_drv.c index 8fd93afa75a7..e883d85906db 100644 --- a/arch/ia64/kernel/mca_drv.c +++ b/arch/ia64/kernel/mca_drv.c | |||
| @@ -123,8 +123,9 @@ mca_page_isolate(unsigned long paddr) | |||
| 123 | void | 123 | void |
| 124 | mca_handler_bh(unsigned long paddr) | 124 | mca_handler_bh(unsigned long paddr) |
| 125 | { | 125 | { |
| 126 | printk(KERN_DEBUG "OS_MCA: process [pid: %d](%s) encounters MCA.\n", | 126 | printk(KERN_ERR |
| 127 | current->pid, current->comm); | 127 | "OS_MCA: process [pid: %d](%s) encounters MCA (paddr=%lx)\n", |
| 128 | current->pid, current->comm, paddr); | ||
| 128 | 129 | ||
| 129 | spin_lock(&mca_bh_lock); | 130 | spin_lock(&mca_bh_lock); |
| 130 | switch (mca_page_isolate(paddr)) { | 131 | switch (mca_page_isolate(paddr)) { |
| @@ -132,7 +133,7 @@ mca_handler_bh(unsigned long paddr) | |||
| 132 | printk(KERN_DEBUG "Page isolation: ( %lx ) success.\n", paddr); | 133 | printk(KERN_DEBUG "Page isolation: ( %lx ) success.\n", paddr); |
| 133 | break; | 134 | break; |
| 134 | case ISOLATE_NG: | 135 | case ISOLATE_NG: |
| 135 | printk(KERN_DEBUG "Page isolation: ( %lx ) failure.\n", paddr); | 136 | printk(KERN_CRIT "Page isolation: ( %lx ) failure.\n", paddr); |
| 136 | break; | 137 | break; |
| 137 | default: | 138 | default: |
| 138 | break; | 139 | break; |
| @@ -567,10 +568,15 @@ recover_from_processor_error(int platform, slidx_table_t *slidx, | |||
| 567 | return 0; | 568 | return 0; |
| 568 | 569 | ||
| 569 | /* | 570 | /* |
| 570 | * If there is no bus error, record is weird but we need not to recover. | 571 | * The cache check and bus check bits have four possible states |
| 572 | * cc bc | ||
| 573 | * 0 0 Weird record, not recovered | ||
| 574 | * 1 0 Cache error, not recovered | ||
| 575 | * 0 1 I/O error, attempt recovery | ||
| 576 | * 1 1 Memory error, attempt recovery | ||
| 571 | */ | 577 | */ |
| 572 | if (psp->bc == 0 || pbci == NULL) | 578 | if (psp->bc == 0 || pbci == NULL) |
| 573 | return 1; | 579 | return 0; |
| 574 | 580 | ||
| 575 | /* | 581 | /* |
| 576 | * Sorry, we cannot handle so many. | 582 | * Sorry, we cannot handle so many. |
diff --git a/arch/ia64/kernel/unaligned.c b/arch/ia64/kernel/unaligned.c index f9e0ae936d1a..1e357550c776 100644 --- a/arch/ia64/kernel/unaligned.c +++ b/arch/ia64/kernel/unaligned.c | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | #include <asm/uaccess.h> | 24 | #include <asm/uaccess.h> |
| 25 | #include <asm/unaligned.h> | 25 | #include <asm/unaligned.h> |
| 26 | 26 | ||
| 27 | extern void die_if_kernel(char *str, struct pt_regs *regs, long err) __attribute__ ((noreturn)); | 27 | extern void die_if_kernel(char *str, struct pt_regs *regs, long err); |
| 28 | 28 | ||
| 29 | #undef DEBUG_UNALIGNED_TRAP | 29 | #undef DEBUG_UNALIGNED_TRAP |
| 30 | 30 | ||
| @@ -53,6 +53,15 @@ dump (const char *str, void *vp, size_t len) | |||
| 53 | #define SIGN_EXT9 0xffffffffffffff00ul | 53 | #define SIGN_EXT9 0xffffffffffffff00ul |
| 54 | 54 | ||
| 55 | /* | 55 | /* |
| 56 | * sysctl settable hook which tells the kernel whether to honor the | ||
| 57 | * IA64_THREAD_UAC_NOPRINT prctl. Because this is user settable, we want | ||
| 58 | * to allow the super user to enable/disable this for security reasons | ||
| 59 | * (i.e. don't allow attacker to fill up logs with unaligned accesses). | ||
| 60 | */ | ||
| 61 | int no_unaligned_warning; | ||
| 62 | static int noprint_warning; | ||
| 63 | |||
| 64 | /* | ||
| 56 | * For M-unit: | 65 | * For M-unit: |
| 57 | * | 66 | * |
| 58 | * opcode | m | x6 | | 67 | * opcode | m | x6 | |
| @@ -1324,8 +1333,9 @@ ia64_handle_unaligned (unsigned long ifa, struct pt_regs *regs) | |||
| 1324 | if ((current->thread.flags & IA64_THREAD_UAC_SIGBUS) != 0) | 1333 | if ((current->thread.flags & IA64_THREAD_UAC_SIGBUS) != 0) |
| 1325 | goto force_sigbus; | 1334 | goto force_sigbus; |
| 1326 | 1335 | ||
| 1327 | if (!(current->thread.flags & IA64_THREAD_UAC_NOPRINT) | 1336 | if (!no_unaligned_warning && |
| 1328 | && within_logging_rate_limit()) | 1337 | !(current->thread.flags & IA64_THREAD_UAC_NOPRINT) && |
| 1338 | within_logging_rate_limit()) | ||
| 1329 | { | 1339 | { |
| 1330 | char buf[200]; /* comm[] is at most 16 bytes... */ | 1340 | char buf[200]; /* comm[] is at most 16 bytes... */ |
| 1331 | size_t len; | 1341 | size_t len; |
| @@ -1340,7 +1350,22 @@ ia64_handle_unaligned (unsigned long ifa, struct pt_regs *regs) | |||
| 1340 | if (user_mode(regs)) | 1350 | if (user_mode(regs)) |
| 1341 | tty_write_message(current->signal->tty, buf); | 1351 | tty_write_message(current->signal->tty, buf); |
| 1342 | buf[len-1] = '\0'; /* drop '\r' */ | 1352 | buf[len-1] = '\0'; /* drop '\r' */ |
| 1343 | printk(KERN_WARNING "%s", buf); /* watch for command names containing %s */ | 1353 | /* watch for command names containing %s */ |
| 1354 | printk(KERN_WARNING "%s", buf); | ||
| 1355 | } else { | ||
| 1356 | if (no_unaligned_warning && !noprint_warning) { | ||
| 1357 | noprint_warning = 1; | ||
| 1358 | printk(KERN_WARNING "%s(%d) encountered an " | ||
| 1359 | "unaligned exception which required\n" | ||
| 1360 | "kernel assistance, which degrades " | ||
| 1361 | "the performance of the application.\n" | ||
| 1362 | "Unaligned exception warnings have " | ||
| 1363 | "been disabled by the system " | ||
| 1364 | "administrator\n" | ||
| 1365 | "echo 0 > /proc/sys/kernel/ignore-" | ||
| 1366 | "unaligned-usertrap to re-enable\n", | ||
| 1367 | current->comm, current->pid); | ||
| 1368 | } | ||
| 1344 | } | 1369 | } |
| 1345 | } else { | 1370 | } else { |
| 1346 | if (within_logging_rate_limit()) | 1371 | if (within_logging_rate_limit()) |
diff --git a/arch/ia64/pci/pci.c b/arch/ia64/pci/pci.c index 0b30ca006286..9ba32b2d96d0 100644 --- a/arch/ia64/pci/pci.c +++ b/arch/ia64/pci/pci.c | |||
| @@ -579,7 +579,7 @@ pcibios_align_resource (void *data, struct resource *res, | |||
| 579 | char * __init | 579 | char * __init |
| 580 | pcibios_setup (char *str) | 580 | pcibios_setup (char *str) |
| 581 | { | 581 | { |
| 582 | return NULL; | 582 | return str; |
| 583 | } | 583 | } |
| 584 | 584 | ||
| 585 | int | 585 | int |
diff --git a/arch/ia64/sn/kernel/io_init.c b/arch/ia64/sn/kernel/io_init.c index 3edef0d32f86..dfb3f2902379 100644 --- a/arch/ia64/sn/kernel/io_init.c +++ b/arch/ia64/sn/kernel/io_init.c | |||
| @@ -716,4 +716,3 @@ EXPORT_SYMBOL(sn_pci_unfixup_slot); | |||
| 716 | EXPORT_SYMBOL(sn_pci_controller_fixup); | 716 | EXPORT_SYMBOL(sn_pci_controller_fixup); |
| 717 | EXPORT_SYMBOL(sn_bus_store_sysdata); | 717 | EXPORT_SYMBOL(sn_bus_store_sysdata); |
| 718 | EXPORT_SYMBOL(sn_bus_free_sysdata); | 718 | EXPORT_SYMBOL(sn_bus_free_sysdata); |
| 719 | EXPORT_SYMBOL(sn_pcidev_info_get); | ||
diff --git a/arch/ia64/sn/kernel/sn2/sn2_smp.c b/arch/ia64/sn/kernel/sn2/sn2_smp.c index 24eefb2fc55f..b2e1e746b47f 100644 --- a/arch/ia64/sn/kernel/sn2/sn2_smp.c +++ b/arch/ia64/sn/kernel/sn2/sn2_smp.c | |||
| @@ -446,7 +446,7 @@ static struct proc_dir_entry *proc_sn2_ptc; | |||
| 446 | static int __init sn2_ptc_init(void) | 446 | static int __init sn2_ptc_init(void) |
| 447 | { | 447 | { |
| 448 | if (!ia64_platform_is("sn2")) | 448 | if (!ia64_platform_is("sn2")) |
| 449 | return -ENOSYS; | 449 | return 0; |
| 450 | 450 | ||
| 451 | if (!(proc_sn2_ptc = create_proc_entry(PTC_BASENAME, 0444, NULL))) { | 451 | if (!(proc_sn2_ptc = create_proc_entry(PTC_BASENAME, 0444, NULL))) { |
| 452 | printk(KERN_ERR "unable to create %s proc entry", PTC_BASENAME); | 452 | printk(KERN_ERR "unable to create %s proc entry", PTC_BASENAME); |
diff --git a/arch/ia64/sn/kernel/tiocx.c b/arch/ia64/sn/kernel/tiocx.c index 8a56f8b5ffa2..99cb28e74295 100644 --- a/arch/ia64/sn/kernel/tiocx.c +++ b/arch/ia64/sn/kernel/tiocx.c | |||
| @@ -484,7 +484,7 @@ static int __init tiocx_init(void) | |||
| 484 | int found_tiocx_device = 0; | 484 | int found_tiocx_device = 0; |
| 485 | 485 | ||
| 486 | if (!ia64_platform_is("sn2")) | 486 | if (!ia64_platform_is("sn2")) |
| 487 | return -ENODEV; | 487 | return 0; |
| 488 | 488 | ||
| 489 | bus_register(&tiocx_bus_type); | 489 | bus_register(&tiocx_bus_type); |
| 490 | 490 | ||
diff --git a/arch/mips/kernel/time.c b/arch/mips/kernel/time.c index 7050b4ffffcd..42c94c771afb 100644 --- a/arch/mips/kernel/time.c +++ b/arch/mips/kernel/time.c | |||
| @@ -163,7 +163,7 @@ void do_gettimeofday(struct timeval *tv) | |||
| 163 | unsigned long seq; | 163 | unsigned long seq; |
| 164 | unsigned long lost; | 164 | unsigned long lost; |
| 165 | unsigned long usec, sec; | 165 | unsigned long usec, sec; |
| 166 | unsigned long max_ntp_tick = tick_usec - tickadj; | 166 | unsigned long max_ntp_tick; |
| 167 | 167 | ||
| 168 | do { | 168 | do { |
| 169 | seq = read_seqbegin(&xtime_lock); | 169 | seq = read_seqbegin(&xtime_lock); |
| @@ -178,12 +178,13 @@ void do_gettimeofday(struct timeval *tv) | |||
| 178 | * Better to lose some accuracy than have time go backwards.. | 178 | * Better to lose some accuracy than have time go backwards.. |
| 179 | */ | 179 | */ |
| 180 | if (unlikely(time_adjust < 0)) { | 180 | if (unlikely(time_adjust < 0)) { |
| 181 | max_ntp_tick = (USEC_PER_SEC / HZ) - tickadj; | ||
| 181 | usec = min(usec, max_ntp_tick); | 182 | usec = min(usec, max_ntp_tick); |
| 182 | 183 | ||
| 183 | if (lost) | 184 | if (lost) |
| 184 | usec += lost * max_ntp_tick; | 185 | usec += lost * max_ntp_tick; |
| 185 | } else if (unlikely(lost)) | 186 | } else if (unlikely(lost)) |
| 186 | usec += lost * tick_usec; | 187 | usec += lost * (USEC_PER_SEC / HZ); |
| 187 | 188 | ||
| 188 | sec = xtime.tv_sec; | 189 | sec = xtime.tv_sec; |
| 189 | usec += (xtime.tv_nsec / 1000); | 190 | usec += (xtime.tv_nsec / 1000); |
diff --git a/arch/mips/lib/iomap.c b/arch/mips/lib/iomap.c index 7e2ced715cfb..f4ac5bbcd81f 100644 --- a/arch/mips/lib/iomap.c +++ b/arch/mips/lib/iomap.c | |||
| @@ -63,7 +63,7 @@ void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen) | |||
| 63 | return ioport_map(start, len); | 63 | return ioport_map(start, len); |
| 64 | if (flags & IORESOURCE_MEM) { | 64 | if (flags & IORESOURCE_MEM) { |
| 65 | if (flags & IORESOURCE_CACHEABLE) | 65 | if (flags & IORESOURCE_CACHEABLE) |
| 66 | return ioremap_cacheable_cow(start, len); | 66 | return ioremap_cachable(start, len); |
| 67 | return ioremap_nocache(start, len); | 67 | return ioremap_nocache(start, len); |
| 68 | } | 68 | } |
| 69 | 69 | ||
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 1b71d91e8268..0668e9bfce41 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
| @@ -235,7 +235,9 @@ static inline void r4k_blast_scache_page_setup(void) | |||
| 235 | { | 235 | { |
| 236 | unsigned long sc_lsize = cpu_scache_line_size(); | 236 | unsigned long sc_lsize = cpu_scache_line_size(); |
| 237 | 237 | ||
| 238 | if (sc_lsize == 16) | 238 | if (scache_size == 0) |
| 239 | r4k_blast_scache_page = (void *)no_sc_noop; | ||
| 240 | else if (sc_lsize == 16) | ||
| 239 | r4k_blast_scache_page = blast_scache16_page; | 241 | r4k_blast_scache_page = blast_scache16_page; |
| 240 | else if (sc_lsize == 32) | 242 | else if (sc_lsize == 32) |
| 241 | r4k_blast_scache_page = blast_scache32_page; | 243 | r4k_blast_scache_page = blast_scache32_page; |
| @@ -251,7 +253,9 @@ static inline void r4k_blast_scache_page_indexed_setup(void) | |||
| 251 | { | 253 | { |
| 252 | unsigned long sc_lsize = cpu_scache_line_size(); | 254 | unsigned long sc_lsize = cpu_scache_line_size(); |
| 253 | 255 | ||
| 254 | if (sc_lsize == 16) | 256 | if (scache_size == 0) |
| 257 | r4k_blast_scache_page_indexed = (void *)no_sc_noop; | ||
| 258 | else if (sc_lsize == 16) | ||
| 255 | r4k_blast_scache_page_indexed = blast_scache16_page_indexed; | 259 | r4k_blast_scache_page_indexed = blast_scache16_page_indexed; |
| 256 | else if (sc_lsize == 32) | 260 | else if (sc_lsize == 32) |
| 257 | r4k_blast_scache_page_indexed = blast_scache32_page_indexed; | 261 | r4k_blast_scache_page_indexed = blast_scache32_page_indexed; |
| @@ -267,7 +271,9 @@ static inline void r4k_blast_scache_setup(void) | |||
| 267 | { | 271 | { |
| 268 | unsigned long sc_lsize = cpu_scache_line_size(); | 272 | unsigned long sc_lsize = cpu_scache_line_size(); |
| 269 | 273 | ||
| 270 | if (sc_lsize == 16) | 274 | if (scache_size == 0) |
| 275 | r4k_blast_scache = (void *)no_sc_noop; | ||
| 276 | else if (sc_lsize == 16) | ||
| 271 | r4k_blast_scache = blast_scache16; | 277 | r4k_blast_scache = blast_scache16; |
| 272 | else if (sc_lsize == 32) | 278 | else if (sc_lsize == 32) |
| 273 | r4k_blast_scache = blast_scache32; | 279 | r4k_blast_scache = blast_scache32; |
| @@ -482,7 +488,7 @@ static inline void local_r4k_flush_icache_range(void *args) | |||
| 482 | protected_blast_dcache_range(start, end); | 488 | protected_blast_dcache_range(start, end); |
| 483 | } | 489 | } |
| 484 | 490 | ||
| 485 | if (!cpu_icache_snoops_remote_store) { | 491 | if (!cpu_icache_snoops_remote_store && scache_size) { |
| 486 | if (end - start > scache_size) | 492 | if (end - start > scache_size) |
| 487 | r4k_blast_scache(); | 493 | r4k_blast_scache(); |
| 488 | else | 494 | else |
| @@ -651,7 +657,7 @@ static void local_r4k_flush_cache_sigtramp(void * arg) | |||
| 651 | 657 | ||
| 652 | R4600_HIT_CACHEOP_WAR_IMPL; | 658 | R4600_HIT_CACHEOP_WAR_IMPL; |
| 653 | protected_writeback_dcache_line(addr & ~(dc_lsize - 1)); | 659 | protected_writeback_dcache_line(addr & ~(dc_lsize - 1)); |
| 654 | if (!cpu_icache_snoops_remote_store) | 660 | if (!cpu_icache_snoops_remote_store && scache_size) |
| 655 | protected_writeback_scache_line(addr & ~(sc_lsize - 1)); | 661 | protected_writeback_scache_line(addr & ~(sc_lsize - 1)); |
| 656 | protected_flush_icache_line(addr & ~(ic_lsize - 1)); | 662 | protected_flush_icache_line(addr & ~(ic_lsize - 1)); |
| 657 | if (MIPS4K_ICACHE_REFILL_WAR) { | 663 | if (MIPS4K_ICACHE_REFILL_WAR) { |
diff --git a/arch/powerpc/kernel/asm-offsets.c b/arch/powerpc/kernel/asm-offsets.c index 18810ac55bcc..882889b15926 100644 --- a/arch/powerpc/kernel/asm-offsets.c +++ b/arch/powerpc/kernel/asm-offsets.c | |||
| @@ -92,7 +92,6 @@ int main(void) | |||
| 92 | 92 | ||
| 93 | DEFINE(TI_FLAGS, offsetof(struct thread_info, flags)); | 93 | DEFINE(TI_FLAGS, offsetof(struct thread_info, flags)); |
| 94 | DEFINE(TI_PREEMPT, offsetof(struct thread_info, preempt_count)); | 94 | DEFINE(TI_PREEMPT, offsetof(struct thread_info, preempt_count)); |
| 95 | DEFINE(TI_SIGFRAME, offsetof(struct thread_info, nvgprs_frame)); | ||
| 96 | DEFINE(TI_TASK, offsetof(struct thread_info, task)); | 95 | DEFINE(TI_TASK, offsetof(struct thread_info, task)); |
| 97 | #ifdef CONFIG_PPC32 | 96 | #ifdef CONFIG_PPC32 |
| 98 | DEFINE(TI_EXECDOMAIN, offsetof(struct thread_info, exec_domain)); | 97 | DEFINE(TI_EXECDOMAIN, offsetof(struct thread_info, exec_domain)); |
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index 3191be7135fe..39e348a3ade2 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
| @@ -53,8 +53,10 @@ extern void __setup_cpu_ppc970(unsigned long offset, struct cpu_spec* spec); | |||
| 53 | PPC_FEATURE_HAS_MMU) | 53 | PPC_FEATURE_HAS_MMU) |
| 54 | #define COMMON_USER_PPC64 (COMMON_USER | PPC_FEATURE_64) | 54 | #define COMMON_USER_PPC64 (COMMON_USER | PPC_FEATURE_64) |
| 55 | #define COMMON_USER_POWER4 (COMMON_USER_PPC64 | PPC_FEATURE_POWER4) | 55 | #define COMMON_USER_POWER4 (COMMON_USER_PPC64 | PPC_FEATURE_POWER4) |
| 56 | #define COMMON_USER_POWER5 (COMMON_USER_PPC64 | PPC_FEATURE_POWER5) | 56 | #define COMMON_USER_POWER5 (COMMON_USER_PPC64 | PPC_FEATURE_POWER5 |\ |
| 57 | #define COMMON_USER_POWER5_PLUS (COMMON_USER_PPC64 | PPC_FEATURE_POWER5_PLUS) | 57 | PPC_FEATURE_SMT | PPC_FEATURE_ICACHE_SNOOP) |
| 58 | #define COMMON_USER_POWER5_PLUS (COMMON_USER_PPC64 | PPC_FEATURE_POWER5_PLUS|\ | ||
| 59 | PPC_FEATURE_SMT | PPC_FEATURE_ICACHE_SNOOP) | ||
| 58 | #define COMMON_USER_BOOKE (PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU | \ | 60 | #define COMMON_USER_BOOKE (PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU | \ |
| 59 | PPC_FEATURE_BOOKE) | 61 | PPC_FEATURE_BOOKE) |
| 60 | 62 | ||
| @@ -267,7 +269,8 @@ struct cpu_spec cpu_specs[] = { | |||
| 267 | .cpu_name = "Cell Broadband Engine", | 269 | .cpu_name = "Cell Broadband Engine", |
| 268 | .cpu_features = CPU_FTRS_CELL, | 270 | .cpu_features = CPU_FTRS_CELL, |
| 269 | .cpu_user_features = COMMON_USER_PPC64 | | 271 | .cpu_user_features = COMMON_USER_PPC64 | |
| 270 | PPC_FEATURE_CELL | PPC_FEATURE_HAS_ALTIVEC_COMP, | 272 | PPC_FEATURE_CELL | PPC_FEATURE_HAS_ALTIVEC_COMP | |
| 273 | PPC_FEATURE_SMT, | ||
| 271 | .icache_bsize = 128, | 274 | .icache_bsize = 128, |
| 272 | .dcache_bsize = 128, | 275 | .dcache_bsize = 128, |
| 273 | .cpu_setup = __setup_cpu_be, | 276 | .cpu_setup = __setup_cpu_be, |
diff --git a/arch/powerpc/kernel/entry_32.S b/arch/powerpc/kernel/entry_32.S index f20a67261ec7..4827ca1ec89b 100644 --- a/arch/powerpc/kernel/entry_32.S +++ b/arch/powerpc/kernel/entry_32.S | |||
| @@ -227,7 +227,7 @@ ret_from_syscall: | |||
| 227 | MTMSRD(r10) | 227 | MTMSRD(r10) |
| 228 | lwz r9,TI_FLAGS(r12) | 228 | lwz r9,TI_FLAGS(r12) |
| 229 | li r8,-_LAST_ERRNO | 229 | li r8,-_LAST_ERRNO |
| 230 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SIGPENDING|_TIF_NEED_RESCHED|_TIF_RESTOREALL|_TIF_RESTORE_SIGMASK) | 230 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK) |
| 231 | bne- syscall_exit_work | 231 | bne- syscall_exit_work |
| 232 | cmplw 0,r3,r8 | 232 | cmplw 0,r3,r8 |
| 233 | blt+ syscall_exit_cont | 233 | blt+ syscall_exit_cont |
| @@ -287,8 +287,10 @@ syscall_dotrace: | |||
| 287 | 287 | ||
| 288 | syscall_exit_work: | 288 | syscall_exit_work: |
| 289 | andi. r0,r9,_TIF_RESTOREALL | 289 | andi. r0,r9,_TIF_RESTOREALL |
| 290 | bne- 2f | 290 | beq+ 0f |
| 291 | cmplw 0,r3,r8 | 291 | REST_NVGPRS(r1) |
| 292 | b 2f | ||
| 293 | 0: cmplw 0,r3,r8 | ||
| 292 | blt+ 1f | 294 | blt+ 1f |
| 293 | andi. r0,r9,_TIF_NOERROR | 295 | andi. r0,r9,_TIF_NOERROR |
| 294 | bne- 1f | 296 | bne- 1f |
| @@ -302,9 +304,7 @@ syscall_exit_work: | |||
| 302 | 2: andi. r0,r9,(_TIF_PERSYSCALL_MASK) | 304 | 2: andi. r0,r9,(_TIF_PERSYSCALL_MASK) |
| 303 | beq 4f | 305 | beq 4f |
| 304 | 306 | ||
| 305 | /* Clear per-syscall TIF flags if any are set, but _leave_ | 307 | /* Clear per-syscall TIF flags if any are set. */ |
| 306 | _TIF_SAVE_NVGPRS set in r9 since we haven't dealt with that | ||
| 307 | yet. */ | ||
| 308 | 308 | ||
| 309 | li r11,_TIF_PERSYSCALL_MASK | 309 | li r11,_TIF_PERSYSCALL_MASK |
| 310 | addi r12,r12,TI_FLAGS | 310 | addi r12,r12,TI_FLAGS |
| @@ -318,8 +318,13 @@ syscall_exit_work: | |||
| 318 | subi r12,r12,TI_FLAGS | 318 | subi r12,r12,TI_FLAGS |
| 319 | 319 | ||
| 320 | 4: /* Anything which requires enabling interrupts? */ | 320 | 4: /* Anything which requires enabling interrupts? */ |
| 321 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_SAVE_NVGPRS) | 321 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP) |
| 322 | beq 7f | 322 | beq ret_from_except |
| 323 | |||
| 324 | /* Re-enable interrupts */ | ||
| 325 | ori r10,r10,MSR_EE | ||
| 326 | SYNC | ||
| 327 | MTMSRD(r10) | ||
| 323 | 328 | ||
| 324 | /* Save NVGPRS if they're not saved already */ | 329 | /* Save NVGPRS if they're not saved already */ |
| 325 | lwz r4,_TRAP(r1) | 330 | lwz r4,_TRAP(r1) |
| @@ -328,71 +333,11 @@ syscall_exit_work: | |||
| 328 | SAVE_NVGPRS(r1) | 333 | SAVE_NVGPRS(r1) |
| 329 | li r4,0xc00 | 334 | li r4,0xc00 |
| 330 | stw r4,_TRAP(r1) | 335 | stw r4,_TRAP(r1) |
| 331 | 336 | 5: | |
| 332 | /* Re-enable interrupts */ | ||
| 333 | 5: ori r10,r10,MSR_EE | ||
| 334 | SYNC | ||
| 335 | MTMSRD(r10) | ||
| 336 | |||
| 337 | andi. r0,r9,_TIF_SAVE_NVGPRS | ||
| 338 | bne save_user_nvgprs | ||
| 339 | |||
| 340 | save_user_nvgprs_cont: | ||
| 341 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP) | ||
| 342 | beq 7f | ||
| 343 | |||
| 344 | addi r3,r1,STACK_FRAME_OVERHEAD | 337 | addi r3,r1,STACK_FRAME_OVERHEAD |
| 345 | bl do_syscall_trace_leave | 338 | bl do_syscall_trace_leave |
| 346 | REST_NVGPRS(r1) | 339 | b ret_from_except_full |
| 347 | |||
| 348 | 6: lwz r3,GPR3(r1) | ||
| 349 | LOAD_MSR_KERNEL(r10,MSR_KERNEL) /* doesn't include MSR_EE */ | ||
| 350 | SYNC | ||
| 351 | MTMSRD(r10) /* disable interrupts again */ | ||
| 352 | rlwinm r12,r1,0,0,(31-THREAD_SHIFT) /* current_thread_info() */ | ||
| 353 | lwz r9,TI_FLAGS(r12) | ||
| 354 | 7: | ||
| 355 | andi. r0,r9,_TIF_NEED_RESCHED | ||
| 356 | bne 8f | ||
| 357 | lwz r5,_MSR(r1) | ||
| 358 | andi. r5,r5,MSR_PR | ||
| 359 | beq ret_from_except | ||
| 360 | andi. r0,r9,_TIF_SIGPENDING|_TIF_RESTORE_SIGMASK | ||
| 361 | beq ret_from_except | ||
| 362 | b do_user_signal | ||
| 363 | 8: | ||
| 364 | ori r10,r10,MSR_EE | ||
| 365 | SYNC | ||
| 366 | MTMSRD(r10) /* re-enable interrupts */ | ||
| 367 | bl schedule | ||
| 368 | b 6b | ||
| 369 | |||
| 370 | save_user_nvgprs: | ||
| 371 | lwz r8,TI_SIGFRAME(r12) | ||
| 372 | |||
| 373 | .macro savewords start, end | ||
| 374 | 1: stw \start,4*(\start)(r8) | ||
| 375 | .section __ex_table,"a" | ||
| 376 | .align 2 | ||
| 377 | .long 1b,save_user_nvgprs_fault | ||
| 378 | .previous | ||
| 379 | .if \end - \start | ||
| 380 | savewords "(\start+1)",\end | ||
| 381 | .endif | ||
| 382 | .endm | ||
| 383 | savewords 14,31 | ||
| 384 | b save_user_nvgprs_cont | ||
| 385 | |||
| 386 | |||
| 387 | save_user_nvgprs_fault: | ||
| 388 | li r3,11 /* SIGSEGV */ | ||
| 389 | lwz r4,TI_TASK(r12) | ||
| 390 | bl force_sigsegv | ||
| 391 | 340 | ||
| 392 | rlwinm r12,r1,0,0,(31-THREAD_SHIFT) /* current_thread_info() */ | ||
| 393 | lwz r9,TI_FLAGS(r12) | ||
| 394 | b save_user_nvgprs_cont | ||
| 395 | |||
| 396 | #ifdef SHOW_SYSCALLS | 341 | #ifdef SHOW_SYSCALLS |
| 397 | do_show_syscall: | 342 | do_show_syscall: |
| 398 | #ifdef SHOW_SYSCALLS_TASK | 343 | #ifdef SHOW_SYSCALLS_TASK |
| @@ -490,6 +435,14 @@ ppc_clone: | |||
| 490 | stw r0,_TRAP(r1) /* register set saved */ | 435 | stw r0,_TRAP(r1) /* register set saved */ |
| 491 | b sys_clone | 436 | b sys_clone |
| 492 | 437 | ||
| 438 | .globl ppc_swapcontext | ||
| 439 | ppc_swapcontext: | ||
| 440 | SAVE_NVGPRS(r1) | ||
| 441 | lwz r0,_TRAP(r1) | ||
| 442 | rlwinm r0,r0,0,0,30 /* clear LSB to indicate full */ | ||
| 443 | stw r0,_TRAP(r1) /* register set saved */ | ||
| 444 | b sys_swapcontext | ||
| 445 | |||
| 493 | /* | 446 | /* |
| 494 | * Top-level page fault handling. | 447 | * Top-level page fault handling. |
| 495 | * This is in assembler because if do_page_fault tells us that | 448 | * This is in assembler because if do_page_fault tells us that |
| @@ -683,7 +636,7 @@ user_exc_return: /* r10 contains MSR_KERNEL here */ | |||
| 683 | /* Check current_thread_info()->flags */ | 636 | /* Check current_thread_info()->flags */ |
| 684 | rlwinm r9,r1,0,0,(31-THREAD_SHIFT) | 637 | rlwinm r9,r1,0,0,(31-THREAD_SHIFT) |
| 685 | lwz r9,TI_FLAGS(r9) | 638 | lwz r9,TI_FLAGS(r9) |
| 686 | andi. r0,r9,(_TIF_SIGPENDING|_TIF_NEED_RESCHED|_TIF_RESTOREALL|_TIF_RESTORE_SIGMASK) | 639 | andi. r0,r9,(_TIF_SIGPENDING|_TIF_RESTORE_SIGMASK|_TIF_NEED_RESCHED) |
| 687 | bne do_work | 640 | bne do_work |
| 688 | 641 | ||
| 689 | restore_user: | 642 | restore_user: |
diff --git a/arch/powerpc/kernel/entry_64.S b/arch/powerpc/kernel/entry_64.S index 8f606c1889fa..1060155d84c3 100644 --- a/arch/powerpc/kernel/entry_64.S +++ b/arch/powerpc/kernel/entry_64.S | |||
| @@ -159,7 +159,7 @@ syscall_exit: | |||
| 159 | mtmsrd r10,1 | 159 | mtmsrd r10,1 |
| 160 | ld r9,TI_FLAGS(r12) | 160 | ld r9,TI_FLAGS(r12) |
| 161 | li r11,-_LAST_ERRNO | 161 | li r11,-_LAST_ERRNO |
| 162 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_SIGPENDING|_TIF_NEED_RESCHED|_TIF_RESTOREALL|_TIF_SAVE_NVGPRS|_TIF_NOERROR|_TIF_RESTORE_SIGMASK) | 162 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK) |
| 163 | bne- syscall_exit_work | 163 | bne- syscall_exit_work |
| 164 | cmpld r3,r11 | 164 | cmpld r3,r11 |
| 165 | ld r5,_CCR(r1) | 165 | ld r5,_CCR(r1) |
| @@ -216,8 +216,10 @@ syscall_exit_work: | |||
| 216 | If TIF_NOERROR is set, just save r3 as it is. */ | 216 | If TIF_NOERROR is set, just save r3 as it is. */ |
| 217 | 217 | ||
| 218 | andi. r0,r9,_TIF_RESTOREALL | 218 | andi. r0,r9,_TIF_RESTOREALL |
| 219 | bne- 2f | 219 | beq+ 0f |
| 220 | cmpld r3,r11 /* r10 is -LAST_ERRNO */ | 220 | REST_NVGPRS(r1) |
| 221 | b 2f | ||
| 222 | 0: cmpld r3,r11 /* r10 is -LAST_ERRNO */ | ||
| 221 | blt+ 1f | 223 | blt+ 1f |
| 222 | andi. r0,r9,_TIF_NOERROR | 224 | andi. r0,r9,_TIF_NOERROR |
| 223 | bne- 1f | 225 | bne- 1f |
| @@ -229,9 +231,7 @@ syscall_exit_work: | |||
| 229 | 2: andi. r0,r9,(_TIF_PERSYSCALL_MASK) | 231 | 2: andi. r0,r9,(_TIF_PERSYSCALL_MASK) |
| 230 | beq 4f | 232 | beq 4f |
| 231 | 233 | ||
| 232 | /* Clear per-syscall TIF flags if any are set, but _leave_ | 234 | /* Clear per-syscall TIF flags if any are set. */ |
| 233 | _TIF_SAVE_NVGPRS set in r9 since we haven't dealt with that | ||
| 234 | yet. */ | ||
| 235 | 235 | ||
| 236 | li r11,_TIF_PERSYSCALL_MASK | 236 | li r11,_TIF_PERSYSCALL_MASK |
| 237 | addi r12,r12,TI_FLAGS | 237 | addi r12,r12,TI_FLAGS |
| @@ -240,10 +240,9 @@ syscall_exit_work: | |||
| 240 | stdcx. r10,0,r12 | 240 | stdcx. r10,0,r12 |
| 241 | bne- 3b | 241 | bne- 3b |
| 242 | subi r12,r12,TI_FLAGS | 242 | subi r12,r12,TI_FLAGS |
| 243 | 243 | ||
| 244 | 4: bl .save_nvgprs | 244 | 4: /* Anything else left to do? */ |
| 245 | /* Anything else left to do? */ | 245 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP) |
| 246 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_SAVE_NVGPRS) | ||
| 247 | beq .ret_from_except_lite | 246 | beq .ret_from_except_lite |
| 248 | 247 | ||
| 249 | /* Re-enable interrupts */ | 248 | /* Re-enable interrupts */ |
| @@ -251,26 +250,10 @@ syscall_exit_work: | |||
| 251 | ori r10,r10,MSR_EE | 250 | ori r10,r10,MSR_EE |
| 252 | mtmsrd r10,1 | 251 | mtmsrd r10,1 |
| 253 | 252 | ||
| 254 | andi. r0,r9,_TIF_SAVE_NVGPRS | 253 | bl .save_nvgprs |
| 255 | bne save_user_nvgprs | ||
| 256 | |||
| 257 | /* If tracing, re-enable interrupts and do it */ | ||
| 258 | save_user_nvgprs_cont: | ||
| 259 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP) | ||
| 260 | beq 5f | ||
| 261 | |||
| 262 | addi r3,r1,STACK_FRAME_OVERHEAD | 254 | addi r3,r1,STACK_FRAME_OVERHEAD |
| 263 | bl .do_syscall_trace_leave | 255 | bl .do_syscall_trace_leave |
| 264 | REST_NVGPRS(r1) | 256 | b .ret_from_except |
| 265 | clrrdi r12,r1,THREAD_SHIFT | ||
| 266 | |||
| 267 | /* Disable interrupts again and handle other work if any */ | ||
| 268 | 5: mfmsr r10 | ||
| 269 | rldicl r10,r10,48,1 | ||
| 270 | rotldi r10,r10,16 | ||
| 271 | mtmsrd r10,1 | ||
| 272 | |||
| 273 | b .ret_from_except_lite | ||
| 274 | 257 | ||
| 275 | /* Save non-volatile GPRs, if not already saved. */ | 258 | /* Save non-volatile GPRs, if not already saved. */ |
| 276 | _GLOBAL(save_nvgprs) | 259 | _GLOBAL(save_nvgprs) |
| @@ -282,51 +265,6 @@ _GLOBAL(save_nvgprs) | |||
| 282 | std r0,_TRAP(r1) | 265 | std r0,_TRAP(r1) |
| 283 | blr | 266 | blr |
| 284 | 267 | ||
| 285 | |||
| 286 | save_user_nvgprs: | ||
| 287 | ld r10,TI_SIGFRAME(r12) | ||
| 288 | andi. r0,r9,_TIF_32BIT | ||
| 289 | beq- save_user_nvgprs_64 | ||
| 290 | |||
| 291 | /* 32-bit save to userspace */ | ||
| 292 | |||
| 293 | .macro savewords start, end | ||
| 294 | 1: stw \start,4*(\start)(r10) | ||
| 295 | .section __ex_table,"a" | ||
| 296 | .align 3 | ||
| 297 | .llong 1b,save_user_nvgprs_fault | ||
| 298 | .previous | ||
| 299 | .if \end - \start | ||
| 300 | savewords "(\start+1)",\end | ||
| 301 | .endif | ||
| 302 | .endm | ||
| 303 | savewords 14,31 | ||
| 304 | b save_user_nvgprs_cont | ||
| 305 | |||
| 306 | save_user_nvgprs_64: | ||
| 307 | /* 64-bit save to userspace */ | ||
| 308 | |||
| 309 | .macro savelongs start, end | ||
| 310 | 1: std \start,8*(\start)(r10) | ||
| 311 | .section __ex_table,"a" | ||
| 312 | .align 3 | ||
| 313 | .llong 1b,save_user_nvgprs_fault | ||
| 314 | .previous | ||
| 315 | .if \end - \start | ||
| 316 | savelongs "(\start+1)",\end | ||
| 317 | .endif | ||
| 318 | .endm | ||
| 319 | savelongs 14,31 | ||
| 320 | b save_user_nvgprs_cont | ||
| 321 | |||
| 322 | save_user_nvgprs_fault: | ||
| 323 | li r3,11 /* SIGSEGV */ | ||
| 324 | ld r4,TI_TASK(r12) | ||
| 325 | bl .force_sigsegv | ||
| 326 | |||
| 327 | clrrdi r12,r1,THREAD_SHIFT | ||
| 328 | ld r9,TI_FLAGS(r12) | ||
| 329 | b save_user_nvgprs_cont | ||
| 330 | 268 | ||
| 331 | /* | 269 | /* |
| 332 | * The sigsuspend and rt_sigsuspend system calls can call do_signal | 270 | * The sigsuspend and rt_sigsuspend system calls can call do_signal |
| @@ -352,6 +290,16 @@ _GLOBAL(ppc_clone) | |||
| 352 | bl .sys_clone | 290 | bl .sys_clone |
| 353 | b syscall_exit | 291 | b syscall_exit |
| 354 | 292 | ||
| 293 | _GLOBAL(ppc32_swapcontext) | ||
| 294 | bl .save_nvgprs | ||
| 295 | bl .compat_sys_swapcontext | ||
| 296 | b syscall_exit | ||
| 297 | |||
| 298 | _GLOBAL(ppc64_swapcontext) | ||
| 299 | bl .save_nvgprs | ||
| 300 | bl .sys_swapcontext | ||
| 301 | b syscall_exit | ||
| 302 | |||
| 355 | _GLOBAL(ret_from_fork) | 303 | _GLOBAL(ret_from_fork) |
| 356 | bl .schedule_tail | 304 | bl .schedule_tail |
| 357 | REST_NVGPRS(r1) | 305 | REST_NVGPRS(r1) |
diff --git a/arch/powerpc/kernel/head_64.S b/arch/powerpc/kernel/head_64.S index be3ae7733577..35084f3a841b 100644 --- a/arch/powerpc/kernel/head_64.S +++ b/arch/powerpc/kernel/head_64.S | |||
| @@ -1544,6 +1544,9 @@ _STATIC(__boot_from_prom) | |||
| 1544 | mr r28,r6 | 1544 | mr r28,r6 |
| 1545 | mr r27,r7 | 1545 | mr r27,r7 |
| 1546 | 1546 | ||
| 1547 | /* Align the stack to 16-byte boundary for broken yaboot */ | ||
| 1548 | rldicr r1,r1,0,59 | ||
| 1549 | |||
| 1547 | /* Make sure we are running in 64 bits mode */ | 1550 | /* Make sure we are running in 64 bits mode */ |
| 1548 | bl .enable_64b_mode | 1551 | bl .enable_64b_mode |
| 1549 | 1552 | ||
diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c index d34fe537400e..813c2cd194c2 100644 --- a/arch/powerpc/kernel/prom_init.c +++ b/arch/powerpc/kernel/prom_init.c | |||
| @@ -978,7 +978,7 @@ static void __init prom_init_mem(void) | |||
| 978 | if (size == 0) | 978 | if (size == 0) |
| 979 | continue; | 979 | continue; |
| 980 | prom_debug(" %x %x\n", base, size); | 980 | prom_debug(" %x %x\n", base, size); |
| 981 | if (base == 0) | 981 | if (base == 0 && (RELOC(of_platform) & PLATFORM_LPAR)) |
| 982 | RELOC(rmo_top) = size; | 982 | RELOC(rmo_top) = size; |
| 983 | if ((base + size) > RELOC(ram_top)) | 983 | if ((base + size) > RELOC(ram_top)) |
| 984 | RELOC(ram_top) = base + size; | 984 | RELOC(ram_top) = base + size; |
diff --git a/arch/powerpc/kernel/ptrace.c b/arch/powerpc/kernel/ptrace.c index 400793c71304..bcb83574335b 100644 --- a/arch/powerpc/kernel/ptrace.c +++ b/arch/powerpc/kernel/ptrace.c | |||
| @@ -561,10 +561,7 @@ void do_syscall_trace_leave(struct pt_regs *regs) | |||
| 561 | regs->result); | 561 | regs->result); |
| 562 | 562 | ||
| 563 | if ((test_thread_flag(TIF_SYSCALL_TRACE) | 563 | if ((test_thread_flag(TIF_SYSCALL_TRACE) |
| 564 | #ifdef CONFIG_PPC64 | 564 | || test_thread_flag(TIF_SINGLESTEP)) |
| 565 | || test_thread_flag(TIF_SINGLESTEP) | ||
| 566 | #endif | ||
| 567 | ) | ||
| 568 | && (current->ptrace & PT_PTRACED)) | 565 | && (current->ptrace & PT_PTRACED)) |
| 569 | do_syscall_trace(); | 566 | do_syscall_trace(); |
| 570 | } | 567 | } |
diff --git a/arch/powerpc/kernel/signal_32.c b/arch/powerpc/kernel/signal_32.c index bd837b5dbf06..d7a4e814974d 100644 --- a/arch/powerpc/kernel/signal_32.c +++ b/arch/powerpc/kernel/signal_32.c | |||
| @@ -151,10 +151,7 @@ static inline int save_general_regs(struct pt_regs *regs, | |||
| 151 | elf_greg_t64 *gregs = (elf_greg_t64 *)regs; | 151 | elf_greg_t64 *gregs = (elf_greg_t64 *)regs; |
| 152 | int i; | 152 | int i; |
| 153 | 153 | ||
| 154 | if (!FULL_REGS(regs)) { | 154 | WARN_ON(!FULL_REGS(regs)); |
| 155 | set_thread_flag(TIF_SAVE_NVGPRS); | ||
| 156 | current_thread_info()->nvgprs_frame = frame->mc_gregs; | ||
| 157 | } | ||
| 158 | 155 | ||
| 159 | for (i = 0; i <= PT_RESULT; i ++) { | 156 | for (i = 0; i <= PT_RESULT; i ++) { |
| 160 | if (i == 14 && !FULL_REGS(regs)) | 157 | if (i == 14 && !FULL_REGS(regs)) |
| @@ -215,15 +212,7 @@ static inline int get_old_sigaction(struct k_sigaction *new_ka, | |||
| 215 | static inline int save_general_regs(struct pt_regs *regs, | 212 | static inline int save_general_regs(struct pt_regs *regs, |
| 216 | struct mcontext __user *frame) | 213 | struct mcontext __user *frame) |
| 217 | { | 214 | { |
| 218 | if (!FULL_REGS(regs)) { | 215 | WARN_ON(!FULL_REGS(regs)); |
| 219 | /* Zero out the unsaved GPRs to avoid information | ||
| 220 | leak, and set TIF_SAVE_NVGPRS to ensure that the | ||
| 221 | registers do actually get saved later. */ | ||
| 222 | memset(®s->gpr[14], 0, 18 * sizeof(unsigned long)); | ||
| 223 | current_thread_info()->nvgprs_frame = &frame->mc_gregs; | ||
| 224 | set_thread_flag(TIF_SAVE_NVGPRS); | ||
| 225 | } | ||
| 226 | |||
| 227 | return __copy_to_user(&frame->mc_gregs, regs, GP_REGS_SIZE); | 216 | return __copy_to_user(&frame->mc_gregs, regs, GP_REGS_SIZE); |
| 228 | } | 217 | } |
| 229 | 218 | ||
| @@ -826,8 +815,8 @@ static int do_setcontext(struct ucontext __user *ucp, struct pt_regs *regs, int | |||
| 826 | } | 815 | } |
| 827 | 816 | ||
| 828 | long sys_swapcontext(struct ucontext __user *old_ctx, | 817 | long sys_swapcontext(struct ucontext __user *old_ctx, |
| 829 | struct ucontext __user *new_ctx, | 818 | struct ucontext __user *new_ctx, |
| 830 | int ctx_size, int r6, int r7, int r8, struct pt_regs *regs) | 819 | int ctx_size, int r6, int r7, int r8, struct pt_regs *regs) |
| 831 | { | 820 | { |
| 832 | unsigned char tmp; | 821 | unsigned char tmp; |
| 833 | 822 | ||
diff --git a/arch/powerpc/kernel/signal_64.c b/arch/powerpc/kernel/signal_64.c index 59b9c9cdd6a9..47f910380a6a 100644 --- a/arch/powerpc/kernel/signal_64.c +++ b/arch/powerpc/kernel/signal_64.c | |||
| @@ -116,14 +116,7 @@ static long setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs, | |||
| 116 | err |= __put_user(0, &sc->v_regs); | 116 | err |= __put_user(0, &sc->v_regs); |
| 117 | #endif /* CONFIG_ALTIVEC */ | 117 | #endif /* CONFIG_ALTIVEC */ |
| 118 | err |= __put_user(&sc->gp_regs, &sc->regs); | 118 | err |= __put_user(&sc->gp_regs, &sc->regs); |
| 119 | if (!FULL_REGS(regs)) { | 119 | WARN_ON(!FULL_REGS(regs)); |
| 120 | /* Zero out the unsaved GPRs to avoid information | ||
| 121 | leak, and set TIF_SAVE_NVGPRS to ensure that the | ||
| 122 | registers do actually get saved later. */ | ||
| 123 | memset(®s->gpr[14], 0, 18 * sizeof(unsigned long)); | ||
| 124 | set_thread_flag(TIF_SAVE_NVGPRS); | ||
| 125 | current_thread_info()->nvgprs_frame = &sc->gp_regs; | ||
| 126 | } | ||
| 127 | err |= __copy_to_user(&sc->gp_regs, regs, GP_REGS_SIZE); | 120 | err |= __copy_to_user(&sc->gp_regs, regs, GP_REGS_SIZE); |
| 128 | err |= __copy_to_user(&sc->fp_regs, ¤t->thread.fpr, FP_REGS_SIZE); | 121 | err |= __copy_to_user(&sc->fp_regs, ¤t->thread.fpr, FP_REGS_SIZE); |
| 129 | err |= __put_user(signr, &sc->signal); | 122 | err |= __put_user(signr, &sc->signal); |
diff --git a/arch/powerpc/kernel/systbl.S b/arch/powerpc/kernel/systbl.S index 8a9f994ed917..1ad55f0466fd 100644 --- a/arch/powerpc/kernel/systbl.S +++ b/arch/powerpc/kernel/systbl.S | |||
| @@ -288,7 +288,7 @@ COMPAT_SYS(clock_settime) | |||
| 288 | COMPAT_SYS(clock_gettime) | 288 | COMPAT_SYS(clock_gettime) |
| 289 | COMPAT_SYS(clock_getres) | 289 | COMPAT_SYS(clock_getres) |
| 290 | COMPAT_SYS(clock_nanosleep) | 290 | COMPAT_SYS(clock_nanosleep) |
| 291 | COMPAT_SYS(swapcontext) | 291 | SYSX(ppc64_swapcontext,ppc32_swapcontext,ppc_swapcontext) |
| 292 | COMPAT_SYS(tgkill) | 292 | COMPAT_SYS(tgkill) |
| 293 | COMPAT_SYS(utimes) | 293 | COMPAT_SYS(utimes) |
| 294 | COMPAT_SYS(statfs64) | 294 | COMPAT_SYS(statfs64) |
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c index 7509aa6474f2..98660aedeeb7 100644 --- a/arch/powerpc/kernel/traps.c +++ b/arch/powerpc/kernel/traps.c | |||
| @@ -814,6 +814,8 @@ void __kprobes program_check_exception(struct pt_regs *regs) | |||
| 814 | return; | 814 | return; |
| 815 | } | 815 | } |
| 816 | 816 | ||
| 817 | local_irq_enable(); | ||
| 818 | |||
| 817 | /* Try to emulate it if we should. */ | 819 | /* Try to emulate it if we should. */ |
| 818 | if (reason & (REASON_ILLEGAL | REASON_PRIVILEGED)) { | 820 | if (reason & (REASON_ILLEGAL | REASON_PRIVILEGED)) { |
| 819 | switch (emulate_instruction(regs)) { | 821 | switch (emulate_instruction(regs)) { |
diff --git a/arch/powerpc/kernel/vdso.c b/arch/powerpc/kernel/vdso.c index b316fda58b89..ec8370368423 100644 --- a/arch/powerpc/kernel/vdso.c +++ b/arch/powerpc/kernel/vdso.c | |||
| @@ -180,8 +180,8 @@ static struct page * vdso_vma_nopage(struct vm_area_struct * vma, | |||
| 180 | unsigned long offset = address - vma->vm_start; | 180 | unsigned long offset = address - vma->vm_start; |
| 181 | struct page *pg; | 181 | struct page *pg; |
| 182 | #ifdef CONFIG_PPC64 | 182 | #ifdef CONFIG_PPC64 |
| 183 | void *vbase = test_thread_flag(TIF_32BIT) ? | 183 | void *vbase = (vma->vm_mm->task_size > TASK_SIZE_USER32) ? |
| 184 | vdso32_kbase : vdso64_kbase; | 184 | vdso64_kbase : vdso32_kbase; |
| 185 | #else | 185 | #else |
| 186 | void *vbase = vdso32_kbase; | 186 | void *vbase = vdso32_kbase; |
| 187 | #endif | 187 | #endif |
diff --git a/arch/powerpc/platforms/powermac/pfunc_base.c b/arch/powerpc/platforms/powermac/pfunc_base.c index 4ffd2a9832a0..9b7150f10414 100644 --- a/arch/powerpc/platforms/powermac/pfunc_base.c +++ b/arch/powerpc/platforms/powermac/pfunc_base.c | |||
| @@ -9,7 +9,12 @@ | |||
| 9 | #include <asm/pmac_feature.h> | 9 | #include <asm/pmac_feature.h> |
| 10 | #include <asm/pmac_pfunc.h> | 10 | #include <asm/pmac_pfunc.h> |
| 11 | 11 | ||
| 12 | #undef DEBUG | ||
| 13 | #ifdef DEBUG | ||
| 12 | #define DBG(fmt...) printk(fmt) | 14 | #define DBG(fmt...) printk(fmt) |
| 15 | #else | ||
| 16 | #define DBG(fmt...) | ||
| 17 | #endif | ||
| 13 | 18 | ||
| 14 | static irqreturn_t macio_gpio_irq(int irq, void *data, struct pt_regs *regs) | 19 | static irqreturn_t macio_gpio_irq(int irq, void *data, struct pt_regs *regs) |
| 15 | { | 20 | { |
diff --git a/arch/powerpc/platforms/powermac/pfunc_core.c b/arch/powerpc/platforms/powermac/pfunc_core.c index 356a739e52b2..4baa75b1d36f 100644 --- a/arch/powerpc/platforms/powermac/pfunc_core.c +++ b/arch/powerpc/platforms/powermac/pfunc_core.c | |||
| @@ -20,7 +20,13 @@ | |||
| 20 | #define LOG_PARSE(fmt...) | 20 | #define LOG_PARSE(fmt...) |
| 21 | #define LOG_ERROR(fmt...) printk(fmt) | 21 | #define LOG_ERROR(fmt...) printk(fmt) |
| 22 | #define LOG_BLOB(t,b,c) | 22 | #define LOG_BLOB(t,b,c) |
| 23 | |||
| 24 | #undef DEBUG | ||
| 25 | #ifdef DEBUG | ||
| 23 | #define DBG(fmt...) printk(fmt) | 26 | #define DBG(fmt...) printk(fmt) |
| 27 | #else | ||
| 28 | #define DBG(fmt...) | ||
| 29 | #endif | ||
| 24 | 30 | ||
| 25 | /* Command numbers */ | 31 | /* Command numbers */ |
| 26 | #define PMF_CMD_LIST 0 | 32 | #define PMF_CMD_LIST 0 |
diff --git a/arch/powerpc/platforms/powermac/smp.c b/arch/powerpc/platforms/powermac/smp.c index 0df2cdcd805c..6d64a9bf3474 100644 --- a/arch/powerpc/platforms/powermac/smp.c +++ b/arch/powerpc/platforms/powermac/smp.c | |||
| @@ -435,7 +435,7 @@ struct smp_ops_t psurge_smp_ops = { | |||
| 435 | */ | 435 | */ |
| 436 | 436 | ||
| 437 | static void (*pmac_tb_freeze)(int freeze); | 437 | static void (*pmac_tb_freeze)(int freeze); |
| 438 | static unsigned long timebase; | 438 | static u64 timebase; |
| 439 | static int tb_req; | 439 | static int tb_req; |
| 440 | 440 | ||
| 441 | static void smp_core99_give_timebase(void) | 441 | static void smp_core99_give_timebase(void) |
diff --git a/arch/ppc/kernel/asm-offsets.c b/arch/ppc/kernel/asm-offsets.c index 7964bf660e92..77e4dc780f8c 100644 --- a/arch/ppc/kernel/asm-offsets.c +++ b/arch/ppc/kernel/asm-offsets.c | |||
| @@ -131,7 +131,6 @@ main(void) | |||
| 131 | DEFINE(CPU_SPEC_FEATURES, offsetof(struct cpu_spec, cpu_features)); | 131 | DEFINE(CPU_SPEC_FEATURES, offsetof(struct cpu_spec, cpu_features)); |
| 132 | DEFINE(CPU_SPEC_SETUP, offsetof(struct cpu_spec, cpu_setup)); | 132 | DEFINE(CPU_SPEC_SETUP, offsetof(struct cpu_spec, cpu_setup)); |
| 133 | 133 | ||
| 134 | DEFINE(TI_SIGFRAME, offsetof(struct thread_info, nvgprs_frame)); | ||
| 135 | DEFINE(TI_TASK, offsetof(struct thread_info, task)); | 134 | DEFINE(TI_TASK, offsetof(struct thread_info, task)); |
| 136 | DEFINE(TI_EXECDOMAIN, offsetof(struct thread_info, exec_domain)); | 135 | DEFINE(TI_EXECDOMAIN, offsetof(struct thread_info, exec_domain)); |
| 137 | DEFINE(TI_FLAGS, offsetof(struct thread_info, flags)); | 136 | DEFINE(TI_FLAGS, offsetof(struct thread_info, flags)); |
diff --git a/arch/ppc/kernel/entry.S b/arch/ppc/kernel/entry.S index a48b950722a1..3a2815978488 100644 --- a/arch/ppc/kernel/entry.S +++ b/arch/ppc/kernel/entry.S | |||
| @@ -227,7 +227,7 @@ ret_from_syscall: | |||
| 227 | MTMSRD(r10) | 227 | MTMSRD(r10) |
| 228 | lwz r9,TI_FLAGS(r12) | 228 | lwz r9,TI_FLAGS(r12) |
| 229 | li r8,-_LAST_ERRNO | 229 | li r8,-_LAST_ERRNO |
| 230 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SIGPENDING|_TIF_NEED_RESCHED|_TIF_RESTOREALL) | 230 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_USER_WORK_MASK|_TIF_PERSYSCALL_MASK) |
| 231 | bne- syscall_exit_work | 231 | bne- syscall_exit_work |
| 232 | cmplw 0,r3,r8 | 232 | cmplw 0,r3,r8 |
| 233 | blt+ syscall_exit_cont | 233 | blt+ syscall_exit_cont |
| @@ -287,8 +287,10 @@ syscall_dotrace: | |||
| 287 | 287 | ||
| 288 | syscall_exit_work: | 288 | syscall_exit_work: |
| 289 | andi. r0,r9,_TIF_RESTOREALL | 289 | andi. r0,r9,_TIF_RESTOREALL |
| 290 | bne- 2f | 290 | beq+ 0f |
| 291 | cmplw 0,r3,r8 | 291 | REST_NVGPRS(r1) |
| 292 | b 2f | ||
| 293 | 0: cmplw 0,r3,r8 | ||
| 292 | blt+ 1f | 294 | blt+ 1f |
| 293 | andi. r0,r9,_TIF_NOERROR | 295 | andi. r0,r9,_TIF_NOERROR |
| 294 | bne- 1f | 296 | bne- 1f |
| @@ -302,9 +304,7 @@ syscall_exit_work: | |||
| 302 | 2: andi. r0,r9,(_TIF_PERSYSCALL_MASK) | 304 | 2: andi. r0,r9,(_TIF_PERSYSCALL_MASK) |
| 303 | beq 4f | 305 | beq 4f |
| 304 | 306 | ||
| 305 | /* Clear per-syscall TIF flags if any are set, but _leave_ | 307 | /* Clear per-syscall TIF flags if any are set. */ |
| 306 | _TIF_SAVE_NVGPRS set in r9 since we haven't dealt with that | ||
| 307 | yet. */ | ||
| 308 | 308 | ||
| 309 | li r11,_TIF_PERSYSCALL_MASK | 309 | li r11,_TIF_PERSYSCALL_MASK |
| 310 | addi r12,r12,TI_FLAGS | 310 | addi r12,r12,TI_FLAGS |
| @@ -318,8 +318,13 @@ syscall_exit_work: | |||
| 318 | subi r12,r12,TI_FLAGS | 318 | subi r12,r12,TI_FLAGS |
| 319 | 319 | ||
| 320 | 4: /* Anything which requires enabling interrupts? */ | 320 | 4: /* Anything which requires enabling interrupts? */ |
| 321 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP|_TIF_SAVE_NVGPRS) | 321 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP) |
| 322 | beq 7f | 322 | beq ret_from_except |
| 323 | |||
| 324 | /* Re-enable interrupts */ | ||
| 325 | ori r10,r10,MSR_EE | ||
| 326 | SYNC | ||
| 327 | MTMSRD(r10) | ||
| 323 | 328 | ||
| 324 | /* Save NVGPRS if they're not saved already */ | 329 | /* Save NVGPRS if they're not saved already */ |
| 325 | lwz r4,TRAP(r1) | 330 | lwz r4,TRAP(r1) |
| @@ -328,71 +333,11 @@ syscall_exit_work: | |||
| 328 | SAVE_NVGPRS(r1) | 333 | SAVE_NVGPRS(r1) |
| 329 | li r4,0xc00 | 334 | li r4,0xc00 |
| 330 | stw r4,TRAP(r1) | 335 | stw r4,TRAP(r1) |
| 331 | 336 | 5: | |
| 332 | /* Re-enable interrupts */ | ||
| 333 | 5: ori r10,r10,MSR_EE | ||
| 334 | SYNC | ||
| 335 | MTMSRD(r10) | ||
| 336 | |||
| 337 | andi. r0,r9,_TIF_SAVE_NVGPRS | ||
| 338 | bne save_user_nvgprs | ||
| 339 | |||
| 340 | save_user_nvgprs_cont: | ||
| 341 | andi. r0,r9,(_TIF_SYSCALL_T_OR_A|_TIF_SINGLESTEP) | ||
| 342 | beq 7f | ||
| 343 | |||
| 344 | addi r3,r1,STACK_FRAME_OVERHEAD | 337 | addi r3,r1,STACK_FRAME_OVERHEAD |
| 345 | bl do_syscall_trace_leave | 338 | bl do_syscall_trace_leave |
| 346 | REST_NVGPRS(r1) | 339 | b ret_from_except_full |
| 347 | |||
| 348 | 6: lwz r3,GPR3(r1) | ||
| 349 | LOAD_MSR_KERNEL(r10,MSR_KERNEL) /* doesn't include MSR_EE */ | ||
| 350 | SYNC | ||
| 351 | MTMSRD(r10) /* disable interrupts again */ | ||
| 352 | rlwinm r12,r1,0,0,18 /* current_thread_info() */ | ||
| 353 | lwz r9,TI_FLAGS(r12) | ||
| 354 | 7: | ||
| 355 | andi. r0,r9,_TIF_NEED_RESCHED | ||
| 356 | bne 8f | ||
| 357 | lwz r5,_MSR(r1) | ||
| 358 | andi. r5,r5,MSR_PR | ||
| 359 | beq ret_from_except | ||
| 360 | andi. r0,r9,_TIF_SIGPENDING | ||
| 361 | beq ret_from_except | ||
| 362 | b do_user_signal | ||
| 363 | 8: | ||
| 364 | ori r10,r10,MSR_EE | ||
| 365 | SYNC | ||
| 366 | MTMSRD(r10) /* re-enable interrupts */ | ||
| 367 | bl schedule | ||
| 368 | b 6b | ||
| 369 | |||
| 370 | save_user_nvgprs: | ||
| 371 | lwz r8,TI_SIGFRAME(r12) | ||
| 372 | |||
| 373 | .macro savewords start, end | ||
| 374 | 1: stw \start,4*(\start)(r8) | ||
| 375 | .section __ex_table,"a" | ||
| 376 | .align 2 | ||
| 377 | .long 1b,save_user_nvgprs_fault | ||
| 378 | .previous | ||
| 379 | .if \end - \start | ||
| 380 | savewords "(\start+1)",\end | ||
| 381 | .endif | ||
| 382 | .endm | ||
| 383 | savewords 14,31 | ||
| 384 | b save_user_nvgprs_cont | ||
| 385 | |||
| 386 | |||
| 387 | save_user_nvgprs_fault: | ||
| 388 | li r3,11 /* SIGSEGV */ | ||
| 389 | lwz r4,TI_TASK(r12) | ||
| 390 | bl force_sigsegv | ||
| 391 | 340 | ||
| 392 | rlwinm r12,r1,0,0,18 /* current_thread_info() */ | ||
| 393 | lwz r9,TI_FLAGS(r12) | ||
| 394 | b save_user_nvgprs_cont | ||
| 395 | |||
| 396 | #ifdef SHOW_SYSCALLS | 341 | #ifdef SHOW_SYSCALLS |
| 397 | do_show_syscall: | 342 | do_show_syscall: |
| 398 | #ifdef SHOW_SYSCALLS_TASK | 343 | #ifdef SHOW_SYSCALLS_TASK |
| @@ -490,6 +435,14 @@ ppc_clone: | |||
| 490 | stw r0,TRAP(r1) /* register set saved */ | 435 | stw r0,TRAP(r1) /* register set saved */ |
| 491 | b sys_clone | 436 | b sys_clone |
| 492 | 437 | ||
| 438 | .globl ppc_swapcontext | ||
| 439 | ppc_swapcontext: | ||
| 440 | SAVE_NVGPRS(r1) | ||
| 441 | lwz r0,TRAP(r1) | ||
| 442 | rlwinm r0,r0,0,0,30 /* clear LSB to indicate full */ | ||
| 443 | stw r0,TRAP(r1) /* register set saved */ | ||
| 444 | b sys_swapcontext | ||
| 445 | |||
| 493 | /* | 446 | /* |
| 494 | * Top-level page fault handling. | 447 | * Top-level page fault handling. |
| 495 | * This is in assembler because if do_page_fault tells us that | 448 | * This is in assembler because if do_page_fault tells us that |
| @@ -683,7 +636,7 @@ user_exc_return: /* r10 contains MSR_KERNEL here */ | |||
| 683 | /* Check current_thread_info()->flags */ | 636 | /* Check current_thread_info()->flags */ |
| 684 | rlwinm r9,r1,0,0,18 | 637 | rlwinm r9,r1,0,0,18 |
| 685 | lwz r9,TI_FLAGS(r9) | 638 | lwz r9,TI_FLAGS(r9) |
| 686 | andi. r0,r9,(_TIF_SIGPENDING|_TIF_NEED_RESCHED|_TIF_RESTOREALL) | 639 | andi. r0,r9,(_TIF_SIGPENDING|_TIF_RESTORE_SIGMASK|_TIF_NEED_RESCHED) |
| 687 | bne do_work | 640 | bne do_work |
| 688 | 641 | ||
| 689 | restore_user: | 642 | restore_user: |
diff --git a/arch/s390/lib/uaccess.S b/arch/s390/lib/uaccess.S index 88fc94fe6488..5d59e2625048 100644 --- a/arch/s390/lib/uaccess.S +++ b/arch/s390/lib/uaccess.S | |||
| @@ -198,12 +198,12 @@ __strnlen_user_asm: | |||
| 198 | 0: srst %r2,%r1 | 198 | 0: srst %r2,%r1 |
| 199 | jo 0b | 199 | jo 0b |
| 200 | sacf 0 | 200 | sacf 0 |
| 201 | jh 1f # \0 found in string ? | ||
| 202 | ahi %r2,1 # strnlen_user result includes the \0 | 201 | ahi %r2,1 # strnlen_user result includes the \0 |
| 203 | 1: slr %r2,%r3 | 202 | # or return count+1 if \0 not found |
| 203 | slr %r2,%r3 | ||
| 204 | br %r14 | 204 | br %r14 |
| 205 | 2: sacf 0 | 205 | 2: sacf 0 |
| 206 | lhi %r2,-EFAULT | 206 | slr %r2,%r2 # return 0 on exception |
| 207 | br %r14 | 207 | br %r14 |
| 208 | .section __ex_table,"a" | 208 | .section __ex_table,"a" |
| 209 | .long 0b,2b | 209 | .long 0b,2b |
diff --git a/arch/s390/lib/uaccess64.S b/arch/s390/lib/uaccess64.S index 50219786fc7a..19b41a33c230 100644 --- a/arch/s390/lib/uaccess64.S +++ b/arch/s390/lib/uaccess64.S | |||
| @@ -194,12 +194,12 @@ __strnlen_user_asm: | |||
| 194 | 0: srst %r2,%r1 | 194 | 0: srst %r2,%r1 |
| 195 | jo 0b | 195 | jo 0b |
| 196 | sacf 0 | 196 | sacf 0 |
| 197 | jh 1f # \0 found in string ? | ||
| 198 | aghi %r2,1 # strnlen_user result includes the \0 | 197 | aghi %r2,1 # strnlen_user result includes the \0 |
| 199 | 1: slgr %r2,%r3 | 198 | # or return count+1 if \0 not found |
| 199 | slgr %r2,%r3 | ||
| 200 | br %r14 | 200 | br %r14 |
| 201 | 2: sacf 0 | 201 | 2: sacf 0 |
| 202 | lghi %r2,-EFAULT | 202 | slgr %r2,%r2 # return 0 on exception |
| 203 | br %r14 | 203 | br %r14 |
| 204 | .section __ex_table,"a" | 204 | .section __ex_table,"a" |
| 205 | .quad 0b,2b | 205 | .quad 0b,2b |
diff --git a/arch/sparc64/kernel/sys32.S b/arch/sparc64/kernel/sys32.S index 60b59375aa78..c4a1cef4b1e5 100644 --- a/arch/sparc64/kernel/sys32.S +++ b/arch/sparc64/kernel/sys32.S | |||
| @@ -318,7 +318,7 @@ do_sys_recvmsg: /* compat_sys_recvmsg(int, struct compat_msghdr *, unsigned int) | |||
| 318 | nop | 318 | nop |
| 319 | nop | 319 | nop |
| 320 | 320 | ||
| 321 | .section __ex_table | 321 | .section __ex_table,"a" |
| 322 | .align 4 | 322 | .align 4 |
| 323 | .word 1b, __retl_efault, 2b, __retl_efault | 323 | .word 1b, __retl_efault, 2b, __retl_efault |
| 324 | .word 3b, __retl_efault, 4b, __retl_efault | 324 | .word 3b, __retl_efault, 4b, __retl_efault |
diff --git a/arch/sparc64/kernel/una_asm.S b/arch/sparc64/kernel/una_asm.S index 1f5b5b708ce7..be183fe41443 100644 --- a/arch/sparc64/kernel/una_asm.S +++ b/arch/sparc64/kernel/una_asm.S | |||
| @@ -47,7 +47,7 @@ __do_int_store: | |||
| 47 | mov 0, %o0 | 47 | mov 0, %o0 |
| 48 | .size __do_int_store, .-__do_int_store | 48 | .size __do_int_store, .-__do_int_store |
| 49 | 49 | ||
| 50 | .section __ex_table | 50 | .section __ex_table,"a" |
| 51 | .word 4b, __retl_efault | 51 | .word 4b, __retl_efault |
| 52 | .word 5b, __retl_efault | 52 | .word 5b, __retl_efault |
| 53 | .word 6b, __retl_efault | 53 | .word 6b, __retl_efault |
| @@ -129,7 +129,7 @@ do_int_load: | |||
| 129 | mov 0, %o0 | 129 | mov 0, %o0 |
| 130 | .size __do_int_load, .-__do_int_load | 130 | .size __do_int_load, .-__do_int_load |
| 131 | 131 | ||
| 132 | .section __ex_table | 132 | .section __ex_table,"a" |
| 133 | .word 4b, __retl_efault | 133 | .word 4b, __retl_efault |
| 134 | .word 5b, __retl_efault | 134 | .word 5b, __retl_efault |
| 135 | .word 6b, __retl_efault | 135 | .word 6b, __retl_efault |
diff --git a/arch/sparc64/lib/U1copy_from_user.S b/arch/sparc64/lib/U1copy_from_user.S index 93146a81e2d3..3192b0bf4fab 100644 --- a/arch/sparc64/lib/U1copy_from_user.S +++ b/arch/sparc64/lib/U1copy_from_user.S | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | .align 4; \ | 9 | .align 4; \ |
| 10 | 99: retl; \ | 10 | 99: retl; \ |
| 11 | mov 1, %o0; \ | 11 | mov 1, %o0; \ |
| 12 | .section __ex_table; \ | 12 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 13 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 14 | .word 98b, 99b; \ |
| 15 | .text; \ | 15 | .text; \ |
diff --git a/arch/sparc64/lib/U1copy_to_user.S b/arch/sparc64/lib/U1copy_to_user.S index 1fccc521e2bd..d1210ffb0b82 100644 --- a/arch/sparc64/lib/U1copy_to_user.S +++ b/arch/sparc64/lib/U1copy_to_user.S | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | .align 4; \ | 9 | .align 4; \ |
| 10 | 99: retl; \ | 10 | 99: retl; \ |
| 11 | mov 1, %o0; \ | 11 | mov 1, %o0; \ |
| 12 | .section __ex_table; \ | 12 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 13 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 14 | .word 98b, 99b; \ |
| 15 | .text; \ | 15 | .text; \ |
diff --git a/arch/sparc64/lib/U3copy_from_user.S b/arch/sparc64/lib/U3copy_from_user.S index df600b667e48..f5bfc8d9d216 100644 --- a/arch/sparc64/lib/U3copy_from_user.S +++ b/arch/sparc64/lib/U3copy_from_user.S | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | .align 4; \ | 9 | .align 4; \ |
| 10 | 99: retl; \ | 10 | 99: retl; \ |
| 11 | mov 1, %o0; \ | 11 | mov 1, %o0; \ |
| 12 | .section __ex_table; \ | 12 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 13 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 14 | .word 98b, 99b; \ |
| 15 | .text; \ | 15 | .text; \ |
diff --git a/arch/sparc64/lib/U3copy_to_user.S b/arch/sparc64/lib/U3copy_to_user.S index f337f22ed82e..2334f111bb0c 100644 --- a/arch/sparc64/lib/U3copy_to_user.S +++ b/arch/sparc64/lib/U3copy_to_user.S | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | .align 4; \ | 9 | .align 4; \ |
| 10 | 99: retl; \ | 10 | 99: retl; \ |
| 11 | mov 1, %o0; \ | 11 | mov 1, %o0; \ |
| 12 | .section __ex_table; \ | 12 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 13 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 14 | .word 98b, 99b; \ |
| 15 | .text; \ | 15 | .text; \ |
diff --git a/arch/sparc64/lib/bzero.S b/arch/sparc64/lib/bzero.S index 21a933ffb7c2..1d2abcfa4e52 100644 --- a/arch/sparc64/lib/bzero.S +++ b/arch/sparc64/lib/bzero.S | |||
| @@ -92,7 +92,7 @@ __bzero_done: | |||
| 92 | .align 4; \ | 92 | .align 4; \ |
| 93 | 99: retl; \ | 93 | 99: retl; \ |
| 94 | mov %o1, %o0; \ | 94 | mov %o1, %o0; \ |
| 95 | .section __ex_table; \ | 95 | .section __ex_table,"a";\ |
| 96 | .align 4; \ | 96 | .align 4; \ |
| 97 | .word 98b, 99b; \ | 97 | .word 98b, 99b; \ |
| 98 | .text; \ | 98 | .text; \ |
diff --git a/arch/sparc64/lib/copy_in_user.S b/arch/sparc64/lib/copy_in_user.S index 816076c0bc06..650af3f21f78 100644 --- a/arch/sparc64/lib/copy_in_user.S +++ b/arch/sparc64/lib/copy_in_user.S | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | .align 4; \ | 13 | .align 4; \ |
| 14 | 99: retl; \ | 14 | 99: retl; \ |
| 15 | mov 1, %o0; \ | 15 | mov 1, %o0; \ |
| 16 | .section __ex_table; \ | 16 | .section __ex_table,"a";\ |
| 17 | .align 4; \ | 17 | .align 4; \ |
| 18 | .word 98b, 99b; \ | 18 | .word 98b, 99b; \ |
| 19 | .text; \ | 19 | .text; \ |
diff --git a/arch/sparc64/lib/csum_copy_from_user.S b/arch/sparc64/lib/csum_copy_from_user.S index 817ebdae39f8..a22eddbe5dba 100644 --- a/arch/sparc64/lib/csum_copy_from_user.S +++ b/arch/sparc64/lib/csum_copy_from_user.S | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | .align 4; \ | 9 | .align 4; \ |
| 10 | 99: retl; \ | 10 | 99: retl; \ |
| 11 | mov -1, %o0; \ | 11 | mov -1, %o0; \ |
| 12 | .section __ex_table; \ | 12 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 13 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 14 | .word 98b, 99b; \ |
| 15 | .text; \ | 15 | .text; \ |
diff --git a/arch/sparc64/lib/csum_copy_to_user.S b/arch/sparc64/lib/csum_copy_to_user.S index c2f9463ea1e2..d5b12f441f02 100644 --- a/arch/sparc64/lib/csum_copy_to_user.S +++ b/arch/sparc64/lib/csum_copy_to_user.S | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | .align 4; \ | 9 | .align 4; \ |
| 10 | 99: retl; \ | 10 | 99: retl; \ |
| 11 | mov -1, %o0; \ | 11 | mov -1, %o0; \ |
| 12 | .section __ex_table; \ | 12 | .section __ex_table,"a";\ |
| 13 | .align 4; \ | 13 | .align 4; \ |
| 14 | .word 98b, 99b; \ | 14 | .word 98b, 99b; \ |
| 15 | .text; \ | 15 | .text; \ |
diff --git a/arch/sparc64/lib/strlen_user.S b/arch/sparc64/lib/strlen_user.S index 9ed54ba14fc6..114ed111e251 100644 --- a/arch/sparc64/lib/strlen_user.S +++ b/arch/sparc64/lib/strlen_user.S | |||
| @@ -85,7 +85,7 @@ __strnlen_user: | |||
| 85 | retl | 85 | retl |
| 86 | clr %o0 | 86 | clr %o0 |
| 87 | 87 | ||
| 88 | .section __ex_table,#alloc | 88 | .section __ex_table,"a" |
| 89 | .align 4 | 89 | .align 4 |
| 90 | 90 | ||
| 91 | .word 10b, 30b | 91 | .word 10b, 30b |
diff --git a/arch/sparc64/lib/strncpy_from_user.S b/arch/sparc64/lib/strncpy_from_user.S index e1264650ca7a..b2f499f79427 100644 --- a/arch/sparc64/lib/strncpy_from_user.S +++ b/arch/sparc64/lib/strncpy_from_user.S | |||
| @@ -125,7 +125,7 @@ __strncpy_from_user: | |||
| 125 | add %o2, %o3, %o0 | 125 | add %o2, %o3, %o0 |
| 126 | .size __strncpy_from_user, .-__strncpy_from_user | 126 | .size __strncpy_from_user, .-__strncpy_from_user |
| 127 | 127 | ||
| 128 | .section __ex_table,#alloc | 128 | .section __ex_table,"a" |
| 129 | .align 4 | 129 | .align 4 |
| 130 | .word 60b, __retl_efault | 130 | .word 60b, __retl_efault |
| 131 | .word 61b, __retl_efault | 131 | .word 61b, __retl_efault |
diff --git a/arch/sparc64/solaris/entry64.S b/arch/sparc64/solaris/entry64.S index eb314ed23cdb..f170324e8bf2 100644 --- a/arch/sparc64/solaris/entry64.S +++ b/arch/sparc64/solaris/entry64.S | |||
| @@ -217,7 +217,7 @@ solaris_unimplemented: | |||
| 217 | ba,pt %xcc, ret_from_solaris | 217 | ba,pt %xcc, ret_from_solaris |
| 218 | nop | 218 | nop |
| 219 | 219 | ||
| 220 | .section __ex_table,#alloc | 220 | .section __ex_table,"a" |
| 221 | .align 4 | 221 | .align 4 |
| 222 | .word exen, exenf | 222 | .word exen, exenf |
| 223 | 223 | ||
diff --git a/arch/v850/kernel/process.c b/arch/v850/kernel/process.c index eb909937958b..621111ddf907 100644 --- a/arch/v850/kernel/process.c +++ b/arch/v850/kernel/process.c | |||
| @@ -30,6 +30,9 @@ | |||
| 30 | #include <asm/system.h> | 30 | #include <asm/system.h> |
| 31 | #include <asm/pgtable.h> | 31 | #include <asm/pgtable.h> |
| 32 | 32 | ||
| 33 | void (*pm_power_off)(void) = NULL; | ||
| 34 | EXPORT_SYMBOL(pm_power_off); | ||
| 35 | |||
| 33 | extern void ret_from_fork (void); | 36 | extern void ret_from_fork (void); |
| 34 | 37 | ||
| 35 | 38 | ||
diff --git a/arch/x86_64/kernel/machine_kexec.c b/arch/x86_64/kernel/machine_kexec.c index 89fab51e20f4..25ac8a3faae6 100644 --- a/arch/x86_64/kernel/machine_kexec.c +++ b/arch/x86_64/kernel/machine_kexec.c | |||
| @@ -140,7 +140,7 @@ static void load_segments(void) | |||
| 140 | "\tmovl %0,%%ss\n" | 140 | "\tmovl %0,%%ss\n" |
| 141 | "\tmovl %0,%%fs\n" | 141 | "\tmovl %0,%%fs\n" |
| 142 | "\tmovl %0,%%gs\n" | 142 | "\tmovl %0,%%gs\n" |
| 143 | : : "a" (__KERNEL_DS) | 143 | : : "a" (__KERNEL_DS) : "memory" |
| 144 | ); | 144 | ); |
| 145 | } | 145 | } |
| 146 | 146 | ||
diff --git a/arch/xtensa/kernel/process.c b/arch/xtensa/kernel/process.c index f1f596644bfc..64a649eb883f 100644 --- a/arch/xtensa/kernel/process.c +++ b/arch/xtensa/kernel/process.c | |||
| @@ -64,6 +64,9 @@ EXPORT_SYMBOL(init_task); | |||
| 64 | 64 | ||
| 65 | struct task_struct *current_set[NR_CPUS] = {&init_task, }; | 65 | struct task_struct *current_set[NR_CPUS] = {&init_task, }; |
| 66 | 66 | ||
| 67 | void (*pm_power_off)(void) = NULL; | ||
| 68 | EXPORT_SYMBOL(pm_power_off); | ||
| 69 | |||
| 67 | 70 | ||
| 68 | #if XCHAL_CP_NUM > 0 | 71 | #if XCHAL_CP_NUM > 0 |
| 69 | 72 | ||
