xref: /linux/samples/Kconfig (revision 7d4e49a77d9930c69751b9192448fda6ff9100f1)
1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
2267c4025SMathieu Desnoyersmenuconfig SAMPLES
3267c4025SMathieu Desnoyers	bool "Sample kernel code"
4267c4025SMathieu Desnoyers	help
5267c4025SMathieu Desnoyers	  You can build and test sample kernel code here.
6267c4025SMathieu Desnoyers
7267c4025SMathieu Desnoyersif SAMPLES
8267c4025SMathieu Desnoyers
987ffbba9SMasahiro Yamadaconfig SAMPLE_AUXDISPLAY
1087ffbba9SMasahiro Yamada	bool "auxdisplay sample"
1187ffbba9SMasahiro Yamada	depends on CC_CAN_LINK
1287ffbba9SMasahiro Yamada
139cfe06f8SSteven Rostedtconfig SAMPLE_TRACE_EVENTS
1496d17980SLi Zefan	tristate "Build trace_events examples -- loadable modules only"
1596d17980SLi Zefan	depends on EVENT_TRACING && m
169cfe06f8SSteven Rostedt	help
17953c2f05SSteven Rostedt (Google)	  This builds the trace event example module.
18953c2f05SSteven Rostedt (Google)
19953c2f05SSteven Rostedt (Google)config SAMPLE_TRACE_CUSTOM_EVENTS
20953c2f05SSteven Rostedt (Google)	tristate "Build custom trace event example -- loadable modules only"
21953c2f05SSteven Rostedt (Google)	depends on EVENT_TRACING && m
22953c2f05SSteven Rostedt (Google)	help
23953c2f05SSteven Rostedt (Google)	  This builds the custom trace event example module.
249cfe06f8SSteven Rostedt
25aad108aaSSteven Rostedt (Red Hat)config SAMPLE_TRACE_PRINTK
26aad108aaSSteven Rostedt (Red Hat)        tristate "Build trace_printk module - tests various trace_printk formats"
27aad108aaSSteven Rostedt (Red Hat)	depends on EVENT_TRACING && m
28aad108aaSSteven Rostedt (Red Hat)	help
29aad108aaSSteven Rostedt (Red Hat)	 This builds a module that calls trace_printk() and can be used to
30aad108aaSSteven Rostedt (Red Hat)	 test various trace_printk() calls from a module.
31aad108aaSSteven Rostedt (Red Hat)
32b06457c8SSteven Rostedt (VMware)config SAMPLE_FTRACE_DIRECT
33b06457c8SSteven Rostedt (VMware)	tristate "Build register_ftrace_direct() example"
34b06457c8SSteven Rostedt (VMware)	depends on DYNAMIC_FTRACE_WITH_DIRECT_CALLS && m
35c316eb44SHeiko Carstens	depends on HAVE_SAMPLE_FTRACE_DIRECT
36b06457c8SSteven Rostedt (VMware)	help
37b06457c8SSteven Rostedt (VMware)	  This builds an ftrace direct function example
38b06457c8SSteven Rostedt (VMware)	  that hooks to wake_up_process and prints the parameters.
39b06457c8SSteven Rostedt (VMware)
40503e4510SHeiko Carstensconfig SAMPLE_FTRACE_DIRECT_MULTI
41da8bdfbdSFlorent Revest	tristate "Build register_ftrace_direct() on multiple ips example"
42503e4510SHeiko Carstens	depends on DYNAMIC_FTRACE_WITH_DIRECT_CALLS && m
43503e4510SHeiko Carstens	depends on HAVE_SAMPLE_FTRACE_DIRECT_MULTI
44503e4510SHeiko Carstens	help
45503e4510SHeiko Carstens	  This builds an ftrace direct function example
46503e4510SHeiko Carstens	  that hooks to wake_up_process and schedule, and prints
47503e4510SHeiko Carstens	  the function addresses.
48503e4510SHeiko Carstens
49b56c68f7SMark Rutlandconfig SAMPLE_FTRACE_OPS
50b56c68f7SMark Rutland	tristate "Build custom ftrace ops example"
51b56c68f7SMark Rutland	depends on FUNCTION_TRACER
52b56c68f7SMark Rutland	help
53b56c68f7SMark Rutland	  This builds an ftrace ops example that hooks two functions and
54b56c68f7SMark Rutland	  measures the time taken to invoke one function a number of times.
55b56c68f7SMark Rutland
5689ed4249SDivya Indiconfig SAMPLE_TRACE_ARRAY
5789ed4249SDivya Indi        tristate "Build sample module for kernel access to Ftrace instancess"
5889ed4249SDivya Indi	depends on EVENT_TRACING && m
5989ed4249SDivya Indi	help
6089ed4249SDivya Indi	 This builds a module that demonstrates the use of various APIs to
6189ed4249SDivya Indi	 access Ftrace instances from within the kernel.
6289ed4249SDivya Indi
6340efcb05SGreg Kroah-Hartmanconfig SAMPLE_KOBJECT
64e7e34917SMasahiro Yamada	tristate "Build kobject examples"
6540efcb05SGreg Kroah-Hartman	help
6640efcb05SGreg Kroah-Hartman	  This config option will allow you to build a number of
6740efcb05SGreg Kroah-Hartman	  different kobject sample modules showing how to use kobjects,
6840efcb05SGreg Kroah-Hartman	  ksets, and ktypes properly.
6940efcb05SGreg Kroah-Hartman
7040efcb05SGreg Kroah-Hartman	  If in doubt, say "N" here.
7140efcb05SGreg Kroah-Hartman
72804defeaSAnanth N Mavinakayanahalliconfig SAMPLE_KPROBES
73804defeaSAnanth N Mavinakayanahalli	tristate "Build kprobes examples -- loadable modules only"
74804defeaSAnanth N Mavinakayanahalli	depends on KPROBES && m
75804defeaSAnanth N Mavinakayanahalli	help
76804defeaSAnanth N Mavinakayanahalli	  This build several kprobes example modules.
77804defeaSAnanth N Mavinakayanahalli
78804defeaSAnanth N Mavinakayanahalliconfig SAMPLE_KRETPROBES
79804defeaSAnanth N Mavinakayanahalli	tristate "Build kretprobes example -- loadable modules only"
80804defeaSAnanth N Mavinakayanahalli	default m
81804defeaSAnanth N Mavinakayanahalli	depends on SAMPLE_KPROBES && KRETPROBES
82804defeaSAnanth N Mavinakayanahalli
8343203993SK.Prasadconfig SAMPLE_HW_BREAKPOINT
8443203993SK.Prasad	tristate "Build kernel hardware breakpoint examples -- loadable module only"
8543203993SK.Prasad	depends on HAVE_HW_BREAKPOINT && m
8643203993SK.Prasad	help
8743203993SK.Prasad	  This builds kernel hardware breakpoint example modules.
8843203993SK.Prasad
896ee64cc3SMasami Hiramatsuconfig SAMPLE_FPROBE
906ee64cc3SMasami Hiramatsu	tristate "Build fprobe examples -- loadable modules only"
916ee64cc3SMasami Hiramatsu	depends on FPROBE && m
926ee64cc3SMasami Hiramatsu	help
936ee64cc3SMasami Hiramatsu	  This builds a fprobe example module. This module has an option 'symbol'.
946ee64cc3SMasami Hiramatsu	  You can specify a probed symbol or symbols separated with ','.
956ee64cc3SMasami Hiramatsu
965bf2b193SStefani Seiboldconfig SAMPLE_KFIFO
975bf2b193SStefani Seibold	tristate "Build kfifo examples -- loadable modules only"
985bf2b193SStefani Seibold	depends on m
995bf2b193SStefani Seibold	help
1005bf2b193SStefani Seibold	  This config option will allow you to build a number of
1015bf2b193SStefani Seibold	  different kfifo sample modules showing how to use the
1025bf2b193SStefani Seibold	  generic kfifo API.
1035bf2b193SStefani Seibold
1045bf2b193SStefani Seibold	  If in doubt, say "N" here.
1055bf2b193SStefani Seibold
1064aad8f51SJason Wesselconfig SAMPLE_KDB
10725985edcSLucas De Marchi	tristate "Build kdb command example -- loadable modules only"
1084aad8f51SJason Wessel	depends on KGDB_KDB && m
1094aad8f51SJason Wessel	help
1104aad8f51SJason Wessel	  Build an example of how to dynamically add the hello
1114aad8f51SJason Wessel	  command to the kdb shell.
1124aad8f51SJason Wessel
113842891beSBjorn Anderssonconfig SAMPLE_QMI_CLIENT
114842891beSBjorn Andersson	tristate "Build qmi client sample -- loadable modules only"
115842891beSBjorn Andersson	depends on m
116842891beSBjorn Andersson	depends on ARCH_QCOM
117dea4bd19SArnd Bergmann	depends on NET
118842891beSBjorn Andersson	select QCOM_QMI_HELPERS
119842891beSBjorn Andersson	help
120842891beSBjorn Andersson	  Build an QMI client sample driver, which demonstrates how to
121842891beSBjorn Andersson	  communicate with a remote QRTR service, using QMI encoded messages.
122842891beSBjorn Andersson
123779b96d2SOhad Ben-Cohenconfig SAMPLE_RPMSG_CLIENT
124779b96d2SOhad Ben-Cohen	tristate "Build rpmsg client sample -- loadable modules only"
125779b96d2SOhad Ben-Cohen	depends on RPMSG && m
126779b96d2SOhad Ben-Cohen	help
127779b96d2SOhad Ben-Cohen	  Build an rpmsg client sample driver, which demonstrates how
128779b96d2SOhad Ben-Cohen	  to communicate with an AMP-configured remote processor over
129779b96d2SOhad Ben-Cohen	  the rpmsg bus.
130779b96d2SOhad Ben-Cohen
13112cf89b5SJosh Poimboeufconfig SAMPLE_LIVEPATCH
132439e7271SJoe Lawrence	tristate "Build live patching samples -- loadable modules only"
13312cf89b5SJosh Poimboeuf	depends on LIVEPATCH && m
13413d1cf7eSSeth Jennings	help
135439e7271SJoe Lawrence	  Build sample live patch demonstrations.
13613d1cf7eSSeth Jennings
13751798222SChristoph Hellwigconfig SAMPLE_CONFIGFS
13851798222SChristoph Hellwig	tristate "Build configfs patching sample -- loadable modules only"
13951798222SChristoph Hellwig	depends on CONFIGFS_FS && m
14051798222SChristoph Hellwig	help
14151798222SChristoph Hellwig	  Builds a sample configfs interface.
14251798222SChristoph Hellwig
14314fbff6bSArnd Bergmannconfig SAMPLE_CONNECTOR
14414fbff6bSArnd Bergmann	tristate "Build connector sample -- loadable modules only"
145e949f4c2SMasahiro Yamada	depends on CONNECTOR && HEADERS_INSTALL && m
14614fbff6bSArnd Bergmann	help
14714fbff6bSArnd Bergmann	  When enabled, this builds both a sample kernel module for
14814fbff6bSArnd Bergmann	  the connector interface and a user space tool to communicate
14914fbff6bSArnd Bergmann	  with it.
150baa293e9SMauro Carvalho Chehab	  See also Documentation/driver-api/connector.rst
15114fbff6bSArnd Bergmann
15254510930SGabriel Krisman Bertaziconfig SAMPLE_FANOTIFY_ERROR
15354510930SGabriel Krisman Bertazi	bool "Build fanotify error monitoring sample"
1548fc70b3aSGabriel Krisman Bertazi	depends on FANOTIFY && CC_CAN_LINK && HEADERS_INSTALL
15554510930SGabriel Krisman Bertazi	help
15654510930SGabriel Krisman Bertazi	  When enabled, this builds an example code that uses the
15754510930SGabriel Krisman Bertazi	  FAN_FS_ERROR fanotify mechanism to monitor filesystem
15854510930SGabriel Krisman Bertazi	  errors.
15954510930SGabriel Krisman Bertazi	  See also Documentation/admin-guide/filesystem-monitoring.rst.
16054510930SGabriel Krisman Bertazi
161e949f4c2SMasahiro Yamadaconfig SAMPLE_HIDRAW
162e949f4c2SMasahiro Yamada	bool "hidraw sample"
16382d00a93SMasahiro Yamada	depends on CC_CAN_LINK && HEADERS_INSTALL
164e949f4c2SMasahiro Yamada
165ba84b0bfSMickaël Salaünconfig SAMPLE_LANDLOCK
166ba84b0bfSMickaël Salaün	bool "Landlock example"
167ba84b0bfSMickaël Salaün	depends on CC_CAN_LINK && HEADERS_INSTALL
168ba84b0bfSMickaël Salaün	help
169ba84b0bfSMickaël Salaün	  Build a simple Landlock sandbox manager able to start a process
170ba84b0bfSMickaël Salaün	  restricted by a user-defined filesystem access control policy.
171ba84b0bfSMickaël Salaün
172e949f4c2SMasahiro Yamadaconfig SAMPLE_PIDFD
173e949f4c2SMasahiro Yamada	bool "pidfd sample"
17460fb0b12SMasahiro Yamada	depends on CC_CAN_LINK && HEADERS_INSTALL
175e949f4c2SMasahiro Yamada
176f6041c1dSOlof Johanssonconfig SAMPLE_SECCOMP
1777206c124SMasahiro Yamada	bool "Build seccomp sample code"
178f59e7668SMasahiro Yamada	depends on SECCOMP_FILTER && CC_CAN_LINK && HEADERS_INSTALL
179f6041c1dSOlof Johansson	help
180f6041c1dSOlof Johansson	  Build samples of seccomp filters using various methods of
181f6041c1dSOlof Johansson	  BPF filter construction.
182f6041c1dSOlof Johansson
183b98ccc71SMasahiro Yamadaconfig SAMPLE_TIMER
184b98ccc71SMasahiro Yamada	bool "Timer sample"
185b98ccc71SMasahiro Yamada	depends on CC_CAN_LINK && HEADERS_INSTALL
186b98ccc71SMasahiro Yamada
187f6953f1fSCedric Xingconfig SAMPLE_TSM_MR
188f6953f1fSCedric Xing	tristate "TSM measurement sample"
189f6953f1fSCedric Xing	select TSM_MEASUREMENTS
190f6953f1fSCedric Xing	select VIRT_DRIVERS
191f6953f1fSCedric Xing	help
192f6953f1fSCedric Xing	  Build a sample module that emulates MRs (Measurement Registers) and
193f6953f1fSCedric Xing	  exposes them to user mode applications through the TSM sysfs
194f6953f1fSCedric Xing	  interface (/sys/class/misc/tsm_mr_sample/emulated_mr/).
195f6953f1fSCedric Xing
196f6953f1fSCedric Xing	  The module name will be tsm-mr-sample when built as a module.
197f6953f1fSCedric Xing
19887ecdf4fSMasahiro Yamadaconfig SAMPLE_UHID
19987ecdf4fSMasahiro Yamada	bool "UHID sample"
20087ecdf4fSMasahiro Yamada	depends on CC_CAN_LINK && HEADERS_INSTALL
20187ecdf4fSMasahiro Yamada	help
20287ecdf4fSMasahiro Yamada	  Build UHID sample program.
20387ecdf4fSMasahiro Yamada
20408c1a4efSAlex Williamsonconfig SAMPLE_VFIO_MDEV_MTTY
2056b182403SChristoph Hellwig	tristate "Build VFIO mtty example mediated device sample code"
206de858a05SArnd Bergmann	depends on VFIO
2078bf8c5eeSChristoph Hellwig	select VFIO_MDEV
20808c1a4efSAlex Williamson	help
20908c1a4efSAlex Williamson	  Build a virtual tty sample driver for use as a VFIO
21008c1a4efSAlex Williamson	  mediated device
21108c1a4efSAlex Williamson
212d61fc96fSGerd Hoffmannconfig SAMPLE_VFIO_MDEV_MDPY
2136b182403SChristoph Hellwig	tristate "Build VFIO mdpy example mediated device sample code"
214de858a05SArnd Bergmann	depends on VFIO
2158bf8c5eeSChristoph Hellwig	select VFIO_MDEV
216d61fc96fSGerd Hoffmann	help
217d61fc96fSGerd Hoffmann	  Build a virtual display sample driver for use as a VFIO
218d61fc96fSGerd Hoffmann	  mediated device.  It is a simple framebuffer and supports
219d61fc96fSGerd Hoffmann	  the region display interface (VFIO_GFX_PLANE_TYPE_REGION).
220d61fc96fSGerd Hoffmann
221cacade19SGerd Hoffmannconfig SAMPLE_VFIO_MDEV_MDPY_FB
2226b182403SChristoph Hellwig	tristate "Build VFIO mdpy example guest fbdev driver"
2236b182403SChristoph Hellwig	depends on FB
224e4ef4e5dSThomas Zimmermann	select FB_IOMEM_HELPERS
225cacade19SGerd Hoffmann	help
226cacade19SGerd Hoffmann	  Guest fbdev driver for the virtual display sample driver.
227cacade19SGerd Hoffmann
228a5e6e650SGerd Hoffmannconfig SAMPLE_VFIO_MDEV_MBOCHS
229e951eaafSye xingchen	tristate "Build VFIO mbochs example mediated device sample code"
230de858a05SArnd Bergmann	depends on VFIO
2318bf8c5eeSChristoph Hellwig	select VFIO_MDEV
232c1abca96SArnd Bergmann	select DMA_SHARED_BUFFER
233a5e6e650SGerd Hoffmann	help
234a5e6e650SGerd Hoffmann	  Build a virtual display sample driver for use as a VFIO
235a5e6e650SGerd Hoffmann	  mediated device.  It supports the region display interface
236a5e6e650SGerd Hoffmann	  (VFIO_GFX_PLANE_TYPE_DMABUF).
237a5e6e650SGerd Hoffmann	  Emulate enough of qemu stdvga to make bochs-drm.ko happy.
238a5e6e650SGerd Hoffmann	  That is basically the vram memory bar and the bochs dispi
239a5e6e650SGerd Hoffmann	  interface vbe registers in the mmio register bar.
240a5e6e650SGerd Hoffmann	  Specifically it does *not* include any legacy vga stuff.
241a5e6e650SGerd Hoffmann	  Device looks a lot like "qemu -device secondary-vga".
242a5e6e650SGerd Hoffmann
2439762dc14SChristian Braunerconfig SAMPLE_ANDROID_BINDERFS
2449762dc14SChristian Brauner	bool "Build Android binderfs example"
245fca5e949SMasahiro Yamada	depends on CC_CAN_LINK && HEADERS_INSTALL
2469762dc14SChristian Brauner	help
2479762dc14SChristian Brauner	  Builds a sample program to illustrate the use of the Android binderfs
2489762dc14SChristian Brauner	  filesystem.
2499762dc14SChristian Brauner
250f1b5618eSDavid Howellsconfig SAMPLE_VFS
251f1b5618eSDavid Howells	bool "Build example programs that use new VFS system calls"
25228949b84SMasahiro Yamada	depends on CC_CAN_LINK && HEADERS_INSTALL
253a528d35eSDavid Howells	help
254f1b5618eSDavid Howells	  Build example userspace programs that use new VFS system calls such
255f1b5618eSDavid Howells	  as mount API and statx().  Note that this is restricted to the x86
256f1b5618eSDavid Howells	  arch whilst it accesses system calls that aren't yet in all arches.
257a528d35eSDavid Howells
2586859eba4STomas Winklerconfig SAMPLE_INTEL_MEI
2596859eba4STomas Winkler	bool "Build example program working with intel mei driver"
2606859eba4STomas Winkler	depends on INTEL_MEI
261c4c10996SMasahiro Yamada	depends on CC_CAN_LINK && HEADERS_INSTALL
2626859eba4STomas Winkler	help
2636859eba4STomas Winkler	  Build a sample program to work with mei device.
2646859eba4STomas Winkler
2659e66fb52SJulien Panisconfig SAMPLE_TPS6594_PFSM
2669e66fb52SJulien Panis	bool "Build example program working with TPS6594 PFSM driver"
2679e66fb52SJulien Panis	depends on HEADERS_INSTALL
268a5052c85SArnd Bergmann	depends on CC_CAN_LINK
2699e66fb52SJulien Panis	help
2709e66fb52SJulien Panis	  Build a sample program to work with PFSM devices.
2719e66fb52SJulien Panis
27288a8e278SMasahiro Yamadaconfig SAMPLE_WATCHDOG
27388a8e278SMasahiro Yamada	bool "watchdog sample"
27488a8e278SMasahiro Yamada	depends on CC_CAN_LINK
2756859eba4STomas Winkler
276f5b5a164SDavid Howellsconfig SAMPLE_WATCH_QUEUE
2778fe62e0cSGabriel Krisman Bertazi	bool "Build example watch_queue notification API consumer"
278214377e9SMasahiro Yamada	depends on CC_CAN_LINK && HEADERS_INSTALL
279f5b5a164SDavid Howells	help
280f5b5a164SDavid Howells	  Build example userspace program to use the new mount_notify(),
281f5b5a164SDavid Howells	  sb_notify() syscalls and the KEYCTL_WATCH_KEY keyctl() function.
282267c4025SMathieu Desnoyers
283ede5bab8SMike Leachconfig SAMPLE_CORESIGHT_SYSCFG
284ede5bab8SMike Leach	tristate "Build example loadable module for CoreSight config"
285ede5bab8SMike Leach	depends on CORESIGHT && m
286ede5bab8SMike Leach	help
287ede5bab8SMike Leach	  Build an example loadable module that adds new CoreSight features
288ede5bab8SMike Leach	  and configuration using the CoreSight system configuration API.
289ede5bab8SMike Leach	  This demonstrates how a user may create their own CoreSight
290ede5bab8SMike Leach	  configurations and easily load them into the system at runtime.
291ede5bab8SMike Leach
29227d9a0fdSHao Geconfig SAMPLE_KMEMLEAK
29327d9a0fdSHao Ge        tristate "Simple test for the kernel memory leak detector"
29427d9a0fdSHao Ge        depends on DEBUG_KMEMLEAK && m
29527d9a0fdSHao Ge        help
29627d9a0fdSHao Ge          Build a sample program which have explicitly leaks memory to test
29727d9a0fdSHao Ge          kmemleak
29827d9a0fdSHao Ge
29960433a9dSDmitry Rokosovconfig SAMPLE_CGROUP
30060433a9dSDmitry Rokosov	bool "Build cgroup sample code"
30160433a9dSDmitry Rokosov	depends on CGROUPS && CC_CAN_LINK && HEADERS_INSTALL
30260433a9dSDmitry Rokosov	help
30360433a9dSDmitry Rokosov	  Build samples that demonstrate the usage of the cgroup API.
30460433a9dSDmitry Rokosov
305faf2d88eSMickaël Salaünconfig SAMPLE_CHECK_EXEC
306faf2d88eSMickaël Salaün	bool "Exec secure bits examples"
307faf2d88eSMickaël Salaün	depends on CC_CAN_LINK && HEADERS_INSTALL
308faf2d88eSMickaël Salaün	help
309faf2d88eSMickaël Salaün	  Build a tool to easily configure SECBIT_EXEC_RESTRICT_FILE and
3102a69962bSMickaël Salaün	  SECBIT_EXEC_DENY_INTERACTIVE, and a simple script interpreter to
3112a69962bSMickaël Salaün	  demonstrate how they should be used with execveat(2) +
3122a69962bSMickaël Salaün	  AT_EXECVE_CHECK.
313faf2d88eSMickaël Salaün
3142158599aSMasami Hiramatsu (Google)config SAMPLE_HUNG_TASK
3152158599aSMasami Hiramatsu (Google)	tristate "Hung task detector test code"
3162158599aSMasami Hiramatsu (Google)	depends on DETECT_HUNG_TASK && DEBUG_FS
3172158599aSMasami Hiramatsu (Google)	help
318*1abf729eSZi Li	  Build a module that provides debugfs files (e.g., mutex, semaphore,
319*1abf729eSZi Li	  etc.) under <debugfs>/hung_task. If user reads one of these files,
320*1abf729eSZi Li	  it will sleep long time (256 seconds) with holding a lock. Thus,
321*1abf729eSZi Li	  if 2 or more processes read the same file concurrently, it will
322*1abf729eSZi Li	  be detected by the hung_task watchdog.
3232158599aSMasami Hiramatsu (Google)
324e4fc6580SMiguel Ojedasource "samples/rust/Kconfig"
325e4fc6580SMiguel Ojeda
32619d7c3adSSeongJae Parksource "samples/damon/Kconfig"
32719d7c3adSSeongJae Park
328267c4025SMathieu Desnoyersendif # SAMPLES
329c316eb44SHeiko Carstens
330c316eb44SHeiko Carstensconfig HAVE_SAMPLE_FTRACE_DIRECT
331c316eb44SHeiko Carstens	bool
3320b707e57SLinus Torvalds
333503e4510SHeiko Carstensconfig HAVE_SAMPLE_FTRACE_DIRECT_MULTI
3340b707e57SLinus Torvalds	bool
335