These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / arch / Kconfig
1 #
2 # General architecture dependent options
3 #
4
5 config KEXEC_CORE
6         bool
7
8 config OPROFILE
9         tristate "OProfile system profiling"
10         depends on PROFILING
11         depends on HAVE_OPROFILE
12         depends on !PREEMPT_RT_FULL
13         select RING_BUFFER
14         select RING_BUFFER_ALLOW_SWAP
15         help
16           OProfile is a profiling system capable of profiling the
17           whole system, include the kernel, kernel modules, libraries,
18           and applications.
19
20           If unsure, say N.
21
22 config OPROFILE_EVENT_MULTIPLEX
23         bool "OProfile multiplexing support (EXPERIMENTAL)"
24         default n
25         depends on OPROFILE && X86
26         help
27           The number of hardware counters is limited. The multiplexing
28           feature enables OProfile to gather more events than counters
29           are provided by the hardware. This is realized by switching
30           between events at an user specified time interval.
31
32           If unsure, say N.
33
34 config HAVE_OPROFILE
35         bool
36
37 config OPROFILE_NMI_TIMER
38         def_bool y
39         depends on PERF_EVENTS && HAVE_PERF_EVENTS_NMI && !PPC64
40
41 config KPROBES
42         bool "Kprobes"
43         depends on MODULES
44         depends on HAVE_KPROBES
45         select KALLSYMS
46         help
47           Kprobes allows you to trap at almost any kernel address and
48           execute a callback function.  register_kprobe() establishes
49           a probepoint and specifies the callback.  Kprobes is useful
50           for kernel debugging, non-intrusive instrumentation and testing.
51           If in doubt, say "N".
52
53 config JUMP_LABEL
54        bool "Optimize very unlikely/likely branches"
55        depends on HAVE_ARCH_JUMP_LABEL
56        depends on (!INTERRUPT_OFF_HIST && !PREEMPT_OFF_HIST && !WAKEUP_LATENCY_HIST && !MISSED_TIMER_OFFSETS_HIST)
57        help
58          This option enables a transparent branch optimization that
59          makes certain almost-always-true or almost-always-false branch
60          conditions even cheaper to execute within the kernel.
61
62          Certain performance-sensitive kernel code, such as trace points,
63          scheduler functionality, networking code and KVM have such
64          branches and include support for this optimization technique.
65
66          If it is detected that the compiler has support for "asm goto",
67          the kernel will compile such branches with just a nop
68          instruction. When the condition flag is toggled to true, the
69          nop will be converted to a jump instruction to execute the
70          conditional block of instructions.
71
72          This technique lowers overhead and stress on the branch prediction
73          of the processor and generally makes the kernel faster. The update
74          of the condition is slower, but those are always very rare.
75
76          ( On 32-bit x86, the necessary options added to the compiler
77            flags may increase the size of the kernel slightly. )
78
79 config STATIC_KEYS_SELFTEST
80         bool "Static key selftest"
81         depends on JUMP_LABEL
82         help
83           Boot time self-test of the branch patching code.
84
85 config OPTPROBES
86         def_bool y
87         depends on KPROBES && HAVE_OPTPROBES
88         depends on !PREEMPT
89
90 config KPROBES_ON_FTRACE
91         def_bool y
92         depends on KPROBES && HAVE_KPROBES_ON_FTRACE
93         depends on DYNAMIC_FTRACE_WITH_REGS
94         help
95          If function tracer is enabled and the arch supports full
96          passing of pt_regs to function tracing, then kprobes can
97          optimize on top of function tracing.
98
99 config UPROBES
100         def_bool n
101         help
102           Uprobes is the user-space counterpart to kprobes: they
103           enable instrumentation applications (such as 'perf probe')
104           to establish unintrusive probes in user-space binaries and
105           libraries, by executing handler functions when the probes
106           are hit by user-space applications.
107
108           ( These probes come in the form of single-byte breakpoints,
109             managed by the kernel and kept transparent to the probed
110             application. )
111
112 config HAVE_64BIT_ALIGNED_ACCESS
113         def_bool 64BIT && !HAVE_EFFICIENT_UNALIGNED_ACCESS
114         help
115           Some architectures require 64 bit accesses to be 64 bit
116           aligned, which also requires structs containing 64 bit values
117           to be 64 bit aligned too. This includes some 32 bit
118           architectures which can do 64 bit accesses, as well as 64 bit
119           architectures without unaligned access.
120
121           This symbol should be selected by an architecture if 64 bit
122           accesses are required to be 64 bit aligned in this way even
123           though it is not a 64 bit architecture.
124
125           See Documentation/unaligned-memory-access.txt for more
126           information on the topic of unaligned memory accesses.
127
128 config HAVE_EFFICIENT_UNALIGNED_ACCESS
129         bool
130         help
131           Some architectures are unable to perform unaligned accesses
132           without the use of get_unaligned/put_unaligned. Others are
133           unable to perform such accesses efficiently (e.g. trap on
134           unaligned access and require fixing it up in the exception
135           handler.)
136
137           This symbol should be selected by an architecture if it can
138           perform unaligned accesses efficiently to allow different
139           code paths to be selected for these cases. Some network
140           drivers, for example, could opt to not fix up alignment
141           problems with received packets if doing so would not help
142           much.
143
144           See Documentation/unaligned-memory-access.txt for more
145           information on the topic of unaligned memory accesses.
146
147 config ARCH_USE_BUILTIN_BSWAP
148        bool
149        help
150          Modern versions of GCC (since 4.4) have builtin functions
151          for handling byte-swapping. Using these, instead of the old
152          inline assembler that the architecture code provides in the
153          __arch_bswapXX() macros, allows the compiler to see what's
154          happening and offers more opportunity for optimisation. In
155          particular, the compiler will be able to combine the byteswap
156          with a nearby load or store and use load-and-swap or
157          store-and-swap instructions if the architecture has them. It
158          should almost *never* result in code which is worse than the
159          hand-coded assembler in <asm/swab.h>.  But just in case it
160          does, the use of the builtins is optional.
161
162          Any architecture with load-and-swap or store-and-swap
163          instructions should set this. And it shouldn't hurt to set it
164          on architectures that don't have such instructions.
165
166 config KRETPROBES
167         def_bool y
168         depends on KPROBES && HAVE_KRETPROBES
169
170 config USER_RETURN_NOTIFIER
171         bool
172         depends on HAVE_USER_RETURN_NOTIFIER
173         help
174           Provide a kernel-internal notification when a cpu is about to
175           switch to user mode.
176
177 config HAVE_IOREMAP_PROT
178         bool
179
180 config HAVE_KPROBES
181         bool
182
183 config HAVE_KRETPROBES
184         bool
185
186 config HAVE_OPTPROBES
187         bool
188
189 config HAVE_KPROBES_ON_FTRACE
190         bool
191
192 config HAVE_NMI_WATCHDOG
193         bool
194 #
195 # An arch should select this if it provides all these things:
196 #
197 #       task_pt_regs()          in asm/processor.h or asm/ptrace.h
198 #       arch_has_single_step()  if there is hardware single-step support
199 #       arch_has_block_step()   if there is hardware block-step support
200 #       asm/syscall.h           supplying asm-generic/syscall.h interface
201 #       linux/regset.h          user_regset interfaces
202 #       CORE_DUMP_USE_REGSET    #define'd in linux/elf.h
203 #       TIF_SYSCALL_TRACE       calls tracehook_report_syscall_{entry,exit}
204 #       TIF_NOTIFY_RESUME       calls tracehook_notify_resume()
205 #       signal delivery         calls tracehook_signal_handler()
206 #
207 config HAVE_ARCH_TRACEHOOK
208         bool
209
210 config HAVE_DMA_ATTRS
211         bool
212
213 config HAVE_DMA_CONTIGUOUS
214         bool
215
216 config GENERIC_SMP_IDLE_THREAD
217        bool
218
219 config GENERIC_IDLE_POLL_SETUP
220        bool
221
222 # Select if arch init_task initializer is different to init/init_task.c
223 config ARCH_INIT_TASK
224        bool
225
226 # Select if arch has its private alloc_task_struct() function
227 config ARCH_TASK_STRUCT_ALLOCATOR
228         bool
229
230 # Select if arch has its private alloc_thread_info() function
231 config ARCH_THREAD_INFO_ALLOCATOR
232         bool
233
234 # Select if arch wants to size task_struct dynamically via arch_task_struct_size:
235 config ARCH_WANTS_DYNAMIC_TASK_STRUCT
236         bool
237
238 config HAVE_REGS_AND_STACK_ACCESS_API
239         bool
240         help
241           This symbol should be selected by an architecure if it supports
242           the API needed to access registers and stack entries from pt_regs,
243           declared in asm/ptrace.h
244           For example the kprobes-based event tracer needs this API.
245
246 config HAVE_CLK
247         bool
248         help
249           The <linux/clk.h> calls support software clock gating and
250           thus are a key power management tool on many systems.
251
252 config HAVE_DMA_API_DEBUG
253         bool
254
255 config HAVE_HW_BREAKPOINT
256         bool
257         depends on PERF_EVENTS
258
259 config HAVE_MIXED_BREAKPOINTS_REGS
260         bool
261         depends on HAVE_HW_BREAKPOINT
262         help
263           Depending on the arch implementation of hardware breakpoints,
264           some of them have separate registers for data and instruction
265           breakpoints addresses, others have mixed registers to store
266           them but define the access type in a control register.
267           Select this option if your arch implements breakpoints under the
268           latter fashion.
269
270 config HAVE_USER_RETURN_NOTIFIER
271         bool
272
273 config HAVE_PERF_EVENTS_NMI
274         bool
275         help
276           System hardware can generate an NMI using the perf event
277           subsystem.  Also has support for calculating CPU cycle events
278           to determine how many clock cycles in a given period.
279
280 config HAVE_PERF_REGS
281         bool
282         help
283           Support selective register dumps for perf events. This includes
284           bit-mapping of each registers and a unique architecture id.
285
286 config HAVE_PERF_USER_STACK_DUMP
287         bool
288         help
289           Support user stack dumps for perf event samples. This needs
290           access to the user stack pointer which is not unified across
291           architectures.
292
293 config HAVE_ARCH_JUMP_LABEL
294         bool
295
296 config HAVE_RCU_TABLE_FREE
297         bool
298
299 config ARCH_HAVE_NMI_SAFE_CMPXCHG
300         bool
301
302 config HAVE_ALIGNED_STRUCT_PAGE
303         bool
304         help
305           This makes sure that struct pages are double word aligned and that
306           e.g. the SLUB allocator can perform double word atomic operations
307           on a struct page for better performance. However selecting this
308           might increase the size of a struct page by a word.
309
310 config HAVE_CMPXCHG_LOCAL
311         bool
312
313 config HAVE_CMPXCHG_DOUBLE
314         bool
315
316 config ARCH_WANT_IPC_PARSE_VERSION
317         bool
318
319 config ARCH_WANT_COMPAT_IPC_PARSE_VERSION
320         bool
321
322 config ARCH_WANT_OLD_COMPAT_IPC
323         select ARCH_WANT_COMPAT_IPC_PARSE_VERSION
324         bool
325
326 config HAVE_ARCH_SECCOMP_FILTER
327         bool
328         help
329           An arch should select this symbol if it provides all of these things:
330           - syscall_get_arch()
331           - syscall_get_arguments()
332           - syscall_rollback()
333           - syscall_set_return_value()
334           - SIGSYS siginfo_t support
335           - secure_computing is called from a ptrace_event()-safe context
336           - secure_computing return value is checked and a return value of -1
337             results in the system call being skipped immediately.
338           - seccomp syscall wired up
339
340           For best performance, an arch should use seccomp_phase1 and
341           seccomp_phase2 directly.  It should call seccomp_phase1 for all
342           syscalls if TIF_SECCOMP is set, but seccomp_phase1 does not
343           need to be called from a ptrace-safe context.  It must then
344           call seccomp_phase2 if seccomp_phase1 returns anything other
345           than SECCOMP_PHASE1_OK or SECCOMP_PHASE1_SKIP.
346
347           As an additional optimization, an arch may provide seccomp_data
348           directly to seccomp_phase1; this avoids multiple calls
349           to the syscall_xyz helpers for every syscall.
350
351 config SECCOMP_FILTER
352         def_bool y
353         depends on HAVE_ARCH_SECCOMP_FILTER && SECCOMP && NET
354         help
355           Enable tasks to build secure computing environments defined
356           in terms of Berkeley Packet Filter programs which implement
357           task-defined system call filtering polices.
358
359           See Documentation/prctl/seccomp_filter.txt for details.
360
361 config HAVE_CC_STACKPROTECTOR
362         bool
363         help
364           An arch should select this symbol if:
365           - its compiler supports the -fstack-protector option
366           - it has implemented a stack canary (e.g. __stack_chk_guard)
367
368 config CC_STACKPROTECTOR
369         def_bool n
370         help
371           Set when a stack-protector mode is enabled, so that the build
372           can enable kernel-side support for the GCC feature.
373
374 choice
375         prompt "Stack Protector buffer overflow detection"
376         depends on HAVE_CC_STACKPROTECTOR
377         default CC_STACKPROTECTOR_NONE
378         help
379           This option turns on the "stack-protector" GCC feature. This
380           feature puts, at the beginning of functions, a canary value on
381           the stack just before the return address, and validates
382           the value just before actually returning.  Stack based buffer
383           overflows (that need to overwrite this return address) now also
384           overwrite the canary, which gets detected and the attack is then
385           neutralized via a kernel panic.
386
387 config CC_STACKPROTECTOR_NONE
388         bool "None"
389         help
390           Disable "stack-protector" GCC feature.
391
392 config CC_STACKPROTECTOR_REGULAR
393         bool "Regular"
394         select CC_STACKPROTECTOR
395         help
396           Functions will have the stack-protector canary logic added if they
397           have an 8-byte or larger character array on the stack.
398
399           This feature requires gcc version 4.2 or above, or a distribution
400           gcc with the feature backported ("-fstack-protector").
401
402           On an x86 "defconfig" build, this feature adds canary checks to
403           about 3% of all kernel functions, which increases kernel code size
404           by about 0.3%.
405
406 config CC_STACKPROTECTOR_STRONG
407         bool "Strong"
408         select CC_STACKPROTECTOR
409         help
410           Functions will have the stack-protector canary logic added in any
411           of the following conditions:
412
413           - local variable's address used as part of the right hand side of an
414             assignment or function argument
415           - local variable is an array (or union containing an array),
416             regardless of array type or length
417           - uses register local variables
418
419           This feature requires gcc version 4.9 or above, or a distribution
420           gcc with the feature backported ("-fstack-protector-strong").
421
422           On an x86 "defconfig" build, this feature adds canary checks to
423           about 20% of all kernel functions, which increases the kernel code
424           size by about 2%.
425
426 endchoice
427
428 config HAVE_CONTEXT_TRACKING
429         bool
430         help
431           Provide kernel/user boundaries probes necessary for subsystems
432           that need it, such as userspace RCU extended quiescent state.
433           Syscalls need to be wrapped inside user_exit()-user_enter() through
434           the slow path using TIF_NOHZ flag. Exceptions handlers must be
435           wrapped as well. Irqs are already protected inside
436           rcu_irq_enter/rcu_irq_exit() but preemption or signal handling on
437           irq exit still need to be protected.
438
439 config HAVE_VIRT_CPU_ACCOUNTING
440         bool
441
442 config HAVE_VIRT_CPU_ACCOUNTING_GEN
443         bool
444         default y if 64BIT
445         help
446           With VIRT_CPU_ACCOUNTING_GEN, cputime_t becomes 64-bit.
447           Before enabling this option, arch code must be audited
448           to ensure there are no races in concurrent read/write of
449           cputime_t. For example, reading/writing 64-bit cputime_t on
450           some 32-bit arches may require multiple accesses, so proper
451           locking is needed to protect against concurrent accesses.
452
453
454 config HAVE_IRQ_TIME_ACCOUNTING
455         bool
456         help
457           Archs need to ensure they use a high enough resolution clock to
458           support irq time accounting and then call enable_sched_clock_irqtime().
459
460 config HAVE_ARCH_TRANSPARENT_HUGEPAGE
461         bool
462
463 config HAVE_ARCH_HUGE_VMAP
464         bool
465
466 config HAVE_ARCH_SOFT_DIRTY
467         bool
468
469 config HAVE_MOD_ARCH_SPECIFIC
470         bool
471         help
472           The arch uses struct mod_arch_specific to store data.  Many arches
473           just need a simple module loader without arch specific data - those
474           should not enable this.
475
476 config MODULES_USE_ELF_RELA
477         bool
478         help
479           Modules only use ELF RELA relocations.  Modules with ELF REL
480           relocations will give an error.
481
482 config MODULES_USE_ELF_REL
483         bool
484         help
485           Modules only use ELF REL relocations.  Modules with ELF RELA
486           relocations will give an error.
487
488 config HAVE_UNDERSCORE_SYMBOL_PREFIX
489         bool
490         help
491           Some architectures generate an _ in front of C symbols; things like
492           module loading and assembly files need to know about this.
493
494 config HAVE_IRQ_EXIT_ON_IRQ_STACK
495         bool
496         help
497           Architecture doesn't only execute the irq handler on the irq stack
498           but also irq_exit(). This way we can process softirqs on this irq
499           stack instead of switching to a new one when we call __do_softirq()
500           in the end of an hardirq.
501           This spares a stack switch and improves cache usage on softirq
502           processing.
503
504 config PGTABLE_LEVELS
505         int
506         default 2
507
508 config ARCH_HAS_ELF_RANDOMIZE
509         bool
510         help
511           An architecture supports choosing randomized locations for
512           stack, mmap, brk, and ET_DYN. Defined functions:
513           - arch_mmap_rnd()
514           - arch_randomize_brk()
515
516 config HAVE_COPY_THREAD_TLS
517         bool
518         help
519           Architecture provides copy_thread_tls to accept tls argument via
520           normal C parameter passing, rather than extracting the syscall
521           argument from pt_regs.
522
523 #
524 # ABI hall of shame
525 #
526 config CLONE_BACKWARDS
527         bool
528         help
529           Architecture has tls passed as the 4th argument of clone(2),
530           not the 5th one.
531
532 config CLONE_BACKWARDS2
533         bool
534         help
535           Architecture has the first two arguments of clone(2) swapped.
536
537 config CLONE_BACKWARDS3
538         bool
539         help
540           Architecture has tls passed as the 3rd argument of clone(2),
541           not the 5th one.
542
543 config ODD_RT_SIGACTION
544         bool
545         help
546           Architecture has unusual rt_sigaction(2) arguments
547
548 config OLD_SIGSUSPEND
549         bool
550         help
551           Architecture has old sigsuspend(2) syscall, of one-argument variety
552
553 config OLD_SIGSUSPEND3
554         bool
555         help
556           Even weirder antique ABI - three-argument sigsuspend(2)
557
558 config OLD_SIGACTION
559         bool
560         help
561           Architecture has old sigaction(2) syscall.  Nope, not the same
562           as OLD_SIGSUSPEND | OLD_SIGSUSPEND3 - alpha has sigsuspend(2),
563           but fairly different variant of sigaction(2), thanks to OSF/1
564           compatibility...
565
566 config COMPAT_OLD_SIGACTION
567         bool
568
569 source "kernel/gcov/Kconfig"