diff options
author | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2012-03-20 14:59:50 -0400 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2012-03-20 14:59:50 -0400 |
commit | 44e8ba93cf330f075178e31759100f367313790a (patch) | |
tree | 27956beb159bfb603d672b43cb207690a087dd0a /arch | |
parent | e9fe8a714e450b26f76eaf8832f5b9fe24d00e79 (diff) | |
parent | c16fa4f2ad19908a47c63d8fa436a1178438c7e7 (diff) |
Merge commit 'v3.3' into fbdev-next
Diffstat (limited to 'arch')
78 files changed, 862 insertions, 2640 deletions
diff --git a/arch/alpha/include/asm/futex.h b/arch/alpha/include/asm/futex.h index e8a761aee088..f939794363ac 100644 --- a/arch/alpha/include/asm/futex.h +++ b/arch/alpha/include/asm/futex.h | |||
@@ -108,7 +108,7 @@ futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr, | |||
108 | " lda $31,3b-2b(%0)\n" | 108 | " lda $31,3b-2b(%0)\n" |
109 | " .previous\n" | 109 | " .previous\n" |
110 | : "+r"(ret), "=&r"(prev), "=&r"(cmp) | 110 | : "+r"(ret), "=&r"(prev), "=&r"(cmp) |
111 | : "r"(uaddr), "r"((long)oldval), "r"(newval) | 111 | : "r"(uaddr), "r"((long)(int)oldval), "r"(newval) |
112 | : "memory"); | 112 | : "memory"); |
113 | 113 | ||
114 | *uval = prev; | 114 | *uval = prev; |
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index a48aecc17eac..dfb0312f4e73 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -1280,7 +1280,7 @@ config ARM_ERRATA_743622 | |||
1280 | depends on CPU_V7 | 1280 | depends on CPU_V7 |
1281 | help | 1281 | help |
1282 | This option enables the workaround for the 743622 Cortex-A9 | 1282 | This option enables the workaround for the 743622 Cortex-A9 |
1283 | (r2p0..r2p2) erratum. Under very rare conditions, a faulty | 1283 | (r2p*) erratum. Under very rare conditions, a faulty |
1284 | optimisation in the Cortex-A9 Store Buffer may lead to data | 1284 | optimisation in the Cortex-A9 Store Buffer may lead to data |
1285 | corruption. This workaround sets a specific bit in the diagnostic | 1285 | corruption. This workaround sets a specific bit in the diagnostic |
1286 | register of the Cortex-A9 which disables the Store Buffer | 1286 | register of the Cortex-A9 which disables the Store Buffer |
diff --git a/arch/arm/boot/.gitignore b/arch/arm/boot/.gitignore index ce1c5ff746e7..3c79f85975aa 100644 --- a/arch/arm/boot/.gitignore +++ b/arch/arm/boot/.gitignore | |||
@@ -3,3 +3,4 @@ zImage | |||
3 | xipImage | 3 | xipImage |
4 | bootpImage | 4 | bootpImage |
5 | uImage | 5 | uImage |
6 | *.dtb | ||
diff --git a/arch/arm/include/asm/pmu.h b/arch/arm/include/asm/pmu.h index b5a5be2536c1..90114faa9f3c 100644 --- a/arch/arm/include/asm/pmu.h +++ b/arch/arm/include/asm/pmu.h | |||
@@ -134,7 +134,7 @@ int __init armpmu_register(struct arm_pmu *armpmu, char *name, int type); | |||
134 | 134 | ||
135 | u64 armpmu_event_update(struct perf_event *event, | 135 | u64 armpmu_event_update(struct perf_event *event, |
136 | struct hw_perf_event *hwc, | 136 | struct hw_perf_event *hwc, |
137 | int idx, int overflow); | 137 | int idx); |
138 | 138 | ||
139 | int armpmu_event_set_period(struct perf_event *event, | 139 | int armpmu_event_set_period(struct perf_event *event, |
140 | struct hw_perf_event *hwc, | 140 | struct hw_perf_event *hwc, |
diff --git a/arch/arm/kernel/ecard.c b/arch/arm/kernel/ecard.c index 4dd0edab6a65..1651d4950744 100644 --- a/arch/arm/kernel/ecard.c +++ b/arch/arm/kernel/ecard.c | |||
@@ -242,6 +242,7 @@ static void ecard_init_pgtables(struct mm_struct *mm) | |||
242 | 242 | ||
243 | memcpy(dst_pgd, src_pgd, sizeof(pgd_t) * (EASI_SIZE / PGDIR_SIZE)); | 243 | memcpy(dst_pgd, src_pgd, sizeof(pgd_t) * (EASI_SIZE / PGDIR_SIZE)); |
244 | 244 | ||
245 | vma.vm_flags = VM_EXEC; | ||
245 | vma.vm_mm = mm; | 246 | vma.vm_mm = mm; |
246 | 247 | ||
247 | flush_tlb_range(&vma, IO_START, IO_START + IO_SIZE); | 248 | flush_tlb_range(&vma, IO_START, IO_START + IO_SIZE); |
diff --git a/arch/arm/kernel/perf_event.c b/arch/arm/kernel/perf_event.c index 5bb91bf3d47f..b2abfa18f137 100644 --- a/arch/arm/kernel/perf_event.c +++ b/arch/arm/kernel/perf_event.c | |||
@@ -180,7 +180,7 @@ armpmu_event_set_period(struct perf_event *event, | |||
180 | u64 | 180 | u64 |
181 | armpmu_event_update(struct perf_event *event, | 181 | armpmu_event_update(struct perf_event *event, |
182 | struct hw_perf_event *hwc, | 182 | struct hw_perf_event *hwc, |
183 | int idx, int overflow) | 183 | int idx) |
184 | { | 184 | { |
185 | struct arm_pmu *armpmu = to_arm_pmu(event->pmu); | 185 | struct arm_pmu *armpmu = to_arm_pmu(event->pmu); |
186 | u64 delta, prev_raw_count, new_raw_count; | 186 | u64 delta, prev_raw_count, new_raw_count; |
@@ -193,13 +193,7 @@ again: | |||
193 | new_raw_count) != prev_raw_count) | 193 | new_raw_count) != prev_raw_count) |
194 | goto again; | 194 | goto again; |
195 | 195 | ||
196 | new_raw_count &= armpmu->max_period; | 196 | delta = (new_raw_count - prev_raw_count) & armpmu->max_period; |
197 | prev_raw_count &= armpmu->max_period; | ||
198 | |||
199 | if (overflow) | ||
200 | delta = armpmu->max_period - prev_raw_count + new_raw_count + 1; | ||
201 | else | ||
202 | delta = new_raw_count - prev_raw_count; | ||
203 | 197 | ||
204 | local64_add(delta, &event->count); | 198 | local64_add(delta, &event->count); |
205 | local64_sub(delta, &hwc->period_left); | 199 | local64_sub(delta, &hwc->period_left); |
@@ -216,7 +210,7 @@ armpmu_read(struct perf_event *event) | |||
216 | if (hwc->idx < 0) | 210 | if (hwc->idx < 0) |
217 | return; | 211 | return; |
218 | 212 | ||
219 | armpmu_event_update(event, hwc, hwc->idx, 0); | 213 | armpmu_event_update(event, hwc, hwc->idx); |
220 | } | 214 | } |
221 | 215 | ||
222 | static void | 216 | static void |
@@ -232,7 +226,7 @@ armpmu_stop(struct perf_event *event, int flags) | |||
232 | if (!(hwc->state & PERF_HES_STOPPED)) { | 226 | if (!(hwc->state & PERF_HES_STOPPED)) { |
233 | armpmu->disable(hwc, hwc->idx); | 227 | armpmu->disable(hwc, hwc->idx); |
234 | barrier(); /* why? */ | 228 | barrier(); /* why? */ |
235 | armpmu_event_update(event, hwc, hwc->idx, 0); | 229 | armpmu_event_update(event, hwc, hwc->idx); |
236 | hwc->state |= PERF_HES_STOPPED | PERF_HES_UPTODATE; | 230 | hwc->state |= PERF_HES_STOPPED | PERF_HES_UPTODATE; |
237 | } | 231 | } |
238 | } | 232 | } |
@@ -518,7 +512,13 @@ __hw_perf_event_init(struct perf_event *event) | |||
518 | hwc->config_base |= (unsigned long)mapping; | 512 | hwc->config_base |= (unsigned long)mapping; |
519 | 513 | ||
520 | if (!hwc->sample_period) { | 514 | if (!hwc->sample_period) { |
521 | hwc->sample_period = armpmu->max_period; | 515 | /* |
516 | * For non-sampling runs, limit the sample_period to half | ||
517 | * of the counter width. That way, the new counter value | ||
518 | * is far less likely to overtake the previous one unless | ||
519 | * you have some serious IRQ latency issues. | ||
520 | */ | ||
521 | hwc->sample_period = armpmu->max_period >> 1; | ||
522 | hwc->last_period = hwc->sample_period; | 522 | hwc->last_period = hwc->sample_period; |
523 | local64_set(&hwc->period_left, hwc->sample_period); | 523 | local64_set(&hwc->period_left, hwc->sample_period); |
524 | } | 524 | } |
@@ -680,6 +680,28 @@ static void __init cpu_pmu_init(struct arm_pmu *armpmu) | |||
680 | } | 680 | } |
681 | 681 | ||
682 | /* | 682 | /* |
683 | * PMU hardware loses all context when a CPU goes offline. | ||
684 | * When a CPU is hotplugged back in, since some hardware registers are | ||
685 | * UNKNOWN at reset, the PMU must be explicitly reset to avoid reading | ||
686 | * junk values out of them. | ||
687 | */ | ||
688 | static int __cpuinit pmu_cpu_notify(struct notifier_block *b, | ||
689 | unsigned long action, void *hcpu) | ||
690 | { | ||
691 | if ((action & ~CPU_TASKS_FROZEN) != CPU_STARTING) | ||
692 | return NOTIFY_DONE; | ||
693 | |||
694 | if (cpu_pmu && cpu_pmu->reset) | ||
695 | cpu_pmu->reset(NULL); | ||
696 | |||
697 | return NOTIFY_OK; | ||
698 | } | ||
699 | |||
700 | static struct notifier_block __cpuinitdata pmu_cpu_notifier = { | ||
701 | .notifier_call = pmu_cpu_notify, | ||
702 | }; | ||
703 | |||
704 | /* | ||
683 | * CPU PMU identification and registration. | 705 | * CPU PMU identification and registration. |
684 | */ | 706 | */ |
685 | static int __init | 707 | static int __init |
@@ -730,6 +752,7 @@ init_hw_perf_events(void) | |||
730 | pr_info("enabled with %s PMU driver, %d counters available\n", | 752 | pr_info("enabled with %s PMU driver, %d counters available\n", |
731 | cpu_pmu->name, cpu_pmu->num_events); | 753 | cpu_pmu->name, cpu_pmu->num_events); |
732 | cpu_pmu_init(cpu_pmu); | 754 | cpu_pmu_init(cpu_pmu); |
755 | register_cpu_notifier(&pmu_cpu_notifier); | ||
733 | armpmu_register(cpu_pmu, "cpu", PERF_TYPE_RAW); | 756 | armpmu_register(cpu_pmu, "cpu", PERF_TYPE_RAW); |
734 | } else { | 757 | } else { |
735 | pr_info("no hardware support available\n"); | 758 | pr_info("no hardware support available\n"); |
diff --git a/arch/arm/kernel/perf_event_v6.c b/arch/arm/kernel/perf_event_v6.c index 533be9930ec2..b78af0cc6ef3 100644 --- a/arch/arm/kernel/perf_event_v6.c +++ b/arch/arm/kernel/perf_event_v6.c | |||
@@ -467,23 +467,6 @@ armv6pmu_enable_event(struct hw_perf_event *hwc, | |||
467 | raw_spin_unlock_irqrestore(&events->pmu_lock, flags); | 467 | raw_spin_unlock_irqrestore(&events->pmu_lock, flags); |
468 | } | 468 | } |
469 | 469 | ||
470 | static int counter_is_active(unsigned long pmcr, int idx) | ||
471 | { | ||
472 | unsigned long mask = 0; | ||
473 | if (idx == ARMV6_CYCLE_COUNTER) | ||
474 | mask = ARMV6_PMCR_CCOUNT_IEN; | ||
475 | else if (idx == ARMV6_COUNTER0) | ||
476 | mask = ARMV6_PMCR_COUNT0_IEN; | ||
477 | else if (idx == ARMV6_COUNTER1) | ||
478 | mask = ARMV6_PMCR_COUNT1_IEN; | ||
479 | |||
480 | if (mask) | ||
481 | return pmcr & mask; | ||
482 | |||
483 | WARN_ONCE(1, "invalid counter number (%d)\n", idx); | ||
484 | return 0; | ||
485 | } | ||
486 | |||
487 | static irqreturn_t | 470 | static irqreturn_t |
488 | armv6pmu_handle_irq(int irq_num, | 471 | armv6pmu_handle_irq(int irq_num, |
489 | void *dev) | 472 | void *dev) |
@@ -513,7 +496,8 @@ armv6pmu_handle_irq(int irq_num, | |||
513 | struct perf_event *event = cpuc->events[idx]; | 496 | struct perf_event *event = cpuc->events[idx]; |
514 | struct hw_perf_event *hwc; | 497 | struct hw_perf_event *hwc; |
515 | 498 | ||
516 | if (!counter_is_active(pmcr, idx)) | 499 | /* Ignore if we don't have an event. */ |
500 | if (!event) | ||
517 | continue; | 501 | continue; |
518 | 502 | ||
519 | /* | 503 | /* |
@@ -524,7 +508,7 @@ armv6pmu_handle_irq(int irq_num, | |||
524 | continue; | 508 | continue; |
525 | 509 | ||
526 | hwc = &event->hw; | 510 | hwc = &event->hw; |
527 | armpmu_event_update(event, hwc, idx, 1); | 511 | armpmu_event_update(event, hwc, idx); |
528 | data.period = event->hw.last_period; | 512 | data.period = event->hw.last_period; |
529 | if (!armpmu_event_set_period(event, hwc, idx)) | 513 | if (!armpmu_event_set_period(event, hwc, idx)) |
530 | continue; | 514 | continue; |
diff --git a/arch/arm/kernel/perf_event_v7.c b/arch/arm/kernel/perf_event_v7.c index 6933244c68f9..4d7095af2ab3 100644 --- a/arch/arm/kernel/perf_event_v7.c +++ b/arch/arm/kernel/perf_event_v7.c | |||
@@ -809,6 +809,11 @@ static inline int armv7_pmnc_disable_intens(int idx) | |||
809 | 809 | ||
810 | counter = ARMV7_IDX_TO_COUNTER(idx); | 810 | counter = ARMV7_IDX_TO_COUNTER(idx); |
811 | asm volatile("mcr p15, 0, %0, c9, c14, 2" : : "r" (BIT(counter))); | 811 | asm volatile("mcr p15, 0, %0, c9, c14, 2" : : "r" (BIT(counter))); |
812 | isb(); | ||
813 | /* Clear the overflow flag in case an interrupt is pending. */ | ||
814 | asm volatile("mcr p15, 0, %0, c9, c12, 3" : : "r" (BIT(counter))); | ||
815 | isb(); | ||
816 | |||
812 | return idx; | 817 | return idx; |
813 | } | 818 | } |
814 | 819 | ||
@@ -955,6 +960,10 @@ static irqreturn_t armv7pmu_handle_irq(int irq_num, void *dev) | |||
955 | struct perf_event *event = cpuc->events[idx]; | 960 | struct perf_event *event = cpuc->events[idx]; |
956 | struct hw_perf_event *hwc; | 961 | struct hw_perf_event *hwc; |
957 | 962 | ||
963 | /* Ignore if we don't have an event. */ | ||
964 | if (!event) | ||
965 | continue; | ||
966 | |||
958 | /* | 967 | /* |
959 | * We have a single interrupt for all counters. Check that | 968 | * We have a single interrupt for all counters. Check that |
960 | * each counter has overflowed before we process it. | 969 | * each counter has overflowed before we process it. |
@@ -963,7 +972,7 @@ static irqreturn_t armv7pmu_handle_irq(int irq_num, void *dev) | |||
963 | continue; | 972 | continue; |
964 | 973 | ||
965 | hwc = &event->hw; | 974 | hwc = &event->hw; |
966 | armpmu_event_update(event, hwc, idx, 1); | 975 | armpmu_event_update(event, hwc, idx); |
967 | data.period = event->hw.last_period; | 976 | data.period = event->hw.last_period; |
968 | if (!armpmu_event_set_period(event, hwc, idx)) | 977 | if (!armpmu_event_set_period(event, hwc, idx)) |
969 | continue; | 978 | continue; |
diff --git a/arch/arm/kernel/perf_event_xscale.c b/arch/arm/kernel/perf_event_xscale.c index 3b99d8269829..71a21e6712f5 100644 --- a/arch/arm/kernel/perf_event_xscale.c +++ b/arch/arm/kernel/perf_event_xscale.c | |||
@@ -255,11 +255,14 @@ xscale1pmu_handle_irq(int irq_num, void *dev) | |||
255 | struct perf_event *event = cpuc->events[idx]; | 255 | struct perf_event *event = cpuc->events[idx]; |
256 | struct hw_perf_event *hwc; | 256 | struct hw_perf_event *hwc; |
257 | 257 | ||
258 | if (!event) | ||
259 | continue; | ||
260 | |||
258 | if (!xscale1_pmnc_counter_has_overflowed(pmnc, idx)) | 261 | if (!xscale1_pmnc_counter_has_overflowed(pmnc, idx)) |
259 | continue; | 262 | continue; |
260 | 263 | ||
261 | hwc = &event->hw; | 264 | hwc = &event->hw; |
262 | armpmu_event_update(event, hwc, idx, 1); | 265 | armpmu_event_update(event, hwc, idx); |
263 | data.period = event->hw.last_period; | 266 | data.period = event->hw.last_period; |
264 | if (!armpmu_event_set_period(event, hwc, idx)) | 267 | if (!armpmu_event_set_period(event, hwc, idx)) |
265 | continue; | 268 | continue; |
@@ -592,11 +595,14 @@ xscale2pmu_handle_irq(int irq_num, void *dev) | |||
592 | struct perf_event *event = cpuc->events[idx]; | 595 | struct perf_event *event = cpuc->events[idx]; |
593 | struct hw_perf_event *hwc; | 596 | struct hw_perf_event *hwc; |
594 | 597 | ||
595 | if (!xscale2_pmnc_counter_has_overflowed(pmnc, idx)) | 598 | if (!event) |
599 | continue; | ||
600 | |||
601 | if (!xscale2_pmnc_counter_has_overflowed(of_flags, idx)) | ||
596 | continue; | 602 | continue; |
597 | 603 | ||
598 | hwc = &event->hw; | 604 | hwc = &event->hw; |
599 | armpmu_event_update(event, hwc, idx, 1); | 605 | armpmu_event_update(event, hwc, idx); |
600 | data.period = event->hw.last_period; | 606 | data.period = event->hw.last_period; |
601 | if (!armpmu_event_set_period(event, hwc, idx)) | 607 | if (!armpmu_event_set_period(event, hwc, idx)) |
602 | continue; | 608 | continue; |
@@ -663,7 +669,7 @@ xscale2pmu_enable_event(struct hw_perf_event *hwc, int idx) | |||
663 | static void | 669 | static void |
664 | xscale2pmu_disable_event(struct hw_perf_event *hwc, int idx) | 670 | xscale2pmu_disable_event(struct hw_perf_event *hwc, int idx) |
665 | { | 671 | { |
666 | unsigned long flags, ien, evtsel; | 672 | unsigned long flags, ien, evtsel, of_flags; |
667 | struct pmu_hw_events *events = cpu_pmu->get_hw_events(); | 673 | struct pmu_hw_events *events = cpu_pmu->get_hw_events(); |
668 | 674 | ||
669 | ien = xscale2pmu_read_int_enable(); | 675 | ien = xscale2pmu_read_int_enable(); |
@@ -672,26 +678,31 @@ xscale2pmu_disable_event(struct hw_perf_event *hwc, int idx) | |||
672 | switch (idx) { | 678 | switch (idx) { |
673 | case XSCALE_CYCLE_COUNTER: | 679 | case XSCALE_CYCLE_COUNTER: |
674 | ien &= ~XSCALE2_CCOUNT_INT_EN; | 680 | ien &= ~XSCALE2_CCOUNT_INT_EN; |
681 | of_flags = XSCALE2_CCOUNT_OVERFLOW; | ||
675 | break; | 682 | break; |
676 | case XSCALE_COUNTER0: | 683 | case XSCALE_COUNTER0: |
677 | ien &= ~XSCALE2_COUNT0_INT_EN; | 684 | ien &= ~XSCALE2_COUNT0_INT_EN; |
678 | evtsel &= ~XSCALE2_COUNT0_EVT_MASK; | 685 | evtsel &= ~XSCALE2_COUNT0_EVT_MASK; |
679 | evtsel |= XSCALE_PERFCTR_UNUSED << XSCALE2_COUNT0_EVT_SHFT; | 686 | evtsel |= XSCALE_PERFCTR_UNUSED << XSCALE2_COUNT0_EVT_SHFT; |
687 | of_flags = XSCALE2_COUNT0_OVERFLOW; | ||
680 | break; | 688 | break; |
681 | case XSCALE_COUNTER1: | 689 | case XSCALE_COUNTER1: |
682 | ien &= ~XSCALE2_COUNT1_INT_EN; | 690 | ien &= ~XSCALE2_COUNT1_INT_EN; |
683 | evtsel &= ~XSCALE2_COUNT1_EVT_MASK; | 691 | evtsel &= ~XSCALE2_COUNT1_EVT_MASK; |
684 | evtsel |= XSCALE_PERFCTR_UNUSED << XSCALE2_COUNT1_EVT_SHFT; | 692 | evtsel |= XSCALE_PERFCTR_UNUSED << XSCALE2_COUNT1_EVT_SHFT; |
693 | of_flags = XSCALE2_COUNT1_OVERFLOW; | ||
685 | break; | 694 | break; |
686 | case XSCALE_COUNTER2: | 695 | case XSCALE_COUNTER2: |
687 | ien &= ~XSCALE2_COUNT2_INT_EN; | 696 | ien &= ~XSCALE2_COUNT2_INT_EN; |
688 | evtsel &= ~XSCALE2_COUNT2_EVT_MASK; | 697 | evtsel &= ~XSCALE2_COUNT2_EVT_MASK; |
689 | evtsel |= XSCALE_PERFCTR_UNUSED << XSCALE2_COUNT2_EVT_SHFT; | 698 | evtsel |= XSCALE_PERFCTR_UNUSED << XSCALE2_COUNT2_EVT_SHFT; |
699 | of_flags = XSCALE2_COUNT2_OVERFLOW; | ||
690 | break; | 700 | break; |
691 | case XSCALE_COUNTER3: | 701 | case XSCALE_COUNTER3: |
692 | ien &= ~XSCALE2_COUNT3_INT_EN; | 702 | ien &= ~XSCALE2_COUNT3_INT_EN; |
693 | evtsel &= ~XSCALE2_COUNT3_EVT_MASK; | 703 | evtsel &= ~XSCALE2_COUNT3_EVT_MASK; |
694 | evtsel |= XSCALE_PERFCTR_UNUSED << XSCALE2_COUNT3_EVT_SHFT; | 704 | evtsel |= XSCALE_PERFCTR_UNUSED << XSCALE2_COUNT3_EVT_SHFT; |
705 | of_flags = XSCALE2_COUNT3_OVERFLOW; | ||
695 | break; | 706 | break; |
696 | default: | 707 | default: |
697 | WARN_ONCE(1, "invalid counter number (%d)\n", idx); | 708 | WARN_ONCE(1, "invalid counter number (%d)\n", idx); |
@@ -701,6 +712,7 @@ xscale2pmu_disable_event(struct hw_perf_event *hwc, int idx) | |||
701 | raw_spin_lock_irqsave(&events->pmu_lock, flags); | 712 | raw_spin_lock_irqsave(&events->pmu_lock, flags); |
702 | xscale2pmu_write_event_select(evtsel); | 713 | xscale2pmu_write_event_select(evtsel); |
703 | xscale2pmu_write_int_enable(ien); | 714 | xscale2pmu_write_int_enable(ien); |
715 | xscale2pmu_write_overflow_flags(of_flags); | ||
704 | raw_spin_unlock_irqrestore(&events->pmu_lock, flags); | 716 | raw_spin_unlock_irqrestore(&events->pmu_lock, flags); |
705 | } | 717 | } |
706 | 718 | ||
diff --git a/arch/arm/mach-at91/at91sam9g45_devices.c b/arch/arm/mach-at91/at91sam9g45_devices.c index b7582dd10dc3..96e2adcd5a84 100644 --- a/arch/arm/mach-at91/at91sam9g45_devices.c +++ b/arch/arm/mach-at91/at91sam9g45_devices.c | |||
@@ -38,10 +38,6 @@ | |||
38 | #if defined(CONFIG_AT_HDMAC) || defined(CONFIG_AT_HDMAC_MODULE) | 38 | #if defined(CONFIG_AT_HDMAC) || defined(CONFIG_AT_HDMAC_MODULE) |
39 | static u64 hdmac_dmamask = DMA_BIT_MASK(32); | 39 | static u64 hdmac_dmamask = DMA_BIT_MASK(32); |
40 | 40 | ||
41 | static struct at_dma_platform_data atdma_pdata = { | ||
42 | .nr_channels = 8, | ||
43 | }; | ||
44 | |||
45 | static struct resource hdmac_resources[] = { | 41 | static struct resource hdmac_resources[] = { |
46 | [0] = { | 42 | [0] = { |
47 | .start = AT91SAM9G45_BASE_DMA, | 43 | .start = AT91SAM9G45_BASE_DMA, |
@@ -56,12 +52,11 @@ static struct resource hdmac_resources[] = { | |||
56 | }; | 52 | }; |
57 | 53 | ||
58 | static struct platform_device at_hdmac_device = { | 54 | static struct platform_device at_hdmac_device = { |
59 | .name = "at_hdmac", | 55 | .name = "at91sam9g45_dma", |
60 | .id = -1, | 56 | .id = -1, |
61 | .dev = { | 57 | .dev = { |
62 | .dma_mask = &hdmac_dmamask, | 58 | .dma_mask = &hdmac_dmamask, |
63 | .coherent_dma_mask = DMA_BIT_MASK(32), | 59 | .coherent_dma_mask = DMA_BIT_MASK(32), |
64 | .platform_data = &atdma_pdata, | ||
65 | }, | 60 | }, |
66 | .resource = hdmac_resources, | 61 | .resource = hdmac_resources, |
67 | .num_resources = ARRAY_SIZE(hdmac_resources), | 62 | .num_resources = ARRAY_SIZE(hdmac_resources), |
@@ -69,9 +64,15 @@ static struct platform_device at_hdmac_device = { | |||
69 | 64 | ||
70 | void __init at91_add_device_hdmac(void) | 65 | void __init at91_add_device_hdmac(void) |
71 | { | 66 | { |
72 | dma_cap_set(DMA_MEMCPY, atdma_pdata.cap_mask); | 67 | #if defined(CONFIG_OF) |
73 | dma_cap_set(DMA_SLAVE, atdma_pdata.cap_mask); | 68 | struct device_node *of_node = |
74 | platform_device_register(&at_hdmac_device); | 69 | of_find_node_by_name(NULL, "dma-controller"); |
70 | |||
71 | if (of_node) | ||
72 | of_node_put(of_node); | ||
73 | else | ||
74 | #endif | ||
75 | platform_device_register(&at_hdmac_device); | ||
75 | } | 76 | } |
76 | #else | 77 | #else |
77 | void __init at91_add_device_hdmac(void) {} | 78 | void __init at91_add_device_hdmac(void) {} |
diff --git a/arch/arm/mach-at91/at91sam9rl_devices.c b/arch/arm/mach-at91/at91sam9rl_devices.c index 61908dce9784..9be71c11d0f0 100644 --- a/arch/arm/mach-at91/at91sam9rl_devices.c +++ b/arch/arm/mach-at91/at91sam9rl_devices.c | |||
@@ -33,10 +33,6 @@ | |||
33 | #if defined(CONFIG_AT_HDMAC) || defined(CONFIG_AT_HDMAC_MODULE) | 33 | #if defined(CONFIG_AT_HDMAC) || defined(CONFIG_AT_HDMAC_MODULE) |
34 | static u64 hdmac_dmamask = DMA_BIT_MASK(32); | 34 | static u64 hdmac_dmamask = DMA_BIT_MASK(32); |
35 | 35 | ||
36 | static struct at_dma_platform_data atdma_pdata = { | ||
37 | .nr_channels = 2, | ||
38 | }; | ||
39 | |||
40 | static struct resource hdmac_resources[] = { | 36 | static struct resource hdmac_resources[] = { |
41 | [0] = { | 37 | [0] = { |
42 | .start = AT91SAM9RL_BASE_DMA, | 38 | .start = AT91SAM9RL_BASE_DMA, |
@@ -51,12 +47,11 @@ static struct resource hdmac_resources[] = { | |||
51 | }; | 47 | }; |
52 | 48 | ||
53 | static struct platform_device at_hdmac_device = { | 49 | static struct platform_device at_hdmac_device = { |
54 | .name = "at_hdmac", | 50 | .name = "at91sam9rl_dma", |
55 | .id = -1, | 51 | .id = -1, |
56 | .dev = { | 52 | .dev = { |
57 | .dma_mask = &hdmac_dmamask, | 53 | .dma_mask = &hdmac_dmamask, |
58 | .coherent_dma_mask = DMA_BIT_MASK(32), | 54 | .coherent_dma_mask = DMA_BIT_MASK(32), |
59 | .platform_data = &atdma_pdata, | ||
60 | }, | 55 | }, |
61 | .resource = hdmac_resources, | 56 | .resource = hdmac_resources, |
62 | .num_resources = ARRAY_SIZE(hdmac_resources), | 57 | .num_resources = ARRAY_SIZE(hdmac_resources), |
@@ -64,7 +59,6 @@ static struct platform_device at_hdmac_device = { | |||
64 | 59 | ||
65 | void __init at91_add_device_hdmac(void) | 60 | void __init at91_add_device_hdmac(void) |
66 | { | 61 | { |
67 | dma_cap_set(DMA_MEMCPY, atdma_pdata.cap_mask); | ||
68 | platform_device_register(&at_hdmac_device); | 62 | platform_device_register(&at_hdmac_device); |
69 | } | 63 | } |
70 | #else | 64 | #else |
diff --git a/arch/arm/mach-ep93xx/vision_ep9307.c b/arch/arm/mach-ep93xx/vision_ep9307.c index d5fb44f16d31..d67d0b4feb6f 100644 --- a/arch/arm/mach-ep93xx/vision_ep9307.c +++ b/arch/arm/mach-ep93xx/vision_ep9307.c | |||
@@ -34,6 +34,7 @@ | |||
34 | #include <mach/ep93xx_spi.h> | 34 | #include <mach/ep93xx_spi.h> |
35 | #include <mach/gpio-ep93xx.h> | 35 | #include <mach/gpio-ep93xx.h> |
36 | 36 | ||
37 | #include <asm/hardware/vic.h> | ||
37 | #include <asm/mach-types.h> | 38 | #include <asm/mach-types.h> |
38 | #include <asm/mach/map.h> | 39 | #include <asm/mach/map.h> |
39 | #include <asm/mach/arch.h> | 40 | #include <asm/mach/arch.h> |
@@ -361,6 +362,7 @@ MACHINE_START(VISION_EP9307, "Vision Engraving Systems EP9307") | |||
361 | .atag_offset = 0x100, | 362 | .atag_offset = 0x100, |
362 | .map_io = vision_map_io, | 363 | .map_io = vision_map_io, |
363 | .init_irq = ep93xx_init_irq, | 364 | .init_irq = ep93xx_init_irq, |
365 | .handle_irq = vic_handle_irq, | ||
364 | .timer = &ep93xx_timer, | 366 | .timer = &ep93xx_timer, |
365 | .init_machine = vision_init_machine, | 367 | .init_machine = vision_init_machine, |
366 | .restart = ep93xx_restart, | 368 | .restart = ep93xx_restart, |
diff --git a/arch/arm/mach-exynos/mach-universal_c210.c b/arch/arm/mach-exynos/mach-universal_c210.c index 0fc65ffde8ff..38939956c34f 100644 --- a/arch/arm/mach-exynos/mach-universal_c210.c +++ b/arch/arm/mach-exynos/mach-universal_c210.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/i2c.h> | 13 | #include <linux/i2c.h> |
14 | #include <linux/gpio_keys.h> | 14 | #include <linux/gpio_keys.h> |
15 | #include <linux/gpio.h> | 15 | #include <linux/gpio.h> |
16 | #include <linux/interrupt.h> | ||
16 | #include <linux/fb.h> | 17 | #include <linux/fb.h> |
17 | #include <linux/mfd/max8998.h> | 18 | #include <linux/mfd/max8998.h> |
18 | #include <linux/regulator/machine.h> | 19 | #include <linux/regulator/machine.h> |
@@ -595,6 +596,7 @@ static struct mxt_platform_data qt602240_platform_data = { | |||
595 | .threshold = 0x28, | 596 | .threshold = 0x28, |
596 | .voltage = 2800000, /* 2.8V */ | 597 | .voltage = 2800000, /* 2.8V */ |
597 | .orient = MXT_DIAGONAL, | 598 | .orient = MXT_DIAGONAL, |
599 | .irqflags = IRQF_TRIGGER_FALLING, | ||
598 | }; | 600 | }; |
599 | 601 | ||
600 | static struct i2c_board_info i2c3_devs[] __initdata = { | 602 | static struct i2c_board_info i2c3_devs[] __initdata = { |
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index 6c5826605eae..719ee423abe2 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c | |||
@@ -343,6 +343,7 @@ static void __init omap3_check_revision(const char **cpu_rev) | |||
343 | case 0xb944: | 343 | case 0xb944: |
344 | omap_revision = AM335X_REV_ES1_0; | 344 | omap_revision = AM335X_REV_ES1_0; |
345 | *cpu_rev = "1.0"; | 345 | *cpu_rev = "1.0"; |
346 | break; | ||
346 | case 0xb8f2: | 347 | case 0xb8f2: |
347 | switch (rev) { | 348 | switch (rev) { |
348 | case 0: | 349 | case 0: |
diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c index 2cc1aa004b94..415a6f1cf419 100644 --- a/arch/arm/mach-omap2/mailbox.c +++ b/arch/arm/mach-omap2/mailbox.c | |||
@@ -420,8 +420,7 @@ static void __exit omap2_mbox_exit(void) | |||
420 | platform_driver_unregister(&omap2_mbox_driver); | 420 | platform_driver_unregister(&omap2_mbox_driver); |
421 | } | 421 | } |
422 | 422 | ||
423 | /* must be ready before omap3isp is probed */ | 423 | module_init(omap2_mbox_init); |
424 | subsys_initcall(omap2_mbox_init); | ||
425 | module_exit(omap2_mbox_exit); | 424 | module_exit(omap2_mbox_exit); |
426 | 425 | ||
427 | MODULE_LICENSE("GPL v2"); | 426 | MODULE_LICENSE("GPL v2"); |
diff --git a/arch/arm/mach-omap2/omap-iommu.c b/arch/arm/mach-omap2/omap-iommu.c index b8822048e409..ac49384d0285 100644 --- a/arch/arm/mach-omap2/omap-iommu.c +++ b/arch/arm/mach-omap2/omap-iommu.c | |||
@@ -150,7 +150,8 @@ err_out: | |||
150 | platform_device_put(omap_iommu_pdev[i]); | 150 | platform_device_put(omap_iommu_pdev[i]); |
151 | return err; | 151 | return err; |
152 | } | 152 | } |
153 | module_init(omap_iommu_init); | 153 | /* must be ready before omap3isp is probed */ |
154 | subsys_initcall(omap_iommu_init); | ||
154 | 155 | ||
155 | static void __exit omap_iommu_exit(void) | 156 | static void __exit omap_iommu_exit(void) |
156 | { | 157 | { |
diff --git a/arch/arm/mach-omap2/omap4-common.c b/arch/arm/mach-omap2/omap4-common.c index ebc595091312..70de277f5c15 100644 --- a/arch/arm/mach-omap2/omap4-common.c +++ b/arch/arm/mach-omap2/omap4-common.c | |||
@@ -31,6 +31,7 @@ | |||
31 | 31 | ||
32 | #include "common.h" | 32 | #include "common.h" |
33 | #include "omap4-sar-layout.h" | 33 | #include "omap4-sar-layout.h" |
34 | #include <linux/export.h> | ||
34 | 35 | ||
35 | #ifdef CONFIG_CACHE_L2X0 | 36 | #ifdef CONFIG_CACHE_L2X0 |
36 | static void __iomem *l2cache_base; | 37 | static void __iomem *l2cache_base; |
@@ -55,6 +56,7 @@ void omap_bus_sync(void) | |||
55 | isb(); | 56 | isb(); |
56 | } | 57 | } |
57 | } | 58 | } |
59 | EXPORT_SYMBOL(omap_bus_sync); | ||
58 | 60 | ||
59 | /* Steal one page physical memory for barrier implementation */ | 61 | /* Steal one page physical memory for barrier implementation */ |
60 | int __init omap_barrier_reserve_memblock(void) | 62 | int __init omap_barrier_reserve_memblock(void) |
diff --git a/arch/arm/mach-omap2/twl-common.c b/arch/arm/mach-omap2/twl-common.c index 10b20c652e5d..4b57757bf9d1 100644 --- a/arch/arm/mach-omap2/twl-common.c +++ b/arch/arm/mach-omap2/twl-common.c | |||
@@ -270,7 +270,6 @@ static struct regulator_init_data omap4_vusb_idata = { | |||
270 | .constraints = { | 270 | .constraints = { |
271 | .min_uV = 3300000, | 271 | .min_uV = 3300000, |
272 | .max_uV = 3300000, | 272 | .max_uV = 3300000, |
273 | .apply_uV = true, | ||
274 | .valid_modes_mask = REGULATOR_MODE_NORMAL | 273 | .valid_modes_mask = REGULATOR_MODE_NORMAL |
275 | | REGULATOR_MODE_STANDBY, | 274 | | REGULATOR_MODE_STANDBY, |
276 | .valid_ops_mask = REGULATOR_CHANGE_MODE | 275 | .valid_ops_mask = REGULATOR_CHANGE_MODE |
diff --git a/arch/arm/mach-pxa/generic.h b/arch/arm/mach-pxa/generic.h index 0d729e6619df..42d5cca66257 100644 --- a/arch/arm/mach-pxa/generic.h +++ b/arch/arm/mach-pxa/generic.h | |||
@@ -49,7 +49,6 @@ extern unsigned pxa3xx_get_clk_frequency_khz(int); | |||
49 | #endif | 49 | #endif |
50 | 50 | ||
51 | extern struct syscore_ops pxa_irq_syscore_ops; | 51 | extern struct syscore_ops pxa_irq_syscore_ops; |
52 | extern struct syscore_ops pxa_gpio_syscore_ops; | ||
53 | extern struct syscore_ops pxa2xx_mfp_syscore_ops; | 52 | extern struct syscore_ops pxa2xx_mfp_syscore_ops; |
54 | extern struct syscore_ops pxa3xx_mfp_syscore_ops; | 53 | extern struct syscore_ops pxa3xx_mfp_syscore_ops; |
55 | 54 | ||
diff --git a/arch/arm/mach-pxa/mfp-pxa2xx.c b/arch/arm/mach-pxa/mfp-pxa2xx.c index f14775536b83..29b62afc6f7c 100644 --- a/arch/arm/mach-pxa/mfp-pxa2xx.c +++ b/arch/arm/mach-pxa/mfp-pxa2xx.c | |||
@@ -226,6 +226,12 @@ static void __init pxa25x_mfp_init(void) | |||
226 | { | 226 | { |
227 | int i; | 227 | int i; |
228 | 228 | ||
229 | /* running before pxa_gpio_probe() */ | ||
230 | #ifdef CONFIG_CPU_PXA26x | ||
231 | pxa_last_gpio = 89; | ||
232 | #else | ||
233 | pxa_last_gpio = 84; | ||
234 | #endif | ||
229 | for (i = 0; i <= pxa_last_gpio; i++) | 235 | for (i = 0; i <= pxa_last_gpio; i++) |
230 | gpio_desc[i].valid = 1; | 236 | gpio_desc[i].valid = 1; |
231 | 237 | ||
@@ -295,6 +301,7 @@ static void __init pxa27x_mfp_init(void) | |||
295 | { | 301 | { |
296 | int i, gpio; | 302 | int i, gpio; |
297 | 303 | ||
304 | pxa_last_gpio = 120; /* running before pxa_gpio_probe() */ | ||
298 | for (i = 0; i <= pxa_last_gpio; i++) { | 305 | for (i = 0; i <= pxa_last_gpio; i++) { |
299 | /* skip GPIO2, 5, 6, 7, 8, they are not | 306 | /* skip GPIO2, 5, 6, 7, 8, they are not |
300 | * valid pins allow configuration | 307 | * valid pins allow configuration |
diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index 00d6eacab8e4..3352b37b60cf 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c | |||
@@ -208,6 +208,7 @@ static struct clk_lookup pxa25x_clkregs[] = { | |||
208 | INIT_CLKREG(&clk_pxa25x_gpio11, NULL, "GPIO11_CLK"), | 208 | INIT_CLKREG(&clk_pxa25x_gpio11, NULL, "GPIO11_CLK"), |
209 | INIT_CLKREG(&clk_pxa25x_gpio12, NULL, "GPIO12_CLK"), | 209 | INIT_CLKREG(&clk_pxa25x_gpio12, NULL, "GPIO12_CLK"), |
210 | INIT_CLKREG(&clk_pxa25x_mem, "pxa2xx-pcmcia", NULL), | 210 | INIT_CLKREG(&clk_pxa25x_mem, "pxa2xx-pcmcia", NULL), |
211 | INIT_CLKREG(&clk_dummy, "pxa-gpio", NULL), | ||
211 | }; | 212 | }; |
212 | 213 | ||
213 | static struct clk_lookup pxa25x_hwuart_clkreg = | 214 | static struct clk_lookup pxa25x_hwuart_clkreg = |
@@ -367,7 +368,6 @@ static int __init pxa25x_init(void) | |||
367 | 368 | ||
368 | register_syscore_ops(&pxa_irq_syscore_ops); | 369 | register_syscore_ops(&pxa_irq_syscore_ops); |
369 | register_syscore_ops(&pxa2xx_mfp_syscore_ops); | 370 | register_syscore_ops(&pxa2xx_mfp_syscore_ops); |
370 | register_syscore_ops(&pxa_gpio_syscore_ops); | ||
371 | register_syscore_ops(&pxa2xx_clock_syscore_ops); | 371 | register_syscore_ops(&pxa2xx_clock_syscore_ops); |
372 | 372 | ||
373 | ret = platform_add_devices(pxa25x_devices, | 373 | ret = platform_add_devices(pxa25x_devices, |
diff --git a/arch/arm/mach-pxa/pxa27x.c b/arch/arm/mach-pxa/pxa27x.c index c1673b3441d4..6bce78edce7a 100644 --- a/arch/arm/mach-pxa/pxa27x.c +++ b/arch/arm/mach-pxa/pxa27x.c | |||
@@ -229,6 +229,7 @@ static struct clk_lookup pxa27x_clkregs[] = { | |||
229 | INIT_CLKREG(&clk_pxa27x_im, NULL, "IMCLK"), | 229 | INIT_CLKREG(&clk_pxa27x_im, NULL, "IMCLK"), |
230 | INIT_CLKREG(&clk_pxa27x_memc, NULL, "MEMCLK"), | 230 | INIT_CLKREG(&clk_pxa27x_memc, NULL, "MEMCLK"), |
231 | INIT_CLKREG(&clk_pxa27x_mem, "pxa2xx-pcmcia", NULL), | 231 | INIT_CLKREG(&clk_pxa27x_mem, "pxa2xx-pcmcia", NULL), |
232 | INIT_CLKREG(&clk_dummy, "pxa-gpio", NULL), | ||
232 | }; | 233 | }; |
233 | 234 | ||
234 | #ifdef CONFIG_PM | 235 | #ifdef CONFIG_PM |
@@ -455,7 +456,6 @@ static int __init pxa27x_init(void) | |||
455 | 456 | ||
456 | register_syscore_ops(&pxa_irq_syscore_ops); | 457 | register_syscore_ops(&pxa_irq_syscore_ops); |
457 | register_syscore_ops(&pxa2xx_mfp_syscore_ops); | 458 | register_syscore_ops(&pxa2xx_mfp_syscore_ops); |
458 | register_syscore_ops(&pxa_gpio_syscore_ops); | ||
459 | register_syscore_ops(&pxa2xx_clock_syscore_ops); | 459 | register_syscore_ops(&pxa2xx_clock_syscore_ops); |
460 | 460 | ||
461 | ret = platform_add_devices(devices, ARRAY_SIZE(devices)); | 461 | ret = platform_add_devices(devices, ARRAY_SIZE(devices)); |
diff --git a/arch/arm/mach-pxa/pxa3xx.c b/arch/arm/mach-pxa/pxa3xx.c index 4f402afa6609..3918a672238e 100644 --- a/arch/arm/mach-pxa/pxa3xx.c +++ b/arch/arm/mach-pxa/pxa3xx.c | |||
@@ -462,7 +462,6 @@ static int __init pxa3xx_init(void) | |||
462 | 462 | ||
463 | register_syscore_ops(&pxa_irq_syscore_ops); | 463 | register_syscore_ops(&pxa_irq_syscore_ops); |
464 | register_syscore_ops(&pxa3xx_mfp_syscore_ops); | 464 | register_syscore_ops(&pxa3xx_mfp_syscore_ops); |
465 | register_syscore_ops(&pxa_gpio_syscore_ops); | ||
466 | register_syscore_ops(&pxa3xx_clock_syscore_ops); | 465 | register_syscore_ops(&pxa3xx_clock_syscore_ops); |
467 | 466 | ||
468 | ret = platform_add_devices(devices, ARRAY_SIZE(devices)); | 467 | ret = platform_add_devices(devices, ARRAY_SIZE(devices)); |
diff --git a/arch/arm/mach-pxa/pxa95x.c b/arch/arm/mach-pxa/pxa95x.c index d082a583df78..5ce434b95e87 100644 --- a/arch/arm/mach-pxa/pxa95x.c +++ b/arch/arm/mach-pxa/pxa95x.c | |||
@@ -283,7 +283,6 @@ static int __init pxa95x_init(void) | |||
283 | return ret; | 283 | return ret; |
284 | 284 | ||
285 | register_syscore_ops(&pxa_irq_syscore_ops); | 285 | register_syscore_ops(&pxa_irq_syscore_ops); |
286 | register_syscore_ops(&pxa_gpio_syscore_ops); | ||
287 | register_syscore_ops(&pxa3xx_clock_syscore_ops); | 286 | register_syscore_ops(&pxa3xx_clock_syscore_ops); |
288 | 287 | ||
289 | ret = platform_add_devices(devices, ARRAY_SIZE(devices)); | 288 | ret = platform_add_devices(devices, ARRAY_SIZE(devices)); |
diff --git a/arch/arm/mach-s3c2440/common.h b/arch/arm/mach-s3c2440/common.h index db8a98ac68c5..0c1eb1dfc534 100644 --- a/arch/arm/mach-s3c2440/common.h +++ b/arch/arm/mach-s3c2440/common.h | |||
@@ -12,6 +12,6 @@ | |||
12 | #ifndef __ARCH_ARM_MACH_S3C2440_COMMON_H | 12 | #ifndef __ARCH_ARM_MACH_S3C2440_COMMON_H |
13 | #define __ARCH_ARM_MACH_S3C2440_COMMON_H | 13 | #define __ARCH_ARM_MACH_S3C2440_COMMON_H |
14 | 14 | ||
15 | void s3c2440_restart(char mode, const char *cmd); | 15 | void s3c244x_restart(char mode, const char *cmd); |
16 | 16 | ||
17 | #endif /* __ARCH_ARM_MACH_S3C2440_COMMON_H */ | 17 | #endif /* __ARCH_ARM_MACH_S3C2440_COMMON_H */ |
diff --git a/arch/arm/mach-s3c2440/mach-anubis.c b/arch/arm/mach-s3c2440/mach-anubis.c index 24569550de1a..19b577bc09b8 100644 --- a/arch/arm/mach-s3c2440/mach-anubis.c +++ b/arch/arm/mach-s3c2440/mach-anubis.c | |||
@@ -487,5 +487,5 @@ MACHINE_START(ANUBIS, "Simtec-Anubis") | |||
487 | .init_machine = anubis_init, | 487 | .init_machine = anubis_init, |
488 | .init_irq = s3c24xx_init_irq, | 488 | .init_irq = s3c24xx_init_irq, |
489 | .timer = &s3c24xx_timer, | 489 | .timer = &s3c24xx_timer, |
490 | .restart = s3c2440_restart, | 490 | .restart = s3c244x_restart, |
491 | MACHINE_END | 491 | MACHINE_END |
diff --git a/arch/arm/mach-s3c2440/mach-at2440evb.c b/arch/arm/mach-s3c2440/mach-at2440evb.c index d6a9763110cd..d7ae49c90118 100644 --- a/arch/arm/mach-s3c2440/mach-at2440evb.c +++ b/arch/arm/mach-s3c2440/mach-at2440evb.c | |||
@@ -222,5 +222,5 @@ MACHINE_START(AT2440EVB, "AT2440EVB") | |||
222 | .init_machine = at2440evb_init, | 222 | .init_machine = at2440evb_init, |
223 | .init_irq = s3c24xx_init_irq, | 223 | .init_irq = s3c24xx_init_irq, |
224 | .timer = &s3c24xx_timer, | 224 | .timer = &s3c24xx_timer, |
225 | .restart = s3c2440_restart, | 225 | .restart = s3c244x_restart, |
226 | MACHINE_END | 226 | MACHINE_END |
diff --git a/arch/arm/mach-s3c2440/mach-gta02.c b/arch/arm/mach-s3c2440/mach-gta02.c index 5859e609d28c..9a4a5bc008e6 100644 --- a/arch/arm/mach-s3c2440/mach-gta02.c +++ b/arch/arm/mach-s3c2440/mach-gta02.c | |||
@@ -601,5 +601,5 @@ MACHINE_START(NEO1973_GTA02, "GTA02") | |||
601 | .init_irq = s3c24xx_init_irq, | 601 | .init_irq = s3c24xx_init_irq, |
602 | .init_machine = gta02_machine_init, | 602 | .init_machine = gta02_machine_init, |
603 | .timer = &s3c24xx_timer, | 603 | .timer = &s3c24xx_timer, |
604 | .restart = s3c2440_restart, | 604 | .restart = s3c244x_restart, |
605 | MACHINE_END | 605 | MACHINE_END |
diff --git a/arch/arm/mach-s3c2440/mach-mini2440.c b/arch/arm/mach-s3c2440/mach-mini2440.c index adbbb85bc4cd..5d66fb218a41 100644 --- a/arch/arm/mach-s3c2440/mach-mini2440.c +++ b/arch/arm/mach-s3c2440/mach-mini2440.c | |||
@@ -701,5 +701,5 @@ MACHINE_START(MINI2440, "MINI2440") | |||
701 | .init_machine = mini2440_init, | 701 | .init_machine = mini2440_init, |
702 | .init_irq = s3c24xx_init_irq, | 702 | .init_irq = s3c24xx_init_irq, |
703 | .timer = &s3c24xx_timer, | 703 | .timer = &s3c24xx_timer, |
704 | .restart = s3c2440_restart, | 704 | .restart = s3c244x_restart, |
705 | MACHINE_END | 705 | MACHINE_END |
diff --git a/arch/arm/mach-s3c2440/mach-nexcoder.c b/arch/arm/mach-s3c2440/mach-nexcoder.c index 40eaf844bc1f..5198e3e1c5be 100644 --- a/arch/arm/mach-s3c2440/mach-nexcoder.c +++ b/arch/arm/mach-s3c2440/mach-nexcoder.c | |||
@@ -158,5 +158,5 @@ MACHINE_START(NEXCODER_2440, "NexVision - Nexcoder 2440") | |||
158 | .init_machine = nexcoder_init, | 158 | .init_machine = nexcoder_init, |
159 | .init_irq = s3c24xx_init_irq, | 159 | .init_irq = s3c24xx_init_irq, |
160 | .timer = &s3c24xx_timer, | 160 | .timer = &s3c24xx_timer, |
161 | .restart = s3c2440_restart, | 161 | .restart = s3c244x_restart, |
162 | MACHINE_END | 162 | MACHINE_END |
diff --git a/arch/arm/mach-s3c2440/mach-osiris.c b/arch/arm/mach-s3c2440/mach-osiris.c index 4c480ef734f6..c5daeb612a88 100644 --- a/arch/arm/mach-s3c2440/mach-osiris.c +++ b/arch/arm/mach-s3c2440/mach-osiris.c | |||
@@ -436,5 +436,5 @@ MACHINE_START(OSIRIS, "Simtec-OSIRIS") | |||
436 | .init_irq = s3c24xx_init_irq, | 436 | .init_irq = s3c24xx_init_irq, |
437 | .init_machine = osiris_init, | 437 | .init_machine = osiris_init, |
438 | .timer = &s3c24xx_timer, | 438 | .timer = &s3c24xx_timer, |
439 | .restart = s3c2440_restart, | 439 | .restart = s3c244x_restart, |
440 | MACHINE_END | 440 | MACHINE_END |
diff --git a/arch/arm/mach-s3c2440/mach-rx1950.c b/arch/arm/mach-s3c2440/mach-rx1950.c index 80077f6472ee..6f68abf44fab 100644 --- a/arch/arm/mach-s3c2440/mach-rx1950.c +++ b/arch/arm/mach-s3c2440/mach-rx1950.c | |||
@@ -822,5 +822,5 @@ MACHINE_START(RX1950, "HP iPAQ RX1950") | |||
822 | .init_irq = s3c24xx_init_irq, | 822 | .init_irq = s3c24xx_init_irq, |
823 | .init_machine = rx1950_init_machine, | 823 | .init_machine = rx1950_init_machine, |
824 | .timer = &s3c24xx_timer, | 824 | .timer = &s3c24xx_timer, |
825 | .restart = s3c2440_restart, | 825 | .restart = s3c244x_restart, |
826 | MACHINE_END | 826 | MACHINE_END |
diff --git a/arch/arm/mach-s3c2440/mach-rx3715.c b/arch/arm/mach-s3c2440/mach-rx3715.c index 20103bafbd4b..56af35447598 100644 --- a/arch/arm/mach-s3c2440/mach-rx3715.c +++ b/arch/arm/mach-s3c2440/mach-rx3715.c | |||
@@ -213,5 +213,5 @@ MACHINE_START(RX3715, "IPAQ-RX3715") | |||
213 | .init_irq = rx3715_init_irq, | 213 | .init_irq = rx3715_init_irq, |
214 | .init_machine = rx3715_init_machine, | 214 | .init_machine = rx3715_init_machine, |
215 | .timer = &s3c24xx_timer, | 215 | .timer = &s3c24xx_timer, |
216 | .restart = s3c2440_restart, | 216 | .restart = s3c244x_restart, |
217 | MACHINE_END | 217 | MACHINE_END |
diff --git a/arch/arm/mach-s3c2440/mach-smdk2440.c b/arch/arm/mach-s3c2440/mach-smdk2440.c index 1deb60d12a60..83a1036d7dcb 100644 --- a/arch/arm/mach-s3c2440/mach-smdk2440.c +++ b/arch/arm/mach-s3c2440/mach-smdk2440.c | |||
@@ -183,5 +183,5 @@ MACHINE_START(S3C2440, "SMDK2440") | |||
183 | .map_io = smdk2440_map_io, | 183 | .map_io = smdk2440_map_io, |
184 | .init_machine = smdk2440_machine_init, | 184 | .init_machine = smdk2440_machine_init, |
185 | .timer = &s3c24xx_timer, | 185 | .timer = &s3c24xx_timer, |
186 | .restart = s3c2440_restart, | 186 | .restart = s3c244x_restart, |
187 | MACHINE_END | 187 | MACHINE_END |
diff --git a/arch/arm/mach-s3c2440/s3c2440.c b/arch/arm/mach-s3c2440/s3c2440.c index 517623a09fc5..2b3dddb49af7 100644 --- a/arch/arm/mach-s3c2440/s3c2440.c +++ b/arch/arm/mach-s3c2440/s3c2440.c | |||
@@ -35,7 +35,6 @@ | |||
35 | #include <plat/cpu.h> | 35 | #include <plat/cpu.h> |
36 | #include <plat/s3c244x.h> | 36 | #include <plat/s3c244x.h> |
37 | #include <plat/pm.h> | 37 | #include <plat/pm.h> |
38 | #include <plat/watchdog-reset.h> | ||
39 | 38 | ||
40 | #include <plat/gpio-core.h> | 39 | #include <plat/gpio-core.h> |
41 | #include <plat/gpio-cfg.h> | 40 | #include <plat/gpio-cfg.h> |
@@ -74,15 +73,3 @@ void __init s3c2440_map_io(void) | |||
74 | s3c24xx_gpiocfg_default.set_pull = s3c24xx_gpio_setpull_1up; | 73 | s3c24xx_gpiocfg_default.set_pull = s3c24xx_gpio_setpull_1up; |
75 | s3c24xx_gpiocfg_default.get_pull = s3c24xx_gpio_getpull_1up; | 74 | s3c24xx_gpiocfg_default.get_pull = s3c24xx_gpio_getpull_1up; |
76 | } | 75 | } |
77 | |||
78 | void s3c2440_restart(char mode, const char *cmd) | ||
79 | { | ||
80 | if (mode == 's') { | ||
81 | soft_restart(0); | ||
82 | } | ||
83 | |||
84 | arch_wdt_reset(); | ||
85 | |||
86 | /* we'll take a jump through zero as a poor second */ | ||
87 | soft_restart(0); | ||
88 | } | ||
diff --git a/arch/arm/mach-s3c2440/s3c244x.c b/arch/arm/mach-s3c2440/s3c244x.c index 36bc60f61d0a..d15852f642b7 100644 --- a/arch/arm/mach-s3c2440/s3c244x.c +++ b/arch/arm/mach-s3c2440/s3c244x.c | |||
@@ -46,6 +46,7 @@ | |||
46 | #include <plat/pm.h> | 46 | #include <plat/pm.h> |
47 | #include <plat/pll.h> | 47 | #include <plat/pll.h> |
48 | #include <plat/nand-core.h> | 48 | #include <plat/nand-core.h> |
49 | #include <plat/watchdog-reset.h> | ||
49 | 50 | ||
50 | static struct map_desc s3c244x_iodesc[] __initdata = { | 51 | static struct map_desc s3c244x_iodesc[] __initdata = { |
51 | IODESC_ENT(CLKPWR), | 52 | IODESC_ENT(CLKPWR), |
@@ -196,3 +197,14 @@ struct syscore_ops s3c244x_pm_syscore_ops = { | |||
196 | .suspend = s3c244x_suspend, | 197 | .suspend = s3c244x_suspend, |
197 | .resume = s3c244x_resume, | 198 | .resume = s3c244x_resume, |
198 | }; | 199 | }; |
200 | |||
201 | void s3c244x_restart(char mode, const char *cmd) | ||
202 | { | ||
203 | if (mode == 's') | ||
204 | soft_restart(0); | ||
205 | |||
206 | arch_wdt_reset(); | ||
207 | |||
208 | /* we'll take a jump through zero as a poor second */ | ||
209 | soft_restart(0); | ||
210 | } | ||
diff --git a/arch/arm/mach-shmobile/board-ag5evm.c b/arch/arm/mach-shmobile/board-ag5evm.c index 33dad1da9310..12c431f3443f 100644 --- a/arch/arm/mach-shmobile/board-ag5evm.c +++ b/arch/arm/mach-shmobile/board-ag5evm.c | |||
@@ -38,6 +38,7 @@ | |||
38 | #include <linux/mmc/sh_mobile_sdhi.h> | 38 | #include <linux/mmc/sh_mobile_sdhi.h> |
39 | #include <linux/mfd/tmio.h> | 39 | #include <linux/mfd/tmio.h> |
40 | #include <linux/sh_clk.h> | 40 | #include <linux/sh_clk.h> |
41 | #include <linux/videodev2.h> | ||
41 | #include <video/sh_mobile_lcdc.h> | 42 | #include <video/sh_mobile_lcdc.h> |
42 | #include <video/sh_mipi_dsi.h> | 43 | #include <video/sh_mipi_dsi.h> |
43 | #include <sound/sh_fsi.h> | 44 | #include <sound/sh_fsi.h> |
diff --git a/arch/arm/mach-shmobile/board-ap4evb.c b/arch/arm/mach-shmobile/board-ap4evb.c index d4cc2dec5734..82483d5f200c 100644 --- a/arch/arm/mach-shmobile/board-ap4evb.c +++ b/arch/arm/mach-shmobile/board-ap4evb.c | |||
@@ -801,7 +801,7 @@ static struct fsi_ak4642_info fsi2_ak4643_info = { | |||
801 | static struct platform_device fsi_ak4643_device = { | 801 | static struct platform_device fsi_ak4643_device = { |
802 | .name = "fsi-ak4642-audio", | 802 | .name = "fsi-ak4642-audio", |
803 | .dev = { | 803 | .dev = { |
804 | .platform_data = &fsi_info, | 804 | .platform_data = &fsi2_ak4643_info, |
805 | }, | 805 | }, |
806 | }; | 806 | }; |
807 | 807 | ||
diff --git a/arch/arm/mach-shmobile/board-bonito.c b/arch/arm/mach-shmobile/board-bonito.c index fb90f0898d9c..c79baa9ef61b 100644 --- a/arch/arm/mach-shmobile/board-bonito.c +++ b/arch/arm/mach-shmobile/board-bonito.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/platform_device.h> | 27 | #include <linux/platform_device.h> |
28 | #include <linux/gpio.h> | 28 | #include <linux/gpio.h> |
29 | #include <linux/smsc911x.h> | 29 | #include <linux/smsc911x.h> |
30 | #include <linux/videodev2.h> | ||
30 | #include <mach/common.h> | 31 | #include <mach/common.h> |
31 | #include <asm/mach-types.h> | 32 | #include <asm/mach-types.h> |
32 | #include <asm/mach/arch.h> | 33 | #include <asm/mach/arch.h> |
@@ -241,7 +242,7 @@ static struct sh_mobile_lcdc_info lcdc0_info = { | |||
241 | .clock_source = LCDC_CLK_BUS, | 242 | .clock_source = LCDC_CLK_BUS, |
242 | .ch[0] = { | 243 | .ch[0] = { |
243 | .chan = LCDC_CHAN_MAINLCD, | 244 | .chan = LCDC_CHAN_MAINLCD, |
244 | .bpp = 16, | 245 | .fourcc = V4L2_PIX_FMT_RGB565, |
245 | .interface_type = RGB24, | 246 | .interface_type = RGB24, |
246 | .clock_divider = 5, | 247 | .clock_divider = 5, |
247 | .flags = 0, | 248 | .flags = 0, |
diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c index e761b280a602..911c6ec49c2d 100644 --- a/arch/arm/mach-shmobile/board-mackerel.c +++ b/arch/arm/mach-shmobile/board-mackerel.c | |||
@@ -1346,6 +1346,10 @@ static struct map_desc mackerel_io_desc[] __initdata = { | |||
1346 | static void __init mackerel_map_io(void) | 1346 | static void __init mackerel_map_io(void) |
1347 | { | 1347 | { |
1348 | iotable_init(mackerel_io_desc, ARRAY_SIZE(mackerel_io_desc)); | 1348 | iotable_init(mackerel_io_desc, ARRAY_SIZE(mackerel_io_desc)); |
1349 | /* DMA memory at 0xff200000 - 0xffdfffff. The default 2MB size isn't | ||
1350 | * enough to allocate the frame buffer memory. | ||
1351 | */ | ||
1352 | init_consistent_dma_size(12 << 20); | ||
1349 | 1353 | ||
1350 | /* setup early devices and console here as well */ | 1354 | /* setup early devices and console here as well */ |
1351 | sh7372_add_early_devices(); | 1355 | sh7372_add_early_devices(); |
diff --git a/arch/arm/mach-ux500/Kconfig b/arch/arm/mach-ux500/Kconfig index 52af00446a63..c59e8b892d6b 100644 --- a/arch/arm/mach-ux500/Kconfig +++ b/arch/arm/mach-ux500/Kconfig | |||
@@ -5,7 +5,7 @@ config UX500_SOC_COMMON | |||
5 | default y | 5 | default y |
6 | select ARM_GIC | 6 | select ARM_GIC |
7 | select HAS_MTU | 7 | select HAS_MTU |
8 | select ARM_ERRATA_753970 | 8 | select PL310_ERRATA_753970 |
9 | select ARM_ERRATA_754322 | 9 | select ARM_ERRATA_754322 |
10 | select ARM_ERRATA_764369 | 10 | select ARM_ERRATA_764369 |
11 | 11 | ||
diff --git a/arch/arm/mach-vexpress/Kconfig b/arch/arm/mach-vexpress/Kconfig index 9b3d0fbaee72..88c3ba151e87 100644 --- a/arch/arm/mach-vexpress/Kconfig +++ b/arch/arm/mach-vexpress/Kconfig | |||
@@ -7,7 +7,7 @@ config ARCH_VEXPRESS_CA9X4 | |||
7 | select ARM_GIC | 7 | select ARM_GIC |
8 | select ARM_ERRATA_720789 | 8 | select ARM_ERRATA_720789 |
9 | select ARM_ERRATA_751472 | 9 | select ARM_ERRATA_751472 |
10 | select ARM_ERRATA_753970 | 10 | select PL310_ERRATA_753970 |
11 | select HAVE_SMP | 11 | select HAVE_SMP |
12 | select MIGHT_HAVE_CACHE_L2X0 | 12 | select MIGHT_HAVE_CACHE_L2X0 |
13 | 13 | ||
diff --git a/arch/arm/mm/proc-v7.S b/arch/arm/mm/proc-v7.S index 0404ccbb8aa3..f1c8486f7501 100644 --- a/arch/arm/mm/proc-v7.S +++ b/arch/arm/mm/proc-v7.S | |||
@@ -230,9 +230,7 @@ __v7_setup: | |||
230 | mcreq p15, 0, r10, c15, c0, 1 @ write diagnostic register | 230 | mcreq p15, 0, r10, c15, c0, 1 @ write diagnostic register |
231 | #endif | 231 | #endif |
232 | #ifdef CONFIG_ARM_ERRATA_743622 | 232 | #ifdef CONFIG_ARM_ERRATA_743622 |
233 | teq r6, #0x20 @ present in r2p0 | 233 | teq r5, #0x00200000 @ only present in r2p* |
234 | teqne r6, #0x21 @ present in r2p1 | ||
235 | teqne r6, #0x22 @ present in r2p2 | ||
236 | mrceq p15, 0, r10, c15, c0, 1 @ read diagnostic register | 234 | mrceq p15, 0, r10, c15, c0, 1 @ read diagnostic register |
237 | orreq r10, r10, #1 << 6 @ set bit #6 | 235 | orreq r10, r10, #1 << 6 @ set bit #6 |
238 | mcreq p15, 0, r10, c15, c0, 1 @ write diagnostic register | 236 | mcreq p15, 0, r10, c15, c0, 1 @ write diagnostic register |
diff --git a/arch/arm/plat-omap/include/plat/irqs.h b/arch/arm/plat-omap/include/plat/irqs.h index 2efd6454bce0..37bbbbb981b2 100644 --- a/arch/arm/plat-omap/include/plat/irqs.h +++ b/arch/arm/plat-omap/include/plat/irqs.h | |||
@@ -428,8 +428,16 @@ | |||
428 | #define OMAP_GPMC_NR_IRQS 8 | 428 | #define OMAP_GPMC_NR_IRQS 8 |
429 | #define OMAP_GPMC_IRQ_END (OMAP_GPMC_IRQ_BASE + OMAP_GPMC_NR_IRQS) | 429 | #define OMAP_GPMC_IRQ_END (OMAP_GPMC_IRQ_BASE + OMAP_GPMC_NR_IRQS) |
430 | 430 | ||
431 | /* PRCM IRQ handler */ | ||
432 | #ifdef CONFIG_ARCH_OMAP2PLUS | ||
433 | #define OMAP_PRCM_IRQ_BASE (OMAP_GPMC_IRQ_END) | ||
434 | #define OMAP_PRCM_NR_IRQS 64 | ||
435 | #define OMAP_PRCM_IRQ_END (OMAP_PRCM_IRQ_BASE + OMAP_PRCM_NR_IRQS) | ||
436 | #else | ||
437 | #define OMAP_PRCM_IRQ_END OMAP_GPMC_IRQ_END | ||
438 | #endif | ||
431 | 439 | ||
432 | #define NR_IRQS OMAP_GPMC_IRQ_END | 440 | #define NR_IRQS OMAP_PRCM_IRQ_END |
433 | 441 | ||
434 | #define OMAP_IRQ_BIT(irq) (1 << ((irq) % 32)) | 442 | #define OMAP_IRQ_BIT(irq) (1 << ((irq) % 32)) |
435 | 443 | ||
diff --git a/arch/arm/plat-s3c24xx/dma.c b/arch/arm/plat-s3c24xx/dma.c index 9fe35348e03b..2bab4c99a234 100644 --- a/arch/arm/plat-s3c24xx/dma.c +++ b/arch/arm/plat-s3c24xx/dma.c | |||
@@ -1249,7 +1249,7 @@ static void s3c2410_dma_resume(void) | |||
1249 | struct s3c2410_dma_chan *cp = s3c2410_chans + dma_channels - 1; | 1249 | struct s3c2410_dma_chan *cp = s3c2410_chans + dma_channels - 1; |
1250 | int channel; | 1250 | int channel; |
1251 | 1251 | ||
1252 | for (channel = dma_channels - 1; channel >= 0; cp++, channel--) | 1252 | for (channel = dma_channels - 1; channel >= 0; cp--, channel--) |
1253 | s3c2410_dma_resume_chan(cp); | 1253 | s3c2410_dma_resume_chan(cp); |
1254 | } | 1254 | } |
1255 | 1255 | ||
diff --git a/arch/arm/plat-samsung/devs.c b/arch/arm/plat-samsung/devs.c index f10768e988d4..d21d744e4d99 100644 --- a/arch/arm/plat-samsung/devs.c +++ b/arch/arm/plat-samsung/devs.c | |||
@@ -1409,7 +1409,7 @@ void __init s5p_ehci_set_platdata(struct s5p_ehci_platdata *pd) | |||
1409 | 1409 | ||
1410 | #ifdef CONFIG_S3C_DEV_USB_HSOTG | 1410 | #ifdef CONFIG_S3C_DEV_USB_HSOTG |
1411 | static struct resource s3c_usb_hsotg_resources[] = { | 1411 | static struct resource s3c_usb_hsotg_resources[] = { |
1412 | [0] = DEFINE_RES_MEM(S3C_PA_USB_HSOTG, SZ_16K), | 1412 | [0] = DEFINE_RES_MEM(S3C_PA_USB_HSOTG, SZ_128K), |
1413 | [1] = DEFINE_RES_IRQ(IRQ_OTG), | 1413 | [1] = DEFINE_RES_IRQ(IRQ_OTG), |
1414 | }; | 1414 | }; |
1415 | 1415 | ||
diff --git a/arch/arm/plat-spear/time.c b/arch/arm/plat-spear/time.c index 0c77e4298675..abb5bdecd509 100644 --- a/arch/arm/plat-spear/time.c +++ b/arch/arm/plat-spear/time.c | |||
@@ -145,11 +145,13 @@ static void clockevent_set_mode(enum clock_event_mode mode, | |||
145 | static int clockevent_next_event(unsigned long cycles, | 145 | static int clockevent_next_event(unsigned long cycles, |
146 | struct clock_event_device *clk_event_dev) | 146 | struct clock_event_device *clk_event_dev) |
147 | { | 147 | { |
148 | u16 val; | 148 | u16 val = readw(gpt_base + CR(CLKEVT)); |
149 | |||
150 | if (val & CTRL_ENABLE) | ||
151 | writew(val & ~CTRL_ENABLE, gpt_base + CR(CLKEVT)); | ||
149 | 152 | ||
150 | writew(cycles, gpt_base + LOAD(CLKEVT)); | 153 | writew(cycles, gpt_base + LOAD(CLKEVT)); |
151 | 154 | ||
152 | val = readw(gpt_base + CR(CLKEVT)); | ||
153 | val |= CTRL_ENABLE | CTRL_INT_ENABLE; | 155 | val |= CTRL_ENABLE | CTRL_INT_ENABLE; |
154 | writew(val, gpt_base + CR(CLKEVT)); | 156 | writew(val, gpt_base + CR(CLKEVT)); |
155 | 157 | ||
diff --git a/arch/c6x/include/asm/processor.h b/arch/c6x/include/asm/processor.h index 8154c4ee8c9c..77ecbded1f37 100644 --- a/arch/c6x/include/asm/processor.h +++ b/arch/c6x/include/asm/processor.h | |||
@@ -122,8 +122,8 @@ extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags); | |||
122 | 122 | ||
123 | extern unsigned long get_wchan(struct task_struct *p); | 123 | extern unsigned long get_wchan(struct task_struct *p); |
124 | 124 | ||
125 | #define KSTK_EIP(tsk) (task_pt_regs(task)->pc) | 125 | #define KSTK_EIP(task) (task_pt_regs(task)->pc) |
126 | #define KSTK_ESP(tsk) (task_pt_regs(task)->sp) | 126 | #define KSTK_ESP(task) (task_pt_regs(task)->sp) |
127 | 127 | ||
128 | #define cpu_relax() do { } while (0) | 128 | #define cpu_relax() do { } while (0) |
129 | 129 | ||
diff --git a/arch/c6x/kernel/entry.S b/arch/c6x/kernel/entry.S index 3e977ccda827..30b37e5f4a61 100644 --- a/arch/c6x/kernel/entry.S +++ b/arch/c6x/kernel/entry.S | |||
@@ -717,33 +717,6 @@ ENTRY(sys_ftruncate64_c6x) | |||
717 | #endif | 717 | #endif |
718 | ENDPROC(sys_ftruncate64_c6x) | 718 | ENDPROC(sys_ftruncate64_c6x) |
719 | 719 | ||
720 | #ifdef __ARCH_WANT_SYSCALL_OFF_T | ||
721 | ;; On Entry | ||
722 | ;; A4 - fd | ||
723 | ;; B4 - offset_lo (LE), offset_hi (BE) | ||
724 | ;; A6 - offset_lo (BE), offset_hi (LE) | ||
725 | ;; B6 - len | ||
726 | ;; A8 - advice | ||
727 | ENTRY(sys_fadvise64_c6x) | ||
728 | #ifdef CONFIG_C6X_BIG_KERNEL | ||
729 | MVKL .S1 sys_fadvise64,A0 | ||
730 | MVKH .S1 sys_fadvise64,A0 | ||
731 | BNOP .S2X A0,2 | ||
732 | #else | ||
733 | B .S2 sys_fadvise64 | ||
734 | NOP 2 | ||
735 | #endif | ||
736 | #ifdef CONFIG_CPU_BIG_ENDIAN | ||
737 | MV .L2 B4,B5 | ||
738 | || MV .D2X A6,B4 | ||
739 | #else | ||
740 | MV .D2X A6,B5 | ||
741 | #endif | ||
742 | MV .D1X B6,A6 | ||
743 | MV .D2X A8,B6 | ||
744 | #endif | ||
745 | ENDPROC(sys_fadvise64_c6x) | ||
746 | |||
747 | ;; On Entry | 720 | ;; On Entry |
748 | ;; A4 - fd | 721 | ;; A4 - fd |
749 | ;; B4 - offset_lo (LE), offset_hi (BE) | 722 | ;; B4 - offset_lo (LE), offset_hi (BE) |
diff --git a/arch/mips/alchemy/common/time.c b/arch/mips/alchemy/common/time.c index 7da4d0081487..a7193ae13a5d 100644 --- a/arch/mips/alchemy/common/time.c +++ b/arch/mips/alchemy/common/time.c | |||
@@ -146,7 +146,7 @@ static int __init alchemy_time_init(unsigned int m2int) | |||
146 | cd->shift = 32; | 146 | cd->shift = 32; |
147 | cd->mult = div_sc(32768, NSEC_PER_SEC, cd->shift); | 147 | cd->mult = div_sc(32768, NSEC_PER_SEC, cd->shift); |
148 | cd->max_delta_ns = clockevent_delta2ns(0xffffffff, cd); | 148 | cd->max_delta_ns = clockevent_delta2ns(0xffffffff, cd); |
149 | cd->min_delta_ns = clockevent_delta2ns(8, cd); /* ~0.25ms */ | 149 | cd->min_delta_ns = clockevent_delta2ns(9, cd); /* ~0.28ms */ |
150 | clockevents_register_device(cd); | 150 | clockevents_register_device(cd); |
151 | setup_irq(m2int, &au1x_rtcmatch2_irqaction); | 151 | setup_irq(m2int, &au1x_rtcmatch2_irqaction); |
152 | 152 | ||
diff --git a/arch/mips/ath79/dev-wmac.c b/arch/mips/ath79/dev-wmac.c index 24f546985b69..e21507052066 100644 --- a/arch/mips/ath79/dev-wmac.c +++ b/arch/mips/ath79/dev-wmac.c | |||
@@ -96,7 +96,7 @@ void __init ath79_register_wmac(u8 *cal_data) | |||
96 | { | 96 | { |
97 | if (soc_is_ar913x()) | 97 | if (soc_is_ar913x()) |
98 | ar913x_wmac_setup(); | 98 | ar913x_wmac_setup(); |
99 | if (soc_is_ar933x()) | 99 | else if (soc_is_ar933x()) |
100 | ar933x_wmac_setup(); | 100 | ar933x_wmac_setup(); |
101 | else | 101 | else |
102 | BUG(); | 102 | BUG(); |
diff --git a/arch/mips/configs/nlm_xlp_defconfig b/arch/mips/configs/nlm_xlp_defconfig index 4479fd669ac1..28c6b276c216 100644 --- a/arch/mips/configs/nlm_xlp_defconfig +++ b/arch/mips/configs/nlm_xlp_defconfig | |||
@@ -8,7 +8,7 @@ CONFIG_HIGH_RES_TIMERS=y | |||
8 | # CONFIG_SECCOMP is not set | 8 | # CONFIG_SECCOMP is not set |
9 | CONFIG_USE_OF=y | 9 | CONFIG_USE_OF=y |
10 | CONFIG_EXPERIMENTAL=y | 10 | CONFIG_EXPERIMENTAL=y |
11 | CONFIG_CROSS_COMPILE="mips-linux-gnu-" | 11 | CONFIG_CROSS_COMPILE="" |
12 | # CONFIG_LOCALVERSION_AUTO is not set | 12 | # CONFIG_LOCALVERSION_AUTO is not set |
13 | CONFIG_SYSVIPC=y | 13 | CONFIG_SYSVIPC=y |
14 | CONFIG_POSIX_MQUEUE=y | 14 | CONFIG_POSIX_MQUEUE=y |
@@ -22,7 +22,7 @@ CONFIG_AUDIT=y | |||
22 | CONFIG_CGROUPS=y | 22 | CONFIG_CGROUPS=y |
23 | CONFIG_NAMESPACES=y | 23 | CONFIG_NAMESPACES=y |
24 | CONFIG_BLK_DEV_INITRD=y | 24 | CONFIG_BLK_DEV_INITRD=y |
25 | CONFIG_INITRAMFS_SOURCE="usr/dev_file_list usr/rootfs.xlp" | 25 | CONFIG_INITRAMFS_SOURCE="" |
26 | CONFIG_RD_BZIP2=y | 26 | CONFIG_RD_BZIP2=y |
27 | CONFIG_RD_LZMA=y | 27 | CONFIG_RD_LZMA=y |
28 | CONFIG_INITRAMFS_COMPRESSION_LZMA=y | 28 | CONFIG_INITRAMFS_COMPRESSION_LZMA=y |
diff --git a/arch/mips/configs/nlm_xlr_defconfig b/arch/mips/configs/nlm_xlr_defconfig index 7c68666fdd64..d0b857d98c91 100644 --- a/arch/mips/configs/nlm_xlr_defconfig +++ b/arch/mips/configs/nlm_xlr_defconfig | |||
@@ -8,7 +8,7 @@ CONFIG_HIGH_RES_TIMERS=y | |||
8 | CONFIG_PREEMPT_VOLUNTARY=y | 8 | CONFIG_PREEMPT_VOLUNTARY=y |
9 | CONFIG_KEXEC=y | 9 | CONFIG_KEXEC=y |
10 | CONFIG_EXPERIMENTAL=y | 10 | CONFIG_EXPERIMENTAL=y |
11 | CONFIG_CROSS_COMPILE="mips-linux-gnu-" | 11 | CONFIG_CROSS_COMPILE="" |
12 | # CONFIG_LOCALVERSION_AUTO is not set | 12 | # CONFIG_LOCALVERSION_AUTO is not set |
13 | CONFIG_SYSVIPC=y | 13 | CONFIG_SYSVIPC=y |
14 | CONFIG_POSIX_MQUEUE=y | 14 | CONFIG_POSIX_MQUEUE=y |
@@ -22,7 +22,7 @@ CONFIG_AUDIT=y | |||
22 | CONFIG_NAMESPACES=y | 22 | CONFIG_NAMESPACES=y |
23 | CONFIG_SCHED_AUTOGROUP=y | 23 | CONFIG_SCHED_AUTOGROUP=y |
24 | CONFIG_BLK_DEV_INITRD=y | 24 | CONFIG_BLK_DEV_INITRD=y |
25 | CONFIG_INITRAMFS_SOURCE="usr/dev_file_list usr/rootfs.xlr" | 25 | CONFIG_INITRAMFS_SOURCE="" |
26 | CONFIG_RD_BZIP2=y | 26 | CONFIG_RD_BZIP2=y |
27 | CONFIG_RD_LZMA=y | 27 | CONFIG_RD_LZMA=y |
28 | CONFIG_INITRAMFS_COMPRESSION_GZIP=y | 28 | CONFIG_INITRAMFS_COMPRESSION_GZIP=y |
diff --git a/arch/mips/configs/powertv_defconfig b/arch/mips/configs/powertv_defconfig index 3b0b6e8c8533..7fda0ce5f692 100644 --- a/arch/mips/configs/powertv_defconfig +++ b/arch/mips/configs/powertv_defconfig | |||
@@ -6,7 +6,7 @@ CONFIG_HZ_1000=y | |||
6 | CONFIG_PREEMPT=y | 6 | CONFIG_PREEMPT=y |
7 | # CONFIG_SECCOMP is not set | 7 | # CONFIG_SECCOMP is not set |
8 | CONFIG_EXPERIMENTAL=y | 8 | CONFIG_EXPERIMENTAL=y |
9 | CONFIG_CROSS_COMPILE="mips-linux-" | 9 | CONFIG_CROSS_COMPILE="" |
10 | # CONFIG_SWAP is not set | 10 | # CONFIG_SWAP is not set |
11 | CONFIG_SYSVIPC=y | 11 | CONFIG_SYSVIPC=y |
12 | CONFIG_LOG_BUF_SHIFT=16 | 12 | CONFIG_LOG_BUF_SHIFT=16 |
diff --git a/arch/mips/include/asm/mach-au1x00/gpio-au1300.h b/arch/mips/include/asm/mach-au1x00/gpio-au1300.h index 556e1be20bf6..fb9975c74c57 100644 --- a/arch/mips/include/asm/mach-au1x00/gpio-au1300.h +++ b/arch/mips/include/asm/mach-au1x00/gpio-au1300.h | |||
@@ -11,6 +11,9 @@ | |||
11 | #include <asm/io.h> | 11 | #include <asm/io.h> |
12 | #include <asm/mach-au1x00/au1000.h> | 12 | #include <asm/mach-au1x00/au1000.h> |
13 | 13 | ||
14 | struct gpio; | ||
15 | struct gpio_chip; | ||
16 | |||
14 | /* with the current GPIC design, up to 128 GPIOs are possible. | 17 | /* with the current GPIC design, up to 128 GPIOs are possible. |
15 | * The only implementation so far is in the Au1300, which has 75 externally | 18 | * The only implementation so far is in the Au1300, which has 75 externally |
16 | * available GPIOs. | 19 | * available GPIOs. |
@@ -203,7 +206,22 @@ static inline int gpio_request(unsigned int gpio, const char *label) | |||
203 | return 0; | 206 | return 0; |
204 | } | 207 | } |
205 | 208 | ||
206 | static inline void gpio_free(unsigned int gpio) | 209 | static inline int gpio_request_one(unsigned gpio, |
210 | unsigned long flags, const char *label) | ||
211 | { | ||
212 | return 0; | ||
213 | } | ||
214 | |||
215 | static inline int gpio_request_array(struct gpio *array, size_t num) | ||
216 | { | ||
217 | return 0; | ||
218 | } | ||
219 | |||
220 | static inline void gpio_free(unsigned gpio) | ||
221 | { | ||
222 | } | ||
223 | |||
224 | static inline void gpio_free_array(struct gpio *array, size_t num) | ||
207 | { | 225 | { |
208 | } | 226 | } |
209 | 227 | ||
diff --git a/arch/mips/include/asm/page.h b/arch/mips/include/asm/page.h index d41790928c64..da9bd7d270d1 100644 --- a/arch/mips/include/asm/page.h +++ b/arch/mips/include/asm/page.h | |||
@@ -39,9 +39,6 @@ | |||
39 | #define HPAGE_MASK (~(HPAGE_SIZE - 1)) | 39 | #define HPAGE_MASK (~(HPAGE_SIZE - 1)) |
40 | #define HUGETLB_PAGE_ORDER (HPAGE_SHIFT - PAGE_SHIFT) | 40 | #define HUGETLB_PAGE_ORDER (HPAGE_SHIFT - PAGE_SHIFT) |
41 | #else /* !CONFIG_HUGETLB_PAGE */ | 41 | #else /* !CONFIG_HUGETLB_PAGE */ |
42 | # ifndef BUILD_BUG | ||
43 | # define BUILD_BUG() do { extern void __build_bug(void); __build_bug(); } while (0) | ||
44 | # endif | ||
45 | #define HPAGE_SHIFT ({BUILD_BUG(); 0; }) | 42 | #define HPAGE_SHIFT ({BUILD_BUG(); 0; }) |
46 | #define HPAGE_SIZE ({BUILD_BUG(); 0; }) | 43 | #define HPAGE_SIZE ({BUILD_BUG(); 0; }) |
47 | #define HPAGE_MASK ({BUILD_BUG(); 0; }) | 44 | #define HPAGE_MASK ({BUILD_BUG(); 0; }) |
diff --git a/arch/mips/kernel/smp-bmips.c b/arch/mips/kernel/smp-bmips.c index 58fe71afd879..d5e950ab8527 100644 --- a/arch/mips/kernel/smp-bmips.c +++ b/arch/mips/kernel/smp-bmips.c | |||
@@ -8,7 +8,6 @@ | |||
8 | * SMP support for BMIPS | 8 | * SMP support for BMIPS |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <linux/version.h> | ||
12 | #include <linux/init.h> | 11 | #include <linux/init.h> |
13 | #include <linux/sched.h> | 12 | #include <linux/sched.h> |
14 | #include <linux/mm.h> | 13 | #include <linux/mm.h> |
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index cc4a3f120f54..d79ae5437b58 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c | |||
@@ -1135,7 +1135,7 @@ asmlinkage void do_mt(struct pt_regs *regs) | |||
1135 | printk(KERN_DEBUG "YIELD Scheduler Exception\n"); | 1135 | printk(KERN_DEBUG "YIELD Scheduler Exception\n"); |
1136 | break; | 1136 | break; |
1137 | case 5: | 1137 | case 5: |
1138 | printk(KERN_DEBUG "Gating Storage Schedulier Exception\n"); | 1138 | printk(KERN_DEBUG "Gating Storage Scheduler Exception\n"); |
1139 | break; | 1139 | break; |
1140 | default: | 1140 | default: |
1141 | printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n", | 1141 | printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n", |
diff --git a/arch/mips/kernel/vmlinux.lds.S b/arch/mips/kernel/vmlinux.lds.S index a81176f44c74..924da5eb7031 100644 --- a/arch/mips/kernel/vmlinux.lds.S +++ b/arch/mips/kernel/vmlinux.lds.S | |||
@@ -69,7 +69,6 @@ SECTIONS | |||
69 | RODATA | 69 | RODATA |
70 | 70 | ||
71 | /* writeable */ | 71 | /* writeable */ |
72 | _sdata = .; /* Start of data section */ | ||
73 | .data : { /* Data */ | 72 | .data : { /* Data */ |
74 | . = . + DATAOFFSET; /* for CONFIG_MAPPED_KERNEL */ | 73 | . = . + DATAOFFSET; /* for CONFIG_MAPPED_KERNEL */ |
75 | 74 | ||
diff --git a/arch/mips/mm/fault.c b/arch/mips/mm/fault.c index 937cf3368164..69ebd586d7ff 100644 --- a/arch/mips/mm/fault.c +++ b/arch/mips/mm/fault.c | |||
@@ -42,6 +42,8 @@ asmlinkage void __kprobes do_page_fault(struct pt_regs *regs, unsigned long writ | |||
42 | const int field = sizeof(unsigned long) * 2; | 42 | const int field = sizeof(unsigned long) * 2; |
43 | siginfo_t info; | 43 | siginfo_t info; |
44 | int fault; | 44 | int fault; |
45 | unsigned int flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE | | ||
46 | (write ? FAULT_FLAG_WRITE : 0); | ||
45 | 47 | ||
46 | #if 0 | 48 | #if 0 |
47 | printk("Cpu%d[%s:%d:%0*lx:%ld:%0*lx]\n", raw_smp_processor_id(), | 49 | printk("Cpu%d[%s:%d:%0*lx:%ld:%0*lx]\n", raw_smp_processor_id(), |
@@ -91,6 +93,7 @@ asmlinkage void __kprobes do_page_fault(struct pt_regs *regs, unsigned long writ | |||
91 | if (in_atomic() || !mm) | 93 | if (in_atomic() || !mm) |
92 | goto bad_area_nosemaphore; | 94 | goto bad_area_nosemaphore; |
93 | 95 | ||
96 | retry: | ||
94 | down_read(&mm->mmap_sem); | 97 | down_read(&mm->mmap_sem); |
95 | vma = find_vma(mm, address); | 98 | vma = find_vma(mm, address); |
96 | if (!vma) | 99 | if (!vma) |
@@ -144,7 +147,11 @@ good_area: | |||
144 | * make sure we exit gracefully rather than endlessly redo | 147 | * make sure we exit gracefully rather than endlessly redo |
145 | * the fault. | 148 | * the fault. |
146 | */ | 149 | */ |
147 | fault = handle_mm_fault(mm, vma, address, write ? FAULT_FLAG_WRITE : 0); | 150 | fault = handle_mm_fault(mm, vma, address, flags); |
151 | |||
152 | if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) | ||
153 | return; | ||
154 | |||
148 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, address); | 155 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, address); |
149 | if (unlikely(fault & VM_FAULT_ERROR)) { | 156 | if (unlikely(fault & VM_FAULT_ERROR)) { |
150 | if (fault & VM_FAULT_OOM) | 157 | if (fault & VM_FAULT_OOM) |
@@ -153,12 +160,27 @@ good_area: | |||
153 | goto do_sigbus; | 160 | goto do_sigbus; |
154 | BUG(); | 161 | BUG(); |
155 | } | 162 | } |
156 | if (fault & VM_FAULT_MAJOR) { | 163 | if (flags & FAULT_FLAG_ALLOW_RETRY) { |
157 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, regs, address); | 164 | if (fault & VM_FAULT_MAJOR) { |
158 | tsk->maj_flt++; | 165 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, |
159 | } else { | 166 | regs, address); |
160 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs, address); | 167 | tsk->maj_flt++; |
161 | tsk->min_flt++; | 168 | } else { |
169 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, | ||
170 | regs, address); | ||
171 | tsk->min_flt++; | ||
172 | } | ||
173 | if (fault & VM_FAULT_RETRY) { | ||
174 | flags &= ~FAULT_FLAG_ALLOW_RETRY; | ||
175 | |||
176 | /* | ||
177 | * No need to up_read(&mm->mmap_sem) as we would | ||
178 | * have already released it in __lock_page_or_retry | ||
179 | * in mm/filemap.c. | ||
180 | */ | ||
181 | |||
182 | goto retry; | ||
183 | } | ||
162 | } | 184 | } |
163 | 185 | ||
164 | up_read(&mm->mmap_sem); | 186 | up_read(&mm->mmap_sem); |
diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c index aec2b111d35b..15521505ebe8 100644 --- a/arch/mips/pci/pci.c +++ b/arch/mips/pci/pci.c | |||
@@ -279,7 +279,6 @@ void __devinit pcibios_fixup_bus(struct pci_bus *bus) | |||
279 | { | 279 | { |
280 | /* Propagate hose info into the subordinate devices. */ | 280 | /* Propagate hose info into the subordinate devices. */ |
281 | 281 | ||
282 | struct list_head *ln; | ||
283 | struct pci_dev *dev = bus->self; | 282 | struct pci_dev *dev = bus->self; |
284 | 283 | ||
285 | if (pci_probe_only && dev && | 284 | if (pci_probe_only && dev && |
@@ -288,9 +287,7 @@ void __devinit pcibios_fixup_bus(struct pci_bus *bus) | |||
288 | pcibios_fixup_device_resources(dev, bus); | 287 | pcibios_fixup_device_resources(dev, bus); |
289 | } | 288 | } |
290 | 289 | ||
291 | for (ln = bus->devices.next; ln != &bus->devices; ln = ln->next) { | 290 | list_for_each_entry(dev, &bus->devices, bus_list) { |
292 | dev = pci_dev_b(ln); | ||
293 | |||
294 | if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI) | 291 | if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI) |
295 | pcibios_fixup_device_resources(dev, bus); | 292 | pcibios_fixup_device_resources(dev, bus); |
296 | } | 293 | } |
diff --git a/arch/mips/pmc-sierra/yosemite/ht-irq.c b/arch/mips/pmc-sierra/yosemite/ht-irq.c index 86b98e98fb4f..62ead6601c69 100644 --- a/arch/mips/pmc-sierra/yosemite/ht-irq.c +++ b/arch/mips/pmc-sierra/yosemite/ht-irq.c | |||
@@ -35,16 +35,6 @@ | |||
35 | */ | 35 | */ |
36 | void __init titan_ht_pcibios_fixup_bus(struct pci_bus *bus) | 36 | void __init titan_ht_pcibios_fixup_bus(struct pci_bus *bus) |
37 | { | 37 | { |
38 | struct pci_bus *current_bus = bus; | ||
39 | struct pci_dev *devices; | ||
40 | struct list_head *devices_link; | ||
41 | |||
42 | list_for_each(devices_link, &(current_bus->devices)) { | ||
43 | devices = pci_dev_b(devices_link); | ||
44 | if (devices == NULL) | ||
45 | continue; | ||
46 | } | ||
47 | |||
48 | /* | 38 | /* |
49 | * PLX and SPKT related changes go here | 39 | * PLX and SPKT related changes go here |
50 | */ | 40 | */ |
diff --git a/arch/mips/txx9/generic/7segled.c b/arch/mips/txx9/generic/7segled.c index 8e93b2122524..4642f56e70e5 100644 --- a/arch/mips/txx9/generic/7segled.c +++ b/arch/mips/txx9/generic/7segled.c | |||
@@ -102,7 +102,7 @@ static int __init tx_7segled_init_sysfs(void) | |||
102 | break; | 102 | break; |
103 | } | 103 | } |
104 | dev->id = i; | 104 | dev->id = i; |
105 | dev->dev = &tx_7segled_subsys; | 105 | dev->bus = &tx_7segled_subsys; |
106 | error = device_register(dev); | 106 | error = device_register(dev); |
107 | if (!error) { | 107 | if (!error) { |
108 | device_create_file(dev, &dev_attr_ascii); | 108 | device_create_file(dev, &dev_attr_ascii); |
diff --git a/arch/sh/kernel/cpu/sh2a/ex.S b/arch/sh/kernel/cpu/sh2a/ex.S index 3ead9e63965a..4568066700cf 100644 --- a/arch/sh/kernel/cpu/sh2a/ex.S +++ b/arch/sh/kernel/cpu/sh2a/ex.S | |||
@@ -66,6 +66,7 @@ vector = 0 | |||
66 | .long exception_entry0 + vector * 6 | 66 | .long exception_entry0 + vector * 6 |
67 | vector = vector + 1 | 67 | vector = vector + 1 |
68 | .endr | 68 | .endr |
69 | vector = 0 | ||
69 | .rept 256 | 70 | .rept 256 |
70 | .long exception_entry1 + vector * 6 | 71 | .long exception_entry1 + vector * 6 |
71 | vector = vector + 1 | 72 | vector = vector + 1 |
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7757.c b/arch/sh/kernel/cpu/sh4a/clock-sh7757.c index 0fbff1422f54..0bd21c82151b 100644 --- a/arch/sh/kernel/cpu/sh4a/clock-sh7757.c +++ b/arch/sh/kernel/cpu/sh4a/clock-sh7757.c | |||
@@ -79,7 +79,7 @@ struct clk div4_clks[DIV4_NR] = { | |||
79 | #define MSTPCR1 0xffc80034 | 79 | #define MSTPCR1 0xffc80034 |
80 | #define MSTPCR2 0xffc10028 | 80 | #define MSTPCR2 0xffc10028 |
81 | 81 | ||
82 | enum { MSTP004, MSTP000, MSTP114, MSTP113, MSTP112, | 82 | enum { MSTP004, MSTP000, MSTP127, MSTP114, MSTP113, MSTP112, |
83 | MSTP111, MSTP110, MSTP103, MSTP102, MSTP220, | 83 | MSTP111, MSTP110, MSTP103, MSTP102, MSTP220, |
84 | MSTP_NR }; | 84 | MSTP_NR }; |
85 | 85 | ||
@@ -89,6 +89,7 @@ static struct clk mstp_clks[MSTP_NR] = { | |||
89 | [MSTP000] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 0, 0), | 89 | [MSTP000] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 0, 0), |
90 | 90 | ||
91 | /* MSTPCR1 */ | 91 | /* MSTPCR1 */ |
92 | [MSTP127] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR1, 27, 0), | ||
92 | [MSTP114] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR1, 14, 0), | 93 | [MSTP114] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR1, 14, 0), |
93 | [MSTP113] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR1, 13, 0), | 94 | [MSTP113] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR1, 13, 0), |
94 | [MSTP112] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR1, 12, 0), | 95 | [MSTP112] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR1, 12, 0), |
@@ -131,6 +132,7 @@ static struct clk_lookup lookups[] = { | |||
131 | CLKDEV_CON_ID("usb_fck", &mstp_clks[MSTP103]), | 132 | CLKDEV_CON_ID("usb_fck", &mstp_clks[MSTP103]), |
132 | CLKDEV_DEV_ID("renesas_usbhs.0", &mstp_clks[MSTP102]), | 133 | CLKDEV_DEV_ID("renesas_usbhs.0", &mstp_clks[MSTP102]), |
133 | CLKDEV_CON_ID("mmc0", &mstp_clks[MSTP220]), | 134 | CLKDEV_CON_ID("mmc0", &mstp_clks[MSTP220]), |
135 | CLKDEV_CON_ID("rspi2", &mstp_clks[MSTP127]), | ||
134 | }; | 136 | }; |
135 | 137 | ||
136 | int __init arch_clk_init(void) | 138 | int __init arch_clk_init(void) |
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7785.c b/arch/sh/kernel/cpu/sh4a/clock-sh7785.c index e5b420cc1265..2b314439d359 100644 --- a/arch/sh/kernel/cpu/sh4a/clock-sh7785.c +++ b/arch/sh/kernel/cpu/sh4a/clock-sh7785.c | |||
@@ -156,7 +156,7 @@ static struct clk_lookup lookups[] = { | |||
156 | CLKDEV_CON_ID("siof_fck", &mstp_clks[MSTP003]), | 156 | CLKDEV_CON_ID("siof_fck", &mstp_clks[MSTP003]), |
157 | CLKDEV_CON_ID("hspi_fck", &mstp_clks[MSTP002]), | 157 | CLKDEV_CON_ID("hspi_fck", &mstp_clks[MSTP002]), |
158 | CLKDEV_CON_ID("hudi_fck", &mstp_clks[MSTP119]), | 158 | CLKDEV_CON_ID("hudi_fck", &mstp_clks[MSTP119]), |
159 | CLKDEV_CON_ID("ubc_fck", &mstp_clks[MSTP117]), | 159 | CLKDEV_CON_ID("ubc0", &mstp_clks[MSTP117]), |
160 | CLKDEV_CON_ID("dmac_11_6_fck", &mstp_clks[MSTP105]), | 160 | CLKDEV_CON_ID("dmac_11_6_fck", &mstp_clks[MSTP105]), |
161 | CLKDEV_CON_ID("dmac_5_0_fck", &mstp_clks[MSTP104]), | 161 | CLKDEV_CON_ID("dmac_5_0_fck", &mstp_clks[MSTP104]), |
162 | CLKDEV_CON_ID("gdta_fck", &mstp_clks[MSTP100]), | 162 | CLKDEV_CON_ID("gdta_fck", &mstp_clks[MSTP100]), |
diff --git a/arch/sparc/Makefile b/arch/sparc/Makefile index ad1fb5d969f3..eddcfb36aafb 100644 --- a/arch/sparc/Makefile +++ b/arch/sparc/Makefile | |||
@@ -31,7 +31,7 @@ UTS_MACHINE := sparc | |||
31 | 31 | ||
32 | #KBUILD_CFLAGS += -g -pipe -fcall-used-g5 -fcall-used-g7 | 32 | #KBUILD_CFLAGS += -g -pipe -fcall-used-g5 -fcall-used-g7 |
33 | KBUILD_CFLAGS += -m32 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7 | 33 | KBUILD_CFLAGS += -m32 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7 |
34 | KBUILD_AFLAGS += -m32 | 34 | KBUILD_AFLAGS += -m32 -Wa,-Av8 |
35 | 35 | ||
36 | #LDFLAGS_vmlinux = -N -Ttext 0xf0004000 | 36 | #LDFLAGS_vmlinux = -N -Ttext 0xf0004000 |
37 | # Since 2.5.40, the first stage is left not btfix-ed. | 37 | # Since 2.5.40, the first stage is left not btfix-ed. |
diff --git a/arch/tile/configs/tilegx_defconfig b/arch/tile/configs/tilegx_defconfig index dafdbbae1124..b8d99aca5431 100644 --- a/arch/tile/configs/tilegx_defconfig +++ b/arch/tile/configs/tilegx_defconfig | |||
@@ -1,337 +1,93 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux/tilegx 2.6.39-rc5 Kernel Configuration | ||
4 | # Wed May 4 11:08:04 2011 | ||
5 | # | ||
6 | CONFIG_TILE=y | ||
7 | CONFIG_MMU=y | ||
8 | CONFIG_GENERIC_CSUM=y | ||
9 | CONFIG_SEMAPHORE_SLEEPERS=y | ||
10 | CONFIG_HAVE_ARCH_ALLOC_REMAP=y | ||
11 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y | ||
12 | CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y | ||
13 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
14 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
15 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
16 | CONFIG_DEFAULT_MIGRATION_COST=10000000 | ||
17 | CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y | ||
18 | CONFIG_ARCH_PHYS_ADDR_T_64BIT=y | ||
19 | CONFIG_ARCH_DMA_ADDR_T_64BIT=y | ||
20 | CONFIG_LOCKDEP_SUPPORT=y | ||
21 | CONFIG_STACKTRACE_SUPPORT=y | ||
22 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | ||
23 | CONFIG_ARCH_DISCONTIGMEM_DEFAULT=y | ||
24 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
25 | CONFIG_STRICT_DEVMEM=y | ||
26 | CONFIG_SMP=y | ||
27 | # CONFIG_DEBUG_COPY_FROM_USER is not set | ||
28 | CONFIG_HVC_TILE=y | ||
29 | CONFIG_TILEGX=y | 1 | CONFIG_TILEGX=y |
30 | CONFIG_64BIT=y | ||
31 | CONFIG_ARCH_DEFCONFIG="arch/tile/configs/tilegx_defconfig" | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
33 | CONFIG_CONSTRUCTORS=y | ||
34 | |||
35 | # | ||
36 | # General setup | ||
37 | # | ||
38 | CONFIG_EXPERIMENTAL=y | 2 | CONFIG_EXPERIMENTAL=y |
39 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
40 | CONFIG_CROSS_COMPILE="" | ||
41 | CONFIG_LOCALVERSION="" | ||
42 | # CONFIG_LOCALVERSION_AUTO is not set | 3 | # CONFIG_LOCALVERSION_AUTO is not set |
43 | CONFIG_SWAP=y | ||
44 | CONFIG_SYSVIPC=y | 4 | CONFIG_SYSVIPC=y |
45 | CONFIG_SYSVIPC_SYSCTL=y | ||
46 | CONFIG_POSIX_MQUEUE=y | 5 | CONFIG_POSIX_MQUEUE=y |
47 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
48 | CONFIG_BSD_PROCESS_ACCT=y | 6 | CONFIG_BSD_PROCESS_ACCT=y |
49 | CONFIG_BSD_PROCESS_ACCT_V3=y | 7 | CONFIG_BSD_PROCESS_ACCT_V3=y |
50 | # CONFIG_FHANDLE is not set | 8 | CONFIG_FHANDLE=y |
51 | CONFIG_TASKSTATS=y | 9 | CONFIG_TASKSTATS=y |
52 | CONFIG_TASK_DELAY_ACCT=y | 10 | CONFIG_TASK_DELAY_ACCT=y |
53 | CONFIG_TASK_XACCT=y | 11 | CONFIG_TASK_XACCT=y |
54 | CONFIG_TASK_IO_ACCOUNTING=y | 12 | CONFIG_TASK_IO_ACCOUNTING=y |
55 | CONFIG_AUDIT=y | 13 | CONFIG_AUDIT=y |
56 | CONFIG_HAVE_GENERIC_HARDIRQS=y | ||
57 | |||
58 | # | ||
59 | # IRQ subsystem | ||
60 | # | ||
61 | CONFIG_GENERIC_HARDIRQS=y | ||
62 | CONFIG_GENERIC_IRQ_PROBE=y | ||
63 | CONFIG_GENERIC_IRQ_SHOW=y | ||
64 | CONFIG_GENERIC_PENDING_IRQ=y | ||
65 | |||
66 | # | ||
67 | # RCU Subsystem | ||
68 | # | ||
69 | CONFIG_TREE_RCU=y | ||
70 | # CONFIG_PREEMPT_RCU is not set | ||
71 | # CONFIG_RCU_TRACE is not set | ||
72 | CONFIG_RCU_FANOUT=64 | ||
73 | # CONFIG_RCU_FANOUT_EXACT is not set | ||
74 | # CONFIG_RCU_FAST_NO_HZ is not set | ||
75 | # CONFIG_TREE_RCU_TRACE is not set | ||
76 | # CONFIG_IKCONFIG is not set | ||
77 | CONFIG_LOG_BUF_SHIFT=19 | 14 | CONFIG_LOG_BUF_SHIFT=19 |
78 | CONFIG_CGROUPS=y | 15 | CONFIG_CGROUPS=y |
79 | CONFIG_CGROUP_DEBUG=y | 16 | CONFIG_CGROUP_DEBUG=y |
80 | CONFIG_CGROUP_NS=y | ||
81 | # CONFIG_CGROUP_FREEZER is not set | ||
82 | CONFIG_CGROUP_DEVICE=y | 17 | CONFIG_CGROUP_DEVICE=y |
83 | CONFIG_CPUSETS=y | 18 | CONFIG_CPUSETS=y |
84 | CONFIG_PROC_PID_CPUSET=y | ||
85 | CONFIG_CGROUP_CPUACCT=y | 19 | CONFIG_CGROUP_CPUACCT=y |
86 | CONFIG_RESOURCE_COUNTERS=y | 20 | CONFIG_RESOURCE_COUNTERS=y |
87 | CONFIG_CGROUP_MEM_RES_CTLR=y | 21 | CONFIG_CGROUP_MEM_RES_CTLR=y |
88 | CONFIG_CGROUP_MEM_RES_CTLR_SWAP=y | 22 | CONFIG_CGROUP_MEM_RES_CTLR_SWAP=y |
89 | CONFIG_CGROUP_MEM_RES_CTLR_SWAP_ENABLED=y | ||
90 | CONFIG_CGROUP_SCHED=y | 23 | CONFIG_CGROUP_SCHED=y |
91 | CONFIG_FAIR_GROUP_SCHED=y | ||
92 | CONFIG_RT_GROUP_SCHED=y | 24 | CONFIG_RT_GROUP_SCHED=y |
93 | CONFIG_BLK_CGROUP=y | 25 | CONFIG_BLK_CGROUP=y |
94 | # CONFIG_DEBUG_BLK_CGROUP is not set | ||
95 | CONFIG_NAMESPACES=y | 26 | CONFIG_NAMESPACES=y |
96 | CONFIG_UTS_NS=y | ||
97 | CONFIG_IPC_NS=y | ||
98 | CONFIG_USER_NS=y | ||
99 | CONFIG_PID_NS=y | ||
100 | CONFIG_NET_NS=y | ||
101 | # CONFIG_SCHED_AUTOGROUP is not set | ||
102 | CONFIG_MM_OWNER=y | ||
103 | # CONFIG_SYSFS_DEPRECATED is not set | ||
104 | CONFIG_RELAY=y | 27 | CONFIG_RELAY=y |
105 | CONFIG_BLK_DEV_INITRD=y | 28 | CONFIG_BLK_DEV_INITRD=y |
106 | CONFIG_INITRAMFS_SOURCE="usr/contents.txt" | ||
107 | CONFIG_INITRAMFS_ROOT_UID=0 | ||
108 | CONFIG_INITRAMFS_ROOT_GID=0 | ||
109 | CONFIG_RD_GZIP=y | ||
110 | # CONFIG_RD_BZIP2 is not set | ||
111 | # CONFIG_RD_LZMA is not set | ||
112 | # CONFIG_RD_XZ is not set | ||
113 | # CONFIG_RD_LZO is not set | ||
114 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
115 | # CONFIG_INITRAMFS_COMPRESSION_GZIP is not set | ||
116 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
117 | CONFIG_SYSCTL=y | ||
118 | CONFIG_ANON_INODES=y | ||
119 | CONFIG_EXPERT=y | ||
120 | CONFIG_SYSCTL_SYSCALL=y | 29 | CONFIG_SYSCTL_SYSCALL=y |
121 | CONFIG_KALLSYMS=y | ||
122 | # CONFIG_KALLSYMS_ALL is not set | ||
123 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
124 | CONFIG_HOTPLUG=y | ||
125 | CONFIG_PRINTK=y | ||
126 | CONFIG_BUG=y | ||
127 | CONFIG_ELF_CORE=y | ||
128 | CONFIG_BASE_FULL=y | ||
129 | CONFIG_FUTEX=y | ||
130 | CONFIG_EPOLL=y | ||
131 | CONFIG_SIGNALFD=y | ||
132 | CONFIG_TIMERFD=y | ||
133 | CONFIG_EVENTFD=y | ||
134 | CONFIG_SHMEM=y | ||
135 | CONFIG_AIO=y | ||
136 | CONFIG_EMBEDDED=y | 30 | CONFIG_EMBEDDED=y |
137 | |||
138 | # | ||
139 | # Kernel Performance Events And Counters | ||
140 | # | ||
141 | CONFIG_VM_EVENT_COUNTERS=y | ||
142 | CONFIG_PCI_QUIRKS=y | ||
143 | CONFIG_SLUB_DEBUG=y | ||
144 | # CONFIG_COMPAT_BRK is not set | 31 | # CONFIG_COMPAT_BRK is not set |
145 | # CONFIG_SLAB is not set | ||
146 | CONFIG_SLUB=y | ||
147 | # CONFIG_SLOB is not set | ||
148 | CONFIG_PROFILING=y | 32 | CONFIG_PROFILING=y |
149 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
150 | |||
151 | # | ||
152 | # GCOV-based kernel profiling | ||
153 | # | ||
154 | # CONFIG_GCOV_KERNEL is not set | ||
155 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
156 | CONFIG_SLABINFO=y | ||
157 | CONFIG_RT_MUTEXES=y | ||
158 | CONFIG_BASE_SMALL=0 | ||
159 | CONFIG_MODULES=y | 33 | CONFIG_MODULES=y |
160 | CONFIG_MODULE_FORCE_LOAD=y | 34 | CONFIG_MODULE_FORCE_LOAD=y |
161 | CONFIG_MODULE_UNLOAD=y | 35 | CONFIG_MODULE_UNLOAD=y |
162 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
163 | # CONFIG_MODVERSIONS is not set | ||
164 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
165 | CONFIG_STOP_MACHINE=y | ||
166 | CONFIG_BLOCK=y | ||
167 | CONFIG_BLK_DEV_BSG=y | ||
168 | CONFIG_BLK_DEV_INTEGRITY=y | 36 | CONFIG_BLK_DEV_INTEGRITY=y |
169 | # CONFIG_BLK_DEV_THROTTLING is not set | 37 | CONFIG_PARTITION_ADVANCED=y |
170 | CONFIG_BLOCK_COMPAT=y | 38 | CONFIG_OSF_PARTITION=y |
171 | 39 | CONFIG_AMIGA_PARTITION=y | |
172 | # | 40 | CONFIG_MAC_PARTITION=y |
173 | # IO Schedulers | 41 | CONFIG_BSD_DISKLABEL=y |
174 | # | 42 | CONFIG_MINIX_SUBPARTITION=y |
175 | CONFIG_IOSCHED_NOOP=y | 43 | CONFIG_SOLARIS_X86_PARTITION=y |
176 | CONFIG_IOSCHED_DEADLINE=y | 44 | CONFIG_UNIXWARE_DISKLABEL=y |
177 | CONFIG_IOSCHED_CFQ=y | 45 | CONFIG_SGI_PARTITION=y |
46 | CONFIG_SUN_PARTITION=y | ||
47 | CONFIG_KARMA_PARTITION=y | ||
48 | CONFIG_EFI_PARTITION=y | ||
178 | CONFIG_CFQ_GROUP_IOSCHED=y | 49 | CONFIG_CFQ_GROUP_IOSCHED=y |
179 | # CONFIG_DEFAULT_DEADLINE is not set | ||
180 | CONFIG_DEFAULT_CFQ=y | ||
181 | # CONFIG_DEFAULT_NOOP is not set | ||
182 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
183 | CONFIG_PADATA=y | ||
184 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
185 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
186 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
187 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
188 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
189 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
190 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
191 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
192 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
193 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
194 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
195 | # CONFIG_INLINE_READ_LOCK is not set | ||
196 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
197 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
198 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
199 | CONFIG_INLINE_READ_UNLOCK=y | ||
200 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
201 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
202 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
203 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
204 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
205 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
206 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
207 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
208 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
209 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
210 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
211 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
212 | CONFIG_MUTEX_SPIN_ON_OWNER=y | ||
213 | |||
214 | # | ||
215 | # Tilera-specific configuration | ||
216 | # | ||
217 | CONFIG_NR_CPUS=100 | 50 | CONFIG_NR_CPUS=100 |
218 | CONFIG_TICK_ONESHOT=y | ||
219 | CONFIG_NO_HZ=y | 51 | CONFIG_NO_HZ=y |
220 | CONFIG_HIGH_RES_TIMERS=y | 52 | CONFIG_HIGH_RES_TIMERS=y |
221 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
222 | CONFIG_HZ_100=y | 53 | CONFIG_HZ_100=y |
223 | # CONFIG_HZ_250 is not set | ||
224 | # CONFIG_HZ_300 is not set | ||
225 | # CONFIG_HZ_1000 is not set | ||
226 | CONFIG_HZ=100 | ||
227 | CONFIG_SCHED_HRTICK=y | ||
228 | # CONFIG_KEXEC is not set | ||
229 | CONFIG_COMPAT=y | ||
230 | CONFIG_SYSVIPC_COMPAT=y | ||
231 | # CONFIG_HIGHMEM is not set | ||
232 | CONFIG_NUMA=y | ||
233 | CONFIG_NODES_SHIFT=2 | ||
234 | CONFIG_PAGE_OFFSET=0xC0000000 | ||
235 | CONFIG_SELECT_MEMORY_MODEL=y | ||
236 | CONFIG_DISCONTIGMEM_MANUAL=y | ||
237 | CONFIG_DISCONTIGMEM=y | ||
238 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
239 | CONFIG_NEED_MULTIPLE_NODES=y | ||
240 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
241 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
242 | # CONFIG_COMPACTION is not set | ||
243 | CONFIG_MIGRATION=y | ||
244 | CONFIG_PHYS_ADDR_T_64BIT=y | ||
245 | CONFIG_ZONE_DMA_FLAG=0 | ||
246 | CONFIG_VIRT_TO_BUS=y | ||
247 | # CONFIG_KSM is not set | ||
248 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | ||
249 | # CONFIG_CMDLINE_BOOL is not set | ||
250 | CONFIG_VMALLOC_RESERVE=0x1000000 | ||
251 | CONFIG_HARDWALL=y | ||
252 | CONFIG_KERNEL_PL=1 | ||
253 | |||
254 | # | ||
255 | # Bus options | ||
256 | # | ||
257 | CONFIG_PCI=y | ||
258 | CONFIG_PCI_DOMAINS=y | ||
259 | # CONFIG_NO_IOMEM is not set | ||
260 | # CONFIG_NO_IOPORT is not set | ||
261 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
262 | CONFIG_PCI_DEBUG=y | 54 | CONFIG_PCI_DEBUG=y |
263 | # CONFIG_PCI_STUB is not set | ||
264 | # CONFIG_PCI_IOV is not set | ||
265 | # CONFIG_HOTPLUG_PCI is not set | ||
266 | |||
267 | # | ||
268 | # Executable file formats | ||
269 | # | ||
270 | CONFIG_KCORE_ELF=y | ||
271 | CONFIG_BINFMT_ELF=y | ||
272 | CONFIG_COMPAT_BINFMT_ELF=y | ||
273 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 55 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
274 | # CONFIG_HAVE_AOUT is not set | ||
275 | CONFIG_BINFMT_MISC=y | 56 | CONFIG_BINFMT_MISC=y |
276 | CONFIG_NET=y | 57 | CONFIG_NET=y |
277 | |||
278 | # | ||
279 | # Networking options | ||
280 | # | ||
281 | CONFIG_PACKET=y | 58 | CONFIG_PACKET=y |
282 | CONFIG_UNIX=y | 59 | CONFIG_UNIX=y |
283 | CONFIG_XFRM=y | ||
284 | CONFIG_XFRM_USER=y | 60 | CONFIG_XFRM_USER=y |
285 | CONFIG_XFRM_SUB_POLICY=y | 61 | CONFIG_XFRM_SUB_POLICY=y |
286 | CONFIG_XFRM_MIGRATE=y | ||
287 | CONFIG_XFRM_STATISTICS=y | 62 | CONFIG_XFRM_STATISTICS=y |
288 | CONFIG_XFRM_IPCOMP=m | ||
289 | CONFIG_NET_KEY=m | 63 | CONFIG_NET_KEY=m |
290 | CONFIG_NET_KEY_MIGRATE=y | 64 | CONFIG_NET_KEY_MIGRATE=y |
291 | CONFIG_INET=y | 65 | CONFIG_INET=y |
292 | CONFIG_IP_MULTICAST=y | 66 | CONFIG_IP_MULTICAST=y |
293 | CONFIG_IP_ADVANCED_ROUTER=y | 67 | CONFIG_IP_ADVANCED_ROUTER=y |
294 | # CONFIG_IP_FIB_TRIE_STATS is not set | ||
295 | CONFIG_IP_MULTIPLE_TABLES=y | 68 | CONFIG_IP_MULTIPLE_TABLES=y |
296 | CONFIG_IP_ROUTE_MULTIPATH=y | 69 | CONFIG_IP_ROUTE_MULTIPATH=y |
297 | CONFIG_IP_ROUTE_VERBOSE=y | 70 | CONFIG_IP_ROUTE_VERBOSE=y |
298 | CONFIG_IP_ROUTE_CLASSID=y | ||
299 | # CONFIG_IP_PNP is not set | ||
300 | CONFIG_NET_IPIP=m | 71 | CONFIG_NET_IPIP=m |
301 | # CONFIG_NET_IPGRE_DEMUX is not set | ||
302 | CONFIG_IP_MROUTE=y | 72 | CONFIG_IP_MROUTE=y |
303 | # CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set | ||
304 | CONFIG_IP_PIMSM_V1=y | 73 | CONFIG_IP_PIMSM_V1=y |
305 | CONFIG_IP_PIMSM_V2=y | 74 | CONFIG_IP_PIMSM_V2=y |
306 | # CONFIG_ARPD is not set | ||
307 | CONFIG_SYN_COOKIES=y | 75 | CONFIG_SYN_COOKIES=y |
308 | CONFIG_INET_AH=m | 76 | CONFIG_INET_AH=m |
309 | CONFIG_INET_ESP=m | 77 | CONFIG_INET_ESP=m |
310 | CONFIG_INET_IPCOMP=m | 78 | CONFIG_INET_IPCOMP=m |
311 | CONFIG_INET_XFRM_TUNNEL=m | ||
312 | CONFIG_INET_TUNNEL=m | ||
313 | CONFIG_INET_XFRM_MODE_TRANSPORT=m | 79 | CONFIG_INET_XFRM_MODE_TRANSPORT=m |
314 | CONFIG_INET_XFRM_MODE_TUNNEL=m | 80 | CONFIG_INET_XFRM_MODE_TUNNEL=m |
315 | CONFIG_INET_XFRM_MODE_BEET=m | 81 | CONFIG_INET_XFRM_MODE_BEET=m |
316 | CONFIG_INET_LRO=y | ||
317 | CONFIG_INET_DIAG=m | 82 | CONFIG_INET_DIAG=m |
318 | CONFIG_INET_TCP_DIAG=m | ||
319 | CONFIG_TCP_CONG_ADVANCED=y | 83 | CONFIG_TCP_CONG_ADVANCED=y |
320 | CONFIG_TCP_CONG_BIC=m | ||
321 | CONFIG_TCP_CONG_CUBIC=y | ||
322 | CONFIG_TCP_CONG_WESTWOOD=m | ||
323 | CONFIG_TCP_CONG_HTCP=m | ||
324 | CONFIG_TCP_CONG_HSTCP=m | 84 | CONFIG_TCP_CONG_HSTCP=m |
325 | CONFIG_TCP_CONG_HYBLA=m | 85 | CONFIG_TCP_CONG_HYBLA=m |
326 | CONFIG_TCP_CONG_VEGAS=m | ||
327 | CONFIG_TCP_CONG_SCALABLE=m | 86 | CONFIG_TCP_CONG_SCALABLE=m |
328 | CONFIG_TCP_CONG_LP=m | 87 | CONFIG_TCP_CONG_LP=m |
329 | CONFIG_TCP_CONG_VENO=m | 88 | CONFIG_TCP_CONG_VENO=m |
330 | CONFIG_TCP_CONG_YEAH=m | 89 | CONFIG_TCP_CONG_YEAH=m |
331 | CONFIG_TCP_CONG_ILLINOIS=m | 90 | CONFIG_TCP_CONG_ILLINOIS=m |
332 | CONFIG_DEFAULT_CUBIC=y | ||
333 | # CONFIG_DEFAULT_RENO is not set | ||
334 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
335 | CONFIG_TCP_MD5SIG=y | 91 | CONFIG_TCP_MD5SIG=y |
336 | CONFIG_IPV6=y | 92 | CONFIG_IPV6=y |
337 | CONFIG_IPV6_PRIVACY=y | 93 | CONFIG_IPV6_PRIVACY=y |
@@ -342,108 +98,60 @@ CONFIG_INET6_AH=m | |||
342 | CONFIG_INET6_ESP=m | 98 | CONFIG_INET6_ESP=m |
343 | CONFIG_INET6_IPCOMP=m | 99 | CONFIG_INET6_IPCOMP=m |
344 | CONFIG_IPV6_MIP6=m | 100 | CONFIG_IPV6_MIP6=m |
345 | CONFIG_INET6_XFRM_TUNNEL=m | ||
346 | CONFIG_INET6_TUNNEL=m | ||
347 | CONFIG_INET6_XFRM_MODE_TRANSPORT=m | 101 | CONFIG_INET6_XFRM_MODE_TRANSPORT=m |
348 | CONFIG_INET6_XFRM_MODE_TUNNEL=m | 102 | CONFIG_INET6_XFRM_MODE_TUNNEL=m |
349 | CONFIG_INET6_XFRM_MODE_BEET=m | 103 | CONFIG_INET6_XFRM_MODE_BEET=m |
350 | CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m | 104 | CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m |
351 | CONFIG_IPV6_SIT=m | 105 | CONFIG_IPV6_SIT=m |
352 | # CONFIG_IPV6_SIT_6RD is not set | ||
353 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
354 | CONFIG_IPV6_TUNNEL=m | 106 | CONFIG_IPV6_TUNNEL=m |
355 | CONFIG_IPV6_MULTIPLE_TABLES=y | 107 | CONFIG_IPV6_MULTIPLE_TABLES=y |
356 | # CONFIG_IPV6_SUBTREES is not set | ||
357 | CONFIG_IPV6_MROUTE=y | 108 | CONFIG_IPV6_MROUTE=y |
358 | # CONFIG_IPV6_MROUTE_MULTIPLE_TABLES is not set | ||
359 | CONFIG_IPV6_PIMSM_V2=y | 109 | CONFIG_IPV6_PIMSM_V2=y |
360 | CONFIG_NETLABEL=y | 110 | CONFIG_NETLABEL=y |
361 | CONFIG_NETWORK_SECMARK=y | ||
362 | # CONFIG_NETWORK_PHY_TIMESTAMPING is not set | ||
363 | CONFIG_NETFILTER=y | 111 | CONFIG_NETFILTER=y |
364 | # CONFIG_NETFILTER_DEBUG is not set | 112 | CONFIG_NF_CONNTRACK=m |
365 | CONFIG_NETFILTER_ADVANCED=y | ||
366 | CONFIG_BRIDGE_NETFILTER=y | ||
367 | |||
368 | # | ||
369 | # Core Netfilter Configuration | ||
370 | # | ||
371 | CONFIG_NETFILTER_NETLINK=m | ||
372 | CONFIG_NETFILTER_NETLINK_QUEUE=m | ||
373 | CONFIG_NETFILTER_NETLINK_LOG=m | ||
374 | CONFIG_NF_CONNTRACK=y | ||
375 | CONFIG_NF_CONNTRACK_MARK=y | ||
376 | CONFIG_NF_CONNTRACK_SECMARK=y | 113 | CONFIG_NF_CONNTRACK_SECMARK=y |
377 | CONFIG_NF_CONNTRACK_ZONES=y | 114 | CONFIG_NF_CONNTRACK_ZONES=y |
378 | CONFIG_NF_CONNTRACK_EVENTS=y | 115 | CONFIG_NF_CONNTRACK_EVENTS=y |
379 | # CONFIG_NF_CONNTRACK_TIMESTAMP is not set | ||
380 | CONFIG_NF_CT_PROTO_DCCP=m | 116 | CONFIG_NF_CT_PROTO_DCCP=m |
381 | CONFIG_NF_CT_PROTO_GRE=m | ||
382 | CONFIG_NF_CT_PROTO_SCTP=m | ||
383 | CONFIG_NF_CT_PROTO_UDPLITE=m | 117 | CONFIG_NF_CT_PROTO_UDPLITE=m |
384 | CONFIG_NF_CONNTRACK_AMANDA=m | 118 | CONFIG_NF_CONNTRACK_AMANDA=m |
385 | CONFIG_NF_CONNTRACK_FTP=m | 119 | CONFIG_NF_CONNTRACK_FTP=m |
386 | CONFIG_NF_CONNTRACK_H323=m | 120 | CONFIG_NF_CONNTRACK_H323=m |
387 | CONFIG_NF_CONNTRACK_IRC=m | 121 | CONFIG_NF_CONNTRACK_IRC=m |
388 | CONFIG_NF_CONNTRACK_BROADCAST=m | ||
389 | CONFIG_NF_CONNTRACK_NETBIOS_NS=m | 122 | CONFIG_NF_CONNTRACK_NETBIOS_NS=m |
390 | # CONFIG_NF_CONNTRACK_SNMP is not set | ||
391 | CONFIG_NF_CONNTRACK_PPTP=m | 123 | CONFIG_NF_CONNTRACK_PPTP=m |
392 | CONFIG_NF_CONNTRACK_SANE=m | 124 | CONFIG_NF_CONNTRACK_SANE=m |
393 | CONFIG_NF_CONNTRACK_SIP=m | 125 | CONFIG_NF_CONNTRACK_SIP=m |
394 | CONFIG_NF_CONNTRACK_TFTP=m | 126 | CONFIG_NF_CONNTRACK_TFTP=m |
395 | # CONFIG_NF_CT_NETLINK is not set | ||
396 | CONFIG_NETFILTER_TPROXY=m | 127 | CONFIG_NETFILTER_TPROXY=m |
397 | CONFIG_NETFILTER_XTABLES=y | ||
398 | |||
399 | # | ||
400 | # Xtables combined modules | ||
401 | # | ||
402 | CONFIG_NETFILTER_XT_MARK=m | ||
403 | CONFIG_NETFILTER_XT_CONNMARK=m | ||
404 | |||
405 | # | ||
406 | # Xtables targets | ||
407 | # | ||
408 | # CONFIG_NETFILTER_XT_TARGET_AUDIT is not set | ||
409 | # CONFIG_NETFILTER_XT_TARGET_CHECKSUM is not set | ||
410 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 128 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
411 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 129 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
412 | CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m | 130 | CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m |
413 | CONFIG_NETFILTER_XT_TARGET_CT=m | 131 | CONFIG_NETFILTER_XT_TARGET_CT=m |
414 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 132 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
415 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
416 | CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m | 133 | CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m |
417 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 134 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
418 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 135 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
419 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 136 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
420 | CONFIG_NETFILTER_XT_TARGET_NOTRACK=m | 137 | CONFIG_NETFILTER_XT_TARGET_NOTRACK=m |
421 | CONFIG_NETFILTER_XT_TARGET_RATEEST=m | ||
422 | CONFIG_NETFILTER_XT_TARGET_TEE=m | 138 | CONFIG_NETFILTER_XT_TARGET_TEE=m |
423 | CONFIG_NETFILTER_XT_TARGET_TPROXY=m | 139 | CONFIG_NETFILTER_XT_TARGET_TPROXY=m |
424 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 140 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
425 | CONFIG_NETFILTER_XT_TARGET_SECMARK=m | 141 | CONFIG_NETFILTER_XT_TARGET_SECMARK=m |
426 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 142 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
427 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 143 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
428 | |||
429 | # | ||
430 | # Xtables matches | ||
431 | # | ||
432 | # CONFIG_NETFILTER_XT_MATCH_ADDRTYPE is not set | ||
433 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | 144 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m |
434 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 145 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
435 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 146 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
436 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 147 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
437 | CONFIG_NETFILTER_XT_MATCH_CONNMARK=m | 148 | CONFIG_NETFILTER_XT_MATCH_CONNMARK=m |
438 | CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y | 149 | CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m |
439 | # CONFIG_NETFILTER_XT_MATCH_CPU is not set | ||
440 | CONFIG_NETFILTER_XT_MATCH_DCCP=m | 150 | CONFIG_NETFILTER_XT_MATCH_DCCP=m |
441 | # CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set | ||
442 | CONFIG_NETFILTER_XT_MATCH_DSCP=m | 151 | CONFIG_NETFILTER_XT_MATCH_DSCP=m |
443 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 152 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
444 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 153 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
445 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 154 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
446 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
447 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 155 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
448 | CONFIG_NETFILTER_XT_MATCH_IPVS=m | 156 | CONFIG_NETFILTER_XT_MATCH_IPVS=m |
449 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 157 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
@@ -460,55 +168,29 @@ CONFIG_NETFILTER_XT_MATCH_QUOTA=m | |||
460 | CONFIG_NETFILTER_XT_MATCH_RATEEST=m | 168 | CONFIG_NETFILTER_XT_MATCH_RATEEST=m |
461 | CONFIG_NETFILTER_XT_MATCH_REALM=m | 169 | CONFIG_NETFILTER_XT_MATCH_REALM=m |
462 | CONFIG_NETFILTER_XT_MATCH_RECENT=m | 170 | CONFIG_NETFILTER_XT_MATCH_RECENT=m |
463 | CONFIG_NETFILTER_XT_MATCH_SCTP=m | ||
464 | CONFIG_NETFILTER_XT_MATCH_SOCKET=m | 171 | CONFIG_NETFILTER_XT_MATCH_SOCKET=m |
465 | CONFIG_NETFILTER_XT_MATCH_STATE=y | 172 | CONFIG_NETFILTER_XT_MATCH_STATE=m |
466 | CONFIG_NETFILTER_XT_MATCH_STATISTIC=m | 173 | CONFIG_NETFILTER_XT_MATCH_STATISTIC=m |
467 | CONFIG_NETFILTER_XT_MATCH_STRING=m | 174 | CONFIG_NETFILTER_XT_MATCH_STRING=m |
468 | CONFIG_NETFILTER_XT_MATCH_TCPMSS=m | 175 | CONFIG_NETFILTER_XT_MATCH_TCPMSS=m |
469 | CONFIG_NETFILTER_XT_MATCH_TIME=m | 176 | CONFIG_NETFILTER_XT_MATCH_TIME=m |
470 | CONFIG_NETFILTER_XT_MATCH_U32=m | 177 | CONFIG_NETFILTER_XT_MATCH_U32=m |
471 | # CONFIG_IP_SET is not set | ||
472 | CONFIG_IP_VS=m | 178 | CONFIG_IP_VS=m |
473 | CONFIG_IP_VS_IPV6=y | 179 | CONFIG_IP_VS_IPV6=y |
474 | # CONFIG_IP_VS_DEBUG is not set | ||
475 | CONFIG_IP_VS_TAB_BITS=12 | ||
476 | |||
477 | # | ||
478 | # IPVS transport protocol load balancing support | ||
479 | # | ||
480 | CONFIG_IP_VS_PROTO_TCP=y | 180 | CONFIG_IP_VS_PROTO_TCP=y |
481 | CONFIG_IP_VS_PROTO_UDP=y | 181 | CONFIG_IP_VS_PROTO_UDP=y |
482 | CONFIG_IP_VS_PROTO_AH_ESP=y | ||
483 | CONFIG_IP_VS_PROTO_ESP=y | 182 | CONFIG_IP_VS_PROTO_ESP=y |
484 | CONFIG_IP_VS_PROTO_AH=y | 183 | CONFIG_IP_VS_PROTO_AH=y |
485 | CONFIG_IP_VS_PROTO_SCTP=y | 184 | CONFIG_IP_VS_PROTO_SCTP=y |
486 | |||
487 | # | ||
488 | # IPVS scheduler | ||
489 | # | ||
490 | CONFIG_IP_VS_RR=m | 185 | CONFIG_IP_VS_RR=m |
491 | CONFIG_IP_VS_WRR=m | 186 | CONFIG_IP_VS_WRR=m |
492 | CONFIG_IP_VS_LC=m | 187 | CONFIG_IP_VS_LC=m |
493 | CONFIG_IP_VS_WLC=m | 188 | CONFIG_IP_VS_WLC=m |
494 | CONFIG_IP_VS_LBLC=m | 189 | CONFIG_IP_VS_LBLC=m |
495 | CONFIG_IP_VS_LBLCR=m | 190 | CONFIG_IP_VS_LBLCR=m |
496 | # CONFIG_IP_VS_DH is not set | ||
497 | # CONFIG_IP_VS_SH is not set | ||
498 | CONFIG_IP_VS_SED=m | 191 | CONFIG_IP_VS_SED=m |
499 | CONFIG_IP_VS_NQ=m | 192 | CONFIG_IP_VS_NQ=m |
500 | 193 | CONFIG_NF_CONNTRACK_IPV4=m | |
501 | # | ||
502 | # IPVS application helper | ||
503 | # | ||
504 | # CONFIG_IP_VS_NFCT is not set | ||
505 | # CONFIG_IP_VS_PE_SIP is not set | ||
506 | |||
507 | # | ||
508 | # IP: Netfilter Configuration | ||
509 | # | ||
510 | CONFIG_NF_DEFRAG_IPV4=y | ||
511 | CONFIG_NF_CONNTRACK_IPV4=y | ||
512 | # CONFIG_NF_CONNTRACK_PROC_COMPAT is not set | 194 | # CONFIG_NF_CONNTRACK_PROC_COMPAT is not set |
513 | CONFIG_IP_NF_QUEUE=m | 195 | CONFIG_IP_NF_QUEUE=m |
514 | CONFIG_IP_NF_IPTABLES=y | 196 | CONFIG_IP_NF_IPTABLES=y |
@@ -519,9 +201,7 @@ CONFIG_IP_NF_FILTER=y | |||
519 | CONFIG_IP_NF_TARGET_REJECT=y | 201 | CONFIG_IP_NF_TARGET_REJECT=y |
520 | CONFIG_IP_NF_TARGET_LOG=m | 202 | CONFIG_IP_NF_TARGET_LOG=m |
521 | CONFIG_IP_NF_TARGET_ULOG=m | 203 | CONFIG_IP_NF_TARGET_ULOG=m |
522 | # CONFIG_NF_NAT is not set | ||
523 | CONFIG_IP_NF_MANGLE=m | 204 | CONFIG_IP_NF_MANGLE=m |
524 | # CONFIG_IP_NF_TARGET_CLUSTERIP is not set | ||
525 | CONFIG_IP_NF_TARGET_ECN=m | 205 | CONFIG_IP_NF_TARGET_ECN=m |
526 | CONFIG_IP_NF_TARGET_TTL=m | 206 | CONFIG_IP_NF_TARGET_TTL=m |
527 | CONFIG_IP_NF_RAW=m | 207 | CONFIG_IP_NF_RAW=m |
@@ -529,11 +209,6 @@ CONFIG_IP_NF_SECURITY=m | |||
529 | CONFIG_IP_NF_ARPTABLES=m | 209 | CONFIG_IP_NF_ARPTABLES=m |
530 | CONFIG_IP_NF_ARPFILTER=m | 210 | CONFIG_IP_NF_ARPFILTER=m |
531 | CONFIG_IP_NF_ARP_MANGLE=m | 211 | CONFIG_IP_NF_ARP_MANGLE=m |
532 | |||
533 | # | ||
534 | # IPv6: Netfilter Configuration | ||
535 | # | ||
536 | CONFIG_NF_DEFRAG_IPV6=m | ||
537 | CONFIG_NF_CONNTRACK_IPV6=m | 212 | CONFIG_NF_CONNTRACK_IPV6=m |
538 | CONFIG_IP6_NF_QUEUE=m | 213 | CONFIG_IP6_NF_QUEUE=m |
539 | CONFIG_IP6_NF_IPTABLES=m | 214 | CONFIG_IP6_NF_IPTABLES=m |
@@ -574,57 +249,20 @@ CONFIG_BRIDGE_EBT_SNAT=m | |||
574 | CONFIG_BRIDGE_EBT_LOG=m | 249 | CONFIG_BRIDGE_EBT_LOG=m |
575 | CONFIG_BRIDGE_EBT_ULOG=m | 250 | CONFIG_BRIDGE_EBT_ULOG=m |
576 | CONFIG_BRIDGE_EBT_NFLOG=m | 251 | CONFIG_BRIDGE_EBT_NFLOG=m |
577 | # CONFIG_IP_DCCP is not set | ||
578 | CONFIG_IP_SCTP=m | ||
579 | # CONFIG_SCTP_DBG_MSG is not set | ||
580 | # CONFIG_SCTP_DBG_OBJCNT is not set | ||
581 | # CONFIG_SCTP_HMAC_NONE is not set | ||
582 | # CONFIG_SCTP_HMAC_SHA1 is not set | ||
583 | CONFIG_SCTP_HMAC_MD5=y | ||
584 | CONFIG_RDS=m | 252 | CONFIG_RDS=m |
585 | CONFIG_RDS_TCP=m | 253 | CONFIG_RDS_TCP=m |
586 | # CONFIG_RDS_DEBUG is not set | ||
587 | # CONFIG_TIPC is not set | ||
588 | # CONFIG_ATM is not set | ||
589 | # CONFIG_L2TP is not set | ||
590 | CONFIG_STP=m | ||
591 | CONFIG_GARP=m | ||
592 | CONFIG_BRIDGE=m | 254 | CONFIG_BRIDGE=m |
593 | CONFIG_BRIDGE_IGMP_SNOOPING=y | ||
594 | CONFIG_NET_DSA=y | 255 | CONFIG_NET_DSA=y |
595 | CONFIG_NET_DSA_TAG_DSA=y | ||
596 | CONFIG_NET_DSA_TAG_EDSA=y | ||
597 | CONFIG_NET_DSA_TAG_TRAILER=y | ||
598 | CONFIG_NET_DSA_MV88E6XXX=y | ||
599 | CONFIG_NET_DSA_MV88E6060=y | ||
600 | CONFIG_NET_DSA_MV88E6XXX_NEED_PPU=y | ||
601 | CONFIG_NET_DSA_MV88E6131=y | ||
602 | CONFIG_NET_DSA_MV88E6123_61_65=y | ||
603 | CONFIG_VLAN_8021Q=m | 256 | CONFIG_VLAN_8021Q=m |
604 | CONFIG_VLAN_8021Q_GVRP=y | 257 | CONFIG_VLAN_8021Q_GVRP=y |
605 | # CONFIG_DECNET is not set | ||
606 | CONFIG_LLC=m | ||
607 | # CONFIG_LLC2 is not set | ||
608 | # CONFIG_IPX is not set | ||
609 | # CONFIG_ATALK is not set | ||
610 | # CONFIG_X25 is not set | ||
611 | # CONFIG_LAPB is not set | ||
612 | # CONFIG_ECONET is not set | ||
613 | # CONFIG_WAN_ROUTER is not set | ||
614 | CONFIG_PHONET=m | 258 | CONFIG_PHONET=m |
615 | # CONFIG_IEEE802154 is not set | ||
616 | CONFIG_NET_SCHED=y | 259 | CONFIG_NET_SCHED=y |
617 | |||
618 | # | ||
619 | # Queueing/Scheduling | ||
620 | # | ||
621 | CONFIG_NET_SCH_CBQ=m | 260 | CONFIG_NET_SCH_CBQ=m |
622 | CONFIG_NET_SCH_HTB=m | 261 | CONFIG_NET_SCH_HTB=m |
623 | CONFIG_NET_SCH_HFSC=m | 262 | CONFIG_NET_SCH_HFSC=m |
624 | CONFIG_NET_SCH_PRIO=m | 263 | CONFIG_NET_SCH_PRIO=m |
625 | CONFIG_NET_SCH_MULTIQ=m | 264 | CONFIG_NET_SCH_MULTIQ=m |
626 | CONFIG_NET_SCH_RED=m | 265 | CONFIG_NET_SCH_RED=m |
627 | # CONFIG_NET_SCH_SFB is not set | ||
628 | CONFIG_NET_SCH_SFQ=m | 266 | CONFIG_NET_SCH_SFQ=m |
629 | CONFIG_NET_SCH_TEQL=m | 267 | CONFIG_NET_SCH_TEQL=m |
630 | CONFIG_NET_SCH_TBF=m | 268 | CONFIG_NET_SCH_TBF=m |
@@ -632,14 +270,7 @@ CONFIG_NET_SCH_GRED=m | |||
632 | CONFIG_NET_SCH_DSMARK=m | 270 | CONFIG_NET_SCH_DSMARK=m |
633 | CONFIG_NET_SCH_NETEM=m | 271 | CONFIG_NET_SCH_NETEM=m |
634 | CONFIG_NET_SCH_DRR=m | 272 | CONFIG_NET_SCH_DRR=m |
635 | # CONFIG_NET_SCH_MQPRIO is not set | ||
636 | # CONFIG_NET_SCH_CHOKE is not set | ||
637 | CONFIG_NET_SCH_INGRESS=m | 273 | CONFIG_NET_SCH_INGRESS=m |
638 | |||
639 | # | ||
640 | # Classification | ||
641 | # | ||
642 | CONFIG_NET_CLS=y | ||
643 | CONFIG_NET_CLS_BASIC=m | 274 | CONFIG_NET_CLS_BASIC=m |
644 | CONFIG_NET_CLS_TCINDEX=m | 275 | CONFIG_NET_CLS_TCINDEX=m |
645 | CONFIG_NET_CLS_ROUTE4=m | 276 | CONFIG_NET_CLS_ROUTE4=m |
@@ -652,7 +283,6 @@ CONFIG_NET_CLS_RSVP6=m | |||
652 | CONFIG_NET_CLS_FLOW=m | 283 | CONFIG_NET_CLS_FLOW=m |
653 | CONFIG_NET_CLS_CGROUP=y | 284 | CONFIG_NET_CLS_CGROUP=y |
654 | CONFIG_NET_EMATCH=y | 285 | CONFIG_NET_EMATCH=y |
655 | CONFIG_NET_EMATCH_STACK=32 | ||
656 | CONFIG_NET_EMATCH_CMP=m | 286 | CONFIG_NET_EMATCH_CMP=m |
657 | CONFIG_NET_EMATCH_NBYTE=m | 287 | CONFIG_NET_EMATCH_NBYTE=m |
658 | CONFIG_NET_EMATCH_U32=m | 288 | CONFIG_NET_EMATCH_U32=m |
@@ -668,307 +298,46 @@ CONFIG_NET_ACT_NAT=m | |||
668 | CONFIG_NET_ACT_PEDIT=m | 298 | CONFIG_NET_ACT_PEDIT=m |
669 | CONFIG_NET_ACT_SIMP=m | 299 | CONFIG_NET_ACT_SIMP=m |
670 | CONFIG_NET_ACT_SKBEDIT=m | 300 | CONFIG_NET_ACT_SKBEDIT=m |
671 | # CONFIG_NET_ACT_CSUM is not set | ||
672 | CONFIG_NET_CLS_IND=y | 301 | CONFIG_NET_CLS_IND=y |
673 | CONFIG_NET_SCH_FIFO=y | ||
674 | CONFIG_DCB=y | 302 | CONFIG_DCB=y |
675 | CONFIG_DNS_RESOLVER=y | ||
676 | # CONFIG_BATMAN_ADV is not set | ||
677 | CONFIG_RPS=y | ||
678 | CONFIG_RFS_ACCEL=y | ||
679 | CONFIG_XPS=y | ||
680 | |||
681 | # | ||
682 | # Network testing | ||
683 | # | ||
684 | # CONFIG_NET_PKTGEN is not set | ||
685 | # CONFIG_HAMRADIO is not set | ||
686 | # CONFIG_CAN is not set | ||
687 | # CONFIG_IRDA is not set | ||
688 | # CONFIG_BT is not set | ||
689 | # CONFIG_AF_RXRPC is not set | ||
690 | CONFIG_FIB_RULES=y | ||
691 | # CONFIG_WIRELESS is not set | 303 | # CONFIG_WIRELESS is not set |
692 | # CONFIG_WIMAX is not set | ||
693 | # CONFIG_RFKILL is not set | ||
694 | # CONFIG_NET_9P is not set | ||
695 | # CONFIG_CAIF is not set | ||
696 | # CONFIG_CEPH_LIB is not set | ||
697 | |||
698 | # | ||
699 | # Device Drivers | ||
700 | # | ||
701 | |||
702 | # | ||
703 | # Generic Driver Options | ||
704 | # | ||
705 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 304 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
706 | CONFIG_DEVTMPFS=y | 305 | CONFIG_DEVTMPFS=y |
707 | CONFIG_DEVTMPFS_MOUNT=y | 306 | CONFIG_DEVTMPFS_MOUNT=y |
708 | CONFIG_STANDALONE=y | ||
709 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
710 | CONFIG_FW_LOADER=y | ||
711 | # CONFIG_FIRMWARE_IN_KERNEL is not set | 307 | # CONFIG_FIRMWARE_IN_KERNEL is not set |
712 | CONFIG_EXTRA_FIRMWARE="" | ||
713 | # CONFIG_DEBUG_DRIVER is not set | ||
714 | # CONFIG_DEBUG_DEVRES is not set | ||
715 | # CONFIG_SYS_HYPERVISOR is not set | ||
716 | CONFIG_CONNECTOR=y | 308 | CONFIG_CONNECTOR=y |
717 | CONFIG_PROC_EVENTS=y | ||
718 | # CONFIG_MTD is not set | ||
719 | # CONFIG_PARPORT is not set | ||
720 | CONFIG_BLK_DEV=y | ||
721 | # CONFIG_BLK_CPQ_DA is not set | ||
722 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
723 | # CONFIG_BLK_DEV_DAC960 is not set | ||
724 | # CONFIG_BLK_DEV_UMEM is not set | ||
725 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
726 | CONFIG_BLK_DEV_LOOP=y | 309 | CONFIG_BLK_DEV_LOOP=y |
727 | CONFIG_BLK_DEV_CRYPTOLOOP=m | 310 | CONFIG_BLK_DEV_CRYPTOLOOP=m |
728 | # CONFIG_BLK_DEV_DRBD is not set | ||
729 | # CONFIG_BLK_DEV_NBD is not set | ||
730 | CONFIG_BLK_DEV_SX8=m | 311 | CONFIG_BLK_DEV_SX8=m |
731 | CONFIG_BLK_DEV_RAM=y | 312 | CONFIG_BLK_DEV_RAM=y |
732 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
733 | CONFIG_BLK_DEV_RAM_SIZE=16384 | 313 | CONFIG_BLK_DEV_RAM_SIZE=16384 |
734 | # CONFIG_BLK_DEV_XIP is not set | 314 | CONFIG_ATA_OVER_ETH=m |
735 | # CONFIG_CDROM_PKTCDVD is not set | ||
736 | CONFIG_ATA_OVER_ETH=y | ||
737 | # CONFIG_BLK_DEV_RBD is not set | ||
738 | # CONFIG_SENSORS_LIS3LV02D is not set | ||
739 | CONFIG_MISC_DEVICES=y | ||
740 | # CONFIG_AD525X_DPOT is not set | ||
741 | # CONFIG_PHANTOM is not set | ||
742 | # CONFIG_SGI_IOC4 is not set | ||
743 | # CONFIG_TIFM_CORE is not set | ||
744 | # CONFIG_ICS932S401 is not set | ||
745 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
746 | # CONFIG_HP_ILO is not set | ||
747 | # CONFIG_APDS9802ALS is not set | ||
748 | # CONFIG_ISL29003 is not set | ||
749 | # CONFIG_ISL29020 is not set | ||
750 | # CONFIG_SENSORS_TSL2550 is not set | ||
751 | # CONFIG_SENSORS_BH1780 is not set | ||
752 | # CONFIG_SENSORS_BH1770 is not set | ||
753 | # CONFIG_SENSORS_APDS990X is not set | ||
754 | # CONFIG_HMC6352 is not set | ||
755 | # CONFIG_DS1682 is not set | ||
756 | # CONFIG_BMP085 is not set | ||
757 | # CONFIG_PCH_PHUB is not set | ||
758 | # CONFIG_C2PORT is not set | ||
759 | |||
760 | # | ||
761 | # EEPROM support | ||
762 | # | ||
763 | # CONFIG_EEPROM_AT24 is not set | ||
764 | # CONFIG_EEPROM_LEGACY is not set | ||
765 | # CONFIG_EEPROM_MAX6875 is not set | ||
766 | # CONFIG_EEPROM_93CX6 is not set | ||
767 | # CONFIG_CB710_CORE is not set | ||
768 | |||
769 | # | ||
770 | # Texas Instruments shared transport line discipline | ||
771 | # | ||
772 | # CONFIG_SENSORS_LIS3_I2C is not set | ||
773 | |||
774 | # | ||
775 | # SCSI device support | ||
776 | # | ||
777 | CONFIG_SCSI_MOD=m | ||
778 | CONFIG_RAID_ATTRS=m | 315 | CONFIG_RAID_ATTRS=m |
779 | CONFIG_SCSI=m | ||
780 | CONFIG_SCSI_DMA=y | ||
781 | CONFIG_SCSI_TGT=m | 316 | CONFIG_SCSI_TGT=m |
782 | # CONFIG_SCSI_NETLINK is not set | 317 | CONFIG_BLK_DEV_SD=y |
783 | CONFIG_SCSI_PROC_FS=y | ||
784 | |||
785 | # | ||
786 | # SCSI support type (disk, tape, CD-ROM) | ||
787 | # | ||
788 | CONFIG_BLK_DEV_SD=m | ||
789 | # CONFIG_CHR_DEV_ST is not set | ||
790 | # CONFIG_CHR_DEV_OSST is not set | ||
791 | # CONFIG_BLK_DEV_SR is not set | ||
792 | # CONFIG_CHR_DEV_SG is not set | ||
793 | # CONFIG_CHR_DEV_SCH is not set | ||
794 | # CONFIG_SCSI_MULTI_LUN is not set | ||
795 | CONFIG_SCSI_CONSTANTS=y | 318 | CONFIG_SCSI_CONSTANTS=y |
796 | CONFIG_SCSI_LOGGING=y | 319 | CONFIG_SCSI_LOGGING=y |
797 | # CONFIG_SCSI_SCAN_ASYNC is not set | 320 | CONFIG_SCSI_SAS_ATA=y |
798 | CONFIG_SCSI_WAIT_SCAN=m | 321 | CONFIG_SCSI_MVSAS=y |
799 | 322 | # CONFIG_SCSI_MVSAS_DEBUG is not set | |
800 | # | 323 | CONFIG_SCSI_MVSAS_TASKLET=y |
801 | # SCSI Transports | 324 | CONFIG_ATA=y |
802 | # | 325 | CONFIG_SATA_SIL24=y |
803 | # CONFIG_SCSI_SPI_ATTRS is not set | 326 | # CONFIG_ATA_SFF is not set |
804 | # CONFIG_SCSI_FC_ATTRS is not set | ||
805 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
806 | CONFIG_SCSI_SAS_ATTRS=m | ||
807 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
808 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
809 | CONFIG_SCSI_LOWLEVEL=y | ||
810 | # CONFIG_ISCSI_TCP is not set | ||
811 | # CONFIG_ISCSI_BOOT_SYSFS is not set | ||
812 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
813 | # CONFIG_SCSI_CXGB4_ISCSI is not set | ||
814 | # CONFIG_SCSI_BNX2_ISCSI is not set | ||
815 | # CONFIG_SCSI_BNX2X_FCOE is not set | ||
816 | # CONFIG_BE2ISCSI is not set | ||
817 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
818 | # CONFIG_SCSI_HPSA is not set | ||
819 | # CONFIG_SCSI_3W_9XXX is not set | ||
820 | # CONFIG_SCSI_3W_SAS is not set | ||
821 | # CONFIG_SCSI_ACARD is not set | ||
822 | # CONFIG_SCSI_AACRAID is not set | ||
823 | # CONFIG_SCSI_AIC7XXX is not set | ||
824 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
825 | # CONFIG_SCSI_AIC79XX is not set | ||
826 | # CONFIG_SCSI_AIC94XX is not set | ||
827 | # CONFIG_SCSI_MVSAS is not set | ||
828 | # CONFIG_SCSI_DPT_I2O is not set | ||
829 | # CONFIG_SCSI_ADVANSYS is not set | ||
830 | # CONFIG_SCSI_ARCMSR is not set | ||
831 | # CONFIG_MEGARAID_NEWGEN is not set | ||
832 | # CONFIG_MEGARAID_LEGACY is not set | ||
833 | # CONFIG_MEGARAID_SAS is not set | ||
834 | # CONFIG_SCSI_MPT2SAS is not set | ||
835 | # CONFIG_SCSI_HPTIOP is not set | ||
836 | # CONFIG_LIBFC is not set | ||
837 | # CONFIG_LIBFCOE is not set | ||
838 | # CONFIG_FCOE is not set | ||
839 | # CONFIG_SCSI_DMX3191D is not set | ||
840 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
841 | # CONFIG_SCSI_IPS is not set | ||
842 | # CONFIG_SCSI_INITIO is not set | ||
843 | # CONFIG_SCSI_INIA100 is not set | ||
844 | # CONFIG_SCSI_STEX is not set | ||
845 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
846 | # CONFIG_SCSI_IPR is not set | ||
847 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
848 | # CONFIG_SCSI_QLA_FC is not set | ||
849 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
850 | # CONFIG_SCSI_LPFC is not set | ||
851 | # CONFIG_SCSI_DC395x is not set | ||
852 | # CONFIG_SCSI_DC390T is not set | ||
853 | # CONFIG_SCSI_DEBUG is not set | ||
854 | # CONFIG_SCSI_PMCRAID is not set | ||
855 | # CONFIG_SCSI_PM8001 is not set | ||
856 | # CONFIG_SCSI_SRP is not set | ||
857 | # CONFIG_SCSI_BFA_FC is not set | ||
858 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | ||
859 | # CONFIG_SCSI_DH is not set | ||
860 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
861 | CONFIG_ATA=m | ||
862 | # CONFIG_ATA_NONSTANDARD is not set | ||
863 | CONFIG_ATA_VERBOSE_ERROR=y | ||
864 | CONFIG_SATA_PMP=y | ||
865 | |||
866 | # | ||
867 | # Controllers with non-SFF native interface | ||
868 | # | ||
869 | # CONFIG_SATA_AHCI is not set | ||
870 | # CONFIG_SATA_AHCI_PLATFORM is not set | ||
871 | # CONFIG_SATA_INIC162X is not set | ||
872 | # CONFIG_SATA_ACARD_AHCI is not set | ||
873 | CONFIG_SATA_SIL24=m | ||
874 | CONFIG_ATA_SFF=y | ||
875 | |||
876 | # | ||
877 | # SFF controllers with custom DMA interface | ||
878 | # | ||
879 | # CONFIG_PDC_ADMA is not set | ||
880 | # CONFIG_SATA_QSTOR is not set | ||
881 | # CONFIG_SATA_SX4 is not set | ||
882 | CONFIG_ATA_BMDMA=y | ||
883 | |||
884 | # | ||
885 | # SATA SFF controllers with BMDMA | ||
886 | # | ||
887 | # CONFIG_ATA_PIIX is not set | ||
888 | # CONFIG_SATA_MV is not set | ||
889 | # CONFIG_SATA_NV is not set | ||
890 | # CONFIG_SATA_PROMISE is not set | ||
891 | # CONFIG_SATA_SIL is not set | ||
892 | # CONFIG_SATA_SIS is not set | ||
893 | # CONFIG_SATA_SVW is not set | ||
894 | # CONFIG_SATA_ULI is not set | ||
895 | # CONFIG_SATA_VIA is not set | ||
896 | # CONFIG_SATA_VITESSE is not set | ||
897 | |||
898 | # | ||
899 | # PATA SFF controllers with BMDMA | ||
900 | # | ||
901 | # CONFIG_PATA_ALI is not set | ||
902 | # CONFIG_PATA_AMD is not set | ||
903 | # CONFIG_PATA_ARASAN_CF is not set | ||
904 | # CONFIG_PATA_ARTOP is not set | ||
905 | # CONFIG_PATA_ATIIXP is not set | ||
906 | # CONFIG_PATA_ATP867X is not set | ||
907 | # CONFIG_PATA_CMD64X is not set | ||
908 | # CONFIG_PATA_CS5520 is not set | ||
909 | # CONFIG_PATA_CS5530 is not set | ||
910 | # CONFIG_PATA_CS5536 is not set | ||
911 | # CONFIG_PATA_CYPRESS is not set | ||
912 | # CONFIG_PATA_EFAR is not set | ||
913 | # CONFIG_PATA_HPT366 is not set | ||
914 | # CONFIG_PATA_HPT37X is not set | ||
915 | # CONFIG_PATA_HPT3X2N is not set | ||
916 | # CONFIG_PATA_HPT3X3 is not set | ||
917 | # CONFIG_PATA_IT8213 is not set | ||
918 | # CONFIG_PATA_IT821X is not set | ||
919 | # CONFIG_PATA_JMICRON is not set | ||
920 | # CONFIG_PATA_MARVELL is not set | ||
921 | # CONFIG_PATA_NETCELL is not set | ||
922 | # CONFIG_PATA_NINJA32 is not set | ||
923 | # CONFIG_PATA_NS87415 is not set | ||
924 | # CONFIG_PATA_OLDPIIX is not set | ||
925 | # CONFIG_PATA_OPTIDMA is not set | ||
926 | # CONFIG_PATA_PDC2027X is not set | ||
927 | # CONFIG_PATA_PDC_OLD is not set | ||
928 | # CONFIG_PATA_RADISYS is not set | ||
929 | # CONFIG_PATA_RDC is not set | ||
930 | # CONFIG_PATA_SC1200 is not set | ||
931 | # CONFIG_PATA_SCH is not set | ||
932 | # CONFIG_PATA_SERVERWORKS is not set | ||
933 | # CONFIG_PATA_SIL680 is not set | ||
934 | # CONFIG_PATA_SIS is not set | ||
935 | # CONFIG_PATA_TOSHIBA is not set | ||
936 | # CONFIG_PATA_TRIFLEX is not set | ||
937 | # CONFIG_PATA_VIA is not set | ||
938 | # CONFIG_PATA_WINBOND is not set | ||
939 | |||
940 | # | ||
941 | # PIO-only SFF controllers | ||
942 | # | ||
943 | # CONFIG_PATA_CMD640_PCI is not set | ||
944 | # CONFIG_PATA_MPIIX is not set | ||
945 | # CONFIG_PATA_NS87410 is not set | ||
946 | # CONFIG_PATA_OPTI is not set | ||
947 | # CONFIG_PATA_PLATFORM is not set | ||
948 | # CONFIG_PATA_RZ1000 is not set | ||
949 | |||
950 | # | ||
951 | # Generic fallback / legacy drivers | ||
952 | # | ||
953 | # CONFIG_ATA_GENERIC is not set | ||
954 | # CONFIG_PATA_LEGACY is not set | ||
955 | CONFIG_MD=y | 327 | CONFIG_MD=y |
956 | CONFIG_BLK_DEV_MD=y | 328 | CONFIG_BLK_DEV_MD=y |
957 | CONFIG_MD_AUTODETECT=y | ||
958 | CONFIG_MD_LINEAR=m | 329 | CONFIG_MD_LINEAR=m |
959 | CONFIG_MD_RAID0=m | 330 | CONFIG_MD_RAID0=m |
960 | CONFIG_MD_RAID1=m | 331 | CONFIG_MD_RAID1=m |
961 | CONFIG_MD_RAID10=m | 332 | CONFIG_MD_RAID10=m |
962 | CONFIG_MD_RAID456=m | 333 | CONFIG_MD_RAID456=m |
963 | CONFIG_MULTICORE_RAID456=y | 334 | CONFIG_MULTICORE_RAID456=y |
964 | # CONFIG_MD_MULTIPATH is not set | ||
965 | CONFIG_MD_FAULTY=m | 335 | CONFIG_MD_FAULTY=m |
966 | CONFIG_BLK_DEV_DM=m | 336 | CONFIG_BLK_DEV_DM=m |
967 | CONFIG_DM_DEBUG=y | 337 | CONFIG_DM_DEBUG=y |
968 | CONFIG_DM_CRYPT=m | 338 | CONFIG_DM_CRYPT=m |
969 | CONFIG_DM_SNAPSHOT=m | 339 | CONFIG_DM_SNAPSHOT=m |
970 | CONFIG_DM_MIRROR=m | 340 | CONFIG_DM_MIRROR=m |
971 | # CONFIG_DM_RAID is not set | ||
972 | CONFIG_DM_LOG_USERSPACE=m | 341 | CONFIG_DM_LOG_USERSPACE=m |
973 | CONFIG_DM_ZERO=m | 342 | CONFIG_DM_ZERO=m |
974 | CONFIG_DM_MULTIPATH=m | 343 | CONFIG_DM_MULTIPATH=m |
@@ -976,558 +345,143 @@ CONFIG_DM_MULTIPATH_QL=m | |||
976 | CONFIG_DM_MULTIPATH_ST=m | 345 | CONFIG_DM_MULTIPATH_ST=m |
977 | CONFIG_DM_DELAY=m | 346 | CONFIG_DM_DELAY=m |
978 | CONFIG_DM_UEVENT=y | 347 | CONFIG_DM_UEVENT=y |
979 | # CONFIG_DM_FLAKEY is not set | 348 | CONFIG_FUSION=y |
980 | # CONFIG_TARGET_CORE is not set | 349 | CONFIG_FUSION_SAS=y |
981 | # CONFIG_FUSION is not set | ||
982 | |||
983 | # | ||
984 | # IEEE 1394 (FireWire) support | ||
985 | # | ||
986 | # CONFIG_FIREWIRE is not set | ||
987 | # CONFIG_FIREWIRE_NOSY is not set | ||
988 | # CONFIG_I2O is not set | ||
989 | CONFIG_NETDEVICES=y | 350 | CONFIG_NETDEVICES=y |
990 | CONFIG_IFB=m | ||
991 | CONFIG_DUMMY=m | ||
992 | CONFIG_BONDING=m | 351 | CONFIG_BONDING=m |
352 | CONFIG_DUMMY=m | ||
353 | CONFIG_IFB=m | ||
993 | CONFIG_MACVLAN=m | 354 | CONFIG_MACVLAN=m |
994 | CONFIG_MACVTAP=m | 355 | CONFIG_MACVTAP=m |
995 | # CONFIG_EQUALIZER is not set | 356 | CONFIG_NETCONSOLE=m |
357 | CONFIG_NETCONSOLE_DYNAMIC=y | ||
358 | CONFIG_NETPOLL_TRAP=y | ||
996 | CONFIG_TUN=y | 359 | CONFIG_TUN=y |
997 | CONFIG_VETH=m | 360 | CONFIG_VETH=m |
998 | # CONFIG_ARCNET is not set | 361 | CONFIG_NET_DSA_MV88E6060=y |
999 | # CONFIG_MII is not set | 362 | CONFIG_NET_DSA_MV88E6131=y |
1000 | CONFIG_PHYLIB=y | 363 | CONFIG_NET_DSA_MV88E6123_61_65=y |
1001 | 364 | # CONFIG_NET_VENDOR_3COM is not set | |
1002 | # | 365 | # CONFIG_NET_VENDOR_ADAPTEC is not set |
1003 | # MII PHY device drivers | 366 | # CONFIG_NET_VENDOR_ALTEON is not set |
1004 | # | 367 | # CONFIG_NET_VENDOR_AMD is not set |
1005 | # CONFIG_MARVELL_PHY is not set | 368 | # CONFIG_NET_VENDOR_ATHEROS is not set |
1006 | # CONFIG_DAVICOM_PHY is not set | 369 | # CONFIG_NET_VENDOR_BROADCOM is not set |
1007 | # CONFIG_QSEMI_PHY is not set | 370 | # CONFIG_NET_VENDOR_BROCADE is not set |
1008 | # CONFIG_LXT_PHY is not set | 371 | # CONFIG_NET_VENDOR_CHELSIO is not set |
1009 | # CONFIG_CICADA_PHY is not set | 372 | # CONFIG_NET_VENDOR_CISCO is not set |
1010 | # CONFIG_VITESSE_PHY is not set | 373 | # CONFIG_NET_VENDOR_DEC is not set |
1011 | # CONFIG_SMSC_PHY is not set | 374 | # CONFIG_NET_VENDOR_DLINK is not set |
1012 | # CONFIG_BROADCOM_PHY is not set | 375 | # CONFIG_NET_VENDOR_EMULEX is not set |
1013 | # CONFIG_BCM63XX_PHY is not set | 376 | # CONFIG_NET_VENDOR_EXAR is not set |
1014 | # CONFIG_ICPLUS_PHY is not set | 377 | # CONFIG_NET_VENDOR_HP is not set |
1015 | # CONFIG_REALTEK_PHY is not set | 378 | # CONFIG_NET_VENDOR_INTEL is not set |
1016 | # CONFIG_NATIONAL_PHY is not set | 379 | # CONFIG_NET_VENDOR_MARVELL is not set |
1017 | # CONFIG_STE10XP is not set | 380 | # CONFIG_NET_VENDOR_MELLANOX is not set |
1018 | # CONFIG_LSI_ET1011C_PHY is not set | 381 | # CONFIG_NET_VENDOR_MICREL is not set |
1019 | # CONFIG_MICREL_PHY is not set | 382 | # CONFIG_NET_VENDOR_MYRI is not set |
1020 | # CONFIG_FIXED_PHY is not set | 383 | # CONFIG_NET_VENDOR_NATSEMI is not set |
1021 | # CONFIG_MDIO_BITBANG is not set | 384 | # CONFIG_NET_VENDOR_NVIDIA is not set |
1022 | # CONFIG_NET_ETHERNET is not set | 385 | # CONFIG_NET_VENDOR_OKI is not set |
1023 | CONFIG_NETDEV_1000=y | 386 | # CONFIG_NET_PACKET_ENGINE is not set |
1024 | # CONFIG_ACENIC is not set | 387 | # CONFIG_NET_VENDOR_QLOGIC is not set |
1025 | # CONFIG_DL2K is not set | 388 | # CONFIG_NET_VENDOR_REALTEK is not set |
1026 | # CONFIG_E1000 is not set | 389 | # CONFIG_NET_VENDOR_RDC is not set |
1027 | CONFIG_E1000E=m | 390 | # CONFIG_NET_VENDOR_SEEQ is not set |
1028 | # CONFIG_IP1000 is not set | 391 | # CONFIG_NET_VENDOR_SILAN is not set |
1029 | # CONFIG_IGB is not set | 392 | # CONFIG_NET_VENDOR_SIS is not set |
1030 | # CONFIG_IGBVF is not set | 393 | # CONFIG_NET_VENDOR_SMSC is not set |
1031 | # CONFIG_NS83820 is not set | 394 | # CONFIG_NET_VENDOR_STMICRO is not set |
1032 | # CONFIG_HAMACHI is not set | 395 | # CONFIG_NET_VENDOR_SUN is not set |
1033 | # CONFIG_YELLOWFIN is not set | 396 | # CONFIG_NET_VENDOR_TEHUTI is not set |
1034 | # CONFIG_R8169 is not set | 397 | # CONFIG_NET_VENDOR_TI is not set |
1035 | # CONFIG_SIS190 is not set | ||
1036 | # CONFIG_SKGE is not set | ||
1037 | # CONFIG_SKY2 is not set | ||
1038 | # CONFIG_VIA_VELOCITY is not set | ||
1039 | # CONFIG_TIGON3 is not set | ||
1040 | # CONFIG_BNX2 is not set | ||
1041 | # CONFIG_CNIC is not set | ||
1042 | # CONFIG_QLA3XXX is not set | ||
1043 | # CONFIG_ATL1 is not set | ||
1044 | # CONFIG_ATL1E is not set | ||
1045 | # CONFIG_ATL1C is not set | ||
1046 | # CONFIG_JME is not set | ||
1047 | # CONFIG_STMMAC_ETH is not set | ||
1048 | # CONFIG_PCH_GBE is not set | ||
1049 | # CONFIG_NETDEV_10000 is not set | ||
1050 | # CONFIG_TR is not set | ||
1051 | # CONFIG_WLAN is not set | ||
1052 | |||
1053 | # | ||
1054 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
1055 | # | ||
1056 | # CONFIG_WAN is not set | ||
1057 | |||
1058 | # | ||
1059 | # CAIF transport drivers | ||
1060 | # | ||
1061 | # CONFIG_TILE_NET is not set | 398 | # CONFIG_TILE_NET is not set |
1062 | # CONFIG_FDDI is not set | 399 | # CONFIG_NET_VENDOR_VIA is not set |
1063 | # CONFIG_HIPPI is not set | 400 | # CONFIG_WLAN is not set |
1064 | # CONFIG_PPP is not set | ||
1065 | # CONFIG_SLIP is not set | ||
1066 | # CONFIG_NET_FC is not set | ||
1067 | # CONFIG_NETCONSOLE is not set | ||
1068 | # CONFIG_NETPOLL is not set | ||
1069 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
1070 | # CONFIG_VMXNET3 is not set | ||
1071 | # CONFIG_ISDN is not set | ||
1072 | # CONFIG_PHONE is not set | ||
1073 | |||
1074 | # | ||
1075 | # Input device support | ||
1076 | # | ||
1077 | CONFIG_INPUT=y | ||
1078 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
1079 | # CONFIG_INPUT_POLLDEV is not set | ||
1080 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
1081 | |||
1082 | # | ||
1083 | # Userland interfaces | ||
1084 | # | ||
1085 | # CONFIG_INPUT_MOUSEDEV is not set | 401 | # CONFIG_INPUT_MOUSEDEV is not set |
1086 | # CONFIG_INPUT_JOYDEV is not set | ||
1087 | # CONFIG_INPUT_EVDEV is not set | ||
1088 | # CONFIG_INPUT_EVBUG is not set | ||
1089 | |||
1090 | # | ||
1091 | # Input Device Drivers | ||
1092 | # | ||
1093 | # CONFIG_INPUT_KEYBOARD is not set | 402 | # CONFIG_INPUT_KEYBOARD is not set |
1094 | # CONFIG_INPUT_MOUSE is not set | 403 | # CONFIG_INPUT_MOUSE is not set |
1095 | # CONFIG_INPUT_JOYSTICK is not set | ||
1096 | # CONFIG_INPUT_TABLET is not set | ||
1097 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
1098 | # CONFIG_INPUT_MISC is not set | ||
1099 | |||
1100 | # | ||
1101 | # Hardware I/O ports | ||
1102 | # | ||
1103 | # CONFIG_SERIO is not set | 404 | # CONFIG_SERIO is not set |
1104 | # CONFIG_GAMEPORT is not set | ||
1105 | |||
1106 | # | ||
1107 | # Character devices | ||
1108 | # | ||
1109 | # CONFIG_VT is not set | 405 | # CONFIG_VT is not set |
1110 | CONFIG_UNIX98_PTYS=y | ||
1111 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
1112 | # CONFIG_LEGACY_PTYS is not set | 406 | # CONFIG_LEGACY_PTYS is not set |
1113 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
1114 | # CONFIG_NOZOMI is not set | ||
1115 | # CONFIG_N_GSM is not set | ||
1116 | CONFIG_DEVKMEM=y | ||
1117 | |||
1118 | # | ||
1119 | # Serial drivers | ||
1120 | # | ||
1121 | # CONFIG_SERIAL_8250 is not set | ||
1122 | |||
1123 | # | ||
1124 | # Non-8250 serial port support | ||
1125 | # | ||
1126 | # CONFIG_SERIAL_MFD_HSU is not set | ||
1127 | # CONFIG_SERIAL_JSM is not set | ||
1128 | # CONFIG_SERIAL_TIMBERDALE is not set | ||
1129 | # CONFIG_SERIAL_ALTERA_JTAGUART is not set | ||
1130 | # CONFIG_SERIAL_ALTERA_UART is not set | ||
1131 | # CONFIG_SERIAL_PCH_UART is not set | ||
1132 | # CONFIG_TTY_PRINTK is not set | ||
1133 | CONFIG_HVC_DRIVER=y | ||
1134 | # CONFIG_IPMI_HANDLER is not set | ||
1135 | CONFIG_HW_RANDOM=y | 407 | CONFIG_HW_RANDOM=y |
1136 | CONFIG_HW_RANDOM_TIMERIOMEM=m | 408 | CONFIG_HW_RANDOM_TIMERIOMEM=m |
1137 | # CONFIG_R3964 is not set | ||
1138 | # CONFIG_APPLICOM is not set | ||
1139 | |||
1140 | # | ||
1141 | # PCMCIA character devices | ||
1142 | # | ||
1143 | # CONFIG_RAW_DRIVER is not set | ||
1144 | # CONFIG_TCG_TPM is not set | ||
1145 | CONFIG_DEVPORT=y | ||
1146 | # CONFIG_RAMOOPS is not set | ||
1147 | CONFIG_I2C=y | 409 | CONFIG_I2C=y |
1148 | CONFIG_I2C_BOARDINFO=y | ||
1149 | CONFIG_I2C_COMPAT=y | ||
1150 | CONFIG_I2C_CHARDEV=y | 410 | CONFIG_I2C_CHARDEV=y |
1151 | # CONFIG_I2C_MUX is not set | ||
1152 | CONFIG_I2C_HELPER_AUTO=y | ||
1153 | |||
1154 | # | ||
1155 | # I2C Hardware Bus support | ||
1156 | # | ||
1157 | |||
1158 | # | ||
1159 | # PC SMBus host controller drivers | ||
1160 | # | ||
1161 | # CONFIG_I2C_ALI1535 is not set | ||
1162 | # CONFIG_I2C_ALI1563 is not set | ||
1163 | # CONFIG_I2C_ALI15X3 is not set | ||
1164 | # CONFIG_I2C_AMD756 is not set | ||
1165 | # CONFIG_I2C_AMD8111 is not set | ||
1166 | # CONFIG_I2C_I801 is not set | ||
1167 | # CONFIG_I2C_ISCH is not set | ||
1168 | # CONFIG_I2C_PIIX4 is not set | ||
1169 | # CONFIG_I2C_NFORCE2 is not set | ||
1170 | # CONFIG_I2C_SIS5595 is not set | ||
1171 | # CONFIG_I2C_SIS630 is not set | ||
1172 | # CONFIG_I2C_SIS96X is not set | ||
1173 | # CONFIG_I2C_VIA is not set | ||
1174 | # CONFIG_I2C_VIAPRO is not set | ||
1175 | |||
1176 | # | ||
1177 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
1178 | # | ||
1179 | # CONFIG_I2C_INTEL_MID is not set | ||
1180 | # CONFIG_I2C_OCORES is not set | ||
1181 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
1182 | # CONFIG_I2C_PXA_PCI is not set | ||
1183 | # CONFIG_I2C_SIMTEC is not set | ||
1184 | # CONFIG_I2C_XILINX is not set | ||
1185 | # CONFIG_I2C_EG20T is not set | ||
1186 | |||
1187 | # | ||
1188 | # External I2C/SMBus adapter drivers | ||
1189 | # | ||
1190 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
1191 | # CONFIG_I2C_TAOS_EVM is not set | ||
1192 | |||
1193 | # | ||
1194 | # Other I2C/SMBus bus drivers | ||
1195 | # | ||
1196 | # CONFIG_I2C_STUB is not set | ||
1197 | # CONFIG_I2C_DEBUG_CORE is not set | ||
1198 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
1199 | # CONFIG_I2C_DEBUG_BUS is not set | ||
1200 | # CONFIG_SPI is not set | ||
1201 | |||
1202 | # | ||
1203 | # PPS support | ||
1204 | # | ||
1205 | # CONFIG_PPS is not set | ||
1206 | |||
1207 | # | ||
1208 | # PPS generators support | ||
1209 | # | ||
1210 | # CONFIG_W1 is not set | ||
1211 | # CONFIG_POWER_SUPPLY is not set | ||
1212 | # CONFIG_HWMON is not set | 411 | # CONFIG_HWMON is not set |
1213 | # CONFIG_THERMAL is not set | 412 | CONFIG_WATCHDOG=y |
1214 | # CONFIG_WATCHDOG is not set | 413 | CONFIG_WATCHDOG_NOWAYOUT=y |
1215 | CONFIG_SSB_POSSIBLE=y | ||
1216 | |||
1217 | # | ||
1218 | # Sonics Silicon Backplane | ||
1219 | # | ||
1220 | # CONFIG_SSB is not set | ||
1221 | CONFIG_MFD_SUPPORT=y | ||
1222 | # CONFIG_MFD_CORE is not set | ||
1223 | # CONFIG_MFD_88PM860X is not set | ||
1224 | # CONFIG_MFD_SM501 is not set | ||
1225 | # CONFIG_HTC_PASIC3 is not set | ||
1226 | # CONFIG_TPS6105X is not set | ||
1227 | # CONFIG_TPS6507X is not set | ||
1228 | # CONFIG_TWL4030_CORE is not set | ||
1229 | # CONFIG_MFD_STMPE is not set | ||
1230 | # CONFIG_MFD_TC3589X is not set | ||
1231 | # CONFIG_MFD_TMIO is not set | ||
1232 | # CONFIG_PMIC_DA903X is not set | ||
1233 | # CONFIG_PMIC_ADP5520 is not set | ||
1234 | # CONFIG_MFD_MAX8925 is not set | ||
1235 | # CONFIG_MFD_MAX8997 is not set | ||
1236 | # CONFIG_MFD_MAX8998 is not set | ||
1237 | # CONFIG_MFD_WM8400 is not set | ||
1238 | # CONFIG_MFD_WM831X_I2C is not set | ||
1239 | # CONFIG_MFD_WM8350_I2C is not set | ||
1240 | # CONFIG_MFD_WM8994 is not set | ||
1241 | # CONFIG_MFD_PCF50633 is not set | ||
1242 | # CONFIG_ABX500_CORE is not set | ||
1243 | # CONFIG_LPC_SCH is not set | ||
1244 | # CONFIG_MFD_RDC321X is not set | ||
1245 | # CONFIG_MFD_JANZ_CMODIO is not set | ||
1246 | # CONFIG_MFD_VX855 is not set | ||
1247 | # CONFIG_MFD_WL1273_CORE is not set | ||
1248 | # CONFIG_REGULATOR is not set | ||
1249 | # CONFIG_MEDIA_SUPPORT is not set | ||
1250 | |||
1251 | # | ||
1252 | # Graphics support | ||
1253 | # | ||
1254 | # CONFIG_VGA_ARB is not set | 414 | # CONFIG_VGA_ARB is not set |
1255 | # CONFIG_DRM is not set | ||
1256 | # CONFIG_STUB_POULSBO is not set | ||
1257 | # CONFIG_VGASTATE is not set | ||
1258 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
1259 | # CONFIG_FB is not set | ||
1260 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
1261 | |||
1262 | # | ||
1263 | # Display device support | ||
1264 | # | ||
1265 | # CONFIG_DISPLAY_SUPPORT is not set | ||
1266 | # CONFIG_SOUND is not set | ||
1267 | # CONFIG_HID_SUPPORT is not set | 415 | # CONFIG_HID_SUPPORT is not set |
1268 | # CONFIG_USB_SUPPORT is not set | 416 | CONFIG_USB=y |
1269 | # CONFIG_UWB is not set | 417 | # CONFIG_USB_DEVICE_CLASS is not set |
1270 | # CONFIG_MMC is not set | 418 | CONFIG_USB_EHCI_HCD=y |
1271 | # CONFIG_MEMSTICK is not set | 419 | CONFIG_USB_OHCI_HCD=y |
1272 | # CONFIG_NEW_LEDS is not set | 420 | CONFIG_USB_STORAGE=y |
1273 | # CONFIG_NFC_DEVICES is not set | 421 | CONFIG_USB_LIBUSUAL=y |
1274 | # CONFIG_ACCESSIBILITY is not set | 422 | CONFIG_EDAC=y |
1275 | # CONFIG_INFINIBAND is not set | 423 | CONFIG_EDAC_MM_EDAC=y |
1276 | # CONFIG_EDAC is not set | ||
1277 | CONFIG_RTC_LIB=y | ||
1278 | CONFIG_RTC_CLASS=y | 424 | CONFIG_RTC_CLASS=y |
1279 | CONFIG_RTC_HCTOSYS=y | ||
1280 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
1281 | # CONFIG_RTC_DEBUG is not set | ||
1282 | |||
1283 | # | ||
1284 | # RTC interfaces | ||
1285 | # | ||
1286 | CONFIG_RTC_INTF_SYSFS=y | ||
1287 | CONFIG_RTC_INTF_PROC=y | ||
1288 | CONFIG_RTC_INTF_DEV=y | ||
1289 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
1290 | # CONFIG_RTC_DRV_TEST is not set | ||
1291 | |||
1292 | # | ||
1293 | # I2C RTC drivers | ||
1294 | # | ||
1295 | # CONFIG_RTC_DRV_DS1307 is not set | ||
1296 | # CONFIG_RTC_DRV_DS1374 is not set | ||
1297 | # CONFIG_RTC_DRV_DS1672 is not set | ||
1298 | # CONFIG_RTC_DRV_DS3232 is not set | ||
1299 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
1300 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
1301 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
1302 | # CONFIG_RTC_DRV_ISL12022 is not set | ||
1303 | # CONFIG_RTC_DRV_X1205 is not set | ||
1304 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
1305 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
1306 | # CONFIG_RTC_DRV_M41T80 is not set | ||
1307 | # CONFIG_RTC_DRV_BQ32K is not set | ||
1308 | # CONFIG_RTC_DRV_S35390A is not set | ||
1309 | # CONFIG_RTC_DRV_FM3130 is not set | ||
1310 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1311 | # CONFIG_RTC_DRV_RX8025 is not set | ||
1312 | |||
1313 | # | ||
1314 | # SPI RTC drivers | ||
1315 | # | ||
1316 | |||
1317 | # | ||
1318 | # Platform RTC drivers | ||
1319 | # | ||
1320 | # CONFIG_RTC_DRV_DS1286 is not set | ||
1321 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1322 | # CONFIG_RTC_DRV_DS1553 is not set | ||
1323 | # CONFIG_RTC_DRV_DS1742 is not set | ||
1324 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1325 | # CONFIG_RTC_DRV_M48T86 is not set | ||
1326 | # CONFIG_RTC_DRV_M48T35 is not set | ||
1327 | # CONFIG_RTC_DRV_M48T59 is not set | ||
1328 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1329 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
1330 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1331 | # CONFIG_RTC_DRV_V3020 is not set | ||
1332 | |||
1333 | # | ||
1334 | # on-CPU RTC drivers | ||
1335 | # | ||
1336 | CONFIG_RTC_DRV_TILE=y | 425 | CONFIG_RTC_DRV_TILE=y |
1337 | # CONFIG_DMADEVICES is not set | ||
1338 | # CONFIG_AUXDISPLAY is not set | ||
1339 | # CONFIG_UIO is not set | ||
1340 | # CONFIG_STAGING is not set | ||
1341 | |||
1342 | # | ||
1343 | # File systems | ||
1344 | # | ||
1345 | CONFIG_EXT2_FS=y | 426 | CONFIG_EXT2_FS=y |
1346 | CONFIG_EXT2_FS_XATTR=y | 427 | CONFIG_EXT2_FS_XATTR=y |
1347 | CONFIG_EXT2_FS_POSIX_ACL=y | 428 | CONFIG_EXT2_FS_POSIX_ACL=y |
1348 | CONFIG_EXT2_FS_SECURITY=y | 429 | CONFIG_EXT2_FS_SECURITY=y |
1349 | CONFIG_EXT2_FS_XIP=y | 430 | CONFIG_EXT2_FS_XIP=y |
1350 | CONFIG_EXT3_FS=y | 431 | CONFIG_EXT3_FS=y |
1351 | CONFIG_EXT3_DEFAULTS_TO_ORDERED=y | ||
1352 | CONFIG_EXT3_FS_XATTR=y | ||
1353 | CONFIG_EXT3_FS_POSIX_ACL=y | 432 | CONFIG_EXT3_FS_POSIX_ACL=y |
1354 | CONFIG_EXT3_FS_SECURITY=y | 433 | CONFIG_EXT3_FS_SECURITY=y |
1355 | CONFIG_EXT4_FS=y | 434 | CONFIG_EXT4_FS=y |
1356 | CONFIG_EXT4_FS_XATTR=y | ||
1357 | CONFIG_EXT4_FS_POSIX_ACL=y | 435 | CONFIG_EXT4_FS_POSIX_ACL=y |
1358 | CONFIG_EXT4_FS_SECURITY=y | 436 | CONFIG_EXT4_FS_SECURITY=y |
1359 | # CONFIG_EXT4_DEBUG is not set | 437 | CONFIG_XFS_FS=y |
1360 | CONFIG_FS_XIP=y | ||
1361 | CONFIG_JBD=y | ||
1362 | # CONFIG_JBD_DEBUG is not set | ||
1363 | CONFIG_JBD2=y | ||
1364 | CONFIG_JBD2_DEBUG=y | ||
1365 | CONFIG_FS_MBCACHE=y | ||
1366 | # CONFIG_REISERFS_FS is not set | ||
1367 | # CONFIG_JFS_FS is not set | ||
1368 | CONFIG_XFS_FS=m | ||
1369 | CONFIG_XFS_QUOTA=y | 438 | CONFIG_XFS_QUOTA=y |
1370 | CONFIG_XFS_POSIX_ACL=y | 439 | CONFIG_XFS_POSIX_ACL=y |
1371 | # CONFIG_XFS_RT is not set | ||
1372 | # CONFIG_XFS_DEBUG is not set | ||
1373 | CONFIG_GFS2_FS=m | 440 | CONFIG_GFS2_FS=m |
1374 | CONFIG_GFS2_FS_LOCKING_DLM=y | 441 | CONFIG_GFS2_FS_LOCKING_DLM=y |
1375 | # CONFIG_OCFS2_FS is not set | ||
1376 | CONFIG_BTRFS_FS=m | 442 | CONFIG_BTRFS_FS=m |
1377 | CONFIG_BTRFS_FS_POSIX_ACL=y | 443 | CONFIG_BTRFS_FS_POSIX_ACL=y |
1378 | # CONFIG_NILFS2_FS is not set | ||
1379 | CONFIG_FS_POSIX_ACL=y | ||
1380 | CONFIG_EXPORTFS=y | ||
1381 | CONFIG_FILE_LOCKING=y | ||
1382 | CONFIG_FSNOTIFY=y | ||
1383 | CONFIG_DNOTIFY=y | ||
1384 | CONFIG_INOTIFY_USER=y | ||
1385 | # CONFIG_FANOTIFY is not set | ||
1386 | CONFIG_QUOTA=y | 444 | CONFIG_QUOTA=y |
1387 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 445 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
1388 | # CONFIG_PRINT_QUOTA_WARNING is not set | 446 | # CONFIG_PRINT_QUOTA_WARNING is not set |
1389 | # CONFIG_QUOTA_DEBUG is not set | ||
1390 | CONFIG_QUOTA_TREE=y | ||
1391 | # CONFIG_QFMT_V1 is not set | ||
1392 | CONFIG_QFMT_V2=y | 447 | CONFIG_QFMT_V2=y |
1393 | CONFIG_QUOTACTL=y | 448 | CONFIG_AUTOFS4_FS=m |
1394 | # CONFIG_AUTOFS4_FS is not set | ||
1395 | CONFIG_FUSE_FS=y | 449 | CONFIG_FUSE_FS=y |
1396 | CONFIG_CUSE=m | 450 | CONFIG_CUSE=m |
1397 | CONFIG_GENERIC_ACL=y | ||
1398 | |||
1399 | # | ||
1400 | # Caches | ||
1401 | # | ||
1402 | CONFIG_FSCACHE=m | 451 | CONFIG_FSCACHE=m |
1403 | CONFIG_FSCACHE_STATS=y | 452 | CONFIG_FSCACHE_STATS=y |
1404 | # CONFIG_FSCACHE_HISTOGRAM is not set | ||
1405 | # CONFIG_FSCACHE_DEBUG is not set | ||
1406 | # CONFIG_FSCACHE_OBJECT_LIST is not set | ||
1407 | CONFIG_CACHEFILES=m | 453 | CONFIG_CACHEFILES=m |
1408 | # CONFIG_CACHEFILES_DEBUG is not set | ||
1409 | # CONFIG_CACHEFILES_HISTOGRAM is not set | ||
1410 | |||
1411 | # | ||
1412 | # CD-ROM/DVD Filesystems | ||
1413 | # | ||
1414 | CONFIG_ISO9660_FS=m | 454 | CONFIG_ISO9660_FS=m |
1415 | CONFIG_JOLIET=y | 455 | CONFIG_JOLIET=y |
1416 | CONFIG_ZISOFS=y | 456 | CONFIG_ZISOFS=y |
1417 | CONFIG_UDF_FS=m | 457 | CONFIG_UDF_FS=m |
1418 | CONFIG_UDF_NLS=y | ||
1419 | |||
1420 | # | ||
1421 | # DOS/FAT/NT Filesystems | ||
1422 | # | ||
1423 | CONFIG_FAT_FS=m | ||
1424 | CONFIG_MSDOS_FS=m | 458 | CONFIG_MSDOS_FS=m |
1425 | CONFIG_VFAT_FS=m | 459 | CONFIG_VFAT_FS=m |
1426 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
1427 | CONFIG_FAT_DEFAULT_IOCHARSET="ascii" | 460 | CONFIG_FAT_DEFAULT_IOCHARSET="ascii" |
1428 | # CONFIG_NTFS_FS is not set | ||
1429 | |||
1430 | # | ||
1431 | # Pseudo filesystems | ||
1432 | # | ||
1433 | CONFIG_PROC_FS=y | ||
1434 | CONFIG_PROC_KCORE=y | 461 | CONFIG_PROC_KCORE=y |
1435 | CONFIG_PROC_SYSCTL=y | ||
1436 | CONFIG_PROC_PAGE_MONITOR=y | ||
1437 | CONFIG_SYSFS=y | ||
1438 | CONFIG_TMPFS=y | 462 | CONFIG_TMPFS=y |
1439 | CONFIG_TMPFS_POSIX_ACL=y | 463 | CONFIG_TMPFS_POSIX_ACL=y |
1440 | CONFIG_HUGETLBFS=y | 464 | CONFIG_HUGETLBFS=y |
1441 | CONFIG_HUGETLB_PAGE=y | ||
1442 | CONFIG_CONFIGFS_FS=m | ||
1443 | CONFIG_MISC_FILESYSTEMS=y | ||
1444 | # CONFIG_ADFS_FS is not set | ||
1445 | # CONFIG_AFFS_FS is not set | ||
1446 | CONFIG_ECRYPT_FS=m | 465 | CONFIG_ECRYPT_FS=m |
1447 | # CONFIG_HFS_FS is not set | ||
1448 | # CONFIG_HFSPLUS_FS is not set | ||
1449 | # CONFIG_BEFS_FS is not set | ||
1450 | # CONFIG_BFS_FS is not set | ||
1451 | # CONFIG_EFS_FS is not set | ||
1452 | # CONFIG_LOGFS is not set | ||
1453 | CONFIG_CRAMFS=m | 466 | CONFIG_CRAMFS=m |
1454 | CONFIG_SQUASHFS=m | 467 | CONFIG_SQUASHFS=m |
1455 | # CONFIG_SQUASHFS_XATTR is not set | ||
1456 | # CONFIG_SQUASHFS_LZO is not set | ||
1457 | # CONFIG_SQUASHFS_XZ is not set | ||
1458 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
1459 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
1460 | # CONFIG_VXFS_FS is not set | ||
1461 | # CONFIG_MINIX_FS is not set | ||
1462 | # CONFIG_OMFS_FS is not set | ||
1463 | # CONFIG_HPFS_FS is not set | ||
1464 | # CONFIG_QNX4FS_FS is not set | ||
1465 | # CONFIG_ROMFS_FS is not set | ||
1466 | # CONFIG_PSTORE is not set | ||
1467 | # CONFIG_SYSV_FS is not set | ||
1468 | # CONFIG_UFS_FS is not set | ||
1469 | CONFIG_NETWORK_FILESYSTEMS=y | ||
1470 | CONFIG_NFS_FS=m | 468 | CONFIG_NFS_FS=m |
1471 | CONFIG_NFS_V3=y | 469 | CONFIG_NFS_V3=y |
1472 | CONFIG_NFS_V3_ACL=y | 470 | CONFIG_NFS_V3_ACL=y |
1473 | CONFIG_NFS_V4=y | 471 | CONFIG_NFS_V4=y |
1474 | CONFIG_NFS_V4_1=y | 472 | CONFIG_NFS_V4_1=y |
1475 | CONFIG_PNFS_FILE_LAYOUT=m | ||
1476 | CONFIG_NFS_FSCACHE=y | 473 | CONFIG_NFS_FSCACHE=y |
1477 | # CONFIG_NFS_USE_LEGACY_DNS is not set | ||
1478 | CONFIG_NFS_USE_KERNEL_DNS=y | ||
1479 | # CONFIG_NFS_USE_NEW_IDMAPPER is not set | ||
1480 | CONFIG_NFSD=m | 474 | CONFIG_NFSD=m |
1481 | CONFIG_NFSD_V2_ACL=y | ||
1482 | CONFIG_NFSD_V3=y | ||
1483 | CONFIG_NFSD_V3_ACL=y | 475 | CONFIG_NFSD_V3_ACL=y |
1484 | CONFIG_NFSD_V4=y | 476 | CONFIG_NFSD_V4=y |
1485 | CONFIG_LOCKD=m | ||
1486 | CONFIG_LOCKD_V4=y | ||
1487 | CONFIG_NFS_ACL_SUPPORT=m | ||
1488 | CONFIG_NFS_COMMON=y | ||
1489 | CONFIG_SUNRPC=m | ||
1490 | CONFIG_SUNRPC_GSS=m | ||
1491 | CONFIG_RPCSEC_GSS_KRB5=m | ||
1492 | # CONFIG_CEPH_FS is not set | ||
1493 | CONFIG_CIFS=m | 477 | CONFIG_CIFS=m |
1494 | CONFIG_CIFS_STATS=y | 478 | CONFIG_CIFS_STATS=y |
1495 | # CONFIG_CIFS_STATS2 is not set | ||
1496 | CONFIG_CIFS_WEAK_PW_HASH=y | 479 | CONFIG_CIFS_WEAK_PW_HASH=y |
1497 | CONFIG_CIFS_UPCALL=y | 480 | CONFIG_CIFS_UPCALL=y |
1498 | CONFIG_CIFS_XATTR=y | 481 | CONFIG_CIFS_XATTR=y |
1499 | CONFIG_CIFS_POSIX=y | 482 | CONFIG_CIFS_POSIX=y |
1500 | # CONFIG_CIFS_DEBUG2 is not set | ||
1501 | CONFIG_CIFS_DFS_UPCALL=y | 483 | CONFIG_CIFS_DFS_UPCALL=y |
1502 | CONFIG_CIFS_FSCACHE=y | 484 | CONFIG_CIFS_FSCACHE=y |
1503 | # CONFIG_CIFS_ACL is not set | ||
1504 | CONFIG_CIFS_EXPERIMENTAL=y | ||
1505 | # CONFIG_NCP_FS is not set | ||
1506 | # CONFIG_CODA_FS is not set | ||
1507 | # CONFIG_AFS_FS is not set | ||
1508 | |||
1509 | # | ||
1510 | # Partition Types | ||
1511 | # | ||
1512 | CONFIG_PARTITION_ADVANCED=y | ||
1513 | # CONFIG_ACORN_PARTITION is not set | ||
1514 | CONFIG_OSF_PARTITION=y | ||
1515 | CONFIG_AMIGA_PARTITION=y | ||
1516 | # CONFIG_ATARI_PARTITION is not set | ||
1517 | CONFIG_MAC_PARTITION=y | ||
1518 | CONFIG_MSDOS_PARTITION=y | ||
1519 | CONFIG_BSD_DISKLABEL=y | ||
1520 | CONFIG_MINIX_SUBPARTITION=y | ||
1521 | CONFIG_SOLARIS_X86_PARTITION=y | ||
1522 | CONFIG_UNIXWARE_DISKLABEL=y | ||
1523 | # CONFIG_LDM_PARTITION is not set | ||
1524 | CONFIG_SGI_PARTITION=y | ||
1525 | # CONFIG_ULTRIX_PARTITION is not set | ||
1526 | CONFIG_SUN_PARTITION=y | ||
1527 | CONFIG_KARMA_PARTITION=y | ||
1528 | CONFIG_EFI_PARTITION=y | ||
1529 | # CONFIG_SYSV68_PARTITION is not set | ||
1530 | CONFIG_NLS=y | ||
1531 | CONFIG_NLS_DEFAULT="utf8" | 485 | CONFIG_NLS_DEFAULT="utf8" |
1532 | CONFIG_NLS_CODEPAGE_437=y | 486 | CONFIG_NLS_CODEPAGE_437=y |
1533 | CONFIG_NLS_CODEPAGE_737=m | 487 | CONFIG_NLS_CODEPAGE_737=m |
@@ -1567,185 +521,47 @@ CONFIG_NLS_ISO8859_15=m | |||
1567 | CONFIG_NLS_KOI8_R=m | 521 | CONFIG_NLS_KOI8_R=m |
1568 | CONFIG_NLS_KOI8_U=m | 522 | CONFIG_NLS_KOI8_U=m |
1569 | CONFIG_NLS_UTF8=m | 523 | CONFIG_NLS_UTF8=m |
1570 | CONFIG_DLM=m | ||
1571 | CONFIG_DLM_DEBUG=y | 524 | CONFIG_DLM_DEBUG=y |
1572 | |||
1573 | # | ||
1574 | # Kernel hacking | ||
1575 | # | ||
1576 | # CONFIG_PRINTK_TIME is not set | ||
1577 | CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 | ||
1578 | # CONFIG_ENABLE_WARN_DEPRECATED is not set | 525 | # CONFIG_ENABLE_WARN_DEPRECATED is not set |
1579 | CONFIG_ENABLE_MUST_CHECK=y | ||
1580 | CONFIG_FRAME_WARN=2048 | ||
1581 | CONFIG_MAGIC_SYSRQ=y | 526 | CONFIG_MAGIC_SYSRQ=y |
1582 | CONFIG_STRIP_ASM_SYMS=y | 527 | CONFIG_STRIP_ASM_SYMS=y |
1583 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1584 | CONFIG_DEBUG_FS=y | 528 | CONFIG_DEBUG_FS=y |
1585 | CONFIG_HEADERS_CHECK=y | 529 | CONFIG_HEADERS_CHECK=y |
1586 | # CONFIG_DEBUG_SECTION_MISMATCH is not set | ||
1587 | CONFIG_DEBUG_KERNEL=y | ||
1588 | CONFIG_DEBUG_SHIRQ=y | ||
1589 | CONFIG_LOCKUP_DETECTOR=y | 530 | CONFIG_LOCKUP_DETECTOR=y |
1590 | # CONFIG_HARDLOCKUP_DETECTOR is not set | ||
1591 | # CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set | ||
1592 | CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 | ||
1593 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
1594 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
1595 | CONFIG_DETECT_HUNG_TASK=y | ||
1596 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
1597 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1598 | CONFIG_SCHED_DEBUG=y | ||
1599 | CONFIG_SCHEDSTATS=y | 531 | CONFIG_SCHEDSTATS=y |
1600 | CONFIG_TIMER_STATS=y | 532 | CONFIG_TIMER_STATS=y |
1601 | # CONFIG_DEBUG_OBJECTS is not set | ||
1602 | # CONFIG_SLUB_DEBUG_ON is not set | ||
1603 | # CONFIG_SLUB_STATS is not set | ||
1604 | # CONFIG_DEBUG_KMEMLEAK is not set | ||
1605 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1606 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1607 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1608 | # CONFIG_DEBUG_MUTEXES is not set | ||
1609 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
1610 | # CONFIG_PROVE_LOCKING is not set | ||
1611 | # CONFIG_SPARSE_RCU_POINTER is not set | ||
1612 | # CONFIG_LOCK_STAT is not set | ||
1613 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | ||
1614 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1615 | CONFIG_STACKTRACE=y | ||
1616 | # CONFIG_DEBUG_KOBJECT is not set | ||
1617 | CONFIG_DEBUG_INFO=y | 533 | CONFIG_DEBUG_INFO=y |
1618 | CONFIG_DEBUG_INFO_REDUCED=y | 534 | CONFIG_DEBUG_INFO_REDUCED=y |
1619 | CONFIG_DEBUG_VM=y | 535 | CONFIG_DEBUG_VM=y |
1620 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
1621 | CONFIG_DEBUG_MEMORY_INIT=y | 536 | CONFIG_DEBUG_MEMORY_INIT=y |
1622 | CONFIG_DEBUG_LIST=y | 537 | CONFIG_DEBUG_LIST=y |
1623 | # CONFIG_TEST_LIST_SORT is not set | ||
1624 | # CONFIG_DEBUG_SG is not set | ||
1625 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1626 | CONFIG_DEBUG_CREDENTIALS=y | 538 | CONFIG_DEBUG_CREDENTIALS=y |
1627 | # CONFIG_RCU_TORTURE_TEST is not set | ||
1628 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
1629 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1630 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | ||
1631 | CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y | 539 | CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y |
1632 | # CONFIG_LKDTM is not set | ||
1633 | # CONFIG_FAULT_INJECTION is not set | ||
1634 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1635 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1636 | CONFIG_TRACING_SUPPORT=y | ||
1637 | CONFIG_FTRACE=y | ||
1638 | # CONFIG_IRQSOFF_TRACER is not set | ||
1639 | # CONFIG_SCHED_TRACER is not set | ||
1640 | # CONFIG_ENABLE_DEFAULT_TRACERS is not set | ||
1641 | CONFIG_BRANCH_PROFILE_NONE=y | ||
1642 | # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set | ||
1643 | # CONFIG_PROFILE_ALL_BRANCHES is not set | ||
1644 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1645 | # CONFIG_BUILD_DOCSRC is not set | ||
1646 | CONFIG_DYNAMIC_DEBUG=y | 540 | CONFIG_DYNAMIC_DEBUG=y |
1647 | # CONFIG_ATOMIC64_SELFTEST is not set | ||
1648 | CONFIG_ASYNC_RAID6_TEST=m | 541 | CONFIG_ASYNC_RAID6_TEST=m |
1649 | # CONFIG_SAMPLES is not set | ||
1650 | # CONFIG_TEST_KSTRTOX is not set | ||
1651 | CONFIG_EARLY_PRINTK=y | ||
1652 | CONFIG_DEBUG_STACKOVERFLOW=y | 542 | CONFIG_DEBUG_STACKOVERFLOW=y |
1653 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
1654 | CONFIG_DEBUG_EXTRA_FLAGS="" | ||
1655 | |||
1656 | # | ||
1657 | # Security options | ||
1658 | # | ||
1659 | CONFIG_KEYS=y | ||
1660 | CONFIG_KEYS_DEBUG_PROC_KEYS=y | 543 | CONFIG_KEYS_DEBUG_PROC_KEYS=y |
1661 | # CONFIG_SECURITY_DMESG_RESTRICT is not set | ||
1662 | CONFIG_SECURITY=y | 544 | CONFIG_SECURITY=y |
1663 | CONFIG_SECURITYFS=y | 545 | CONFIG_SECURITYFS=y |
1664 | CONFIG_SECURITY_NETWORK=y | 546 | CONFIG_SECURITY_NETWORK=y |
1665 | CONFIG_SECURITY_NETWORK_XFRM=y | 547 | CONFIG_SECURITY_NETWORK_XFRM=y |
1666 | # CONFIG_SECURITY_PATH is not set | ||
1667 | CONFIG_LSM_MMAP_MIN_ADDR=65536 | ||
1668 | CONFIG_SECURITY_SELINUX=y | 548 | CONFIG_SECURITY_SELINUX=y |
1669 | CONFIG_SECURITY_SELINUX_BOOTPARAM=y | 549 | CONFIG_SECURITY_SELINUX_BOOTPARAM=y |
1670 | CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1 | ||
1671 | CONFIG_SECURITY_SELINUX_DISABLE=y | 550 | CONFIG_SECURITY_SELINUX_DISABLE=y |
1672 | CONFIG_SECURITY_SELINUX_DEVELOP=y | ||
1673 | CONFIG_SECURITY_SELINUX_AVC_STATS=y | ||
1674 | CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 | ||
1675 | # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set | ||
1676 | # CONFIG_SECURITY_SMACK is not set | ||
1677 | # CONFIG_SECURITY_TOMOYO is not set | ||
1678 | # CONFIG_SECURITY_APPARMOR is not set | ||
1679 | # CONFIG_IMA is not set | ||
1680 | CONFIG_DEFAULT_SECURITY_SELINUX=y | ||
1681 | # CONFIG_DEFAULT_SECURITY_DAC is not set | ||
1682 | CONFIG_DEFAULT_SECURITY="selinux" | ||
1683 | CONFIG_XOR_BLOCKS=m | ||
1684 | CONFIG_ASYNC_CORE=m | ||
1685 | CONFIG_ASYNC_MEMCPY=m | ||
1686 | CONFIG_ASYNC_XOR=m | ||
1687 | CONFIG_ASYNC_PQ=m | ||
1688 | CONFIG_ASYNC_RAID6_RECOV=m | ||
1689 | CONFIG_CRYPTO=y | ||
1690 | |||
1691 | # | ||
1692 | # Crypto core or helper | ||
1693 | # | ||
1694 | CONFIG_CRYPTO_ALGAPI=y | ||
1695 | CONFIG_CRYPTO_ALGAPI2=y | ||
1696 | CONFIG_CRYPTO_AEAD=m | ||
1697 | CONFIG_CRYPTO_AEAD2=y | ||
1698 | CONFIG_CRYPTO_BLKCIPHER=m | ||
1699 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1700 | CONFIG_CRYPTO_HASH=y | ||
1701 | CONFIG_CRYPTO_HASH2=y | ||
1702 | CONFIG_CRYPTO_RNG=m | ||
1703 | CONFIG_CRYPTO_RNG2=y | ||
1704 | CONFIG_CRYPTO_PCOMP=m | ||
1705 | CONFIG_CRYPTO_PCOMP2=y | ||
1706 | CONFIG_CRYPTO_MANAGER=y | ||
1707 | CONFIG_CRYPTO_MANAGER2=y | ||
1708 | CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y | ||
1709 | CONFIG_CRYPTO_GF128MUL=m | ||
1710 | CONFIG_CRYPTO_NULL=m | 551 | CONFIG_CRYPTO_NULL=m |
1711 | CONFIG_CRYPTO_PCRYPT=m | 552 | CONFIG_CRYPTO_PCRYPT=m |
1712 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1713 | CONFIG_CRYPTO_CRYPTD=m | 553 | CONFIG_CRYPTO_CRYPTD=m |
1714 | CONFIG_CRYPTO_AUTHENC=m | ||
1715 | CONFIG_CRYPTO_TEST=m | 554 | CONFIG_CRYPTO_TEST=m |
1716 | |||
1717 | # | ||
1718 | # Authenticated Encryption with Associated Data | ||
1719 | # | ||
1720 | CONFIG_CRYPTO_CCM=m | 555 | CONFIG_CRYPTO_CCM=m |
1721 | CONFIG_CRYPTO_GCM=m | 556 | CONFIG_CRYPTO_GCM=m |
1722 | CONFIG_CRYPTO_SEQIV=m | ||
1723 | |||
1724 | # | ||
1725 | # Block modes | ||
1726 | # | ||
1727 | CONFIG_CRYPTO_CBC=m | ||
1728 | CONFIG_CRYPTO_CTR=m | ||
1729 | CONFIG_CRYPTO_CTS=m | 557 | CONFIG_CRYPTO_CTS=m |
1730 | CONFIG_CRYPTO_ECB=m | ||
1731 | CONFIG_CRYPTO_LRW=m | 558 | CONFIG_CRYPTO_LRW=m |
1732 | CONFIG_CRYPTO_PCBC=m | 559 | CONFIG_CRYPTO_PCBC=m |
1733 | CONFIG_CRYPTO_XTS=m | 560 | CONFIG_CRYPTO_XTS=m |
1734 | |||
1735 | # | ||
1736 | # Hash modes | ||
1737 | # | ||
1738 | CONFIG_CRYPTO_HMAC=y | 561 | CONFIG_CRYPTO_HMAC=y |
1739 | CONFIG_CRYPTO_XCBC=m | 562 | CONFIG_CRYPTO_XCBC=m |
1740 | CONFIG_CRYPTO_VMAC=m | 563 | CONFIG_CRYPTO_VMAC=m |
1741 | |||
1742 | # | ||
1743 | # Digest | ||
1744 | # | ||
1745 | CONFIG_CRYPTO_CRC32C=y | 564 | CONFIG_CRYPTO_CRC32C=y |
1746 | CONFIG_CRYPTO_GHASH=m | ||
1747 | CONFIG_CRYPTO_MD4=m | ||
1748 | CONFIG_CRYPTO_MD5=y | ||
1749 | CONFIG_CRYPTO_MICHAEL_MIC=m | 565 | CONFIG_CRYPTO_MICHAEL_MIC=m |
1750 | CONFIG_CRYPTO_RMD128=m | 566 | CONFIG_CRYPTO_RMD128=m |
1751 | CONFIG_CRYPTO_RMD160=m | 567 | CONFIG_CRYPTO_RMD160=m |
@@ -1756,76 +572,16 @@ CONFIG_CRYPTO_SHA256=m | |||
1756 | CONFIG_CRYPTO_SHA512=m | 572 | CONFIG_CRYPTO_SHA512=m |
1757 | CONFIG_CRYPTO_TGR192=m | 573 | CONFIG_CRYPTO_TGR192=m |
1758 | CONFIG_CRYPTO_WP512=m | 574 | CONFIG_CRYPTO_WP512=m |
1759 | |||
1760 | # | ||
1761 | # Ciphers | ||
1762 | # | ||
1763 | CONFIG_CRYPTO_AES=m | ||
1764 | CONFIG_CRYPTO_ANUBIS=m | 575 | CONFIG_CRYPTO_ANUBIS=m |
1765 | CONFIG_CRYPTO_ARC4=m | ||
1766 | CONFIG_CRYPTO_BLOWFISH=m | 576 | CONFIG_CRYPTO_BLOWFISH=m |
1767 | CONFIG_CRYPTO_CAMELLIA=m | 577 | CONFIG_CRYPTO_CAMELLIA=m |
1768 | CONFIG_CRYPTO_CAST5=m | 578 | CONFIG_CRYPTO_CAST5=m |
1769 | CONFIG_CRYPTO_CAST6=m | 579 | CONFIG_CRYPTO_CAST6=m |
1770 | CONFIG_CRYPTO_DES=m | ||
1771 | CONFIG_CRYPTO_FCRYPT=m | 580 | CONFIG_CRYPTO_FCRYPT=m |
1772 | CONFIG_CRYPTO_KHAZAD=m | 581 | CONFIG_CRYPTO_KHAZAD=m |
1773 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1774 | CONFIG_CRYPTO_SEED=m | 582 | CONFIG_CRYPTO_SEED=m |
1775 | CONFIG_CRYPTO_SERPENT=m | 583 | CONFIG_CRYPTO_SERPENT=m |
1776 | CONFIG_CRYPTO_TEA=m | 584 | CONFIG_CRYPTO_TEA=m |
1777 | CONFIG_CRYPTO_TWOFISH=m | 585 | CONFIG_CRYPTO_TWOFISH=m |
1778 | CONFIG_CRYPTO_TWOFISH_COMMON=m | ||
1779 | |||
1780 | # | ||
1781 | # Compression | ||
1782 | # | ||
1783 | CONFIG_CRYPTO_DEFLATE=m | ||
1784 | CONFIG_CRYPTO_ZLIB=m | 586 | CONFIG_CRYPTO_ZLIB=m |
1785 | CONFIG_CRYPTO_LZO=m | 587 | CONFIG_CRYPTO_LZO=m |
1786 | |||
1787 | # | ||
1788 | # Random Number Generation | ||
1789 | # | ||
1790 | CONFIG_CRYPTO_ANSI_CPRNG=m | ||
1791 | # CONFIG_CRYPTO_USER_API_HASH is not set | ||
1792 | # CONFIG_CRYPTO_USER_API_SKCIPHER is not set | ||
1793 | CONFIG_CRYPTO_HW=y | ||
1794 | CONFIG_CRYPTO_DEV_HIFN_795X=m | ||
1795 | CONFIG_CRYPTO_DEV_HIFN_795X_RNG=y | ||
1796 | # CONFIG_BINARY_PRINTF is not set | ||
1797 | |||
1798 | # | ||
1799 | # Library routines | ||
1800 | # | ||
1801 | CONFIG_RAID6_PQ=m | ||
1802 | CONFIG_BITREVERSE=y | ||
1803 | CONFIG_GENERIC_FIND_FIRST_BIT=y | ||
1804 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
1805 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1806 | # CONFIG_CRC_CCITT is not set | ||
1807 | CONFIG_CRC16=y | ||
1808 | CONFIG_CRC_T10DIF=y | ||
1809 | CONFIG_CRC_ITU_T=m | ||
1810 | CONFIG_CRC32=y | ||
1811 | # CONFIG_CRC7 is not set | ||
1812 | CONFIG_LIBCRC32C=m | ||
1813 | CONFIG_AUDIT_GENERIC=y | ||
1814 | CONFIG_ZLIB_INFLATE=y | ||
1815 | CONFIG_ZLIB_DEFLATE=m | ||
1816 | CONFIG_LZO_COMPRESS=m | ||
1817 | CONFIG_LZO_DECOMPRESS=m | ||
1818 | # CONFIG_XZ_DEC is not set | ||
1819 | # CONFIG_XZ_DEC_BCJ is not set | ||
1820 | CONFIG_DECOMPRESS_GZIP=y | ||
1821 | CONFIG_TEXTSEARCH=y | ||
1822 | CONFIG_TEXTSEARCH_KMP=m | ||
1823 | CONFIG_TEXTSEARCH_BM=m | ||
1824 | CONFIG_TEXTSEARCH_FSM=m | ||
1825 | CONFIG_HAS_IOMEM=y | ||
1826 | CONFIG_HAS_IOPORT=y | ||
1827 | CONFIG_HAS_DMA=y | ||
1828 | CONFIG_CPU_RMAP=y | ||
1829 | CONFIG_NLATTR=y | ||
1830 | # CONFIG_AVERAGE is not set | ||
1831 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/tile/configs/tilepro_defconfig b/arch/tile/configs/tilepro_defconfig index 6f05f969b564..2b1fd31894f1 100644 --- a/arch/tile/configs/tilepro_defconfig +++ b/arch/tile/configs/tilepro_defconfig | |||
@@ -1,1162 +1,579 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux/tile 2.6.39-rc5 Kernel Configuration | ||
4 | # Tue May 3 09:15:02 2011 | ||
5 | # | ||
6 | CONFIG_TILE=y | ||
7 | CONFIG_MMU=y | ||
8 | CONFIG_GENERIC_CSUM=y | ||
9 | CONFIG_SEMAPHORE_SLEEPERS=y | ||
10 | CONFIG_HAVE_ARCH_ALLOC_REMAP=y | ||
11 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y | ||
12 | CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y | ||
13 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
14 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
15 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
16 | CONFIG_DEFAULT_MIGRATION_COST=10000000 | ||
17 | CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y | ||
18 | CONFIG_ARCH_PHYS_ADDR_T_64BIT=y | ||
19 | CONFIG_ARCH_DMA_ADDR_T_64BIT=y | ||
20 | CONFIG_LOCKDEP_SUPPORT=y | ||
21 | CONFIG_STACKTRACE_SUPPORT=y | ||
22 | CONFIG_ARCH_DISCONTIGMEM_ENABLE=y | ||
23 | CONFIG_ARCH_DISCONTIGMEM_DEFAULT=y | ||
24 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
25 | CONFIG_STRICT_DEVMEM=y | ||
26 | CONFIG_SMP=y | ||
27 | # CONFIG_DEBUG_COPY_FROM_USER is not set | ||
28 | CONFIG_HVC_TILE=y | ||
29 | # CONFIG_TILEGX is not set | ||
30 | CONFIG_ARCH_DEFCONFIG="arch/tile/configs/tile_defconfig" | ||
31 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
32 | CONFIG_CONSTRUCTORS=y | ||
33 | |||
34 | # | ||
35 | # General setup | ||
36 | # | ||
37 | CONFIG_EXPERIMENTAL=y | 1 | CONFIG_EXPERIMENTAL=y |
38 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 2 | # CONFIG_LOCALVERSION_AUTO is not set |
39 | CONFIG_CROSS_COMPILE="" | ||
40 | CONFIG_LOCALVERSION="" | ||
41 | CONFIG_LOCALVERSION_AUTO=y | ||
42 | # CONFIG_SWAP is not set | ||
43 | CONFIG_SYSVIPC=y | 3 | CONFIG_SYSVIPC=y |
44 | CONFIG_SYSVIPC_SYSCTL=y | 4 | CONFIG_POSIX_MQUEUE=y |
45 | # CONFIG_POSIX_MQUEUE is not set | 5 | CONFIG_BSD_PROCESS_ACCT=y |
46 | # CONFIG_BSD_PROCESS_ACCT is not set | 6 | CONFIG_BSD_PROCESS_ACCT_V3=y |
47 | CONFIG_FHANDLE=y | 7 | CONFIG_FHANDLE=y |
48 | # CONFIG_TASKSTATS is not set | 8 | CONFIG_TASKSTATS=y |
49 | # CONFIG_AUDIT is not set | 9 | CONFIG_TASK_DELAY_ACCT=y |
50 | CONFIG_HAVE_GENERIC_HARDIRQS=y | 10 | CONFIG_TASK_XACCT=y |
51 | 11 | CONFIG_TASK_IO_ACCOUNTING=y | |
52 | # | 12 | CONFIG_AUDIT=y |
53 | # IRQ subsystem | 13 | CONFIG_LOG_BUF_SHIFT=19 |
54 | # | 14 | CONFIG_CGROUPS=y |
55 | CONFIG_GENERIC_HARDIRQS=y | 15 | CONFIG_CGROUP_DEBUG=y |
56 | CONFIG_GENERIC_IRQ_PROBE=y | 16 | CONFIG_CGROUP_DEVICE=y |
57 | CONFIG_GENERIC_IRQ_SHOW=y | 17 | CONFIG_CPUSETS=y |
58 | CONFIG_GENERIC_PENDING_IRQ=y | 18 | CONFIG_CGROUP_CPUACCT=y |
59 | 19 | CONFIG_RESOURCE_COUNTERS=y | |
60 | # | 20 | CONFIG_CGROUP_MEM_RES_CTLR=y |
61 | # RCU Subsystem | 21 | CONFIG_CGROUP_MEM_RES_CTLR_SWAP=y |
62 | # | 22 | CONFIG_CGROUP_SCHED=y |
63 | CONFIG_TREE_RCU=y | 23 | CONFIG_RT_GROUP_SCHED=y |
64 | # CONFIG_PREEMPT_RCU is not set | 24 | CONFIG_BLK_CGROUP=y |
65 | # CONFIG_RCU_TRACE is not set | 25 | CONFIG_NAMESPACES=y |
66 | CONFIG_RCU_FANOUT=32 | 26 | CONFIG_RELAY=y |
67 | # CONFIG_RCU_FANOUT_EXACT is not set | ||
68 | # CONFIG_RCU_FAST_NO_HZ is not set | ||
69 | # CONFIG_TREE_RCU_TRACE is not set | ||
70 | # CONFIG_IKCONFIG is not set | ||
71 | CONFIG_LOG_BUF_SHIFT=17 | ||
72 | # CONFIG_CGROUPS is not set | ||
73 | # CONFIG_NAMESPACES is not set | ||
74 | # CONFIG_SCHED_AUTOGROUP is not set | ||
75 | # CONFIG_SYSFS_DEPRECATED is not set | ||
76 | # CONFIG_RELAY is not set | ||
77 | CONFIG_BLK_DEV_INITRD=y | 27 | CONFIG_BLK_DEV_INITRD=y |
78 | CONFIG_INITRAMFS_SOURCE="usr/contents.txt" | ||
79 | CONFIG_INITRAMFS_ROOT_UID=0 | ||
80 | CONFIG_INITRAMFS_ROOT_GID=0 | ||
81 | CONFIG_RD_GZIP=y | ||
82 | # CONFIG_RD_BZIP2 is not set | ||
83 | # CONFIG_RD_LZMA is not set | ||
84 | # CONFIG_RD_XZ is not set | ||
85 | # CONFIG_RD_LZO is not set | ||
86 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
87 | # CONFIG_INITRAMFS_COMPRESSION_GZIP is not set | ||
88 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
89 | CONFIG_SYSCTL=y | ||
90 | CONFIG_ANON_INODES=y | ||
91 | CONFIG_EXPERT=y | ||
92 | CONFIG_SYSCTL_SYSCALL=y | 28 | CONFIG_SYSCTL_SYSCALL=y |
93 | CONFIG_KALLSYMS=y | ||
94 | # CONFIG_KALLSYMS_ALL is not set | ||
95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
96 | CONFIG_HOTPLUG=y | ||
97 | CONFIG_PRINTK=y | ||
98 | CONFIG_BUG=y | ||
99 | CONFIG_ELF_CORE=y | ||
100 | CONFIG_BASE_FULL=y | ||
101 | CONFIG_FUTEX=y | ||
102 | CONFIG_EPOLL=y | ||
103 | CONFIG_SIGNALFD=y | ||
104 | CONFIG_TIMERFD=y | ||
105 | CONFIG_EVENTFD=y | ||
106 | CONFIG_SHMEM=y | ||
107 | CONFIG_AIO=y | ||
108 | CONFIG_EMBEDDED=y | 29 | CONFIG_EMBEDDED=y |
109 | |||
110 | # | ||
111 | # Kernel Performance Events And Counters | ||
112 | # | ||
113 | CONFIG_VM_EVENT_COUNTERS=y | ||
114 | CONFIG_PCI_QUIRKS=y | ||
115 | CONFIG_SLUB_DEBUG=y | ||
116 | # CONFIG_COMPAT_BRK is not set | 30 | # CONFIG_COMPAT_BRK is not set |
117 | # CONFIG_SLAB is not set | ||
118 | CONFIG_SLUB=y | ||
119 | # CONFIG_SLOB is not set | ||
120 | CONFIG_PROFILING=y | 31 | CONFIG_PROFILING=y |
121 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
122 | |||
123 | # | ||
124 | # GCOV-based kernel profiling | ||
125 | # | ||
126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
127 | CONFIG_SLABINFO=y | ||
128 | CONFIG_RT_MUTEXES=y | ||
129 | CONFIG_BASE_SMALL=0 | ||
130 | CONFIG_MODULES=y | 32 | CONFIG_MODULES=y |
131 | # CONFIG_MODULE_FORCE_LOAD is not set | 33 | CONFIG_MODULE_FORCE_LOAD=y |
132 | CONFIG_MODULE_UNLOAD=y | 34 | CONFIG_MODULE_UNLOAD=y |
133 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 35 | CONFIG_BLK_DEV_INTEGRITY=y |
134 | # CONFIG_MODVERSIONS is not set | 36 | CONFIG_PARTITION_ADVANCED=y |
135 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 37 | CONFIG_OSF_PARTITION=y |
136 | CONFIG_STOP_MACHINE=y | 38 | CONFIG_AMIGA_PARTITION=y |
137 | CONFIG_BLOCK=y | 39 | CONFIG_MAC_PARTITION=y |
138 | CONFIG_LBDAF=y | 40 | CONFIG_BSD_DISKLABEL=y |
139 | # CONFIG_BLK_DEV_BSG is not set | 41 | CONFIG_MINIX_SUBPARTITION=y |
140 | # CONFIG_BLK_DEV_INTEGRITY is not set | 42 | CONFIG_SOLARIS_X86_PARTITION=y |
141 | 43 | CONFIG_UNIXWARE_DISKLABEL=y | |
142 | # | 44 | CONFIG_SGI_PARTITION=y |
143 | # IO Schedulers | 45 | CONFIG_SUN_PARTITION=y |
144 | # | 46 | CONFIG_KARMA_PARTITION=y |
145 | CONFIG_IOSCHED_NOOP=y | 47 | CONFIG_EFI_PARTITION=y |
146 | # CONFIG_IOSCHED_DEADLINE is not set | 48 | CONFIG_CFQ_GROUP_IOSCHED=y |
147 | # CONFIG_IOSCHED_CFQ is not set | ||
148 | CONFIG_DEFAULT_NOOP=y | ||
149 | CONFIG_DEFAULT_IOSCHED="noop" | ||
150 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
151 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
152 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
153 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
154 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
156 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
157 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
158 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
159 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
160 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
161 | # CONFIG_INLINE_READ_LOCK is not set | ||
162 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
163 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
164 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
165 | CONFIG_INLINE_READ_UNLOCK=y | ||
166 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
167 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
168 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
169 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
170 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
171 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
172 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
174 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
175 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
176 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
177 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
178 | CONFIG_MUTEX_SPIN_ON_OWNER=y | ||
179 | |||
180 | # | ||
181 | # Tilera-specific configuration | ||
182 | # | ||
183 | CONFIG_NR_CPUS=64 | ||
184 | CONFIG_TICK_ONESHOT=y | ||
185 | CONFIG_NO_HZ=y | 49 | CONFIG_NO_HZ=y |
186 | CONFIG_HIGH_RES_TIMERS=y | 50 | CONFIG_HIGH_RES_TIMERS=y |
187 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
188 | CONFIG_HZ_100=y | 51 | CONFIG_HZ_100=y |
189 | # CONFIG_HZ_250 is not set | 52 | CONFIG_PCI_DEBUG=y |
190 | # CONFIG_HZ_300 is not set | ||
191 | # CONFIG_HZ_1000 is not set | ||
192 | CONFIG_HZ=100 | ||
193 | CONFIG_SCHED_HRTICK=y | ||
194 | # CONFIG_KEXEC is not set | ||
195 | CONFIG_HIGHMEM=y | ||
196 | CONFIG_NUMA=y | ||
197 | CONFIG_NODES_SHIFT=2 | ||
198 | # CONFIG_VMSPLIT_3_75G is not set | ||
199 | # CONFIG_VMSPLIT_3_5G is not set | ||
200 | CONFIG_VMSPLIT_3G=y | ||
201 | # CONFIG_VMSPLIT_2_75G is not set | ||
202 | # CONFIG_VMSPLIT_2_5G is not set | ||
203 | # CONFIG_VMSPLIT_2_25G is not set | ||
204 | # CONFIG_VMSPLIT_2G is not set | ||
205 | # CONFIG_VMSPLIT_1G is not set | ||
206 | CONFIG_PAGE_OFFSET=0xC0000000 | ||
207 | CONFIG_SELECT_MEMORY_MODEL=y | ||
208 | CONFIG_DISCONTIGMEM_MANUAL=y | ||
209 | CONFIG_DISCONTIGMEM=y | ||
210 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
211 | CONFIG_NEED_MULTIPLE_NODES=y | ||
212 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
213 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
214 | # CONFIG_COMPACTION is not set | ||
215 | CONFIG_MIGRATION=y | ||
216 | CONFIG_PHYS_ADDR_T_64BIT=y | ||
217 | CONFIG_ZONE_DMA_FLAG=0 | ||
218 | CONFIG_BOUNCE=y | ||
219 | CONFIG_VIRT_TO_BUS=y | ||
220 | # CONFIG_KSM is not set | ||
221 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | ||
222 | # CONFIG_CMDLINE_BOOL is not set | ||
223 | CONFIG_VMALLOC_RESERVE=0x1000000 | ||
224 | CONFIG_HARDWALL=y | ||
225 | CONFIG_KERNEL_PL=1 | ||
226 | |||
227 | # | ||
228 | # Bus options | ||
229 | # | ||
230 | CONFIG_PCI=y | ||
231 | CONFIG_PCI_DOMAINS=y | ||
232 | # CONFIG_NO_IOMEM is not set | ||
233 | # CONFIG_NO_IOPORT is not set | ||
234 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
235 | # CONFIG_PCI_DEBUG is not set | ||
236 | # CONFIG_PCI_STUB is not set | ||
237 | # CONFIG_PCI_IOV is not set | ||
238 | # CONFIG_HOTPLUG_PCI is not set | ||
239 | |||
240 | # | ||
241 | # Executable file formats | ||
242 | # | ||
243 | CONFIG_KCORE_ELF=y | ||
244 | CONFIG_BINFMT_ELF=y | ||
245 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 53 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
246 | # CONFIG_HAVE_AOUT is not set | 54 | CONFIG_BINFMT_MISC=y |
247 | # CONFIG_BINFMT_MISC is not set | ||
248 | CONFIG_NET=y | 55 | CONFIG_NET=y |
249 | |||
250 | # | ||
251 | # Networking options | ||
252 | # | ||
253 | CONFIG_PACKET=y | 56 | CONFIG_PACKET=y |
254 | CONFIG_UNIX=y | 57 | CONFIG_UNIX=y |
255 | CONFIG_XFRM=y | 58 | CONFIG_XFRM_USER=y |
256 | # CONFIG_XFRM_USER is not set | 59 | CONFIG_XFRM_SUB_POLICY=y |
257 | # CONFIG_XFRM_SUB_POLICY is not set | 60 | CONFIG_XFRM_STATISTICS=y |
258 | # CONFIG_XFRM_MIGRATE is not set | 61 | CONFIG_NET_KEY=m |
259 | # CONFIG_XFRM_STATISTICS is not set | 62 | CONFIG_NET_KEY_MIGRATE=y |
260 | # CONFIG_NET_KEY is not set | ||
261 | CONFIG_INET=y | 63 | CONFIG_INET=y |
262 | CONFIG_IP_MULTICAST=y | 64 | CONFIG_IP_MULTICAST=y |
263 | # CONFIG_IP_ADVANCED_ROUTER is not set | 65 | CONFIG_IP_ADVANCED_ROUTER=y |
264 | # CONFIG_IP_PNP is not set | 66 | CONFIG_IP_MULTIPLE_TABLES=y |
265 | # CONFIG_NET_IPIP is not set | 67 | CONFIG_IP_ROUTE_MULTIPATH=y |
266 | # CONFIG_NET_IPGRE_DEMUX is not set | 68 | CONFIG_IP_ROUTE_VERBOSE=y |
267 | # CONFIG_IP_MROUTE is not set | 69 | CONFIG_NET_IPIP=m |
268 | # CONFIG_ARPD is not set | 70 | CONFIG_IP_MROUTE=y |
269 | # CONFIG_SYN_COOKIES is not set | 71 | CONFIG_IP_PIMSM_V1=y |
270 | # CONFIG_INET_AH is not set | 72 | CONFIG_IP_PIMSM_V2=y |
271 | # CONFIG_INET_ESP is not set | 73 | CONFIG_SYN_COOKIES=y |
272 | # CONFIG_INET_IPCOMP is not set | 74 | CONFIG_INET_AH=m |
273 | # CONFIG_INET_XFRM_TUNNEL is not set | 75 | CONFIG_INET_ESP=m |
274 | CONFIG_INET_TUNNEL=y | 76 | CONFIG_INET_IPCOMP=m |
275 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | 77 | CONFIG_INET_XFRM_MODE_TRANSPORT=m |
276 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | 78 | CONFIG_INET_XFRM_MODE_TUNNEL=m |
277 | CONFIG_INET_XFRM_MODE_BEET=y | 79 | CONFIG_INET_XFRM_MODE_BEET=m |
278 | # CONFIG_INET_LRO is not set | 80 | CONFIG_INET_DIAG=m |
279 | # CONFIG_INET_DIAG is not set | 81 | CONFIG_TCP_CONG_ADVANCED=y |
280 | # CONFIG_TCP_CONG_ADVANCED is not set | 82 | CONFIG_TCP_CONG_HSTCP=m |
281 | CONFIG_TCP_CONG_CUBIC=y | 83 | CONFIG_TCP_CONG_HYBLA=m |
282 | CONFIG_DEFAULT_TCP_CONG="cubic" | 84 | CONFIG_TCP_CONG_SCALABLE=m |
283 | # CONFIG_TCP_MD5SIG is not set | 85 | CONFIG_TCP_CONG_LP=m |
86 | CONFIG_TCP_CONG_VENO=m | ||
87 | CONFIG_TCP_CONG_YEAH=m | ||
88 | CONFIG_TCP_CONG_ILLINOIS=m | ||
89 | CONFIG_TCP_MD5SIG=y | ||
284 | CONFIG_IPV6=y | 90 | CONFIG_IPV6=y |
285 | # CONFIG_IPV6_PRIVACY is not set | 91 | CONFIG_IPV6_PRIVACY=y |
286 | # CONFIG_IPV6_ROUTER_PREF is not set | 92 | CONFIG_IPV6_ROUTER_PREF=y |
287 | # CONFIG_IPV6_OPTIMISTIC_DAD is not set | 93 | CONFIG_IPV6_ROUTE_INFO=y |
288 | # CONFIG_INET6_AH is not set | 94 | CONFIG_IPV6_OPTIMISTIC_DAD=y |
289 | # CONFIG_INET6_ESP is not set | 95 | CONFIG_INET6_AH=m |
290 | # CONFIG_INET6_IPCOMP is not set | 96 | CONFIG_INET6_ESP=m |
291 | # CONFIG_IPV6_MIP6 is not set | 97 | CONFIG_INET6_IPCOMP=m |
292 | # CONFIG_INET6_XFRM_TUNNEL is not set | 98 | CONFIG_IPV6_MIP6=m |
293 | # CONFIG_INET6_TUNNEL is not set | 99 | CONFIG_INET6_XFRM_MODE_TRANSPORT=m |
294 | CONFIG_INET6_XFRM_MODE_TRANSPORT=y | 100 | CONFIG_INET6_XFRM_MODE_TUNNEL=m |
295 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | 101 | CONFIG_INET6_XFRM_MODE_BEET=m |
296 | CONFIG_INET6_XFRM_MODE_BEET=y | 102 | CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m |
297 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 103 | CONFIG_IPV6_SIT=m |
298 | CONFIG_IPV6_SIT=y | 104 | CONFIG_IPV6_TUNNEL=m |
299 | # CONFIG_IPV6_SIT_6RD is not set | 105 | CONFIG_IPV6_MULTIPLE_TABLES=y |
300 | CONFIG_IPV6_NDISC_NODETYPE=y | 106 | CONFIG_IPV6_MROUTE=y |
301 | # CONFIG_IPV6_TUNNEL is not set | 107 | CONFIG_IPV6_PIMSM_V2=y |
302 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 108 | CONFIG_NETLABEL=y |
303 | # CONFIG_IPV6_MROUTE is not set | 109 | CONFIG_NETFILTER=y |
304 | # CONFIG_NETWORK_SECMARK is not set | 110 | CONFIG_NF_CONNTRACK=m |
305 | # CONFIG_NETWORK_PHY_TIMESTAMPING is not set | 111 | CONFIG_NF_CONNTRACK_SECMARK=y |
306 | # CONFIG_NETFILTER is not set | 112 | CONFIG_NF_CONNTRACK_ZONES=y |
307 | # CONFIG_IP_DCCP is not set | 113 | CONFIG_NF_CONNTRACK_EVENTS=y |
308 | # CONFIG_IP_SCTP is not set | 114 | CONFIG_NF_CT_PROTO_DCCP=m |
309 | # CONFIG_RDS is not set | 115 | CONFIG_NF_CT_PROTO_UDPLITE=m |
310 | # CONFIG_TIPC is not set | 116 | CONFIG_NF_CONNTRACK_AMANDA=m |
311 | # CONFIG_ATM is not set | 117 | CONFIG_NF_CONNTRACK_FTP=m |
312 | # CONFIG_L2TP is not set | 118 | CONFIG_NF_CONNTRACK_H323=m |
313 | # CONFIG_BRIDGE is not set | 119 | CONFIG_NF_CONNTRACK_IRC=m |
314 | # CONFIG_NET_DSA is not set | 120 | CONFIG_NF_CONNTRACK_NETBIOS_NS=m |
315 | # CONFIG_VLAN_8021Q is not set | 121 | CONFIG_NF_CONNTRACK_PPTP=m |
316 | # CONFIG_DECNET is not set | 122 | CONFIG_NF_CONNTRACK_SANE=m |
317 | # CONFIG_LLC2 is not set | 123 | CONFIG_NF_CONNTRACK_SIP=m |
318 | # CONFIG_IPX is not set | 124 | CONFIG_NF_CONNTRACK_TFTP=m |
319 | # CONFIG_ATALK is not set | 125 | CONFIG_NETFILTER_TPROXY=m |
320 | # CONFIG_X25 is not set | 126 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
321 | # CONFIG_LAPB is not set | 127 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
322 | # CONFIG_ECONET is not set | 128 | CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m |
323 | # CONFIG_WAN_ROUTER is not set | 129 | CONFIG_NETFILTER_XT_TARGET_CT=m |
324 | # CONFIG_PHONET is not set | 130 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
325 | # CONFIG_IEEE802154 is not set | 131 | CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m |
326 | # CONFIG_NET_SCHED is not set | 132 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
327 | # CONFIG_DCB is not set | 133 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
328 | # CONFIG_BATMAN_ADV is not set | 134 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
329 | CONFIG_RPS=y | 135 | CONFIG_NETFILTER_XT_TARGET_NOTRACK=m |
330 | CONFIG_RFS_ACCEL=y | 136 | CONFIG_NETFILTER_XT_TARGET_TEE=m |
331 | CONFIG_XPS=y | 137 | CONFIG_NETFILTER_XT_TARGET_TPROXY=m |
332 | 138 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | |
333 | # | 139 | CONFIG_NETFILTER_XT_TARGET_SECMARK=m |
334 | # Network testing | 140 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
335 | # | 141 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
336 | # CONFIG_NET_PKTGEN is not set | 142 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m |
337 | # CONFIG_HAMRADIO is not set | 143 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
338 | # CONFIG_CAN is not set | 144 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
339 | # CONFIG_IRDA is not set | 145 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
340 | # CONFIG_BT is not set | 146 | CONFIG_NETFILTER_XT_MATCH_CONNMARK=m |
341 | # CONFIG_AF_RXRPC is not set | 147 | CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m |
148 | CONFIG_NETFILTER_XT_MATCH_DCCP=m | ||
149 | CONFIG_NETFILTER_XT_MATCH_DSCP=m | ||
150 | CONFIG_NETFILTER_XT_MATCH_ESP=m | ||
151 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | ||
152 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | ||
153 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | ||
154 | CONFIG_NETFILTER_XT_MATCH_IPVS=m | ||
155 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | ||
156 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | ||
157 | CONFIG_NETFILTER_XT_MATCH_MAC=m | ||
158 | CONFIG_NETFILTER_XT_MATCH_MARK=m | ||
159 | CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m | ||
160 | CONFIG_NETFILTER_XT_MATCH_OSF=m | ||
161 | CONFIG_NETFILTER_XT_MATCH_OWNER=m | ||
162 | CONFIG_NETFILTER_XT_MATCH_POLICY=m | ||
163 | CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m | ||
164 | CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m | ||
165 | CONFIG_NETFILTER_XT_MATCH_QUOTA=m | ||
166 | CONFIG_NETFILTER_XT_MATCH_RATEEST=m | ||
167 | CONFIG_NETFILTER_XT_MATCH_REALM=m | ||
168 | CONFIG_NETFILTER_XT_MATCH_RECENT=m | ||
169 | CONFIG_NETFILTER_XT_MATCH_SOCKET=m | ||
170 | CONFIG_NETFILTER_XT_MATCH_STATE=m | ||
171 | CONFIG_NETFILTER_XT_MATCH_STATISTIC=m | ||
172 | CONFIG_NETFILTER_XT_MATCH_STRING=m | ||
173 | CONFIG_NETFILTER_XT_MATCH_TCPMSS=m | ||
174 | CONFIG_NETFILTER_XT_MATCH_TIME=m | ||
175 | CONFIG_NETFILTER_XT_MATCH_U32=m | ||
176 | CONFIG_IP_VS=m | ||
177 | CONFIG_IP_VS_IPV6=y | ||
178 | CONFIG_IP_VS_PROTO_TCP=y | ||
179 | CONFIG_IP_VS_PROTO_UDP=y | ||
180 | CONFIG_IP_VS_PROTO_ESP=y | ||
181 | CONFIG_IP_VS_PROTO_AH=y | ||
182 | CONFIG_IP_VS_PROTO_SCTP=y | ||
183 | CONFIG_IP_VS_RR=m | ||
184 | CONFIG_IP_VS_WRR=m | ||
185 | CONFIG_IP_VS_LC=m | ||
186 | CONFIG_IP_VS_WLC=m | ||
187 | CONFIG_IP_VS_LBLC=m | ||
188 | CONFIG_IP_VS_LBLCR=m | ||
189 | CONFIG_IP_VS_SED=m | ||
190 | CONFIG_IP_VS_NQ=m | ||
191 | CONFIG_NF_CONNTRACK_IPV4=m | ||
192 | # CONFIG_NF_CONNTRACK_PROC_COMPAT is not set | ||
193 | CONFIG_IP_NF_QUEUE=m | ||
194 | CONFIG_IP_NF_IPTABLES=y | ||
195 | CONFIG_IP_NF_MATCH_AH=m | ||
196 | CONFIG_IP_NF_MATCH_ECN=m | ||
197 | CONFIG_IP_NF_MATCH_TTL=m | ||
198 | CONFIG_IP_NF_FILTER=y | ||
199 | CONFIG_IP_NF_TARGET_REJECT=y | ||
200 | CONFIG_IP_NF_TARGET_LOG=m | ||
201 | CONFIG_IP_NF_TARGET_ULOG=m | ||
202 | CONFIG_IP_NF_MANGLE=m | ||
203 | CONFIG_IP_NF_TARGET_ECN=m | ||
204 | CONFIG_IP_NF_TARGET_TTL=m | ||
205 | CONFIG_IP_NF_RAW=m | ||
206 | CONFIG_IP_NF_SECURITY=m | ||
207 | CONFIG_IP_NF_ARPTABLES=m | ||
208 | CONFIG_IP_NF_ARPFILTER=m | ||
209 | CONFIG_IP_NF_ARP_MANGLE=m | ||
210 | CONFIG_NF_CONNTRACK_IPV6=m | ||
211 | CONFIG_IP6_NF_QUEUE=m | ||
212 | CONFIG_IP6_NF_IPTABLES=m | ||
213 | CONFIG_IP6_NF_MATCH_AH=m | ||
214 | CONFIG_IP6_NF_MATCH_EUI64=m | ||
215 | CONFIG_IP6_NF_MATCH_FRAG=m | ||
216 | CONFIG_IP6_NF_MATCH_OPTS=m | ||
217 | CONFIG_IP6_NF_MATCH_HL=m | ||
218 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | ||
219 | CONFIG_IP6_NF_MATCH_MH=m | ||
220 | CONFIG_IP6_NF_MATCH_RT=m | ||
221 | CONFIG_IP6_NF_TARGET_HL=m | ||
222 | CONFIG_IP6_NF_TARGET_LOG=m | ||
223 | CONFIG_IP6_NF_FILTER=m | ||
224 | CONFIG_IP6_NF_TARGET_REJECT=m | ||
225 | CONFIG_IP6_NF_MANGLE=m | ||
226 | CONFIG_IP6_NF_RAW=m | ||
227 | CONFIG_IP6_NF_SECURITY=m | ||
228 | CONFIG_BRIDGE_NF_EBTABLES=m | ||
229 | CONFIG_BRIDGE_EBT_BROUTE=m | ||
230 | CONFIG_BRIDGE_EBT_T_FILTER=m | ||
231 | CONFIG_BRIDGE_EBT_T_NAT=m | ||
232 | CONFIG_BRIDGE_EBT_802_3=m | ||
233 | CONFIG_BRIDGE_EBT_AMONG=m | ||
234 | CONFIG_BRIDGE_EBT_ARP=m | ||
235 | CONFIG_BRIDGE_EBT_IP=m | ||
236 | CONFIG_BRIDGE_EBT_IP6=m | ||
237 | CONFIG_BRIDGE_EBT_LIMIT=m | ||
238 | CONFIG_BRIDGE_EBT_MARK=m | ||
239 | CONFIG_BRIDGE_EBT_PKTTYPE=m | ||
240 | CONFIG_BRIDGE_EBT_STP=m | ||
241 | CONFIG_BRIDGE_EBT_VLAN=m | ||
242 | CONFIG_BRIDGE_EBT_ARPREPLY=m | ||
243 | CONFIG_BRIDGE_EBT_DNAT=m | ||
244 | CONFIG_BRIDGE_EBT_MARK_T=m | ||
245 | CONFIG_BRIDGE_EBT_REDIRECT=m | ||
246 | CONFIG_BRIDGE_EBT_SNAT=m | ||
247 | CONFIG_BRIDGE_EBT_LOG=m | ||
248 | CONFIG_BRIDGE_EBT_ULOG=m | ||
249 | CONFIG_BRIDGE_EBT_NFLOG=m | ||
250 | CONFIG_RDS=m | ||
251 | CONFIG_RDS_TCP=m | ||
252 | CONFIG_BRIDGE=m | ||
253 | CONFIG_NET_DSA=y | ||
254 | CONFIG_VLAN_8021Q=m | ||
255 | CONFIG_VLAN_8021Q_GVRP=y | ||
256 | CONFIG_PHONET=m | ||
257 | CONFIG_NET_SCHED=y | ||
258 | CONFIG_NET_SCH_CBQ=m | ||
259 | CONFIG_NET_SCH_HTB=m | ||
260 | CONFIG_NET_SCH_HFSC=m | ||
261 | CONFIG_NET_SCH_PRIO=m | ||
262 | CONFIG_NET_SCH_MULTIQ=m | ||
263 | CONFIG_NET_SCH_RED=m | ||
264 | CONFIG_NET_SCH_SFQ=m | ||
265 | CONFIG_NET_SCH_TEQL=m | ||
266 | CONFIG_NET_SCH_TBF=m | ||
267 | CONFIG_NET_SCH_GRED=m | ||
268 | CONFIG_NET_SCH_DSMARK=m | ||
269 | CONFIG_NET_SCH_NETEM=m | ||
270 | CONFIG_NET_SCH_DRR=m | ||
271 | CONFIG_NET_SCH_INGRESS=m | ||
272 | CONFIG_NET_CLS_BASIC=m | ||
273 | CONFIG_NET_CLS_TCINDEX=m | ||
274 | CONFIG_NET_CLS_ROUTE4=m | ||
275 | CONFIG_NET_CLS_FW=m | ||
276 | CONFIG_NET_CLS_U32=m | ||
277 | CONFIG_CLS_U32_PERF=y | ||
278 | CONFIG_CLS_U32_MARK=y | ||
279 | CONFIG_NET_CLS_RSVP=m | ||
280 | CONFIG_NET_CLS_RSVP6=m | ||
281 | CONFIG_NET_CLS_FLOW=m | ||
282 | CONFIG_NET_CLS_CGROUP=y | ||
283 | CONFIG_NET_EMATCH=y | ||
284 | CONFIG_NET_EMATCH_CMP=m | ||
285 | CONFIG_NET_EMATCH_NBYTE=m | ||
286 | CONFIG_NET_EMATCH_U32=m | ||
287 | CONFIG_NET_EMATCH_META=m | ||
288 | CONFIG_NET_EMATCH_TEXT=m | ||
289 | CONFIG_NET_CLS_ACT=y | ||
290 | CONFIG_NET_ACT_POLICE=m | ||
291 | CONFIG_NET_ACT_GACT=m | ||
292 | CONFIG_GACT_PROB=y | ||
293 | CONFIG_NET_ACT_MIRRED=m | ||
294 | CONFIG_NET_ACT_IPT=m | ||
295 | CONFIG_NET_ACT_NAT=m | ||
296 | CONFIG_NET_ACT_PEDIT=m | ||
297 | CONFIG_NET_ACT_SIMP=m | ||
298 | CONFIG_NET_ACT_SKBEDIT=m | ||
299 | CONFIG_NET_CLS_IND=y | ||
300 | CONFIG_DCB=y | ||
342 | # CONFIG_WIRELESS is not set | 301 | # CONFIG_WIRELESS is not set |
343 | # CONFIG_WIMAX is not set | ||
344 | # CONFIG_RFKILL is not set | ||
345 | # CONFIG_NET_9P is not set | ||
346 | # CONFIG_CAIF is not set | ||
347 | # CONFIG_CEPH_LIB is not set | ||
348 | |||
349 | # | ||
350 | # Device Drivers | ||
351 | # | ||
352 | |||
353 | # | ||
354 | # Generic Driver Options | ||
355 | # | ||
356 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 302 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
357 | # CONFIG_DEVTMPFS is not set | 303 | CONFIG_DEVTMPFS=y |
358 | CONFIG_STANDALONE=y | 304 | CONFIG_DEVTMPFS_MOUNT=y |
359 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 305 | # CONFIG_FIRMWARE_IN_KERNEL is not set |
360 | CONFIG_FW_LOADER=y | 306 | CONFIG_CONNECTOR=y |
361 | CONFIG_FIRMWARE_IN_KERNEL=y | 307 | CONFIG_BLK_DEV_LOOP=y |
362 | CONFIG_EXTRA_FIRMWARE="" | 308 | CONFIG_BLK_DEV_CRYPTOLOOP=m |
363 | # CONFIG_DEBUG_DRIVER is not set | 309 | CONFIG_BLK_DEV_SX8=m |
364 | # CONFIG_DEBUG_DEVRES is not set | 310 | CONFIG_BLK_DEV_RAM=y |
365 | # CONFIG_SYS_HYPERVISOR is not set | 311 | CONFIG_BLK_DEV_RAM_SIZE=16384 |
366 | # CONFIG_CONNECTOR is not set | 312 | CONFIG_ATA_OVER_ETH=m |
367 | # CONFIG_MTD is not set | 313 | CONFIG_RAID_ATTRS=m |
368 | # CONFIG_PARPORT is not set | 314 | CONFIG_SCSI_TGT=m |
369 | CONFIG_BLK_DEV=y | ||
370 | # CONFIG_BLK_CPQ_DA is not set | ||
371 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
372 | # CONFIG_BLK_DEV_DAC960 is not set | ||
373 | # CONFIG_BLK_DEV_UMEM is not set | ||
374 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
375 | # CONFIG_BLK_DEV_LOOP is not set | ||
376 | |||
377 | # | ||
378 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
379 | # | ||
380 | # CONFIG_BLK_DEV_NBD is not set | ||
381 | # CONFIG_BLK_DEV_SX8 is not set | ||
382 | # CONFIG_BLK_DEV_RAM is not set | ||
383 | # CONFIG_CDROM_PKTCDVD is not set | ||
384 | # CONFIG_ATA_OVER_ETH is not set | ||
385 | # CONFIG_BLK_DEV_RBD is not set | ||
386 | # CONFIG_SENSORS_LIS3LV02D is not set | ||
387 | CONFIG_MISC_DEVICES=y | ||
388 | # CONFIG_PHANTOM is not set | ||
389 | # CONFIG_SGI_IOC4 is not set | ||
390 | # CONFIG_TIFM_CORE is not set | ||
391 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
392 | # CONFIG_HP_ILO is not set | ||
393 | # CONFIG_PCH_PHUB is not set | ||
394 | # CONFIG_C2PORT is not set | ||
395 | |||
396 | # | ||
397 | # EEPROM support | ||
398 | # | ||
399 | # CONFIG_EEPROM_93CX6 is not set | ||
400 | # CONFIG_CB710_CORE is not set | ||
401 | |||
402 | # | ||
403 | # Texas Instruments shared transport line discipline | ||
404 | # | ||
405 | |||
406 | # | ||
407 | # SCSI device support | ||
408 | # | ||
409 | CONFIG_SCSI_MOD=y | ||
410 | # CONFIG_RAID_ATTRS is not set | ||
411 | CONFIG_SCSI=y | ||
412 | CONFIG_SCSI_DMA=y | ||
413 | # CONFIG_SCSI_TGT is not set | ||
414 | # CONFIG_SCSI_NETLINK is not set | ||
415 | CONFIG_SCSI_PROC_FS=y | ||
416 | |||
417 | # | ||
418 | # SCSI support type (disk, tape, CD-ROM) | ||
419 | # | ||
420 | CONFIG_BLK_DEV_SD=y | 315 | CONFIG_BLK_DEV_SD=y |
421 | # CONFIG_CHR_DEV_ST is not set | ||
422 | # CONFIG_CHR_DEV_OSST is not set | ||
423 | # CONFIG_BLK_DEV_SR is not set | ||
424 | # CONFIG_CHR_DEV_SG is not set | ||
425 | # CONFIG_CHR_DEV_SCH is not set | ||
426 | # CONFIG_SCSI_MULTI_LUN is not set | ||
427 | CONFIG_SCSI_CONSTANTS=y | 316 | CONFIG_SCSI_CONSTANTS=y |
428 | CONFIG_SCSI_LOGGING=y | 317 | CONFIG_SCSI_LOGGING=y |
429 | # CONFIG_SCSI_SCAN_ASYNC is not set | 318 | CONFIG_ATA=y |
430 | CONFIG_SCSI_WAIT_SCAN=m | 319 | CONFIG_SATA_SIL24=y |
431 | 320 | # CONFIG_ATA_SFF is not set | |
432 | # | 321 | CONFIG_MD=y |
433 | # SCSI Transports | 322 | CONFIG_BLK_DEV_MD=y |
434 | # | 323 | CONFIG_MD_LINEAR=m |
435 | # CONFIG_SCSI_SPI_ATTRS is not set | 324 | CONFIG_MD_RAID0=m |
436 | # CONFIG_SCSI_FC_ATTRS is not set | 325 | CONFIG_MD_RAID1=m |
437 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 326 | CONFIG_MD_RAID10=m |
438 | # CONFIG_SCSI_SAS_ATTRS is not set | 327 | CONFIG_MD_RAID456=m |
439 | # CONFIG_SCSI_SAS_LIBSAS is not set | 328 | CONFIG_MULTICORE_RAID456=y |
440 | # CONFIG_SCSI_SRP_ATTRS is not set | 329 | CONFIG_MD_FAULTY=m |
441 | CONFIG_SCSI_LOWLEVEL=y | 330 | CONFIG_BLK_DEV_DM=m |
442 | # CONFIG_ISCSI_TCP is not set | 331 | CONFIG_DM_DEBUG=y |
443 | # CONFIG_ISCSI_BOOT_SYSFS is not set | 332 | CONFIG_DM_CRYPT=m |
444 | # CONFIG_SCSI_CXGB3_ISCSI is not set | 333 | CONFIG_DM_SNAPSHOT=m |
445 | # CONFIG_SCSI_CXGB4_ISCSI is not set | 334 | CONFIG_DM_MIRROR=m |
446 | # CONFIG_SCSI_BNX2_ISCSI is not set | 335 | CONFIG_DM_LOG_USERSPACE=m |
447 | # CONFIG_SCSI_BNX2X_FCOE is not set | 336 | CONFIG_DM_ZERO=m |
448 | # CONFIG_BE2ISCSI is not set | 337 | CONFIG_DM_MULTIPATH=m |
449 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 338 | CONFIG_DM_MULTIPATH_QL=m |
450 | # CONFIG_SCSI_HPSA is not set | 339 | CONFIG_DM_MULTIPATH_ST=m |
451 | # CONFIG_SCSI_3W_9XXX is not set | 340 | CONFIG_DM_DELAY=m |
452 | # CONFIG_SCSI_3W_SAS is not set | 341 | CONFIG_DM_UEVENT=y |
453 | # CONFIG_SCSI_ACARD is not set | 342 | CONFIG_FUSION=y |
454 | # CONFIG_SCSI_AACRAID is not set | 343 | CONFIG_FUSION_SAS=y |
455 | # CONFIG_SCSI_AIC7XXX is not set | ||
456 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
457 | # CONFIG_SCSI_AIC79XX is not set | ||
458 | # CONFIG_SCSI_AIC94XX is not set | ||
459 | # CONFIG_SCSI_MVSAS is not set | ||
460 | # CONFIG_SCSI_DPT_I2O is not set | ||
461 | # CONFIG_SCSI_ADVANSYS is not set | ||
462 | # CONFIG_SCSI_ARCMSR is not set | ||
463 | # CONFIG_MEGARAID_NEWGEN is not set | ||
464 | # CONFIG_MEGARAID_LEGACY is not set | ||
465 | # CONFIG_MEGARAID_SAS is not set | ||
466 | # CONFIG_SCSI_MPT2SAS is not set | ||
467 | # CONFIG_SCSI_HPTIOP is not set | ||
468 | # CONFIG_LIBFC is not set | ||
469 | # CONFIG_LIBFCOE is not set | ||
470 | # CONFIG_FCOE is not set | ||
471 | # CONFIG_SCSI_DMX3191D is not set | ||
472 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
473 | # CONFIG_SCSI_IPS is not set | ||
474 | # CONFIG_SCSI_INITIO is not set | ||
475 | # CONFIG_SCSI_INIA100 is not set | ||
476 | # CONFIG_SCSI_STEX is not set | ||
477 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
478 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
479 | # CONFIG_SCSI_QLA_FC is not set | ||
480 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
481 | # CONFIG_SCSI_LPFC is not set | ||
482 | # CONFIG_SCSI_DC395x is not set | ||
483 | # CONFIG_SCSI_DC390T is not set | ||
484 | # CONFIG_SCSI_NSP32 is not set | ||
485 | # CONFIG_SCSI_DEBUG is not set | ||
486 | # CONFIG_SCSI_PMCRAID is not set | ||
487 | # CONFIG_SCSI_PM8001 is not set | ||
488 | # CONFIG_SCSI_SRP is not set | ||
489 | # CONFIG_SCSI_BFA_FC is not set | ||
490 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | ||
491 | # CONFIG_SCSI_DH is not set | ||
492 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
493 | # CONFIG_ATA is not set | ||
494 | # CONFIG_MD is not set | ||
495 | # CONFIG_TARGET_CORE is not set | ||
496 | # CONFIG_FUSION is not set | ||
497 | |||
498 | # | ||
499 | # IEEE 1394 (FireWire) support | ||
500 | # | ||
501 | # CONFIG_FIREWIRE is not set | ||
502 | # CONFIG_FIREWIRE_NOSY is not set | ||
503 | # CONFIG_I2O is not set | ||
504 | CONFIG_NETDEVICES=y | 344 | CONFIG_NETDEVICES=y |
505 | # CONFIG_DUMMY is not set | 345 | CONFIG_BONDING=m |
506 | # CONFIG_BONDING is not set | 346 | CONFIG_DUMMY=m |
507 | # CONFIG_MACVLAN is not set | 347 | CONFIG_IFB=m |
508 | # CONFIG_EQUALIZER is not set | 348 | CONFIG_MACVLAN=m |
349 | CONFIG_MACVTAP=m | ||
350 | CONFIG_NETCONSOLE=m | ||
351 | CONFIG_NETCONSOLE_DYNAMIC=y | ||
352 | CONFIG_NETPOLL_TRAP=y | ||
509 | CONFIG_TUN=y | 353 | CONFIG_TUN=y |
510 | # CONFIG_VETH is not set | 354 | CONFIG_VETH=m |
511 | # CONFIG_ARCNET is not set | 355 | CONFIG_NET_DSA_MV88E6060=y |
512 | # CONFIG_MII is not set | 356 | CONFIG_NET_DSA_MV88E6131=y |
513 | # CONFIG_PHYLIB is not set | 357 | CONFIG_NET_DSA_MV88E6123_61_65=y |
514 | # CONFIG_NET_ETHERNET is not set | 358 | # CONFIG_NET_VENDOR_3COM is not set |
515 | CONFIG_NETDEV_1000=y | 359 | # CONFIG_NET_VENDOR_ADAPTEC is not set |
516 | # CONFIG_ACENIC is not set | 360 | # CONFIG_NET_VENDOR_ALTEON is not set |
517 | # CONFIG_DL2K is not set | 361 | # CONFIG_NET_VENDOR_AMD is not set |
518 | # CONFIG_E1000 is not set | 362 | # CONFIG_NET_VENDOR_ATHEROS is not set |
519 | # CONFIG_E1000E is not set | 363 | # CONFIG_NET_VENDOR_BROADCOM is not set |
520 | # CONFIG_IP1000 is not set | 364 | # CONFIG_NET_VENDOR_BROCADE is not set |
521 | # CONFIG_IGB is not set | 365 | # CONFIG_NET_VENDOR_CHELSIO is not set |
522 | # CONFIG_IGBVF is not set | 366 | # CONFIG_NET_VENDOR_CISCO is not set |
523 | # CONFIG_NS83820 is not set | 367 | # CONFIG_NET_VENDOR_DEC is not set |
524 | # CONFIG_HAMACHI is not set | 368 | # CONFIG_NET_VENDOR_DLINK is not set |
525 | # CONFIG_YELLOWFIN is not set | 369 | # CONFIG_NET_VENDOR_EMULEX is not set |
526 | # CONFIG_R8169 is not set | 370 | # CONFIG_NET_VENDOR_EXAR is not set |
527 | # CONFIG_SIS190 is not set | 371 | # CONFIG_NET_VENDOR_HP is not set |
528 | # CONFIG_SKGE is not set | 372 | # CONFIG_NET_VENDOR_INTEL is not set |
529 | # CONFIG_SKY2 is not set | 373 | # CONFIG_NET_VENDOR_MARVELL is not set |
530 | # CONFIG_VIA_VELOCITY is not set | 374 | # CONFIG_NET_VENDOR_MELLANOX is not set |
531 | # CONFIG_TIGON3 is not set | 375 | # CONFIG_NET_VENDOR_MICREL is not set |
532 | # CONFIG_BNX2 is not set | 376 | # CONFIG_NET_VENDOR_MYRI is not set |
533 | # CONFIG_CNIC is not set | 377 | # CONFIG_NET_VENDOR_NATSEMI is not set |
534 | # CONFIG_QLA3XXX is not set | 378 | # CONFIG_NET_VENDOR_NVIDIA is not set |
535 | # CONFIG_ATL1 is not set | 379 | # CONFIG_NET_VENDOR_OKI is not set |
536 | # CONFIG_ATL1E is not set | 380 | # CONFIG_NET_PACKET_ENGINE is not set |
537 | # CONFIG_ATL1C is not set | 381 | # CONFIG_NET_VENDOR_QLOGIC is not set |
538 | # CONFIG_JME is not set | 382 | # CONFIG_NET_VENDOR_REALTEK is not set |
539 | # CONFIG_STMMAC_ETH is not set | 383 | # CONFIG_NET_VENDOR_RDC is not set |
540 | # CONFIG_PCH_GBE is not set | 384 | # CONFIG_NET_VENDOR_SEEQ is not set |
541 | # CONFIG_NETDEV_10000 is not set | 385 | # CONFIG_NET_VENDOR_SILAN is not set |
542 | # CONFIG_TR is not set | 386 | # CONFIG_NET_VENDOR_SIS is not set |
387 | # CONFIG_NET_VENDOR_SMSC is not set | ||
388 | # CONFIG_NET_VENDOR_STMICRO is not set | ||
389 | # CONFIG_NET_VENDOR_SUN is not set | ||
390 | # CONFIG_NET_VENDOR_TEHUTI is not set | ||
391 | # CONFIG_NET_VENDOR_TI is not set | ||
392 | # CONFIG_NET_VENDOR_VIA is not set | ||
543 | # CONFIG_WLAN is not set | 393 | # CONFIG_WLAN is not set |
544 | |||
545 | # | ||
546 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
547 | # | ||
548 | # CONFIG_WAN is not set | ||
549 | |||
550 | # | ||
551 | # CAIF transport drivers | ||
552 | # | ||
553 | CONFIG_TILE_NET=y | ||
554 | # CONFIG_FDDI is not set | ||
555 | # CONFIG_HIPPI is not set | ||
556 | # CONFIG_PPP is not set | ||
557 | # CONFIG_SLIP is not set | ||
558 | # CONFIG_NET_FC is not set | ||
559 | # CONFIG_NETCONSOLE is not set | ||
560 | # CONFIG_NETPOLL is not set | ||
561 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
562 | # CONFIG_VMXNET3 is not set | ||
563 | # CONFIG_ISDN is not set | ||
564 | # CONFIG_PHONE is not set | ||
565 | |||
566 | # | ||
567 | # Input device support | ||
568 | # | ||
569 | CONFIG_INPUT=y | ||
570 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
571 | # CONFIG_INPUT_POLLDEV is not set | ||
572 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
573 | |||
574 | # | ||
575 | # Userland interfaces | ||
576 | # | ||
577 | # CONFIG_INPUT_MOUSEDEV is not set | 394 | # CONFIG_INPUT_MOUSEDEV is not set |
578 | # CONFIG_INPUT_JOYDEV is not set | ||
579 | # CONFIG_INPUT_EVDEV is not set | ||
580 | # CONFIG_INPUT_EVBUG is not set | ||
581 | |||
582 | # | ||
583 | # Input Device Drivers | ||
584 | # | ||
585 | # CONFIG_INPUT_KEYBOARD is not set | 395 | # CONFIG_INPUT_KEYBOARD is not set |
586 | # CONFIG_INPUT_MOUSE is not set | 396 | # CONFIG_INPUT_MOUSE is not set |
587 | # CONFIG_INPUT_JOYSTICK is not set | ||
588 | # CONFIG_INPUT_TABLET is not set | ||
589 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
590 | # CONFIG_INPUT_MISC is not set | ||
591 | |||
592 | # | ||
593 | # Hardware I/O ports | ||
594 | # | ||
595 | # CONFIG_SERIO is not set | 397 | # CONFIG_SERIO is not set |
596 | # CONFIG_GAMEPORT is not set | ||
597 | |||
598 | # | ||
599 | # Character devices | ||
600 | # | ||
601 | # CONFIG_VT is not set | 398 | # CONFIG_VT is not set |
602 | CONFIG_UNIX98_PTYS=y | ||
603 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
604 | # CONFIG_LEGACY_PTYS is not set | 399 | # CONFIG_LEGACY_PTYS is not set |
605 | # CONFIG_SERIAL_NONSTANDARD is not set | 400 | CONFIG_HW_RANDOM=y |
606 | # CONFIG_NOZOMI is not set | 401 | CONFIG_HW_RANDOM_TIMERIOMEM=m |
607 | # CONFIG_N_GSM is not set | 402 | CONFIG_I2C=y |
608 | CONFIG_DEVKMEM=y | 403 | CONFIG_I2C_CHARDEV=y |
609 | 404 | # CONFIG_HWMON is not set | |
610 | # | ||
611 | # Serial drivers | ||
612 | # | ||
613 | # CONFIG_SERIAL_8250 is not set | ||
614 | |||
615 | # | ||
616 | # Non-8250 serial port support | ||
617 | # | ||
618 | # CONFIG_SERIAL_MFD_HSU is not set | ||
619 | # CONFIG_SERIAL_JSM is not set | ||
620 | # CONFIG_SERIAL_TIMBERDALE is not set | ||
621 | # CONFIG_SERIAL_ALTERA_JTAGUART is not set | ||
622 | # CONFIG_SERIAL_ALTERA_UART is not set | ||
623 | # CONFIG_SERIAL_PCH_UART is not set | ||
624 | # CONFIG_TTY_PRINTK is not set | ||
625 | CONFIG_HVC_DRIVER=y | ||
626 | # CONFIG_IPMI_HANDLER is not set | ||
627 | # CONFIG_HW_RANDOM is not set | ||
628 | # CONFIG_R3964 is not set | ||
629 | # CONFIG_APPLICOM is not set | ||
630 | |||
631 | # | ||
632 | # PCMCIA character devices | ||
633 | # | ||
634 | # CONFIG_RAW_DRIVER is not set | ||
635 | # CONFIG_TCG_TPM is not set | ||
636 | CONFIG_DEVPORT=y | ||
637 | # CONFIG_RAMOOPS is not set | ||
638 | # CONFIG_I2C is not set | ||
639 | # CONFIG_SPI is not set | ||
640 | |||
641 | # | ||
642 | # PPS support | ||
643 | # | ||
644 | # CONFIG_PPS is not set | ||
645 | |||
646 | # | ||
647 | # PPS generators support | ||
648 | # | ||
649 | # CONFIG_W1 is not set | ||
650 | # CONFIG_POWER_SUPPLY is not set | ||
651 | CONFIG_HWMON=y | ||
652 | # CONFIG_HWMON_VID is not set | ||
653 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
654 | |||
655 | # | ||
656 | # Native drivers | ||
657 | # | ||
658 | # CONFIG_SENSORS_I5K_AMB is not set | ||
659 | # CONFIG_SENSORS_F71805F is not set | ||
660 | # CONFIG_SENSORS_F71882FG is not set | ||
661 | # CONFIG_SENSORS_IT87 is not set | ||
662 | # CONFIG_SENSORS_PC87360 is not set | ||
663 | # CONFIG_SENSORS_PC87427 is not set | ||
664 | # CONFIG_SENSORS_SIS5595 is not set | ||
665 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
666 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
667 | # CONFIG_SENSORS_SCH5627 is not set | ||
668 | # CONFIG_SENSORS_VIA686A is not set | ||
669 | # CONFIG_SENSORS_VT1211 is not set | ||
670 | # CONFIG_SENSORS_VT8231 is not set | ||
671 | # CONFIG_SENSORS_W83627HF is not set | ||
672 | # CONFIG_SENSORS_W83627EHF is not set | ||
673 | # CONFIG_THERMAL is not set | ||
674 | CONFIG_WATCHDOG=y | 405 | CONFIG_WATCHDOG=y |
675 | CONFIG_WATCHDOG_NOWAYOUT=y | 406 | CONFIG_WATCHDOG_NOWAYOUT=y |
676 | 407 | # CONFIG_VGA_ARB is not set | |
677 | # | ||
678 | # Watchdog Device Drivers | ||
679 | # | ||
680 | # CONFIG_SOFT_WATCHDOG is not set | ||
681 | # CONFIG_ALIM7101_WDT is not set | ||
682 | |||
683 | # | ||
684 | # PCI-based Watchdog Cards | ||
685 | # | ||
686 | # CONFIG_PCIPCWATCHDOG is not set | ||
687 | # CONFIG_WDTPCI is not set | ||
688 | CONFIG_SSB_POSSIBLE=y | ||
689 | |||
690 | # | ||
691 | # Sonics Silicon Backplane | ||
692 | # | ||
693 | # CONFIG_SSB is not set | ||
694 | CONFIG_MFD_SUPPORT=y | ||
695 | # CONFIG_MFD_CORE is not set | ||
696 | # CONFIG_MFD_SM501 is not set | ||
697 | # CONFIG_HTC_PASIC3 is not set | ||
698 | # CONFIG_MFD_TMIO is not set | ||
699 | # CONFIG_ABX500_CORE is not set | ||
700 | # CONFIG_LPC_SCH is not set | ||
701 | # CONFIG_MFD_RDC321X is not set | ||
702 | # CONFIG_MFD_JANZ_CMODIO is not set | ||
703 | # CONFIG_MFD_VX855 is not set | ||
704 | # CONFIG_REGULATOR is not set | ||
705 | # CONFIG_MEDIA_SUPPORT is not set | ||
706 | |||
707 | # | ||
708 | # Graphics support | ||
709 | # | ||
710 | CONFIG_VGA_ARB=y | ||
711 | CONFIG_VGA_ARB_MAX_GPUS=16 | ||
712 | # CONFIG_DRM is not set | ||
713 | # CONFIG_STUB_POULSBO is not set | ||
714 | # CONFIG_VGASTATE is not set | ||
715 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
716 | # CONFIG_FB is not set | ||
717 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
718 | |||
719 | # | ||
720 | # Display device support | ||
721 | # | ||
722 | # CONFIG_DISPLAY_SUPPORT is not set | ||
723 | # CONFIG_SOUND is not set | ||
724 | # CONFIG_HID_SUPPORT is not set | 408 | # CONFIG_HID_SUPPORT is not set |
725 | CONFIG_USB_SUPPORT=y | 409 | # CONFIG_USB_SUPPORT is not set |
726 | CONFIG_USB_ARCH_HAS_HCD=y | ||
727 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
728 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
729 | # CONFIG_USB is not set | ||
730 | # CONFIG_USB_OTG_WHITELIST is not set | ||
731 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
732 | |||
733 | # | ||
734 | # Enable Host or Gadget support to see Inventra options | ||
735 | # | ||
736 | |||
737 | # | ||
738 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may | ||
739 | # | ||
740 | # CONFIG_USB_GADGET is not set | ||
741 | |||
742 | # | ||
743 | # OTG and related infrastructure | ||
744 | # | ||
745 | # CONFIG_UWB is not set | ||
746 | # CONFIG_MMC is not set | ||
747 | # CONFIG_MEMSTICK is not set | ||
748 | # CONFIG_NEW_LEDS is not set | ||
749 | # CONFIG_NFC_DEVICES is not set | ||
750 | # CONFIG_ACCESSIBILITY is not set | ||
751 | # CONFIG_INFINIBAND is not set | ||
752 | CONFIG_EDAC=y | 410 | CONFIG_EDAC=y |
753 | |||
754 | # | ||
755 | # Reporting subsystems | ||
756 | # | ||
757 | # CONFIG_EDAC_DEBUG is not set | ||
758 | CONFIG_EDAC_MM_EDAC=y | 411 | CONFIG_EDAC_MM_EDAC=y |
759 | CONFIG_EDAC_TILE=y | ||
760 | CONFIG_RTC_LIB=y | ||
761 | CONFIG_RTC_CLASS=y | 412 | CONFIG_RTC_CLASS=y |
762 | CONFIG_RTC_HCTOSYS=y | ||
763 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
764 | # CONFIG_RTC_DEBUG is not set | ||
765 | |||
766 | # | ||
767 | # RTC interfaces | ||
768 | # | ||
769 | # CONFIG_RTC_INTF_SYSFS is not set | ||
770 | # CONFIG_RTC_INTF_PROC is not set | ||
771 | CONFIG_RTC_INTF_DEV=y | ||
772 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
773 | # CONFIG_RTC_DRV_TEST is not set | ||
774 | |||
775 | # | ||
776 | # SPI RTC drivers | ||
777 | # | ||
778 | |||
779 | # | ||
780 | # Platform RTC drivers | ||
781 | # | ||
782 | # CONFIG_RTC_DRV_DS1286 is not set | ||
783 | # CONFIG_RTC_DRV_DS1511 is not set | ||
784 | # CONFIG_RTC_DRV_DS1553 is not set | ||
785 | # CONFIG_RTC_DRV_DS1742 is not set | ||
786 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
787 | # CONFIG_RTC_DRV_M48T86 is not set | ||
788 | # CONFIG_RTC_DRV_M48T35 is not set | ||
789 | # CONFIG_RTC_DRV_M48T59 is not set | ||
790 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
791 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
792 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
793 | # CONFIG_RTC_DRV_V3020 is not set | ||
794 | |||
795 | # | ||
796 | # on-CPU RTC drivers | ||
797 | # | ||
798 | CONFIG_RTC_DRV_TILE=y | 413 | CONFIG_RTC_DRV_TILE=y |
799 | # CONFIG_DMADEVICES is not set | ||
800 | # CONFIG_AUXDISPLAY is not set | ||
801 | # CONFIG_UIO is not set | ||
802 | # CONFIG_STAGING is not set | ||
803 | |||
804 | # | ||
805 | # File systems | ||
806 | # | ||
807 | CONFIG_EXT2_FS=y | 414 | CONFIG_EXT2_FS=y |
808 | # CONFIG_EXT2_FS_XATTR is not set | 415 | CONFIG_EXT2_FS_XATTR=y |
809 | # CONFIG_EXT2_FS_XIP is not set | 416 | CONFIG_EXT2_FS_POSIX_ACL=y |
417 | CONFIG_EXT2_FS_SECURITY=y | ||
418 | CONFIG_EXT2_FS_XIP=y | ||
810 | CONFIG_EXT3_FS=y | 419 | CONFIG_EXT3_FS=y |
811 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | 420 | CONFIG_EXT3_FS_POSIX_ACL=y |
812 | CONFIG_EXT3_FS_XATTR=y | 421 | CONFIG_EXT3_FS_SECURITY=y |
813 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 422 | CONFIG_EXT4_FS=y |
814 | # CONFIG_EXT3_FS_SECURITY is not set | 423 | CONFIG_EXT4_FS_POSIX_ACL=y |
815 | # CONFIG_EXT4_FS is not set | 424 | CONFIG_EXT4_FS_SECURITY=y |
816 | CONFIG_JBD=y | 425 | CONFIG_XFS_FS=y |
817 | CONFIG_FS_MBCACHE=y | 426 | CONFIG_XFS_QUOTA=y |
818 | # CONFIG_REISERFS_FS is not set | 427 | CONFIG_XFS_POSIX_ACL=y |
819 | # CONFIG_JFS_FS is not set | 428 | CONFIG_GFS2_FS=m |
820 | # CONFIG_XFS_FS is not set | 429 | CONFIG_GFS2_FS_LOCKING_DLM=y |
821 | # CONFIG_GFS2_FS is not set | 430 | CONFIG_BTRFS_FS=m |
822 | # CONFIG_BTRFS_FS is not set | 431 | CONFIG_BTRFS_FS_POSIX_ACL=y |
823 | # CONFIG_NILFS2_FS is not set | 432 | CONFIG_QUOTA=y |
824 | # CONFIG_FS_POSIX_ACL is not set | 433 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
825 | CONFIG_EXPORTFS=y | 434 | # CONFIG_PRINT_QUOTA_WARNING is not set |
826 | CONFIG_FILE_LOCKING=y | 435 | CONFIG_QFMT_V2=y |
827 | CONFIG_FSNOTIFY=y | 436 | CONFIG_AUTOFS4_FS=m |
828 | CONFIG_DNOTIFY=y | ||
829 | CONFIG_INOTIFY_USER=y | ||
830 | # CONFIG_FANOTIFY is not set | ||
831 | # CONFIG_QUOTA is not set | ||
832 | # CONFIG_QUOTACTL is not set | ||
833 | # CONFIG_AUTOFS4_FS is not set | ||
834 | CONFIG_FUSE_FS=y | 437 | CONFIG_FUSE_FS=y |
835 | # CONFIG_CUSE is not set | 438 | CONFIG_CUSE=m |
836 | 439 | CONFIG_FSCACHE=m | |
837 | # | 440 | CONFIG_FSCACHE_STATS=y |
838 | # Caches | 441 | CONFIG_CACHEFILES=m |
839 | # | 442 | CONFIG_ISO9660_FS=m |
840 | # CONFIG_FSCACHE is not set | 443 | CONFIG_JOLIET=y |
841 | 444 | CONFIG_ZISOFS=y | |
842 | # | 445 | CONFIG_UDF_FS=m |
843 | # CD-ROM/DVD Filesystems | 446 | CONFIG_MSDOS_FS=m |
844 | # | ||
845 | # CONFIG_ISO9660_FS is not set | ||
846 | # CONFIG_UDF_FS is not set | ||
847 | |||
848 | # | ||
849 | # DOS/FAT/NT Filesystems | ||
850 | # | ||
851 | CONFIG_FAT_FS=y | ||
852 | CONFIG_MSDOS_FS=y | ||
853 | CONFIG_VFAT_FS=m | 447 | CONFIG_VFAT_FS=m |
854 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | 448 | CONFIG_FAT_DEFAULT_IOCHARSET="ascii" |
855 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | 449 | CONFIG_PROC_KCORE=y |
856 | # CONFIG_NTFS_FS is not set | ||
857 | |||
858 | # | ||
859 | # Pseudo filesystems | ||
860 | # | ||
861 | CONFIG_PROC_FS=y | ||
862 | # CONFIG_PROC_KCORE is not set | ||
863 | CONFIG_PROC_SYSCTL=y | ||
864 | CONFIG_PROC_PAGE_MONITOR=y | ||
865 | CONFIG_SYSFS=y | ||
866 | CONFIG_TMPFS=y | 450 | CONFIG_TMPFS=y |
867 | # CONFIG_TMPFS_POSIX_ACL is not set | 451 | CONFIG_TMPFS_POSIX_ACL=y |
868 | CONFIG_HUGETLBFS=y | 452 | CONFIG_HUGETLBFS=y |
869 | CONFIG_HUGETLB_PAGE=y | 453 | CONFIG_ECRYPT_FS=m |
870 | # CONFIG_CONFIGFS_FS is not set | 454 | CONFIG_CRAMFS=m |
871 | CONFIG_MISC_FILESYSTEMS=y | 455 | CONFIG_SQUASHFS=m |
872 | # CONFIG_ADFS_FS is not set | ||
873 | # CONFIG_AFFS_FS is not set | ||
874 | # CONFIG_HFS_FS is not set | ||
875 | # CONFIG_HFSPLUS_FS is not set | ||
876 | # CONFIG_BEFS_FS is not set | ||
877 | # CONFIG_BFS_FS is not set | ||
878 | # CONFIG_EFS_FS is not set | ||
879 | # CONFIG_LOGFS is not set | ||
880 | # CONFIG_CRAMFS is not set | ||
881 | # CONFIG_SQUASHFS is not set | ||
882 | # CONFIG_VXFS_FS is not set | ||
883 | # CONFIG_MINIX_FS is not set | ||
884 | # CONFIG_OMFS_FS is not set | ||
885 | # CONFIG_HPFS_FS is not set | ||
886 | # CONFIG_QNX4FS_FS is not set | ||
887 | # CONFIG_ROMFS_FS is not set | ||
888 | # CONFIG_PSTORE is not set | ||
889 | # CONFIG_SYSV_FS is not set | ||
890 | # CONFIG_UFS_FS is not set | ||
891 | CONFIG_NETWORK_FILESYSTEMS=y | ||
892 | CONFIG_NFS_FS=m | 456 | CONFIG_NFS_FS=m |
893 | CONFIG_NFS_V3=y | 457 | CONFIG_NFS_V3=y |
894 | # CONFIG_NFS_V3_ACL is not set | 458 | CONFIG_NFS_V3_ACL=y |
895 | # CONFIG_NFS_V4 is not set | 459 | CONFIG_NFS_V4=y |
896 | # CONFIG_NFSD is not set | 460 | CONFIG_NFS_V4_1=y |
897 | CONFIG_LOCKD=m | 461 | CONFIG_NFS_FSCACHE=y |
898 | CONFIG_LOCKD_V4=y | 462 | CONFIG_NFSD=m |
899 | CONFIG_NFS_COMMON=y | 463 | CONFIG_NFSD_V3_ACL=y |
900 | CONFIG_SUNRPC=m | 464 | CONFIG_NFSD_V4=y |
901 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 465 | CONFIG_CIFS=m |
902 | # CONFIG_CEPH_FS is not set | 466 | CONFIG_CIFS_STATS=y |
903 | # CONFIG_CIFS is not set | 467 | CONFIG_CIFS_WEAK_PW_HASH=y |
904 | # CONFIG_NCP_FS is not set | 468 | CONFIG_CIFS_UPCALL=y |
905 | # CONFIG_CODA_FS is not set | 469 | CONFIG_CIFS_XATTR=y |
906 | # CONFIG_AFS_FS is not set | 470 | CONFIG_CIFS_POSIX=y |
907 | 471 | CONFIG_CIFS_DFS_UPCALL=y | |
908 | # | 472 | CONFIG_CIFS_FSCACHE=y |
909 | # Partition Types | ||
910 | # | ||
911 | # CONFIG_PARTITION_ADVANCED is not set | ||
912 | CONFIG_MSDOS_PARTITION=y | ||
913 | CONFIG_NLS=y | 473 | CONFIG_NLS=y |
914 | CONFIG_NLS_DEFAULT="iso8859-1" | 474 | CONFIG_NLS_DEFAULT="utf8" |
915 | CONFIG_NLS_CODEPAGE_437=y | 475 | CONFIG_NLS_CODEPAGE_437=y |
916 | # CONFIG_NLS_CODEPAGE_737 is not set | 476 | CONFIG_NLS_CODEPAGE_737=m |
917 | # CONFIG_NLS_CODEPAGE_775 is not set | 477 | CONFIG_NLS_CODEPAGE_775=m |
918 | # CONFIG_NLS_CODEPAGE_850 is not set | 478 | CONFIG_NLS_CODEPAGE_850=m |
919 | # CONFIG_NLS_CODEPAGE_852 is not set | 479 | CONFIG_NLS_CODEPAGE_852=m |
920 | # CONFIG_NLS_CODEPAGE_855 is not set | 480 | CONFIG_NLS_CODEPAGE_855=m |
921 | # CONFIG_NLS_CODEPAGE_857 is not set | 481 | CONFIG_NLS_CODEPAGE_857=m |
922 | # CONFIG_NLS_CODEPAGE_860 is not set | 482 | CONFIG_NLS_CODEPAGE_860=m |
923 | # CONFIG_NLS_CODEPAGE_861 is not set | 483 | CONFIG_NLS_CODEPAGE_861=m |
924 | # CONFIG_NLS_CODEPAGE_862 is not set | 484 | CONFIG_NLS_CODEPAGE_862=m |
925 | # CONFIG_NLS_CODEPAGE_863 is not set | 485 | CONFIG_NLS_CODEPAGE_863=m |
926 | # CONFIG_NLS_CODEPAGE_864 is not set | 486 | CONFIG_NLS_CODEPAGE_864=m |
927 | # CONFIG_NLS_CODEPAGE_865 is not set | 487 | CONFIG_NLS_CODEPAGE_865=m |
928 | # CONFIG_NLS_CODEPAGE_866 is not set | 488 | CONFIG_NLS_CODEPAGE_866=m |
929 | # CONFIG_NLS_CODEPAGE_869 is not set | 489 | CONFIG_NLS_CODEPAGE_869=m |
930 | # CONFIG_NLS_CODEPAGE_936 is not set | 490 | CONFIG_NLS_CODEPAGE_936=m |
931 | # CONFIG_NLS_CODEPAGE_950 is not set | 491 | CONFIG_NLS_CODEPAGE_950=m |
932 | # CONFIG_NLS_CODEPAGE_932 is not set | 492 | CONFIG_NLS_CODEPAGE_932=m |
933 | # CONFIG_NLS_CODEPAGE_949 is not set | 493 | CONFIG_NLS_CODEPAGE_949=m |
934 | # CONFIG_NLS_CODEPAGE_874 is not set | 494 | CONFIG_NLS_CODEPAGE_874=m |
935 | # CONFIG_NLS_ISO8859_8 is not set | 495 | CONFIG_NLS_ISO8859_8=m |
936 | # CONFIG_NLS_CODEPAGE_1250 is not set | 496 | CONFIG_NLS_CODEPAGE_1250=m |
937 | # CONFIG_NLS_CODEPAGE_1251 is not set | 497 | CONFIG_NLS_CODEPAGE_1251=m |
938 | # CONFIG_NLS_ASCII is not set | 498 | CONFIG_NLS_ASCII=y |
939 | CONFIG_NLS_ISO8859_1=y | 499 | CONFIG_NLS_ISO8859_1=m |
940 | # CONFIG_NLS_ISO8859_2 is not set | 500 | CONFIG_NLS_ISO8859_2=m |
941 | # CONFIG_NLS_ISO8859_3 is not set | 501 | CONFIG_NLS_ISO8859_3=m |
942 | # CONFIG_NLS_ISO8859_4 is not set | 502 | CONFIG_NLS_ISO8859_4=m |
943 | # CONFIG_NLS_ISO8859_5 is not set | 503 | CONFIG_NLS_ISO8859_5=m |
944 | # CONFIG_NLS_ISO8859_6 is not set | 504 | CONFIG_NLS_ISO8859_6=m |
945 | # CONFIG_NLS_ISO8859_7 is not set | 505 | CONFIG_NLS_ISO8859_7=m |
946 | # CONFIG_NLS_ISO8859_9 is not set | 506 | CONFIG_NLS_ISO8859_9=m |
947 | # CONFIG_NLS_ISO8859_13 is not set | 507 | CONFIG_NLS_ISO8859_13=m |
948 | # CONFIG_NLS_ISO8859_14 is not set | 508 | CONFIG_NLS_ISO8859_14=m |
949 | # CONFIG_NLS_ISO8859_15 is not set | 509 | CONFIG_NLS_ISO8859_15=m |
950 | # CONFIG_NLS_KOI8_R is not set | 510 | CONFIG_NLS_KOI8_R=m |
951 | # CONFIG_NLS_KOI8_U is not set | 511 | CONFIG_NLS_KOI8_U=m |
952 | # CONFIG_NLS_UTF8 is not set | 512 | CONFIG_NLS_UTF8=m |
953 | 513 | CONFIG_DLM_DEBUG=y | |
954 | # | 514 | # CONFIG_ENABLE_WARN_DEPRECATED is not set |
955 | # Kernel hacking | ||
956 | # | ||
957 | # CONFIG_PRINTK_TIME is not set | ||
958 | CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 | ||
959 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
960 | CONFIG_ENABLE_MUST_CHECK=y | ||
961 | CONFIG_FRAME_WARN=2048 | 515 | CONFIG_FRAME_WARN=2048 |
962 | CONFIG_MAGIC_SYSRQ=y | 516 | CONFIG_MAGIC_SYSRQ=y |
963 | # CONFIG_STRIP_ASM_SYMS is not set | 517 | CONFIG_STRIP_ASM_SYMS=y |
964 | # CONFIG_UNUSED_SYMBOLS is not set | 518 | CONFIG_DEBUG_FS=y |
965 | # CONFIG_DEBUG_FS is not set | 519 | CONFIG_HEADERS_CHECK=y |
966 | # CONFIG_HEADERS_CHECK is not set | 520 | CONFIG_LOCKUP_DETECTOR=y |
967 | # CONFIG_DEBUG_SECTION_MISMATCH is not set | 521 | CONFIG_SCHEDSTATS=y |
968 | CONFIG_DEBUG_KERNEL=y | 522 | CONFIG_TIMER_STATS=y |
969 | # CONFIG_DEBUG_SHIRQ is not set | ||
970 | # CONFIG_LOCKUP_DETECTOR is not set | ||
971 | # CONFIG_HARDLOCKUP_DETECTOR is not set | ||
972 | CONFIG_DETECT_HUNG_TASK=y | ||
973 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
974 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
975 | CONFIG_SCHED_DEBUG=y | ||
976 | # CONFIG_SCHEDSTATS is not set | ||
977 | # CONFIG_TIMER_STATS is not set | ||
978 | # CONFIG_DEBUG_OBJECTS is not set | ||
979 | # CONFIG_SLUB_DEBUG_ON is not set | ||
980 | # CONFIG_SLUB_STATS is not set | ||
981 | # CONFIG_DEBUG_KMEMLEAK is not set | ||
982 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
983 | # CONFIG_RT_MUTEX_TESTER is not set | ||
984 | # CONFIG_DEBUG_SPINLOCK is not set | ||
985 | # CONFIG_DEBUG_MUTEXES is not set | ||
986 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
987 | # CONFIG_PROVE_LOCKING is not set | ||
988 | # CONFIG_SPARSE_RCU_POINTER is not set | ||
989 | # CONFIG_LOCK_STAT is not set | ||
990 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | ||
991 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
992 | CONFIG_STACKTRACE=y | ||
993 | # CONFIG_DEBUG_KOBJECT is not set | ||
994 | # CONFIG_DEBUG_HIGHMEM is not set | ||
995 | CONFIG_DEBUG_INFO=y | 523 | CONFIG_DEBUG_INFO=y |
996 | # CONFIG_DEBUG_INFO_REDUCED is not set | 524 | CONFIG_DEBUG_INFO_REDUCED=y |
997 | CONFIG_DEBUG_VM=y | 525 | CONFIG_DEBUG_VM=y |
998 | # CONFIG_DEBUG_WRITECOUNT is not set | 526 | CONFIG_DEBUG_MEMORY_INIT=y |
999 | # CONFIG_DEBUG_MEMORY_INIT is not set | 527 | CONFIG_DEBUG_LIST=y |
1000 | # CONFIG_DEBUG_LIST is not set | 528 | CONFIG_DEBUG_CREDENTIALS=y |
1001 | # CONFIG_TEST_LIST_SORT is not set | 529 | CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y |
1002 | # CONFIG_DEBUG_SG is not set | 530 | CONFIG_DYNAMIC_DEBUG=y |
1003 | # CONFIG_DEBUG_NOTIFIERS is not set | 531 | CONFIG_ASYNC_RAID6_TEST=m |
1004 | # CONFIG_DEBUG_CREDENTIALS is not set | ||
1005 | # CONFIG_RCU_TORTURE_TEST is not set | ||
1006 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
1007 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1008 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | ||
1009 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set | ||
1010 | # CONFIG_FAULT_INJECTION is not set | ||
1011 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1012 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1013 | CONFIG_TRACING_SUPPORT=y | ||
1014 | CONFIG_FTRACE=y | ||
1015 | # CONFIG_IRQSOFF_TRACER is not set | ||
1016 | # CONFIG_SCHED_TRACER is not set | ||
1017 | # CONFIG_ENABLE_DEFAULT_TRACERS is not set | ||
1018 | CONFIG_BRANCH_PROFILE_NONE=y | ||
1019 | # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set | ||
1020 | # CONFIG_PROFILE_ALL_BRANCHES is not set | ||
1021 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1022 | # CONFIG_ATOMIC64_SELFTEST is not set | ||
1023 | # CONFIG_SAMPLES is not set | ||
1024 | # CONFIG_TEST_KSTRTOX is not set | ||
1025 | CONFIG_EARLY_PRINTK=y | ||
1026 | CONFIG_DEBUG_STACKOVERFLOW=y | 532 | CONFIG_DEBUG_STACKOVERFLOW=y |
1027 | # CONFIG_DEBUG_STACK_USAGE is not set | 533 | CONFIG_KEYS_DEBUG_PROC_KEYS=y |
1028 | CONFIG_DEBUG_EXTRA_FLAGS="-femit-struct-debug-baseonly" | 534 | CONFIG_SECURITY=y |
1029 | 535 | CONFIG_SECURITYFS=y | |
1030 | # | 536 | CONFIG_SECURITY_NETWORK=y |
1031 | # Security options | 537 | CONFIG_SECURITY_NETWORK_XFRM=y |
1032 | # | 538 | CONFIG_SECURITY_SELINUX=y |
1033 | # CONFIG_KEYS is not set | 539 | CONFIG_SECURITY_SELINUX_BOOTPARAM=y |
1034 | # CONFIG_SECURITY_DMESG_RESTRICT is not set | 540 | CONFIG_SECURITY_SELINUX_DISABLE=y |
1035 | # CONFIG_SECURITY is not set | 541 | CONFIG_CRYPTO_NULL=m |
1036 | # CONFIG_SECURITYFS is not set | 542 | CONFIG_CRYPTO_PCRYPT=m |
1037 | CONFIG_DEFAULT_SECURITY_DAC=y | 543 | CONFIG_CRYPTO_CRYPTD=m |
1038 | CONFIG_DEFAULT_SECURITY="" | 544 | CONFIG_CRYPTO_TEST=m |
1039 | CONFIG_CRYPTO=y | 545 | CONFIG_CRYPTO_CCM=m |
1040 | 546 | CONFIG_CRYPTO_GCM=m | |
1041 | # | 547 | CONFIG_CRYPTO_CTS=m |
1042 | # Crypto core or helper | 548 | CONFIG_CRYPTO_LRW=m |
1043 | # | 549 | CONFIG_CRYPTO_PCBC=m |
1044 | # CONFIG_CRYPTO_FIPS is not set | 550 | CONFIG_CRYPTO_XTS=m |
1045 | CONFIG_CRYPTO_ALGAPI=m | 551 | CONFIG_CRYPTO_HMAC=y |
1046 | CONFIG_CRYPTO_ALGAPI2=m | 552 | CONFIG_CRYPTO_XCBC=m |
1047 | CONFIG_CRYPTO_RNG=m | 553 | CONFIG_CRYPTO_VMAC=m |
1048 | CONFIG_CRYPTO_RNG2=m | 554 | CONFIG_CRYPTO_CRC32C=y |
1049 | # CONFIG_CRYPTO_MANAGER is not set | 555 | CONFIG_CRYPTO_MICHAEL_MIC=m |
1050 | # CONFIG_CRYPTO_MANAGER2 is not set | 556 | CONFIG_CRYPTO_RMD128=m |
1051 | # CONFIG_CRYPTO_GF128MUL is not set | 557 | CONFIG_CRYPTO_RMD160=m |
1052 | # CONFIG_CRYPTO_NULL is not set | 558 | CONFIG_CRYPTO_RMD256=m |
1053 | # CONFIG_CRYPTO_PCRYPT is not set | 559 | CONFIG_CRYPTO_RMD320=m |
1054 | # CONFIG_CRYPTO_CRYPTD is not set | 560 | CONFIG_CRYPTO_SHA1=y |
1055 | # CONFIG_CRYPTO_AUTHENC is not set | 561 | CONFIG_CRYPTO_SHA256=m |
1056 | # CONFIG_CRYPTO_TEST is not set | 562 | CONFIG_CRYPTO_SHA512=m |
1057 | 563 | CONFIG_CRYPTO_TGR192=m | |
1058 | # | 564 | CONFIG_CRYPTO_WP512=m |
1059 | # Authenticated Encryption with Associated Data | 565 | CONFIG_CRYPTO_ANUBIS=m |
1060 | # | 566 | CONFIG_CRYPTO_BLOWFISH=m |
1061 | # CONFIG_CRYPTO_CCM is not set | 567 | CONFIG_CRYPTO_CAMELLIA=m |
1062 | # CONFIG_CRYPTO_GCM is not set | 568 | CONFIG_CRYPTO_CAST5=m |
1063 | # CONFIG_CRYPTO_SEQIV is not set | 569 | CONFIG_CRYPTO_CAST6=m |
1064 | 570 | CONFIG_CRYPTO_FCRYPT=m | |
1065 | # | 571 | CONFIG_CRYPTO_KHAZAD=m |
1066 | # Block modes | 572 | CONFIG_CRYPTO_SEED=m |
1067 | # | 573 | CONFIG_CRYPTO_SERPENT=m |
1068 | # CONFIG_CRYPTO_CBC is not set | 574 | CONFIG_CRYPTO_TEA=m |
1069 | # CONFIG_CRYPTO_CTR is not set | 575 | CONFIG_CRYPTO_TWOFISH=m |
1070 | # CONFIG_CRYPTO_CTS is not set | 576 | CONFIG_CRYPTO_ZLIB=m |
1071 | # CONFIG_CRYPTO_ECB is not set | 577 | CONFIG_CRYPTO_LZO=m |
1072 | # CONFIG_CRYPTO_LRW is not set | 578 | CONFIG_CRC_CCITT=m |
1073 | # CONFIG_CRYPTO_PCBC is not set | 579 | CONFIG_CRC7=m |
1074 | # CONFIG_CRYPTO_XTS is not set | ||
1075 | |||
1076 | # | ||
1077 | # Hash modes | ||
1078 | # | ||
1079 | # CONFIG_CRYPTO_HMAC is not set | ||
1080 | # CONFIG_CRYPTO_XCBC is not set | ||
1081 | # CONFIG_CRYPTO_VMAC is not set | ||
1082 | |||
1083 | # | ||
1084 | # Digest | ||
1085 | # | ||
1086 | # CONFIG_CRYPTO_CRC32C is not set | ||
1087 | # CONFIG_CRYPTO_GHASH is not set | ||
1088 | # CONFIG_CRYPTO_MD4 is not set | ||
1089 | # CONFIG_CRYPTO_MD5 is not set | ||
1090 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1091 | # CONFIG_CRYPTO_RMD128 is not set | ||
1092 | # CONFIG_CRYPTO_RMD160 is not set | ||
1093 | # CONFIG_CRYPTO_RMD256 is not set | ||
1094 | # CONFIG_CRYPTO_RMD320 is not set | ||
1095 | # CONFIG_CRYPTO_SHA1 is not set | ||
1096 | # CONFIG_CRYPTO_SHA256 is not set | ||
1097 | # CONFIG_CRYPTO_SHA512 is not set | ||
1098 | # CONFIG_CRYPTO_TGR192 is not set | ||
1099 | # CONFIG_CRYPTO_WP512 is not set | ||
1100 | |||
1101 | # | ||
1102 | # Ciphers | ||
1103 | # | ||
1104 | CONFIG_CRYPTO_AES=m | ||
1105 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1106 | # CONFIG_CRYPTO_ARC4 is not set | ||
1107 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1108 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1109 | # CONFIG_CRYPTO_CAST5 is not set | ||
1110 | # CONFIG_CRYPTO_CAST6 is not set | ||
1111 | # CONFIG_CRYPTO_DES is not set | ||
1112 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1113 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1114 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1115 | # CONFIG_CRYPTO_SEED is not set | ||
1116 | # CONFIG_CRYPTO_SERPENT is not set | ||
1117 | # CONFIG_CRYPTO_TEA is not set | ||
1118 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1119 | |||
1120 | # | ||
1121 | # Compression | ||
1122 | # | ||
1123 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1124 | # CONFIG_CRYPTO_ZLIB is not set | ||
1125 | # CONFIG_CRYPTO_LZO is not set | ||
1126 | |||
1127 | # | ||
1128 | # Random Number Generation | ||
1129 | # | ||
1130 | CONFIG_CRYPTO_ANSI_CPRNG=m | ||
1131 | # CONFIG_CRYPTO_USER_API_HASH is not set | ||
1132 | # CONFIG_CRYPTO_USER_API_SKCIPHER is not set | ||
1133 | CONFIG_CRYPTO_HW=y | ||
1134 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1135 | # CONFIG_BINARY_PRINTF is not set | ||
1136 | |||
1137 | # | ||
1138 | # Library routines | ||
1139 | # | ||
1140 | CONFIG_BITREVERSE=y | ||
1141 | CONFIG_GENERIC_FIND_FIRST_BIT=y | ||
1142 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
1143 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1144 | # CONFIG_CRC_CCITT is not set | ||
1145 | # CONFIG_CRC16 is not set | ||
1146 | # CONFIG_CRC_T10DIF is not set | ||
1147 | # CONFIG_CRC_ITU_T is not set | ||
1148 | CONFIG_CRC32=y | ||
1149 | # CONFIG_CRC7 is not set | ||
1150 | # CONFIG_LIBCRC32C is not set | ||
1151 | CONFIG_ZLIB_INFLATE=y | ||
1152 | # CONFIG_XZ_DEC is not set | ||
1153 | # CONFIG_XZ_DEC_BCJ is not set | ||
1154 | CONFIG_DECOMPRESS_GZIP=y | ||
1155 | CONFIG_HAS_IOMEM=y | ||
1156 | CONFIG_HAS_IOPORT=y | ||
1157 | CONFIG_HAS_DMA=y | ||
1158 | CONFIG_CPU_RMAP=y | ||
1159 | CONFIG_NLATTR=y | ||
1160 | # CONFIG_AVERAGE is not set | ||
1161 | CONFIG_HAVE_KVM=y | ||
1162 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/tile/kernel/compat_signal.c b/arch/tile/kernel/compat_signal.c index a7869ad62776..77763ccd5a7d 100644 --- a/arch/tile/kernel/compat_signal.c +++ b/arch/tile/kernel/compat_signal.c | |||
@@ -303,10 +303,7 @@ long compat_sys_rt_sigreturn(struct pt_regs *regs) | |||
303 | goto badframe; | 303 | goto badframe; |
304 | 304 | ||
305 | sigdelsetmask(&set, ~_BLOCKABLE); | 305 | sigdelsetmask(&set, ~_BLOCKABLE); |
306 | spin_lock_irq(¤t->sighand->siglock); | 306 | set_current_blocked(&set); |
307 | current->blocked = set; | ||
308 | recalc_sigpending(); | ||
309 | spin_unlock_irq(¤t->sighand->siglock); | ||
310 | 307 | ||
311 | if (restore_sigcontext(regs, &frame->uc.uc_mcontext)) | 308 | if (restore_sigcontext(regs, &frame->uc.uc_mcontext)) |
312 | goto badframe; | 309 | goto badframe; |
diff --git a/arch/tile/kernel/signal.c b/arch/tile/kernel/signal.c index bedaf4e9f3a7..f79d4b88c747 100644 --- a/arch/tile/kernel/signal.c +++ b/arch/tile/kernel/signal.c | |||
@@ -97,10 +97,7 @@ SYSCALL_DEFINE1(rt_sigreturn, struct pt_regs *, regs) | |||
97 | goto badframe; | 97 | goto badframe; |
98 | 98 | ||
99 | sigdelsetmask(&set, ~_BLOCKABLE); | 99 | sigdelsetmask(&set, ~_BLOCKABLE); |
100 | spin_lock_irq(¤t->sighand->siglock); | 100 | set_current_blocked(&set); |
101 | current->blocked = set; | ||
102 | recalc_sigpending(); | ||
103 | spin_unlock_irq(¤t->sighand->siglock); | ||
104 | 101 | ||
105 | if (restore_sigcontext(regs, &frame->uc.uc_mcontext)) | 102 | if (restore_sigcontext(regs, &frame->uc.uc_mcontext)) |
106 | goto badframe; | 103 | goto badframe; |
@@ -286,13 +283,7 @@ static int handle_signal(unsigned long sig, siginfo_t *info, | |||
286 | * the work_pending path in the return-to-user code, and | 283 | * the work_pending path in the return-to-user code, and |
287 | * either way we can re-enable interrupts unconditionally. | 284 | * either way we can re-enable interrupts unconditionally. |
288 | */ | 285 | */ |
289 | spin_lock_irq(¤t->sighand->siglock); | 286 | block_sigmask(ka, sig); |
290 | sigorsets(¤t->blocked, | ||
291 | ¤t->blocked, &ka->sa.sa_mask); | ||
292 | if (!(ka->sa.sa_flags & SA_NODEFER)) | ||
293 | sigaddset(¤t->blocked, sig); | ||
294 | recalc_sigpending(); | ||
295 | spin_unlock_irq(¤t->sighand->siglock); | ||
296 | } | 287 | } |
297 | 288 | ||
298 | return ret; | 289 | return ret; |
diff --git a/arch/tile/kernel/sysfs.c b/arch/tile/kernel/sysfs.c index f862b005eb73..71ae728e9d0b 100644 --- a/arch/tile/kernel/sysfs.c +++ b/arch/tile/kernel/sysfs.c | |||
@@ -163,7 +163,7 @@ static int __init create_sysfs_entries(void) | |||
163 | 163 | ||
164 | #define create_hv_attr(name) \ | 164 | #define create_hv_attr(name) \ |
165 | if (!err) \ | 165 | if (!err) \ |
166 | err = sysfs_create_file(hypervisor_kobj, &dev_attr_##name); | 166 | err = sysfs_create_file(hypervisor_kobj, &dev_attr_##name.attr); |
167 | create_hv_attr(type); | 167 | create_hv_attr(type); |
168 | create_hv_attr(version); | 168 | create_hv_attr(version); |
169 | create_hv_attr(config_version); | 169 | create_hv_attr(config_version); |
diff --git a/arch/tile/lib/spinlock_32.c b/arch/tile/lib/spinlock_32.c index cb0999fb64b4..b16ac49a968e 100644 --- a/arch/tile/lib/spinlock_32.c +++ b/arch/tile/lib/spinlock_32.c | |||
@@ -144,7 +144,7 @@ void arch_read_unlock(arch_rwlock_t *rwlock) | |||
144 | for (;;) { | 144 | for (;;) { |
145 | __insn_mtspr(SPR_INTERRUPT_CRITICAL_SECTION, 1); | 145 | __insn_mtspr(SPR_INTERRUPT_CRITICAL_SECTION, 1); |
146 | val = __insn_tns((int *)&rwlock->lock); | 146 | val = __insn_tns((int *)&rwlock->lock); |
147 | if (likely(val & 1) == 0) { | 147 | if (likely((val & 1) == 0)) { |
148 | rwlock->lock = val - (1 << _RD_COUNT_SHIFT); | 148 | rwlock->lock = val - (1 << _RD_COUNT_SHIFT); |
149 | __insn_mtspr(SPR_INTERRUPT_CRITICAL_SECTION, 0); | 149 | __insn_mtspr(SPR_INTERRUPT_CRITICAL_SECTION, 0); |
150 | break; | 150 | break; |
diff --git a/arch/x86/ia32/ia32_aout.c b/arch/x86/ia32/ia32_aout.c index fd843877e841..39e49091f648 100644 --- a/arch/x86/ia32/ia32_aout.c +++ b/arch/x86/ia32/ia32_aout.c | |||
@@ -315,6 +315,13 @@ static int load_aout_binary(struct linux_binprm *bprm, struct pt_regs *regs) | |||
315 | current->mm->free_area_cache = TASK_UNMAPPED_BASE; | 315 | current->mm->free_area_cache = TASK_UNMAPPED_BASE; |
316 | current->mm->cached_hole_size = 0; | 316 | current->mm->cached_hole_size = 0; |
317 | 317 | ||
318 | retval = setup_arg_pages(bprm, IA32_STACK_TOP, EXSTACK_DEFAULT); | ||
319 | if (retval < 0) { | ||
320 | /* Someone check-me: is this error path enough? */ | ||
321 | send_sig(SIGKILL, current, 0); | ||
322 | return retval; | ||
323 | } | ||
324 | |||
318 | install_exec_creds(bprm); | 325 | install_exec_creds(bprm); |
319 | current->flags &= ~PF_FORKNOEXEC; | 326 | current->flags &= ~PF_FORKNOEXEC; |
320 | 327 | ||
@@ -410,13 +417,6 @@ beyond_if: | |||
410 | 417 | ||
411 | set_brk(current->mm->start_brk, current->mm->brk); | 418 | set_brk(current->mm->start_brk, current->mm->brk); |
412 | 419 | ||
413 | retval = setup_arg_pages(bprm, IA32_STACK_TOP, EXSTACK_DEFAULT); | ||
414 | if (retval < 0) { | ||
415 | /* Someone check-me: is this error path enough? */ | ||
416 | send_sig(SIGKILL, current, 0); | ||
417 | return retval; | ||
418 | } | ||
419 | |||
420 | current->mm->start_stack = | 420 | current->mm->start_stack = |
421 | (unsigned long)create_aout_tables((char __user *)bprm->p, bprm); | 421 | (unsigned long)create_aout_tables((char __user *)bprm->p, bprm); |
422 | /* start thread */ | 422 | /* start thread */ |
diff --git a/arch/x86/kernel/cpu/perf_event_intel.c b/arch/x86/kernel/cpu/perf_event_intel.c index 3bd37bdf1b8e..61d4f79a550e 100644 --- a/arch/x86/kernel/cpu/perf_event_intel.c +++ b/arch/x86/kernel/cpu/perf_event_intel.c | |||
@@ -385,14 +385,15 @@ static __initconst const u64 westmere_hw_cache_event_ids | |||
385 | #define NHM_LOCAL_DRAM (1 << 14) | 385 | #define NHM_LOCAL_DRAM (1 << 14) |
386 | #define NHM_NON_DRAM (1 << 15) | 386 | #define NHM_NON_DRAM (1 << 15) |
387 | 387 | ||
388 | #define NHM_ALL_DRAM (NHM_REMOTE_DRAM|NHM_LOCAL_DRAM) | 388 | #define NHM_LOCAL (NHM_LOCAL_DRAM|NHM_REMOTE_CACHE_FWD) |
389 | #define NHM_REMOTE (NHM_REMOTE_DRAM) | ||
389 | 390 | ||
390 | #define NHM_DMND_READ (NHM_DMND_DATA_RD) | 391 | #define NHM_DMND_READ (NHM_DMND_DATA_RD) |
391 | #define NHM_DMND_WRITE (NHM_DMND_RFO|NHM_DMND_WB) | 392 | #define NHM_DMND_WRITE (NHM_DMND_RFO|NHM_DMND_WB) |
392 | #define NHM_DMND_PREFETCH (NHM_PF_DATA_RD|NHM_PF_DATA_RFO) | 393 | #define NHM_DMND_PREFETCH (NHM_PF_DATA_RD|NHM_PF_DATA_RFO) |
393 | 394 | ||
394 | #define NHM_L3_HIT (NHM_UNCORE_HIT|NHM_OTHER_CORE_HIT_SNP|NHM_OTHER_CORE_HITM) | 395 | #define NHM_L3_HIT (NHM_UNCORE_HIT|NHM_OTHER_CORE_HIT_SNP|NHM_OTHER_CORE_HITM) |
395 | #define NHM_L3_MISS (NHM_NON_DRAM|NHM_ALL_DRAM|NHM_REMOTE_CACHE_FWD) | 396 | #define NHM_L3_MISS (NHM_NON_DRAM|NHM_LOCAL_DRAM|NHM_REMOTE_DRAM|NHM_REMOTE_CACHE_FWD) |
396 | #define NHM_L3_ACCESS (NHM_L3_HIT|NHM_L3_MISS) | 397 | #define NHM_L3_ACCESS (NHM_L3_HIT|NHM_L3_MISS) |
397 | 398 | ||
398 | static __initconst const u64 nehalem_hw_cache_extra_regs | 399 | static __initconst const u64 nehalem_hw_cache_extra_regs |
@@ -416,16 +417,16 @@ static __initconst const u64 nehalem_hw_cache_extra_regs | |||
416 | }, | 417 | }, |
417 | [ C(NODE) ] = { | 418 | [ C(NODE) ] = { |
418 | [ C(OP_READ) ] = { | 419 | [ C(OP_READ) ] = { |
419 | [ C(RESULT_ACCESS) ] = NHM_DMND_READ|NHM_ALL_DRAM, | 420 | [ C(RESULT_ACCESS) ] = NHM_DMND_READ|NHM_LOCAL|NHM_REMOTE, |
420 | [ C(RESULT_MISS) ] = NHM_DMND_READ|NHM_REMOTE_DRAM, | 421 | [ C(RESULT_MISS) ] = NHM_DMND_READ|NHM_REMOTE, |
421 | }, | 422 | }, |
422 | [ C(OP_WRITE) ] = { | 423 | [ C(OP_WRITE) ] = { |
423 | [ C(RESULT_ACCESS) ] = NHM_DMND_WRITE|NHM_ALL_DRAM, | 424 | [ C(RESULT_ACCESS) ] = NHM_DMND_WRITE|NHM_LOCAL|NHM_REMOTE, |
424 | [ C(RESULT_MISS) ] = NHM_DMND_WRITE|NHM_REMOTE_DRAM, | 425 | [ C(RESULT_MISS) ] = NHM_DMND_WRITE|NHM_REMOTE, |
425 | }, | 426 | }, |
426 | [ C(OP_PREFETCH) ] = { | 427 | [ C(OP_PREFETCH) ] = { |
427 | [ C(RESULT_ACCESS) ] = NHM_DMND_PREFETCH|NHM_ALL_DRAM, | 428 | [ C(RESULT_ACCESS) ] = NHM_DMND_PREFETCH|NHM_LOCAL|NHM_REMOTE, |
428 | [ C(RESULT_MISS) ] = NHM_DMND_PREFETCH|NHM_REMOTE_DRAM, | 429 | [ C(RESULT_MISS) ] = NHM_DMND_PREFETCH|NHM_REMOTE, |
429 | }, | 430 | }, |
430 | }, | 431 | }, |
431 | }; | 432 | }; |
diff --git a/arch/x86/lib/delay.c b/arch/x86/lib/delay.c index fc45ba887d05..e395693abdb1 100644 --- a/arch/x86/lib/delay.c +++ b/arch/x86/lib/delay.c | |||
@@ -48,9 +48,9 @@ static void delay_loop(unsigned long loops) | |||
48 | } | 48 | } |
49 | 49 | ||
50 | /* TSC based delay: */ | 50 | /* TSC based delay: */ |
51 | static void delay_tsc(unsigned long loops) | 51 | static void delay_tsc(unsigned long __loops) |
52 | { | 52 | { |
53 | unsigned long bclock, now; | 53 | u32 bclock, now, loops = __loops; |
54 | int cpu; | 54 | int cpu; |
55 | 55 | ||
56 | preempt_disable(); | 56 | preempt_disable(); |
diff --git a/arch/x86/mm/hugetlbpage.c b/arch/x86/mm/hugetlbpage.c index f581a18c0d4d..8ecbb4bba4b3 100644 --- a/arch/x86/mm/hugetlbpage.c +++ b/arch/x86/mm/hugetlbpage.c | |||
@@ -333,13 +333,15 @@ try_again: | |||
333 | * Lookup failure means no vma is above this address, | 333 | * Lookup failure means no vma is above this address, |
334 | * i.e. return with success: | 334 | * i.e. return with success: |
335 | */ | 335 | */ |
336 | if (!(vma = find_vma_prev(mm, addr, &prev_vma))) | 336 | vma = find_vma(mm, addr); |
337 | if (!vma) | ||
337 | return addr; | 338 | return addr; |
338 | 339 | ||
339 | /* | 340 | /* |
340 | * new region fits between prev_vma->vm_end and | 341 | * new region fits between prev_vma->vm_end and |
341 | * vma->vm_start, use it: | 342 | * vma->vm_start, use it: |
342 | */ | 343 | */ |
344 | prev_vma = vma->vm_prev; | ||
343 | if (addr + len <= vma->vm_start && | 345 | if (addr + len <= vma->vm_start && |
344 | (!prev_vma || (addr >= prev_vma->vm_end))) { | 346 | (!prev_vma || (addr >= prev_vma->vm_end))) { |
345 | /* remember the address as a hint for next time */ | 347 | /* remember the address as a hint for next time */ |
diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c index a312e76063a7..49a5cb55429b 100644 --- a/arch/x86/pci/acpi.c +++ b/arch/x86/pci/acpi.c | |||
@@ -60,6 +60,16 @@ static const struct dmi_system_id pci_use_crs_table[] __initconst = { | |||
60 | DMI_MATCH(DMI_BIOS_VENDOR, "American Megatrends Inc."), | 60 | DMI_MATCH(DMI_BIOS_VENDOR, "American Megatrends Inc."), |
61 | }, | 61 | }, |
62 | }, | 62 | }, |
63 | /* https://bugzilla.kernel.org/show_bug.cgi?id=42619 */ | ||
64 | { | ||
65 | .callback = set_use_crs, | ||
66 | .ident = "MSI MS-7253", | ||
67 | .matches = { | ||
68 | DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"), | ||
69 | DMI_MATCH(DMI_BOARD_NAME, "MS-7253"), | ||
70 | DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies, LTD"), | ||
71 | }, | ||
72 | }, | ||
63 | 73 | ||
64 | /* Now for the blacklist.. */ | 74 | /* Now for the blacklist.. */ |
65 | 75 | ||
@@ -282,9 +292,6 @@ static void add_resources(struct pci_root_info *info) | |||
282 | int i; | 292 | int i; |
283 | struct resource *res, *root, *conflict; | 293 | struct resource *res, *root, *conflict; |
284 | 294 | ||
285 | if (!pci_use_crs) | ||
286 | return; | ||
287 | |||
288 | coalesce_windows(info, IORESOURCE_MEM); | 295 | coalesce_windows(info, IORESOURCE_MEM); |
289 | coalesce_windows(info, IORESOURCE_IO); | 296 | coalesce_windows(info, IORESOURCE_IO); |
290 | 297 | ||
@@ -336,8 +343,13 @@ get_current_resources(struct acpi_device *device, int busnum, | |||
336 | acpi_walk_resources(device->handle, METHOD_NAME__CRS, setup_resource, | 343 | acpi_walk_resources(device->handle, METHOD_NAME__CRS, setup_resource, |
337 | &info); | 344 | &info); |
338 | 345 | ||
339 | add_resources(&info); | 346 | if (pci_use_crs) { |
340 | return; | 347 | add_resources(&info); |
348 | |||
349 | return; | ||
350 | } | ||
351 | |||
352 | kfree(info.name); | ||
341 | 353 | ||
342 | name_alloc_fail: | 354 | name_alloc_fail: |
343 | kfree(info.res); | 355 | kfree(info.res); |