blob: 6cf1b17a8df217138ff9c5a1da8eb677b3915c72 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Mathieu Desnoyersfb32e032008-02-02 15:10:33 -05002#
3# General architecture dependent options
4#
Mathieu Desnoyers125e5642008-02-02 15:10:36 -05005
Christoph Hellwig15724972018-07-31 13:39:30 +02006#
7# Note: arch/$(SRCARCH)/Kconfig needs to be included first so that it can
8# override the default values in this file.
9#
10source "arch/$(SRCARCH)/Kconfig"
11
Randy Dunlap22471e12018-07-31 13:39:33 +020012menu "General architecture-dependent options"
13
Hari Bathini692f66f2017-05-08 15:56:18 -070014config CRASH_CORE
15 bool
16
Dave Young2965faa2015-09-09 15:38:55 -070017config KEXEC_CORE
Hari Bathini692f66f2017-05-08 15:56:18 -070018 select CRASH_CORE
Dave Young2965faa2015-09-09 15:38:55 -070019 bool
20
Thiago Jung Bauermann467d2782016-12-19 16:22:32 -080021config HAVE_IMA_KEXEC
22 bool
23
Mathieu Desnoyers125e5642008-02-02 15:10:36 -050024config OPROFILE
Robert Richterb309a292010-02-26 15:01:23 +010025 tristate "OProfile system profiling"
Mathieu Desnoyers125e5642008-02-02 15:10:36 -050026 depends on PROFILING
27 depends on HAVE_OPROFILE
Ingo Molnard69d59f2008-12-12 09:38:57 +010028 select RING_BUFFER
Christian Borntraeger9a5963eb2009-09-16 21:56:49 +020029 select RING_BUFFER_ALLOW_SWAP
Mathieu Desnoyers125e5642008-02-02 15:10:36 -050030 help
31 OProfile is a profiling system capable of profiling the
32 whole system, include the kernel, kernel modules, libraries,
33 and applications.
34
35 If unsure, say N.
36
Jason Yeh4d4036e2009-07-08 13:49:38 +020037config OPROFILE_EVENT_MULTIPLEX
38 bool "OProfile multiplexing support (EXPERIMENTAL)"
39 default n
40 depends on OPROFILE && X86
41 help
42 The number of hardware counters is limited. The multiplexing
43 feature enables OProfile to gather more events than counters
44 are provided by the hardware. This is realized by switching
Masahiro Yamada9332ef92017-02-27 14:28:47 -080045 between events at a user specified time interval.
Jason Yeh4d4036e2009-07-08 13:49:38 +020046
47 If unsure, say N.
48
Mathieu Desnoyers125e5642008-02-02 15:10:36 -050049config HAVE_OPROFILE
Jan Beulich9ba16082008-10-15 22:01:38 -070050 bool
Mathieu Desnoyers125e5642008-02-02 15:10:36 -050051
Robert Richterdcfce4a2011-10-11 17:11:08 +020052config OPROFILE_NMI_TIMER
53 def_bool y
Anton Blanchardaf9feeb2015-04-09 12:52:55 +100054 depends on PERF_EVENTS && HAVE_PERF_EVENTS_NMI && !PPC64
Robert Richterdcfce4a2011-10-11 17:11:08 +020055
Mathieu Desnoyers125e5642008-02-02 15:10:36 -050056config KPROBES
57 bool "Kprobes"
Masami Hiramatsu05ed1602010-09-13 19:25:41 +090058 depends on MODULES
Mathieu Desnoyers125e5642008-02-02 15:10:36 -050059 depends on HAVE_KPROBES
Masami Hiramatsu05ed1602010-09-13 19:25:41 +090060 select KALLSYMS
Mathieu Desnoyers125e5642008-02-02 15:10:36 -050061 help
62 Kprobes allows you to trap at almost any kernel address and
63 execute a callback function. register_kprobe() establishes
64 a probepoint and specifies the callback. Kprobes is useful
65 for kernel debugging, non-intrusive instrumentation and testing.
66 If in doubt, say "N".
67
Steven Rostedt45f81b12010-10-29 12:33:43 -040068config JUMP_LABEL
Ingo Molnarc5905af2012-02-24 08:31:31 +010069 bool "Optimize very unlikely/likely branches"
Steven Rostedt45f81b12010-10-29 12:33:43 -040070 depends on HAVE_ARCH_JUMP_LABEL
71 help
Ingo Molnarc5905af2012-02-24 08:31:31 +010072 This option enables a transparent branch optimization that
73 makes certain almost-always-true or almost-always-false branch
74 conditions even cheaper to execute within the kernel.
Steven Rostedt45f81b12010-10-29 12:33:43 -040075
Ingo Molnarc5905af2012-02-24 08:31:31 +010076 Certain performance-sensitive kernel code, such as trace points,
77 scheduler functionality, networking code and KVM have such
78 branches and include support for this optimization technique.
79
80 If it is detected that the compiler has support for "asm goto",
81 the kernel will compile such branches with just a nop
82 instruction. When the condition flag is toggled to true, the
83 nop will be converted to a jump instruction to execute the
84 conditional block of instructions.
85
86 This technique lowers overhead and stress on the branch prediction
87 of the processor and generally makes the kernel faster. The update
88 of the condition is slower, but those are always very rare.
89
90 ( On 32-bit x86, the necessary options added to the compiler
91 flags may increase the size of the kernel slightly. )
Steven Rostedt45f81b12010-10-29 12:33:43 -040092
Peter Zijlstra1987c942015-07-27 18:32:09 +020093config STATIC_KEYS_SELFTEST
94 bool "Static key selftest"
95 depends on JUMP_LABEL
96 help
97 Boot time self-test of the branch patching code.
98
Masami Hiramatsuafd66252010-02-25 08:34:07 -050099config OPTPROBES
Masami Hiramatsu5cc718b2010-03-15 13:00:54 -0400100 def_bool y
101 depends on KPROBES && HAVE_OPTPROBES
Masami Hiramatsua30b85d2017-10-20 08:43:39 +0900102 select TASKS_RCU if PREEMPT
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500103
Masami Hiramatsue7dbfe32012-09-28 17:15:20 +0900104config KPROBES_ON_FTRACE
105 def_bool y
106 depends on KPROBES && HAVE_KPROBES_ON_FTRACE
107 depends on DYNAMIC_FTRACE_WITH_REGS
108 help
109 If function tracer is enabled and the arch supports full
110 passing of pt_regs to function tracing, then kprobes can
111 optimize on top of function tracing.
112
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530113config UPROBES
David A. Long09294e32014-03-07 10:32:22 -0500114 def_bool n
Allen Paise8f4aa62016-10-13 10:06:13 +0530115 depends on ARCH_SUPPORTS_UPROBES
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530116 help
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100117 Uprobes is the user-space counterpart to kprobes: they
118 enable instrumentation applications (such as 'perf probe')
119 to establish unintrusive probes in user-space binaries and
120 libraries, by executing handler functions when the probes
121 are hit by user-space applications.
122
123 ( These probes come in the form of single-byte breakpoints,
124 managed by the kernel and kept transparent to the probed
125 application. )
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530126
James Hoganc19fa942012-05-30 11:23:23 +0100127config HAVE_64BIT_ALIGNED_ACCESS
128 def_bool 64BIT && !HAVE_EFFICIENT_UNALIGNED_ACCESS
129 help
130 Some architectures require 64 bit accesses to be 64 bit
131 aligned, which also requires structs containing 64 bit values
132 to be 64 bit aligned too. This includes some 32 bit
133 architectures which can do 64 bit accesses, as well as 64 bit
134 architectures without unaligned access.
135
136 This symbol should be selected by an architecture if 64 bit
137 accesses are required to be 64 bit aligned in this way even
138 though it is not a 64 bit architecture.
139
140 See Documentation/unaligned-memory-access.txt for more
141 information on the topic of unaligned memory accesses.
142
Johannes Berg58340a02008-07-25 01:45:33 -0700143config HAVE_EFFICIENT_UNALIGNED_ACCESS
Jan Beulich9ba16082008-10-15 22:01:38 -0700144 bool
Johannes Berg58340a02008-07-25 01:45:33 -0700145 help
146 Some architectures are unable to perform unaligned accesses
147 without the use of get_unaligned/put_unaligned. Others are
148 unable to perform such accesses efficiently (e.g. trap on
149 unaligned access and require fixing it up in the exception
150 handler.)
151
152 This symbol should be selected by an architecture if it can
153 perform unaligned accesses efficiently to allow different
154 code paths to be selected for these cases. Some network
155 drivers, for example, could opt to not fix up alignment
156 problems with received packets if doing so would not help
157 much.
158
159 See Documentation/unaligned-memory-access.txt for more
160 information on the topic of unaligned memory accesses.
161
David Woodhousecf66bb92012-12-03 16:25:40 +0000162config ARCH_USE_BUILTIN_BSWAP
163 bool
164 help
165 Modern versions of GCC (since 4.4) have builtin functions
166 for handling byte-swapping. Using these, instead of the old
167 inline assembler that the architecture code provides in the
168 __arch_bswapXX() macros, allows the compiler to see what's
169 happening and offers more opportunity for optimisation. In
170 particular, the compiler will be able to combine the byteswap
171 with a nearby load or store and use load-and-swap or
172 store-and-swap instructions if the architecture has them. It
173 should almost *never* result in code which is worse than the
174 hand-coded assembler in <asm/swab.h>. But just in case it
175 does, the use of the builtins is optional.
176
177 Any architecture with load-and-swap or store-and-swap
178 instructions should set this. And it shouldn't hurt to set it
179 on architectures that don't have such instructions.
180
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -0800181config KRETPROBES
182 def_bool y
183 depends on KPROBES && HAVE_KRETPROBES
184
Avi Kivity7c68af62009-09-19 09:40:22 +0300185config USER_RETURN_NOTIFIER
186 bool
187 depends on HAVE_USER_RETURN_NOTIFIER
188 help
189 Provide a kernel-internal notification when a cpu is about to
190 switch to user mode.
191
Rik van Riel28b2ee22008-07-23 21:27:05 -0700192config HAVE_IOREMAP_PROT
Jan Beulich9ba16082008-10-15 22:01:38 -0700193 bool
Rik van Riel28b2ee22008-07-23 21:27:05 -0700194
Mathieu Desnoyers125e5642008-02-02 15:10:36 -0500195config HAVE_KPROBES
Jan Beulich9ba16082008-10-15 22:01:38 -0700196 bool
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -0800197
198config HAVE_KRETPROBES
Jan Beulich9ba16082008-10-15 22:01:38 -0700199 bool
Arthur Kepner74bc7ce2008-04-29 01:00:30 -0700200
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500201config HAVE_OPTPROBES
202 bool
Cong Wangd314d742012-03-23 15:01:51 -0700203
Masami Hiramatsue7dbfe32012-09-28 17:15:20 +0900204config HAVE_KPROBES_ON_FTRACE
205 bool
206
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900207config HAVE_FUNCTION_ERROR_INJECTION
Josef Bacik9802d862017-12-11 11:36:48 -0500208 bool
209
Petr Mladek42a0bb32016-05-20 17:00:33 -0700210config HAVE_NMI
211 bool
212
Roland McGrath1f5a4ad2008-07-25 19:45:57 -0700213#
214# An arch should select this if it provides all these things:
215#
216# task_pt_regs() in asm/processor.h or asm/ptrace.h
217# arch_has_single_step() if there is hardware single-step support
218# arch_has_block_step() if there is hardware block-step support
Roland McGrath1f5a4ad2008-07-25 19:45:57 -0700219# asm/syscall.h supplying asm-generic/syscall.h interface
220# linux/regset.h user_regset interfaces
221# CORE_DUMP_USE_REGSET #define'd in linux/elf.h
222# TIF_SYSCALL_TRACE calls tracehook_report_syscall_{entry,exit}
223# TIF_NOTIFY_RESUME calls tracehook_notify_resume()
224# signal delivery calls tracehook_signal_handler()
225#
226config HAVE_ARCH_TRACEHOOK
Jan Beulich9ba16082008-10-15 22:01:38 -0700227 bool
Roland McGrath1f5a4ad2008-07-25 19:45:57 -0700228
Marek Szyprowskic64be2b2011-12-29 13:09:51 +0100229config HAVE_DMA_CONTIGUOUS
230 bool
231
Thomas Gleixner29d5e042012-04-20 13:05:45 +0000232config GENERIC_SMP_IDLE_THREAD
233 bool
234
Kevin Hilman485cf5d2013-04-24 17:19:13 -0700235config GENERIC_IDLE_POLL_SETUP
236 bool
237
Daniel Micay6974f0c2017-07-12 14:36:10 -0700238config ARCH_HAS_FORTIFY_SOURCE
239 bool
240 help
241 An architecture should select this when it can successfully
242 build and run with CONFIG_FORTIFY_SOURCE.
243
Daniel Borkmannd2852a22017-02-21 16:09:33 +0100244# Select if arch has all set_memory_ro/rw/x/nx() functions in asm/cacheflush.h
245config ARCH_HAS_SET_MEMORY
246 bool
247
David Howells05008712018-01-02 15:12:01 +0000248# Select if arch init_task must go in the __init_task_data section
249config ARCH_TASK_STRUCT_ON_STACK
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +0000250 bool
251
Thomas Gleixnerf5e10282012-05-05 15:05:48 +0000252# Select if arch has its private alloc_task_struct() function
253config ARCH_TASK_STRUCT_ALLOCATOR
254 bool
255
Kees Cook59054292017-08-16 13:00:58 -0700256config HAVE_ARCH_THREAD_STRUCT_WHITELIST
257 bool
258 depends on !ARCH_TASK_STRUCT_ALLOCATOR
259 help
260 An architecture should select this to provide hardened usercopy
261 knowledge about what region of the thread_struct should be
262 whitelisted for copying to userspace. Normally this is only the
263 FPU registers. Specifically, arch_thread_struct_whitelist()
264 should be implemented. Without this, the entire thread_struct
265 field in task_struct will be left whitelisted.
266
Linus Torvaldsb235bee2016-06-24 15:09:37 -0700267# Select if arch has its private alloc_thread_stack() function
268config ARCH_THREAD_STACK_ALLOCATOR
Thomas Gleixnerf5e10282012-05-05 15:05:48 +0000269 bool
270
Ingo Molnar5aaeb5c2015-07-17 12:28:12 +0200271# Select if arch wants to size task_struct dynamically via arch_task_struct_size:
272config ARCH_WANTS_DYNAMIC_TASK_STRUCT
273 bool
274
Heiko Carstensf850c30c2010-02-10 17:25:17 +0100275config HAVE_REGS_AND_STACK_ACCESS_API
276 bool
Heiko Carstense01292b2010-02-18 14:25:21 +0100277 help
278 This symbol should be selected by an architecure if it supports
279 the API needed to access registers and stack entries from pt_regs,
280 declared in asm/ptrace.h
281 For example the kprobes-based event tracer needs this API.
Heiko Carstensf850c30c2010-02-10 17:25:17 +0100282
Mathieu Desnoyersd7822b12018-06-02 08:43:54 -0400283config HAVE_RSEQ
284 bool
285 depends on HAVE_REGS_AND_STACK_ACCESS_API
286 help
287 This symbol should be selected by an architecture if it
288 supports an implementation of restartable sequences.
289
David Brownell9483a572008-07-23 21:26:48 -0700290config HAVE_CLK
Jan Beulich9ba16082008-10-15 22:01:38 -0700291 bool
David Brownell9483a572008-07-23 21:26:48 -0700292 help
293 The <linux/clk.h> calls support software clock gating and
294 thus are a key power management tool on many systems.
295
K.Prasad62a038d2009-06-01 23:43:33 +0530296config HAVE_HW_BREAKPOINT
297 bool
Frederic Weisbecker99e8c5a2009-12-17 01:33:54 +0100298 depends on PERF_EVENTS
K.Prasad62a038d2009-06-01 23:43:33 +0530299
Frederic Weisbecker01027522010-04-11 18:55:56 +0200300config HAVE_MIXED_BREAKPOINTS_REGS
301 bool
302 depends on HAVE_HW_BREAKPOINT
303 help
304 Depending on the arch implementation of hardware breakpoints,
305 some of them have separate registers for data and instruction
306 breakpoints addresses, others have mixed registers to store
307 them but define the access type in a control register.
308 Select this option if your arch implements breakpoints under the
309 latter fashion.
310
Avi Kivity7c68af62009-09-19 09:40:22 +0300311config HAVE_USER_RETURN_NOTIFIER
312 bool
Ingo Molnara1922ed2009-09-07 08:19:51 +0200313
Frederic Weisbeckerc01d4322010-05-15 22:57:48 +0200314config HAVE_PERF_EVENTS_NMI
315 bool
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200316 help
317 System hardware can generate an NMI using the perf event
318 subsystem. Also has support for calculating CPU cycle events
319 to determine how many clock cycles in a given period.
Frederic Weisbeckerc01d4322010-05-15 22:57:48 +0200320
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700321config HAVE_HARDLOCKUP_DETECTOR_PERF
322 bool
323 depends on HAVE_PERF_EVENTS_NMI
324 help
325 The arch chooses to use the generic perf-NMI-based hardlockup
326 detector. Must define HAVE_PERF_EVENTS_NMI.
327
328config HAVE_NMI_WATCHDOG
329 depends on HAVE_NMI
330 bool
331 help
332 The arch provides a low level NMI watchdog. It provides
333 asm/nmi.h, and defines its own arch_touch_nmi_watchdog().
334
335config HAVE_HARDLOCKUP_DETECTOR_ARCH
336 bool
337 select HAVE_NMI_WATCHDOG
338 help
339 The arch chooses to provide its own hardlockup detector, which is
340 a superset of the HAVE_NMI_WATCHDOG. It also conforms to config
341 interfaces and parameters provided by hardlockup detector subsystem.
342
Jiri Olsac5e63192012-08-07 15:20:36 +0200343config HAVE_PERF_REGS
344 bool
345 help
346 Support selective register dumps for perf events. This includes
347 bit-mapping of each registers and a unique architecture id.
348
Jiri Olsac5ebced2012-08-07 15:20:40 +0200349config HAVE_PERF_USER_STACK_DUMP
350 bool
351 help
352 Support user stack dumps for perf event samples. This needs
353 access to the user stack pointer which is not unified across
354 architectures.
355
Jason Baronbf5438fc2010-09-17 11:09:00 -0400356config HAVE_ARCH_JUMP_LABEL
357 bool
358
Peter Zijlstra26723912011-05-24 17:12:00 -0700359config HAVE_RCU_TABLE_FREE
360 bool
361
Huang Yingdf013ff2011-07-13 13:14:22 +0800362config ARCH_HAVE_NMI_SAFE_CMPXCHG
363 bool
364
Heiko Carstens43570fd2012-01-12 17:17:27 -0800365config HAVE_ALIGNED_STRUCT_PAGE
366 bool
367 help
368 This makes sure that struct pages are double word aligned and that
369 e.g. the SLUB allocator can perform double word atomic operations
370 on a struct page for better performance. However selecting this
371 might increase the size of a struct page by a word.
372
Heiko Carstens41561532012-01-12 17:17:30 -0800373config HAVE_CMPXCHG_LOCAL
374 bool
375
Heiko Carstens25654092012-01-12 17:17:33 -0800376config HAVE_CMPXCHG_DOUBLE
377 bool
378
Paul E. McKenney77e58492017-01-14 13:32:50 -0800379config ARCH_WEAK_RELEASE_ACQUIRE
380 bool
381
Will Deaconc1d7e012012-07-30 14:42:46 -0700382config ARCH_WANT_IPC_PARSE_VERSION
383 bool
384
385config ARCH_WANT_COMPAT_IPC_PARSE_VERSION
386 bool
387
Chris Metcalf48b25c42012-03-15 13:13:38 -0400388config ARCH_WANT_OLD_COMPAT_IPC
Will Deaconc1d7e012012-07-30 14:42:46 -0700389 select ARCH_WANT_COMPAT_IPC_PARSE_VERSION
Chris Metcalf48b25c42012-03-15 13:13:38 -0400390 bool
391
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500392config HAVE_ARCH_SECCOMP_FILTER
393 bool
394 help
Will Drewryfb0fadf2012-04-12 16:48:02 -0500395 An arch should select this symbol if it provides all of these things:
Will Drewrybb6ea432012-04-12 16:48:01 -0500396 - syscall_get_arch()
397 - syscall_get_arguments()
398 - syscall_rollback()
399 - syscall_set_return_value()
Will Drewryfb0fadf2012-04-12 16:48:02 -0500400 - SIGSYS siginfo_t support
401 - secure_computing is called from a ptrace_event()-safe context
402 - secure_computing return value is checked and a return value of -1
403 results in the system call being skipped immediately.
Kees Cook48dc92b2014-06-25 16:08:24 -0700404 - seccomp syscall wired up
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500405
406config SECCOMP_FILTER
407 def_bool y
408 depends on HAVE_ARCH_SECCOMP_FILTER && SECCOMP && NET
409 help
410 Enable tasks to build secure computing environments defined
411 in terms of Berkeley Packet Filter programs which implement
412 task-defined system call filtering polices.
413
Mauro Carvalho Chehab5fb94e92018-05-08 15:14:57 -0300414 See Documentation/userspace-api/seccomp_filter.rst for details.
Will Drewrye2cfabdf2012-04-12 16:47:57 -0500415
Masahiro Yamada59f53852018-05-28 18:22:06 +0900416preferred-plugin-hostcc := $(if-success,[ $(gcc-version) -ge 40800 ],$(HOSTCXX),$(HOSTCC))
417
418config PLUGIN_HOSTCC
419 string
420 default "$(shell,$(srctree)/scripts/gcc-plugin.sh "$(preferred-plugin-hostcc)" "$(HOSTCXX)" "$(CC)")"
421 help
422 Host compiler used to build GCC plugins. This can be $(HOSTCXX),
423 $(HOSTCC), or a null string if GCC plugin is unsupported.
424
Emese Revfy6b90bd42016-05-24 00:09:38 +0200425config HAVE_GCC_PLUGINS
426 bool
427 help
428 An arch should select this symbol if it supports building with
429 GCC plugins.
430
431menuconfig GCC_PLUGINS
432 bool "GCC plugins"
433 depends on HAVE_GCC_PLUGINS
Masahiro Yamada59f53852018-05-28 18:22:06 +0900434 depends on PLUGIN_HOSTCC != ""
Emese Revfy6b90bd42016-05-24 00:09:38 +0200435 help
436 GCC plugins are loadable modules that provide extra features to the
437 compiler. They are useful for runtime instrumentation and static analysis.
438
439 See Documentation/gcc-plugins.txt for details.
440
Emese Revfy0dae7762016-05-24 00:10:35 +0200441config GCC_PLUGIN_CYC_COMPLEXITY
Kees Cook215e2aa2016-11-08 16:27:03 -0800442 bool "Compute the cyclomatic complexity of a function" if EXPERT
Emese Revfy0dae7762016-05-24 00:10:35 +0200443 depends on GCC_PLUGINS
Masahiro Yamada1658dce2018-05-28 18:22:07 +0900444 depends on !COMPILE_TEST # too noisy
Emese Revfy0dae7762016-05-24 00:10:35 +0200445 help
446 The complexity M of a function's control flow graph is defined as:
447 M = E - N + 2P
448 where
449
450 E = the number of edges
451 N = the number of nodes
452 P = the number of connected components (exit nodes).
453
Kees Cook215e2aa2016-11-08 16:27:03 -0800454 Enabling this plugin reports the complexity to stderr during the
455 build. It mainly serves as a simple example of how to create a
456 gcc plugin for the kernel.
457
Emese Revfy543c37c2016-05-24 00:11:37 +0200458config GCC_PLUGIN_SANCOV
459 bool
460 depends on GCC_PLUGINS
461 help
462 This plugin inserts a __sanitizer_cov_trace_pc() call at the start of
463 basic blocks. It supports all gcc versions with plugin support (from
464 gcc-4.5 on). It is based on the commit "Add fuzzing coverage support"
465 by Dmitry Vyukov <dvyukov@google.com>.
466
Emese Revfy38addce2016-06-20 20:41:19 +0200467config GCC_PLUGIN_LATENT_ENTROPY
468 bool "Generate some entropy during boot and runtime"
469 depends on GCC_PLUGINS
470 help
471 By saying Y here the kernel will instrument some kernel code to
472 extract some entropy from both original and artificially created
473 program state. This will help especially embedded systems where
474 there is little 'natural' source of entropy normally. The cost
475 is some slowdown of the boot process (about 0.5%) and fork and
476 irq processing.
477
478 Note that entropy extracted this way is not cryptographically
479 secure!
480
481 This plugin was ported from grsecurity/PaX. More information at:
482 * https://grsecurity.net/
483 * https://pax.grsecurity.net/
484
Kees Cookc61f13e2017-01-13 11:14:39 -0800485config GCC_PLUGIN_STRUCTLEAK
486 bool "Force initialization of variables containing userspace addresses"
487 depends on GCC_PLUGINS
Dmitry Vyukovc9cf87e2018-05-11 16:01:35 -0700488 # Currently STRUCTLEAK inserts initialization out of live scope of
489 # variables from KASAN point of view. This leads to KASAN false
490 # positive reports. Prohibit this combination for now.
491 depends on !KASAN_EXTRA
Kees Cookc61f13e2017-01-13 11:14:39 -0800492 help
Jean Delvaref136e092017-04-24 08:52:37 +0200493 This plugin zero-initializes any structures containing a
Kees Cookc61f13e2017-01-13 11:14:39 -0800494 __user attribute. This can prevent some classes of information
495 exposures.
496
497 This plugin was ported from grsecurity/PaX. More information at:
498 * https://grsecurity.net/
499 * https://pax.grsecurity.net/
500
Ard Biesheuvelf7dd2502017-08-06 12:06:27 +0100501config GCC_PLUGIN_STRUCTLEAK_BYREF_ALL
502 bool "Force initialize all struct type variables passed by reference"
503 depends on GCC_PLUGIN_STRUCTLEAK
Masahiro Yamadacaa91ba2018-06-01 13:32:00 +0900504 depends on !COMPILE_TEST
Ard Biesheuvelf7dd2502017-08-06 12:06:27 +0100505 help
506 Zero initialize any struct type local variable that may be passed by
507 reference without having been initialized.
508
Kees Cookc61f13e2017-01-13 11:14:39 -0800509config GCC_PLUGIN_STRUCTLEAK_VERBOSE
510 bool "Report forcefully initialized variables"
511 depends on GCC_PLUGIN_STRUCTLEAK
Masahiro Yamada1658dce2018-05-28 18:22:07 +0900512 depends on !COMPILE_TEST # too noisy
Kees Cookc61f13e2017-01-13 11:14:39 -0800513 help
514 This option will cause a warning to be printed each time the
515 structleak plugin finds a variable it thinks needs to be
516 initialized. Since not all existing initializers are detected
517 by the plugin, this can produce false positive warnings.
518
Kees Cook313dd1b62017-05-05 23:37:45 -0700519config GCC_PLUGIN_RANDSTRUCT
520 bool "Randomize layout of sensitive kernel structures"
521 depends on GCC_PLUGINS
522 select MODVERSIONS if MODULES
523 help
Kees Cook92253312017-05-05 23:56:07 -0700524 If you say Y here, the layouts of structures that are entirely
525 function pointers (and have not been manually annotated with
526 __no_randomize_layout), or structures that have been explicitly
527 marked with __randomize_layout, will be randomized at compile-time.
528 This can introduce the requirement of an additional information
529 exposure vulnerability for exploits targeting these structure
530 types.
Kees Cook313dd1b62017-05-05 23:37:45 -0700531
532 Enabling this feature will introduce some performance impact,
533 slightly increase memory usage, and prevent the use of forensic
534 tools like Volatility against the system (unless the kernel
535 source tree isn't cleaned after kernel installation).
536
537 The seed used for compilation is located at
538 scripts/gcc-plgins/randomize_layout_seed.h. It remains after
539 a make clean to allow for external modules to be compiled with
540 the existing seed and will be removed by a make mrproper or
541 make distclean.
542
543 Note that the implementation requires gcc 4.7 or newer.
544
545 This plugin was ported from grsecurity/PaX. More information at:
546 * https://grsecurity.net/
547 * https://pax.grsecurity.net/
548
549config GCC_PLUGIN_RANDSTRUCT_PERFORMANCE
550 bool "Use cacheline-aware structure randomization"
551 depends on GCC_PLUGIN_RANDSTRUCT
Masahiro Yamada1658dce2018-05-28 18:22:07 +0900552 depends on !COMPILE_TEST # do not reduce test coverage
Kees Cook313dd1b62017-05-05 23:37:45 -0700553 help
554 If you say Y here, the RANDSTRUCT randomization will make a
555 best effort at restricting randomization to cacheline-sized
556 groups of elements. It will further not randomize bitfields
557 in structures. This reduces the performance hit of RANDSTRUCT
558 at the cost of weakened randomization.
559
Masahiro Yamadad148eac2018-06-14 19:36:45 +0900560config HAVE_STACKPROTECTOR
Kees Cook19952a92013-12-19 11:35:58 -0800561 bool
562 help
563 An arch should select this symbol if:
Kees Cook19952a92013-12-19 11:35:58 -0800564 - it has implemented a stack canary (e.g. __stack_chk_guard)
565
Masahiro Yamada2a61f472018-05-28 18:22:00 +0900566config CC_HAS_STACKPROTECTOR_NONE
567 def_bool $(cc-option,-fno-stack-protector)
568
Linus Torvalds050e9ba2018-06-14 12:21:18 +0900569config STACKPROTECTOR
Masahiro Yamada2a61f472018-05-28 18:22:00 +0900570 bool "Stack Protector buffer overflow detection"
Masahiro Yamadad148eac2018-06-14 19:36:45 +0900571 depends on HAVE_STACKPROTECTOR
Masahiro Yamada2a61f472018-05-28 18:22:00 +0900572 depends on $(cc-option,-fstack-protector)
573 default y
Kees Cook87796572013-12-19 11:35:59 -0800574 help
575 This option turns on the "stack-protector" GCC feature. This
Kees Cook19952a92013-12-19 11:35:58 -0800576 feature puts, at the beginning of functions, a canary value on
577 the stack just before the return address, and validates
578 the value just before actually returning. Stack based buffer
579 overflows (that need to overwrite this return address) now also
580 overwrite the canary, which gets detected and the attack is then
581 neutralized via a kernel panic.
582
Kees Cook87796572013-12-19 11:35:59 -0800583 Functions will have the stack-protector canary logic added if they
584 have an 8-byte or larger character array on the stack.
585
Kees Cook19952a92013-12-19 11:35:58 -0800586 This feature requires gcc version 4.2 or above, or a distribution
Kees Cook87796572013-12-19 11:35:59 -0800587 gcc with the feature backported ("-fstack-protector").
588
589 On an x86 "defconfig" build, this feature adds canary checks to
590 about 3% of all kernel functions, which increases kernel code size
591 by about 0.3%.
592
Linus Torvalds050e9ba2018-06-14 12:21:18 +0900593config STACKPROTECTOR_STRONG
Masahiro Yamada2a61f472018-05-28 18:22:00 +0900594 bool "Strong Stack Protector"
Linus Torvalds050e9ba2018-06-14 12:21:18 +0900595 depends on STACKPROTECTOR
Masahiro Yamada2a61f472018-05-28 18:22:00 +0900596 depends on $(cc-option,-fstack-protector-strong)
597 default y
Kees Cook87796572013-12-19 11:35:59 -0800598 help
599 Functions will have the stack-protector canary logic added in any
600 of the following conditions:
601
602 - local variable's address used as part of the right hand side of an
603 assignment or function argument
604 - local variable is an array (or union containing an array),
605 regardless of array type or length
606 - uses register local variables
607
608 This feature requires gcc version 4.9 or above, or a distribution
609 gcc with the feature backported ("-fstack-protector-strong").
610
611 On an x86 "defconfig" build, this feature adds canary checks to
612 about 20% of all kernel functions, which increases the kernel code
613 size by about 2%.
614
Kees Cook0f60a8e2016-07-12 16:19:48 -0700615config HAVE_ARCH_WITHIN_STACK_FRAMES
616 bool
617 help
618 An architecture should select this if it can walk the kernel stack
619 frames to determine if an object is part of either the arguments
620 or local variables (i.e. that it excludes saved return addresses,
621 and similar) by implementing an inline arch_within_stack_frames(),
622 which is used by CONFIG_HARDENED_USERCOPY.
623
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100624config HAVE_CONTEXT_TRACKING
Frederic Weisbecker2b1d5022012-07-11 20:26:30 +0200625 bool
626 help
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100627 Provide kernel/user boundaries probes necessary for subsystems
628 that need it, such as userspace RCU extended quiescent state.
629 Syscalls need to be wrapped inside user_exit()-user_enter() through
630 the slow path using TIF_NOHZ flag. Exceptions handlers must be
631 wrapped as well. Irqs are already protected inside
632 rcu_irq_enter/rcu_irq_exit() but preemption or signal handling on
633 irq exit still need to be protected.
Frederic Weisbecker2b1d5022012-07-11 20:26:30 +0200634
Frederic Weisbeckerb9527412012-06-16 15:39:34 +0200635config HAVE_VIRT_CPU_ACCOUNTING
636 bool
637
Stanislaw Gruszka40565b52016-11-15 03:06:51 +0100638config ARCH_HAS_SCALED_CPUTIME
639 bool
640
Kevin Hilman554b0002013-09-16 15:28:21 -0700641config HAVE_VIRT_CPU_ACCOUNTING_GEN
642 bool
643 default y if 64BIT
644 help
645 With VIRT_CPU_ACCOUNTING_GEN, cputime_t becomes 64-bit.
646 Before enabling this option, arch code must be audited
647 to ensure there are no races in concurrent read/write of
648 cputime_t. For example, reading/writing 64-bit cputime_t on
649 some 32-bit arches may require multiple accesses, so proper
650 locking is needed to protect against concurrent accesses.
651
652
Frederic Weisbeckerfdf9c352012-09-09 14:56:31 +0200653config HAVE_IRQ_TIME_ACCOUNTING
654 bool
655 help
656 Archs need to ensure they use a high enough resolution clock to
657 support irq time accounting and then call enable_sched_clock_irqtime().
658
Gerald Schaefer15626062012-10-08 16:30:04 -0700659config HAVE_ARCH_TRANSPARENT_HUGEPAGE
660 bool
661
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800662config HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
663 bool
664
Toshi Kani0ddab1d2015-04-14 15:47:20 -0700665config HAVE_ARCH_HUGE_VMAP
666 bool
667
Pavel Emelyanov0f8975e2013-07-03 15:01:20 -0700668config HAVE_ARCH_SOFT_DIRTY
669 bool
670
David Howells786d35d2012-09-28 14:31:03 +0930671config HAVE_MOD_ARCH_SPECIFIC
672 bool
673 help
674 The arch uses struct mod_arch_specific to store data. Many arches
675 just need a simple module loader without arch specific data - those
676 should not enable this.
677
678config MODULES_USE_ELF_RELA
679 bool
680 help
681 Modules only use ELF RELA relocations. Modules with ELF REL
682 relocations will give an error.
683
684config MODULES_USE_ELF_REL
685 bool
686 help
687 Modules only use ELF REL relocations. Modules with ELF RELA
688 relocations will give an error.
689
Frederic Weisbeckercc1f0272013-09-24 17:17:47 +0200690config HAVE_IRQ_EXIT_ON_IRQ_STACK
691 bool
692 help
693 Architecture doesn't only execute the irq handler on the irq stack
694 but also irq_exit(). This way we can process softirqs on this irq
695 stack instead of switching to a new one when we call __do_softirq()
696 in the end of an hardirq.
697 This spares a stack switch and improves cache usage on softirq
698 processing.
699
Kirill A. Shutemov235a8f02015-04-14 15:46:17 -0700700config PGTABLE_LEVELS
701 int
702 default 2
703
Kees Cook2b68f6c2015-04-14 15:48:00 -0700704config ARCH_HAS_ELF_RANDOMIZE
705 bool
706 help
707 An architecture supports choosing randomized locations for
708 stack, mmap, brk, and ET_DYN. Defined functions:
709 - arch_mmap_rnd()
Kees Cook204db6e2015-04-14 15:48:12 -0700710 - arch_randomize_brk()
Kees Cook2b68f6c2015-04-14 15:48:00 -0700711
Daniel Cashmand07e2252016-01-14 15:19:53 -0800712config HAVE_ARCH_MMAP_RND_BITS
713 bool
714 help
715 An arch should select this symbol if it supports setting a variable
716 number of bits for use in establishing the base address for mmap
717 allocations, has MMU enabled and provides values for both:
718 - ARCH_MMAP_RND_BITS_MIN
719 - ARCH_MMAP_RND_BITS_MAX
720
Jiri Slaby5f56a5d2016-05-20 17:00:16 -0700721config HAVE_EXIT_THREAD
722 bool
723 help
724 An architecture implements exit_thread.
725
Daniel Cashmand07e2252016-01-14 15:19:53 -0800726config ARCH_MMAP_RND_BITS_MIN
727 int
728
729config ARCH_MMAP_RND_BITS_MAX
730 int
731
732config ARCH_MMAP_RND_BITS_DEFAULT
733 int
734
735config ARCH_MMAP_RND_BITS
736 int "Number of bits to use for ASLR of mmap base address" if EXPERT
737 range ARCH_MMAP_RND_BITS_MIN ARCH_MMAP_RND_BITS_MAX
738 default ARCH_MMAP_RND_BITS_DEFAULT if ARCH_MMAP_RND_BITS_DEFAULT
739 default ARCH_MMAP_RND_BITS_MIN
740 depends on HAVE_ARCH_MMAP_RND_BITS
741 help
742 This value can be used to select the number of bits to use to
743 determine the random offset to the base address of vma regions
744 resulting from mmap allocations. This value will be bounded
745 by the architecture's minimum and maximum supported values.
746
747 This value can be changed after boot using the
748 /proc/sys/vm/mmap_rnd_bits tunable
749
750config HAVE_ARCH_MMAP_RND_COMPAT_BITS
751 bool
752 help
753 An arch should select this symbol if it supports running applications
754 in compatibility mode, supports setting a variable number of bits for
755 use in establishing the base address for mmap allocations, has MMU
756 enabled and provides values for both:
757 - ARCH_MMAP_RND_COMPAT_BITS_MIN
758 - ARCH_MMAP_RND_COMPAT_BITS_MAX
759
760config ARCH_MMAP_RND_COMPAT_BITS_MIN
761 int
762
763config ARCH_MMAP_RND_COMPAT_BITS_MAX
764 int
765
766config ARCH_MMAP_RND_COMPAT_BITS_DEFAULT
767 int
768
769config ARCH_MMAP_RND_COMPAT_BITS
770 int "Number of bits to use for ASLR of mmap base address for compatible applications" if EXPERT
771 range ARCH_MMAP_RND_COMPAT_BITS_MIN ARCH_MMAP_RND_COMPAT_BITS_MAX
772 default ARCH_MMAP_RND_COMPAT_BITS_DEFAULT if ARCH_MMAP_RND_COMPAT_BITS_DEFAULT
773 default ARCH_MMAP_RND_COMPAT_BITS_MIN
774 depends on HAVE_ARCH_MMAP_RND_COMPAT_BITS
775 help
776 This value can be used to select the number of bits to use to
777 determine the random offset to the base address of vma regions
778 resulting from mmap allocations for compatible applications This
779 value will be bounded by the architecture's minimum and maximum
780 supported values.
781
782 This value can be changed after boot using the
783 /proc/sys/vm/mmap_rnd_compat_bits tunable
784
Dmitry Safonov1b028f72017-03-06 17:17:19 +0300785config HAVE_ARCH_COMPAT_MMAP_BASES
786 bool
787 help
788 This allows 64bit applications to invoke 32-bit mmap() syscall
789 and vice-versa 32-bit applications to call 64-bit mmap().
790 Required for applications doing different bitness syscalls.
791
Josh Triplett3033f14a2015-06-25 15:01:19 -0700792config HAVE_COPY_THREAD_TLS
793 bool
794 help
795 Architecture provides copy_thread_tls to accept tls argument via
796 normal C parameter passing, rather than extracting the syscall
797 argument from pt_regs.
798
Josh Poimboeufb9ab5eb2016-02-28 22:22:42 -0600799config HAVE_STACK_VALIDATION
800 bool
801 help
802 Architecture supports the 'objtool check' host tool command, which
803 performs compile-time stack metadata validation.
804
Josh Poimboeufaf085d92017-02-13 19:42:28 -0600805config HAVE_RELIABLE_STACKTRACE
806 bool
807 help
808 Architecture has a save_stack_trace_tsk_reliable() function which
809 only returns a stack trace if it can guarantee the trace is reliable.
810
George Spelvin468a9422016-05-26 22:11:51 -0400811config HAVE_ARCH_HASH
812 bool
813 default n
814 help
815 If this is set, the architecture provides an <asm/hash.h>
816 file which provides platform-specific implementations of some
817 functions in <linux/hash.h> or fs/namei.c.
818
William Breathitt Gray3a495512016-05-27 18:08:27 -0400819config ISA_BUS_API
820 def_bool ISA
821
Al Virod2125042012-10-23 13:17:59 -0400822#
823# ABI hall of shame
824#
825config CLONE_BACKWARDS
826 bool
827 help
828 Architecture has tls passed as the 4th argument of clone(2),
829 not the 5th one.
830
831config CLONE_BACKWARDS2
832 bool
833 help
834 Architecture has the first two arguments of clone(2) swapped.
835
Michal Simekdfa97712013-08-13 16:00:53 -0700836config CLONE_BACKWARDS3
837 bool
838 help
839 Architecture has tls passed as the 3rd argument of clone(2),
840 not the 5th one.
841
Al Viroeaca6ea2012-11-25 23:12:10 -0500842config ODD_RT_SIGACTION
843 bool
844 help
845 Architecture has unusual rt_sigaction(2) arguments
846
Al Viro0a0e8cd2012-12-25 16:04:12 -0500847config OLD_SIGSUSPEND
848 bool
849 help
850 Architecture has old sigsuspend(2) syscall, of one-argument variety
851
852config OLD_SIGSUSPEND3
853 bool
854 help
855 Even weirder antique ABI - three-argument sigsuspend(2)
856
Al Viro495dfbf2012-12-25 19:09:45 -0500857config OLD_SIGACTION
858 bool
859 help
860 Architecture has old sigaction(2) syscall. Nope, not the same
861 as OLD_SIGSUSPEND | OLD_SIGSUSPEND3 - alpha has sigsuspend(2),
862 but fairly different variant of sigaction(2), thanks to OSF/1
863 compatibility...
864
865config COMPAT_OLD_SIGACTION
866 bool
867
Deepa Dinamanid4703dd2018-03-13 21:03:27 -0700868config 64BIT_TIME
869 def_bool ARCH_HAS_64BIT_TIME
870 help
871 This should be selected by all architectures that need to support
872 new system calls with a 64-bit time_t. This is relevant on all 32-bit
873 architectures, and 64-bit architectures as part of compat syscall
874 handling.
875
Deepa Dinamani17435e52018-03-13 21:03:28 -0700876config COMPAT_32BIT_TIME
877 def_bool (!64BIT && 64BIT_TIME) || COMPAT
878 help
879 This enables 32 bit time_t support in addition to 64 bit time_t support.
880 This is relevant on all 32-bit architectures, and 64-bit architectures
881 as part of compat syscall handling.
882
Christoph Hellwig0d4a6192016-01-20 15:01:22 -0800883config ARCH_NO_COHERENT_DMA_MMAP
884 bool
885
Christoph Hellwig87a4c372018-07-31 13:39:32 +0200886config ARCH_NO_PREEMPT
887 bool
888
Zhaoxiu Zengfff7fb02016-05-20 17:03:57 -0700889config CPU_NO_EFFICIENT_FFS
890 def_bool n
891
Andy Lutomirskiba14a192016-08-11 02:35:21 -0700892config HAVE_ARCH_VMAP_STACK
893 def_bool n
894 help
895 An arch should select this symbol if it can support kernel stacks
896 in vmalloc space. This means:
897
898 - vmalloc space must be large enough to hold many kernel stacks.
899 This may rule out many 32-bit architectures.
900
901 - Stacks in vmalloc space need to work reliably. For example, if
902 vmap page tables are created on demand, either this mechanism
903 needs to work while the stack points to a virtual address with
904 unpopulated page tables or arch code (switch_to() and switch_mm(),
905 most likely) needs to ensure that the stack's page table entries
906 are populated before running on a possibly unpopulated stack.
907
908 - If the stack overflows into a guard page, something reasonable
909 should happen. The definition of "reasonable" is flexible, but
910 instantly rebooting without logging anything would be unfriendly.
911
912config VMAP_STACK
913 default y
914 bool "Use a virtually-mapped stack"
915 depends on HAVE_ARCH_VMAP_STACK && !KASAN
916 ---help---
917 Enable this if you want the use virtually-mapped kernel stacks
918 with guard pages. This causes kernel stack overflows to be
919 caught immediately rather than causing difficult-to-diagnose
920 corruption.
921
922 This is presently incompatible with KASAN because KASAN expects
923 the stack to map directly to the KASAN shadow map using a formula
924 that is incorrect if the stack is in vmalloc space.
925
Laura Abbottad21fc42017-02-06 16:31:57 -0800926config ARCH_OPTIONAL_KERNEL_RWX
927 def_bool n
928
929config ARCH_OPTIONAL_KERNEL_RWX_DEFAULT
930 def_bool n
931
932config ARCH_HAS_STRICT_KERNEL_RWX
933 def_bool n
934
Laura Abbott0f5bf6d2017-02-06 16:31:58 -0800935config STRICT_KERNEL_RWX
Laura Abbottad21fc42017-02-06 16:31:57 -0800936 bool "Make kernel text and rodata read-only" if ARCH_OPTIONAL_KERNEL_RWX
937 depends on ARCH_HAS_STRICT_KERNEL_RWX
938 default !ARCH_OPTIONAL_KERNEL_RWX || ARCH_OPTIONAL_KERNEL_RWX_DEFAULT
939 help
940 If this is set, kernel text and rodata memory will be made read-only,
941 and non-text memory will be made non-executable. This provides
942 protection against certain security exploits (e.g. executing the heap
943 or modifying text)
944
945 These features are considered standard security practice these days.
946 You should say Y here in almost all cases.
947
948config ARCH_HAS_STRICT_MODULE_RWX
949 def_bool n
950
Laura Abbott0f5bf6d2017-02-06 16:31:58 -0800951config STRICT_MODULE_RWX
Laura Abbottad21fc42017-02-06 16:31:57 -0800952 bool "Set loadable kernel module data as NX and text as RO" if ARCH_OPTIONAL_KERNEL_RWX
953 depends on ARCH_HAS_STRICT_MODULE_RWX && MODULES
954 default !ARCH_OPTIONAL_KERNEL_RWX || ARCH_OPTIONAL_KERNEL_RWX_DEFAULT
955 help
956 If this is set, module text and rodata memory will be made read-only,
957 and non-text memory will be made non-executable. This provides
958 protection against certain security exploits (e.g. writing to text)
959
Christoph Hellwigea8c64a2018-01-10 16:21:13 +0100960# select if the architecture provides an asm/dma-direct.h header
961config ARCH_HAS_PHYS_TO_DMA
962 bool
963
Kees Cook7a46ec02017-08-15 09:19:24 -0700964config ARCH_HAS_REFCOUNT
965 bool
966 help
967 An architecture selects this when it has implemented refcount_t
968 using open coded assembly primitives that provide an optimized
969 refcount_t implementation, possibly at the expense of some full
970 refcount state checks of CONFIG_REFCOUNT_FULL=y.
971
972 The refcount overflow check behavior, however, must be retained.
973 Catching overflows is the primary security concern for protecting
974 against bugs in reference counts.
975
Kees Cookfd25d19f2017-06-21 13:00:26 -0700976config REFCOUNT_FULL
977 bool "Perform full reference count validation at the expense of speed"
978 help
979 Enabling this switches the refcounting infrastructure from a fast
980 unchecked atomic_t implementation to a fully state checked
981 implementation, which can be (slightly) slower but provides protections
982 against various use-after-free conditions that can be used in
983 security flaw exploits.
984
Peter Oberparleiter2521f2c2009-06-17 16:28:08 -0700985source "kernel/gcov/Kconfig"
Randy Dunlap22471e12018-07-31 13:39:33 +0200986
987endmenu