Home
last modified time | relevance | path

Searched refs:option (Results 1 – 200 of 1765) sorted by relevance

123456789

/linux-4.1.27/scripts/
Dconfig15 --enable|-e option Enable option
16 --disable|-d option Disable option
17 --module|-m option Turn option into a module
18 --set-str option string
19 Set option to "string"
20 --set-val option value
21 Set option to value
22 --undefine|-u option Undefine option
23 --state|-s option Print state of option (n,y,m,undef)
25 --enable-after|-E beforeopt option
[all …]
DMakefile.extrawarn23 warning-1 += $(call cc-option, -Wmissing-prototypes)
25 warning-1 += $(call cc-option, -Wmissing-include-dirs)
26 warning-1 += $(call cc-option, -Wunused-but-set-variable)
27 warning-1 += $(call cc-option, -Wunused-const-variable)
35 warning-2 += $(call cc-option, -Wlogical-op)
36 warning-2 += $(call cc-option, -Wmissing-field-initializers)
46 warning-3 += $(call cc-option, -Wpacked-bitfield-compat)
47 warning-3 += $(call cc-option, -Wvla)
64 KBUILD_CFLAGS += $(call cc-disable-warning, unknown-warning-option)
DKbuild.include86 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
87 # Exit code chooses option. "$$TMP" is can be used as temporary file and
98 # as-option
99 # Usage: cflags-y += $(call as-option,-Wa$(comma)-isa=foo,)
101 as-option = $(call try-run,\
110 # cc-option
111 # Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
113 cc-option = $(call try-run,\
116 # cc-option-yn
117 # Usage: flag := $(call cc-option-yn,-march=winchip-c6)
[all …]
DMakefile.kasan10 CFLAGS_KASAN := $(call cc-option, -fsanitize=kernel-address \
15 ifeq ($(call cc-option, $(CFLAGS_KASAN_MINIMAL) -Werror),)
/linux-4.1.27/drivers/pnp/
Dquirks.c27 struct pnp_option *option, in quirk_awe32_add_ports() argument
35 "%d\n", pnp_option_set(option)); in quirk_awe32_add_ports()
39 *new_option = *option; in quirk_awe32_add_ports()
42 list_add(&new_option->list, &option->list); in quirk_awe32_add_ports()
47 pnp_option_set(option)); in quirk_awe32_add_ports()
52 struct pnp_option *option; in quirk_awe32_resources() local
59 list_for_each_entry(option, &dev->options, list) { in quirk_awe32_resources()
60 if (pnp_option_is_dependent(option) && in quirk_awe32_resources()
61 pnp_option_set(option) != set) { in quirk_awe32_resources()
62 set = pnp_option_set(option); in quirk_awe32_resources()
[all …]
Dresource.c37 struct pnp_option *option; in pnp_build_option() local
39 option = kzalloc(sizeof(struct pnp_option), GFP_KERNEL); in pnp_build_option()
40 if (!option) in pnp_build_option()
43 option->flags = option_flags; in pnp_build_option()
44 option->type = type; in pnp_build_option()
46 list_add_tail(&option->list, &dev->options); in pnp_build_option()
47 return option; in pnp_build_option()
53 struct pnp_option *option; in pnp_register_irq_resource() local
56 option = pnp_build_option(dev, IORESOURCE_IRQ, option_flags); in pnp_register_irq_resource()
57 if (!option) in pnp_register_irq_resource()
[all …]
Dsupport.c91 char *pnp_option_priority_name(struct pnp_option *option) in pnp_option_priority_name() argument
93 switch (pnp_option_priority(option)) { in pnp_option_priority_name()
104 void dbg_pnp_show_option(struct pnp_dev *dev, struct pnp_option *option) in dbg_pnp_show_option() argument
113 if (pnp_option_is_dependent(option)) in dbg_pnp_show_option()
116 pnp_option_set(option), in dbg_pnp_show_option()
117 pnp_option_priority_name(option)); in dbg_pnp_show_option()
122 switch (option->type) { in dbg_pnp_show_option()
124 port = &option->u.port; in dbg_pnp_show_option()
133 mem = &option->u.mem; in dbg_pnp_show_option()
142 irq = &option->u.irq; in dbg_pnp_show_option()
[all …]
Dbase.h93 static inline int pnp_option_is_dependent(struct pnp_option *option) in pnp_option_is_dependent() argument
95 return option->flags & PNP_OPTION_DEPENDENT ? 1 : 0; in pnp_option_is_dependent()
98 static inline unsigned int pnp_option_set(struct pnp_option *option) in pnp_option_set() argument
100 return (option->flags >> PNP_OPTION_SET_SHIFT) & PNP_OPTION_SET_MASK; in pnp_option_set()
103 static inline unsigned int pnp_option_priority(struct pnp_option *option) in pnp_option_priority() argument
105 return (option->flags >> PNP_OPTION_PRIORITY_SHIFT) & in pnp_option_priority()
132 char *pnp_option_priority_name(struct pnp_option *option);
133 void dbg_pnp_show_option(struct pnp_dev *dev, struct pnp_option *option);
Dinterface.c188 struct pnp_option *option) in pnp_print_option() argument
190 switch (option->type) { in pnp_print_option()
192 pnp_print_port(buffer, space, &option->u.port); in pnp_print_option()
195 pnp_print_mem(buffer, space, &option->u.mem); in pnp_print_option()
198 pnp_print_irq(buffer, space, &option->u.irq); in pnp_print_option()
201 pnp_print_dma(buffer, space, &option->u.dma); in pnp_print_option()
211 struct pnp_option *option; in options_show() local
223 list_for_each_entry(option, &dev->options, list) { in options_show()
224 if (pnp_option_is_dependent(option)) { in options_show()
226 if (!dep || pnp_option_set(option) != set) { in options_show()
[all …]
Dmanager.c259 struct pnp_option *option; in pnp_assign_resources() local
268 list_for_each_entry(option, &dev->options, list) { in pnp_assign_resources()
269 if (pnp_option_is_dependent(option) && in pnp_assign_resources()
270 pnp_option_set(option) != set) in pnp_assign_resources()
273 switch (option->type) { in pnp_assign_resources()
275 ret = pnp_assign_port(dev, &option->u.port, nport++); in pnp_assign_resources()
278 ret = pnp_assign_mem(dev, &option->u.mem, nmem++); in pnp_assign_resources()
281 ret = pnp_assign_irq(dev, &option->u.irq, nirq++); in pnp_assign_resources()
285 ret = pnp_assign_dma(dev, &option->u.dma, ndma++); in pnp_assign_resources()
/linux-4.1.27/arch/m68k/
DMakefile44 cpuflags-$(CONFIG_M5441x) := $(call cc-option,-mcpu=54455,-mcfv4e)
45 cpuflags-$(CONFIG_M54xx) := $(call cc-option,-mcpu=5475,-m5200)
46 cpuflags-$(CONFIG_M5407) := $(call cc-option,-mcpu=5407,-m5200)
47 cpuflags-$(CONFIG_M532x) := $(call cc-option,-mcpu=532x,-m5307)
48 cpuflags-$(CONFIG_M537x) := $(call cc-option,-mcpu=537x,-m5307)
49 cpuflags-$(CONFIG_M5307) := $(call cc-option,-mcpu=5307,-m5200)
50 cpuflags-$(CONFIG_M528x) := $(call cc-option,-mcpu=528x,-m5307)
51 cpuflags-$(CONFIG_M5275) := $(call cc-option,-mcpu=5275,-m5307)
52 cpuflags-$(CONFIG_M5272) := $(call cc-option,-mcpu=5272,-m5307)
53 cpuflags-$(CONFIG_M5271) := $(call cc-option,-mcpu=5271,-m5307)
[all …]
/linux-4.1.27/include/linux/
Dkconfig.h30 #define IS_BUILTIN(option) config_enabled(option) argument
36 #define IS_MODULE(option) config_enabled(option##_MODULE) argument
44 #define IS_REACHABLE(option) (config_enabled(option) || \ argument
45 (config_enabled(option##_MODULE) && config_enabled(MODULE)))
51 #define IS_ENABLED(option) \ argument
52 (IS_BUILTIN(option) || IS_MODULE(option))
/linux-4.1.27/net/mac80211/
DKconfig12 This option enables the hardware independent IEEE 802.11
28 This option enables the 'minstrel' TX rate control algorithm
35 This option enables the 'minstrel_ht' TX rate control algorithm
42 This option enables VHT in the 'minstrel_ht' TX rate control algorithm
49 This option selects the default rate control algorithm
90 This option enables a few LED triggers for different
106 Select this option to have mac80211 register the
111 The overhead in this option is that all the messages
119 This option collects various mac80211 debug settings.
125 This option affects code generation in mac80211, when
[all …]
/linux-4.1.27/tools/net/
Dbpf_exp.l33 %option align
34 %option ecs
36 %option nounput
37 %option noreject
38 %option noinput
39 %option noyywrap
41 %option 8bit
42 %option caseless
43 %option yylineno
/linux-4.1.27/arch/powerpc/platforms/85xx/
DKconfig21 When selected, this option enables cache-sram support
24 parameters should be passed when this option is enabled.
30 This option enables support for the Freescale BSC9131RDB board.
39 This option enables support for the C293PCIE board
45 This option enables support for the Freescale BSC9132 QDS board.
54 This option enables support for the MPC 8540 ADS board
61 This option enables support for the MPC 8560 ADS board
69 This option enables support for the MPC85xx CDS board
78 This option enables support for the MPC85xx MDS board
85 This option enables support for the MPC8536 DS board
[all …]
/linux-4.1.27/arch/powerpc/
DMakefile15 HAS_BIARCH := $(call cc-option-yn, -m32)
77 KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-save-toc-indirect)
79 ifeq ($(call cc-option-yn,-mbig-endian),y)
101 ifeq ($(call cc-option-yn,-mcmodel=medium),y)
118 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2,-mcall-aixdesc)
119 AFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2)
123 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcmodel=medium,-mminimal-toc)
124 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mno-pointers-to-nested-functions)
128 CFLAGS-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=power7,-mtune=power4)
133 CFLAGS-$(CONFIG_CELL_CPU) += $(call cc-option,-mcpu=cell)
[all …]
/linux-4.1.27/arch/x86/
DMakefile_32.cpu5 HAS_MTUNE := $(call cc-option-yn, -mtune=i386)
7 tune = $(call cc-option,-mtune=$(1),$(2))
9 tune = $(call cc-option,-mcpu=$(1),$(2))
12 align := $(cc-option-align)
26 cflags-$(CONFIG_MK8) += $(call cc-option,-march=k8,-march=athlon)
29 cflags-$(CONFIG_MWINCHIPC6) += $(call cc-option,-march=winchip-c6,-march=i586)
30 cflags-$(CONFIG_MWINCHIP3D) += $(call cc-option,-march=winchip2,-march=i586)
31 cflags-$(CONFIG_MCYRIXIII) += $(call cc-option,-march=c3,-march=i486) $(align)-functions=0 $(align)…
32 cflags-$(CONFIG_MVIAC3_2) += $(call cc-option,-march=c3-2,-march=i686)
35 cflags-$(CONFIG_MATOM) += $(call cc-option,-march=atom,$(call cc-option,-march=core2,-march=i686))…
[all …]
DMakefile21 M16_CFLAGS := $(call cc-option, -m16, $(CODE16GCC_CFLAGS))
28 $(call cc-option, -ffreestanding) \
29 $(call cc-option, -fno-stack-protector) \
30 $(call cc-option, -mpreferred-stack-boundary=2)
47 biarch := $(call cc-option,-m32)
58 KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
63 $(call cc-option,-fno-unit-at-a-time))
81 KBUILD_CFLAGS += $(call cc-option,-mno-80387)
82 KBUILD_CFLAGS += $(call cc-option,-mno-fp-ret-in-387)
85 KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=3)
[all …]
DMakefile.um11 KBUILD_CFLAGS += $(call cc-option,-m32)
12 KBUILD_AFLAGS += $(call cc-option,-m32)
13 LINK-y += $(call cc-option,-m32)
24 cflags-y += $(call cc-option,-mpreferred-stack-boundary=2)
34 echo $(call cc-option,-fno-unit-at-a-time); \
35 else echo $(call cc-option,-funit-at-a-time); fi ;)
59 KBUILD_CFLAGS += $(call cc-option,-funit-at-a-time)
DKconfig.debug11 If this option is disabled, you allow userspace (root) access to all
18 If this option is switched on, the /dev/mem file only allows
104 This option enables a testcase for the DEBUG_RODATA
112 This option helps catch unintended modifications to loadable
123 This option enables a testcase for the CPU NX capability
131 This option allows trapping of rare doublefault exceptions that
133 option saves about 4k and might cause you much additional grey
143 This option allows the user to tune the amount of TLB entries the
174 This option disables various optimizations in IOMMU related
175 code to do real stress testing of the IOMMU code. This option
[all …]
DKconfig335 This option compiles in a table of x86 feature bits and corresponding
365 This option is needed for the systems that have more than 8 CPUs
376 If you disable this option then the kernel will only support
380 If you enable this option then you'll be able to select support
398 If you disable this option then the kernel will only support
402 If you enable this option then you'll be able to select support
435 supposed to run on these EM64T-based machines. Only choose this option
445 This option is needed in order to support SGI Ultraviolet systems.
472 This option compiles in support for the CE4100 SOC for settop
521 found on Intel Lynxpoint PCH. Selecting this option enables
[all …]
/linux-4.1.27/drivers/ata/
DKconfig42 This option adds parsing of ATA command descriptions and error bits
44 This option will enlarge the kernel by approx. 6KB. Disable it only
54 This option adds support for ATA-related ACPI objects.
60 option libata.noacpi=1
67 This option adds support for SATA Zero Power Optical Disc
80 This option adds support for SATA Port Multipliers
89 This option enables support for AHCI Serial ATA.
96 This option enables support for Platform AHCI Serial ATA
105 This option enables support for the DaVinci DA850 SoC's
114 This option enables support for ST AHCI SATA controller.
[all …]
/linux-4.1.27/arch/mips/
DMakefile53 ifeq ($(call cc-option-yn,-mmcount-ra-address), y)
58 cflags-y += $(call cc-option, -mno-check-zero-division)
101 ifneq ($(call as-option,-Wa$(comma)-msoft-float,),)
125 cflags-$(CONFIG_SB1XXX_CORELIS) += $(call cc-option,-mno-sched-prolog) \
137 cflags-$(CONFIG_CPU_MIPS32_R1) += $(call cc-option,-march=mips32,-mips32 -U_MIPS_ISA -D_MIPS_ISA=_M…
139 cflags-$(CONFIG_CPU_MIPS32_R2) += $(call cc-option,-march=mips32r2,-mips32r2 -U_MIPS_ISA -D_MIPS_IS…
142 cflags-$(CONFIG_CPU_MIPS64_R1) += $(call cc-option,-march=mips64,-mips64 -U_MIPS_ISA -D_MIPS_ISA=_M…
144 cflags-$(CONFIG_CPU_MIPS64_R2) += $(call cc-option,-march=mips64r2,-mips64r2 -U_MIPS_ISA -D_MIPS_IS…
148 cflags-$(CONFIG_CPU_R5432) += $(call cc-option,-march=r5400,-march=r5000) \
150 cflags-$(CONFIG_CPU_R5500) += $(call cc-option,-march=r5500,-march=r5000) \
[all …]
/linux-4.1.27/security/selinux/
DKconfig16 This option adds a kernel parameter 'selinux', which allows SELinux
17 to be disabled at boot. If this option is selected, SELinux
19 command line. The purpose of this option is to allow a single
31 This option sets the default value for the kernel parameter
33 option is set to 0 (zero), the SELinux kernel parameter will
34 default to 0, disabling SELinux at bootup. If this option is
45 This option enables writing to a selinuxfs node 'disable', which
48 This option is similar to the selinux=0 boot parameter, but is to
60 This enables the development support option of NSA SELinux,
62 policies. If unsure, say Y. With this option enabled, the
[all …]
/linux-4.1.27/arch/sh/
DMakefile33 cflags-$(CONFIG_CPU_SH2) := $(call cc-option,-m2,)
34 cflags-$(CONFIG_CPU_SH2A) += $(call cc-option,-m2a,) \
35 $(call cc-option,-m2a-nofpu,) \
36 $(call cc-option,-m4-nofpu,)
37 cflags-$(CONFIG_CPU_SH3) := $(call cc-option,-m3,)
38 cflags-$(CONFIG_CPU_SH4) := $(call cc-option,-m4,) \
39 $(call cc-option,-mno-implicit-fp,-m4-nofpu)
40 cflags-$(CONFIG_CPU_SH4A) += $(call cc-option,-m4a,) \
41 $(call cc-option,-m4a-nofpu,)
42 cflags-$(CONFIG_CPU_SH4AL_DSP) += $(call cc-option,-m4al,)
[all …]
DKconfig.cpu24 Selecting this option will enable support for SH processors that
27 This option must be set in order to enable the FPU.
38 Selecting this option will enable support for software FPU emulation.
47 Selecting this option will enable support for SH processors that
50 This option must be set in order to enable the DSP.
57 Selecting this option will allow the Linux kernel to use SH3 on-chip
66 Selecting this option will enable an in-kernel API for manipulating
/linux-4.1.27/arch/powerpc/platforms/44x/
DKconfig7 This option enables support for the 47x family of processors and is
18 This option enables support for the IBM PPC440EP evaluation board.
31 This option enables support for the APM APM821xx Evaluation board.
41 This option enables support for the IBM PPC440GP evaluation board.
50 This option enables support for the ACube Sam440ep board.
59 This option enables support for the AMCC PPC440EPX evaluation board.
69 This option enables support for the AMCC PPC440GX "Taishan"
83 This option enables support for the AMCC PPC440SPe evaluation board.
93 This option enables support for the AMCC PPC440GRX evaluation board.
101 This option enables support for the PIKA Warp(tm) Appliance. The Warp
[all …]
/linux-4.1.27/drivers/leds/
DKconfig4 This option provides the function gpio_led_register_device.
22 This option enables the led sysfs class in /sys/class/leds. You'll
29 This option enables the flash led sysfs class in /sys/class/leds.
42 This option enables support for on-chip LED drivers found on Marvell
50 This option enables support for the LCD backlight using
60 This option enables support for the LEDs on National Semiconductor /
73 This option enables support for LEDs connected to LM3642.
84 This option enables support for the LEDs on Sharp Locomo.
92 This option enables support for the so called "User LED" of
100 This option enables support for LEDs connected to GPIO lines
[all …]
/linux-4.1.27/arch/powerpc/platforms/83xx/
DKconfig18 This option enables support for the MPC8308 RDB and MPC8308 P1M boards.
25 This option enables support for the MPC8313 RDB and MPC8315 RDB boards.
32 This option enables support for the MPC832x MDS evaluation board.
39 This option enables support for the MPC8323 RDB board.
46 This option enables support for the MPC 834x MDS evaluation board.
58 This option enables support for the MPC 834x ITX evaluation board.
67 This option enables support for the MPC836x MDS Processor Board.
75 This option enables support for the MPC836x RDK Processor Board,
83 This option enables support for the MPC837x MDS Processor Board.
90 This option enables support for the MPC837x RDB and WLAN Boards.
[all …]
/linux-4.1.27/arch/arm/
DMakefile27 KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
36 KBUILD_CFLAGS += $(call cc-option,-mno-unaligned-access)
59 KBUILD_CFLAGS += $(call cc-option,-fno-ipa-sra)
66 arch-$(CONFIG_CPU_32v7) =-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa$…
67 arch-$(CONFIG_CPU_32v6) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(c…
71 arch-$(CONFIG_CPU_32v6K) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6k,-march=armv5t -Wa$(…
73 arch-$(CONFIG_CPU_32v5) =-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4t)
87 tune-$(CONFIG_CPU_ARM946E) =$(call cc-option,-mtune=arm9e,-mtune=arm9tdmi)
95 tune-$(CONFIG_CPU_XSCALE) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
96 tune-$(CONFIG_CPU_XSC3) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
[all …]
/linux-4.1.27/arch/mips/loongson/
DPlatform8 $(call cc-option,-march=loongson2e,-march=r4600)
10 $(call cc-option,-march=loongson2f,-march=r4600)
13 ifeq ($(call as-option,-Wa$(comma)-mfix-loongson2f-nop,),)
14 $(error only binutils >= 2.20.2 have needed option -mfix-loongson2f-nop)
18 ifeq ($(call as-option,-Wa$(comma)-mfix-loongson2f-jump,),)
19 $(error only binutils >= 2.20.2 have needed option -mfix-loongson2f-jump)
DKconfig103 This option enables the mfgpt0 timer of AMD CS5536. With this timer
107 this option at first, otherwise, You will get wrong system time.
116 This option enables the hpet timer of AMD RS780/SBX00.
119 this option at first, otherwise, You will get wrong system time.
/linux-4.1.27/tools/perf/util/
Dparse-options.h46 struct option;
47 typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
92 struct option { struct
149 const struct option *options,
153 const struct option *options,
158 const struct option *options);
180 const struct option *excl_opt;
185 const struct option *opts,
193 const struct option *options,
200 extern int parse_opt_abbrev_cb(const struct option *, const char *, int);
[all …]
Dparse-options.c9 static int opterror(const struct option *opt, const char *reason, int flags) in opterror()
18 static int get_arg(struct parse_opt_ctx_t *p, const struct option *opt, in get_arg()
36 const struct option *opt, int flags) in get_value()
225 static int parse_short_opt(struct parse_opt_ctx_t *p, const struct option *options) in parse_short_opt()
237 const struct option *options) in parse_long_opt()
240 const struct option *abbrev_option = NULL, *ambiguous_option = NULL; in parse_long_opt()
340 static void check_typos(const char *arg, const struct option *options) in check_typos()
375 const struct option *, int);
378 const struct option *options, in parse_options_step()
494 int parse_options_subcommand(int argc, const char **argv, const struct option *options, in parse_options_subcommand()
[all …]
Dcgroup.h4 struct option;
15 extern int parse_cgroups(const struct option *opt, const char *str, int unset);
Dparse-events.h16 struct option;
30 extern int parse_events_option(const struct option *opt, const char *str,
34 extern int parse_filter(const struct option *opt, const char *str, int unset);
Dcallchain.h162 struct option;
165 int record_parse_callchain_opt(const struct option *opt, const char *arg, int unset);
166 int record_callchain_opt(const struct option *opt, const char *arg, int unset);
/linux-4.1.27/drivers/gpu/drm/exynos/
DKconfig11 Choose this option if you have a Samsung SoC EXYNOS chipset.
25 Choose this option if you want to use Exynos FIMD for DRM.
32 Choose this option if you want to use Exynos DECON for DRM.
63 Choose this option if you want to use Exynos HDMI for DRM.
69 Choose this option if you want to use Exynos VIDI for DRM.
75 Choose this option if you want to use Exynos G2D for DRM.
81 Choose this option if you want to use IPP feature for DRM.
87 Choose this option if you want to use Exynos FIMC for DRM.
93 Choose this option if you want to use Exynos Rotator for DRM.
99 Choose this option if you want to use Exynos GSC for DRM.
/linux-4.1.27/net/netfilter/
Dxt_dccp.c30 #define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \ argument
31 || (!!((invflag) & (option)) ^ (cond)))
37 dccp_find_option(u_int8_t option, in dccp_find_option() argument
63 if (op[i] == option) { in dccp_find_option()
92 match_option(u_int8_t option, const struct sk_buff *skb, unsigned int protoff, in match_option() argument
95 return dccp_find_option(option, skb, protoff, dh, hotdrop); in match_option()
122 && DCCHECK(match_option(info->option, skb, par->thoff, dh, in dccp_mt()
DKconfig12 If this option is enabled, the kernel will include support
20 If this option is enabled, the kernel will include support
28 If this option is enabled, the kernel will include support
58 This option enables support for connection marks, used by the
68 This option enables security markings to be applied to
81 This option enables support for connection tracking zones.
94 This option enables for the list of known conntrack entries
103 If this option is enabled, the connection tracking code will
113 This option enables support for connection tracking timeout
123 This option enables support for connection tracking timestamping.
[all …]
Dxt_tcpudp.c31 tcp_find_option(u_int8_t option, in tcp_find_option() argument
57 if (op[i] == option) return !invert; in tcp_find_option()
109 if (tcpinfo->option) { in tcp_mt()
114 if (!tcp_find_option(tcpinfo->option, skb, par->thoff, in tcp_mt()
Dxt_sctp.c20 #define SCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \ argument
21 || (!!((invflag) & (option)) ^ (cond)))
/linux-4.1.27/arch/arm/include/asm/
Dbarrier.h17 #define isb(option) __asm__ __volatile__ ("isb " #option : : : "memory") argument
18 #define dsb(option) __asm__ __volatile__ ("dsb " #option : : : "memory") argument
19 #define dmb(option) __asm__ __volatile__ ("dmb " #option : : : "memory") argument
/linux-4.1.27/arch/x86/boot/compressed/
Dcmdline.c24 int cmdline_find_option(const char *option, char *buffer, int bufsize) in cmdline_find_option() argument
26 return __cmdline_find_option(get_cmd_line_ptr(), option, buffer, bufsize); in cmdline_find_option()
28 int cmdline_find_option_bool(const char *option) in cmdline_find_option_bool() argument
30 return __cmdline_find_option_bool(get_cmd_line_ptr(), option); in cmdline_find_option_bool()
Dmisc.h52 int cmdline_find_option(const char *option, char *buffer, int bufsize);
53 int cmdline_find_option_bool(const char *option);
/linux-4.1.27/arch/powerpc/platforms/40x/
DKconfig8 This option enables support for the AMCC 405EZ Acadia evaluation board.
17 This option enables support for the EP405/EP405PC boards.
26 This option enables support for the ESTEEM 195E Hotfoot board.
38 This option enables support for the AMCC PPC405EX evaluation board.
49 This option enables support for the AMCC PPC405EX board.
59 This option enables support for the IBM PPC405GP evaluation board.
68 This option enables generic support for Xilinx Virtex based boards.
85 This option enables support for PlatHome OpenBlockS 600 server
93 This option enables the simple PowerPC 40x platform support.
160 This option enables support for the AppliedMicro APM8018X evaluation
/linux-4.1.27/sound/soc/sh/
DKconfig8 Enable this option for SH7760 AC97/I2S audio support.
27 This option enables FSI sound support
43 This option enables R-Car SUR/SCU/SSIU/SSI sound support
48 This option enables simple sound if you need sampling rate convert
60 This option enables generic sound support for the first
69 This option enables sound support for the SH7722 Migo-R board
/linux-4.1.27/scripts/kconfig/
Dkxgettext.c85 const char *option; member
92 static struct message *message__new(const char *msg, char *option, in message__new() argument
108 self->option = option; in message__new()
149 static int message__add(const char *msg, char *option, const char *file, in message__add() argument
160 m = message__new(escaped, option, file, lineno); in message__add()
194 if (self->option != NULL) in message__print_file_lineno()
195 printf("# %s:00000\n", self->option); in message__print_file_lineno()
Dzconf.l1 %option nostdinit noyywrap never-interactive full ecs
2 %option 8bit nodefault perf-report perf-report
3 %option noinput
/linux-4.1.27/net/bridge/netfilter/
DKconfig74 This option adds matching support for 802.3 Ethernet frames.
81 This option adds the among match, which allows matching the MAC source
90 This option adds the ARP match, which allows ARP and RARP header field
98 This option adds the IP match, which allows basic IP header field
107 This option adds the IP6 match, which allows basic IPV6 header field
115 This option adds the limit match, which allows you to control
125 This option adds the mark match, which allows matching frames based on
135 This option adds the packet type match, which allows matching on the
145 This option adds the Spanning Tree Protocol match, which
153 This option adds the 802.1Q vlan match, which allows the filtering of
[all …]
/linux-4.1.27/net/netfilter/ipset/
DKconfig6 This option adds IP set support to the kernel.
31 This option adds the bitmap:ip set type support, by which one
40 This option adds the bitmap:ip,mac set type support, by which one
49 This option adds the bitmap:port set type support, by which one
58 This option adds the hash:ip set type support, by which one
68 This option adds the hash:ip,mark set type support, by which one
77 This option adds the hash:ip,port set type support, by which one
86 This option adds the hash:ip,port,ip set type support, by which
96 This option adds the hash:ip,port,net set type support, by which
106 This option adds the hash:mac set type support, by which
[all …]
/linux-4.1.27/arch/powerpc/platforms/86xx/
DKconfig21 This option enables support for the MPC8641 HPCN board.
27 This option enables support for the WRS SBC8641D board.
34 This option enables support for the MPC8610 HPCD board.
43 This option enables support for the GE PPC9A.
52 This option enables support for the GE SBC310.
62 This option enables support for the GE SBC610.
/linux-4.1.27/fs/autofs4/
Dinode.c135 int option; in parse_options() local
160 if (match_int(args, &option)) in parse_options()
162 *uid = make_kuid(current_user_ns(), option); in parse_options()
167 if (match_int(args, &option)) in parse_options()
169 *gid = make_kgid(current_user_ns(), option); in parse_options()
174 if (match_int(args, &option)) in parse_options()
176 *pgrp = option; in parse_options()
180 if (match_int(args, &option)) in parse_options()
182 *minproto = option; in parse_options()
185 if (match_int(args, &option)) in parse_options()
[all …]
/linux-4.1.27/lib/
DKconfig21 This option enables the use of hardware bit-reversal instructions on
68 This option is provided for the case where no in-kernel-tree
76 This option is provided for the case where no in-kernel-tree
86 This option is only needed if a module that's not in the
93 This option is provided for the case where no in-kernel-tree
103 This option is provided for the case where no in-kernel-tree
113 This option enables the CRC32 library functions to perform a
123 This option allows a kernel builder to override the default choice
145 Only choose this option if you know what you are doing.
153 Only choose this option if you know what you are doing.
[all …]
Dcmdline.c174 bool parse_option_str(const char *str, const char *option) in parse_option_str() argument
177 if (!strncmp(str, option, strlen(option))) { in parse_option_str()
178 str += strlen(option); in parse_option_str()
DKconfig.kmemcheck17 This option enables tracing of dynamically allocated kernel memory
32 This option controls the default behaviour of kmemcheck when the
80 This option works around certain GCC optimizations that produce
90 This option silences warnings that would be generated for bit-field
/linux-4.1.27/crypto/asymmetric_keys/
DKconfig5 This option provides support for a key type that holds the data for
19 This option provides support for asymmetric public key type handling.
28 This option enables support for the RSA algorithm (PKCS#1, RFC3447).
36 This option provides support for parsing X.509 format blobs for key
46 This option provides support for parsing PKCS#7 format messages for
54 This option provides a type of key that can be loaded up from a
68 This option provides support for verifying the signature(s) on a
/linux-4.1.27/tools/lib/traceevent/
Devent-plugin.c43 char *option; member
166 update_option(const char *file, struct pevent_plugin_option *option) in update_option() argument
172 if (option->plugin_alias) { in update_option()
173 plugin = strdup(option->plugin_alias); in update_option()
192 if (strcmp(op->option, option->name) != 0) in update_option()
195 ret = update_option_value(option, op->value); in update_option()
205 if (strcmp(op->option, option->name) != 0) in update_option()
208 ret = update_option_value(option, op->value); in update_option()
/linux-4.1.27/arch/openrisc/
DMakefile30 KBUILD_CFLAGS += $(call cc-option,-mhard-mul)
32 KBUILD_CFLAGS += $(call cc-option,-msoft-mul)
36 KBUILD_CFLAGS += $(call cc-option,-mhard-div)
38 KBUILD_CFLAGS += $(call cc-option,-msoft-div)
/linux-4.1.27/drivers/char/agp/
DKconfig33 This option gives you AGP support for the GLX component of
48 This option gives you AGP support for the GLX component of
55 This option gives you AGP support for the GLX component of
62 This option gives you AGP support for the GLX component of
73 This option gives you AGP support for the GLX component of X
84 This option gives you AGP support for the GLX component of
91 This option gives you AGP support for the GLX component of
108 This option gives you AGP support for the GLX component of
115 This option gives you AGP GART support for the Intel 460GX chipset
122 This option gives you AGP GART support for the HP ZX1 chipset
[all …]
/linux-4.1.27/fs/proc/
Droot.c55 int option; in proc_parse_options() local
69 if (match_int(&args[0], &option)) in proc_parse_options()
71 pid->pid_gid = make_kgid(current_user_ns(), option); in proc_parse_options()
74 if (match_int(&args[0], &option)) in proc_parse_options()
76 if (option < 0 || option > 2) { in proc_parse_options()
80 pid->hide_pid = option; in proc_parse_options()
/linux-4.1.27/sound/aoa/codecs/
DKconfig6 This option enables support for the Onyx (pcm3052)
15 This option enables support for the tas chips
22 This option enables support for the toonie codec
24 want to hear sound, select this option.
/linux-4.1.27/drivers/video/fbdev/core/
Dfb_cmdline.c35 int fb_get_options(const char *name, char **option) in fb_get_options() argument
57 if (!options && option && fb_mode_option) in fb_get_options()
62 if (option) in fb_get_options()
63 *option = options; in fb_get_options()
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/linux/
Dlinux-tcpip.c377 int option; in libcfs_sock_create() local
389 option = 1; in libcfs_sock_create()
391 (char *)&option, sizeof (option)); in libcfs_sock_create()
428 int option; in libcfs_sock_setbuf() local
432 option = txbufsize; in libcfs_sock_setbuf()
434 (char *)&option, sizeof (option)); in libcfs_sock_setbuf()
437 option, rc); in libcfs_sock_setbuf()
443 option = rxbufsize; in libcfs_sock_setbuf()
445 (char *)&option, sizeof (option)); in libcfs_sock_setbuf()
448 option, rc); in libcfs_sock_setbuf()
/linux-4.1.27/drivers/net/team/
Dteam.c108 struct team_option *option; member
117 struct team_option *option; in __team_find_option() local
119 list_for_each_entry(option, &team->option_list, list) { in __team_find_option()
120 if (strcmp(option->name, opt_name) == 0) in __team_find_option()
121 return option; in __team_find_option()
133 struct team_option *option) in __team_option_inst_del_option() argument
138 if (opt_inst->option == option) in __team_option_inst_del_option()
143 static int __team_option_inst_add(struct team *team, struct team_option *option, in __team_option_inst_add() argument
151 array_size = option->array_size; in __team_option_inst_add()
159 opt_inst->option = option; in __team_option_inst_add()
[all …]
/linux-4.1.27/arch/s390/
DMakefile56 ifeq ($(call cc-option-yn,-mkernel-backchain),y)
62 ifeq ($(call cc-option-yn,-mpacked-stack),y)
67 ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
69 ifneq ($(call cc-option-yn,-mstack-size=8192),y)
74 ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
81 ifeq ($(call cc-option-yn,$(cc_hotpatch)),y)
DKconfig289 This option only changes how the compiler emits instructions, not the
333 Select this option if you want to enable your system kernel to
334 handle system-calls from ELF binaries for 31 bit ESA. This option
444 This option enables the compiler option -mkernel-backchain if it
445 is available. If the option is available the compiler supports
458 This option enables the compiler option -mstack-guard and
483 This option enables the compiler option -mwarn-dynamicstack. If the
605 This option also enables s390 zfcpdump.
668 Select this option, if you want to use PFAULT pseudo page fault
669 handling under VM. If running native or in LPAR, this option
[all …]
/linux-4.1.27/arch/powerpc/platforms/powernv/
Deeh-powernv.c486 static int pnv_eeh_set_option(struct eeh_pe *pe, int option) in pnv_eeh_set_option() argument
495 switch (option) { in pnv_eeh_set_option()
511 pr_warn("%s: Invalid option %d\n", __func__, option); in pnv_eeh_set_option()
539 __func__, rc, option, in pnv_eeh_set_option()
766 int pnv_eeh_phb_reset(struct pci_controller *hose, int option) in pnv_eeh_phb_reset() argument
772 __func__, hose->global_number, option); in pnv_eeh_phb_reset()
775 if (option == EEH_RESET_FUNDAMENTAL || in pnv_eeh_phb_reset()
776 option == EEH_RESET_HOT) in pnv_eeh_phb_reset()
780 else if (option == EEH_RESET_DEACTIVATE) in pnv_eeh_phb_reset()
794 if (option == EEH_RESET_DEACTIVATE) { in pnv_eeh_phb_reset()
[all …]
/linux-4.1.27/drivers/s390/char/
DKconfig86 This option enables the hardware console interface for system
89 Please select this option as a module since built-in operation is
91 You should only select this option if you know what you are doing,
99 This option enables the call home function, which is able to inform
101 You should only select this option if you know what you are doing,
121 This option enables support for file transfers from a Hardware
133 Select this option if you want to access channel-attached tape
135 If you select this option you will also want to select at
138 This option is also available as a module. The module will be
150 Select this option if you want to access IBM 3480/3490 magnetic
[all …]
/linux-4.1.27/drivers/net/wireless/rsi/
DKconfig5 This option enabes support for RSI 1x1 devices.
13 Say Y, if you would like to enable debug support. This option
21 This option enables the SDIO bus support in rsi drivers.
29 This option enables the USB bus support in rsi drivers.
/linux-4.1.27/arch/x86/boot/
Dcmdline.c30 int __cmdline_find_option(unsigned long cmdline_ptr, const char *option, char *buffer, int bufsize) in __cmdline_find_option() argument
58 opptr = option; in __cmdline_find_option()
102 int __cmdline_find_option_bool(unsigned long cmdline_ptr, const char *option) in __cmdline_find_option_bool() argument
132 opptr = option; in __cmdline_find_option_bool()
Dboot.h274 int __cmdline_find_option(unsigned long cmdline_ptr, const char *option, char *buffer, int bufsize);
275 int __cmdline_find_option_bool(unsigned long cmdline_ptr, const char *option);
276 static inline int cmdline_find_option(const char *option, char *buffer, int bufsize) in cmdline_find_option() argument
283 return __cmdline_find_option(cmd_line_ptr, option, buffer, bufsize); in cmdline_find_option()
286 static inline int cmdline_find_option_bool(const char *option) in cmdline_find_option_bool() argument
293 return __cmdline_find_option_bool(cmd_line_ptr, option); in cmdline_find_option_bool()
/linux-4.1.27/include/net/
Dbond_options.h101 int __bond_opt_set(struct bonding *bond, unsigned int option,
103 int bond_opt_tryset_rtnl(struct bonding *bond, unsigned int option, char *buf);
107 const struct bond_option *bond_opt_get(unsigned int option);
109 const struct bond_opt_value *bond_opt_get_val(unsigned int option, u64 val);
Dcipso_ipv4.h225 int cipso_v4_validate(const struct sk_buff *skb, unsigned char **option);
293 unsigned char **option) in cipso_v4_validate() argument
295 unsigned char *opt = *option; in cipso_v4_validate()
321 *option = opt + err_offset; in cipso_v4_validate()
/linux-4.1.27/drivers/gpu/drm/i915/
DKconfig24 Choose this option if you have a system that has "Intel Graphics
44 Choose this option if you want kernel modesetting enabled by default.
57 Choose this option if you have a need for the legacy fbdev
68 Choose this option if you have prerelease Intel hardware and want the
70 runtime with the module option i915.preliminary_hw_support=1; this
71 option changes the default for that module option.
/linux-4.1.27/drivers/s390/block/
DKconfig9 Select this option if you want to use your expanded storage on S/390
12 This option is also available as a module which will be called
28 Enable this option if you want to access DASDs directly utilizing
37 Enable this option if you want to see profiling information
46 this option unless you are very sure to have no ECKD device.
53 Select this option to be able to access FBA devices. It is safe to
61 Select this option if you want to use Diagnose250 command to access
/linux-4.1.27/scripts/rt-tester/
Drt-tester.py109 for option, value in options:
110 if option == "-c":
112 elif option == "-q":
114 elif option == "-t":
116 elif option == '-h':
/linux-4.1.27/tools/testing/ktest/
Dktest.pl1180 foreach my $option (keys %opt) {
1181 my $op = $option;
1195 foreach my $option (keys %not_used) {
1196 print "$option\n";
1206 my ($name, $option, $i) = @_;
1209 $option = " $option";
1224 while ($option =~ /(.*?[^\\])\$\{(.*?)\}(.*)/) {
1259 $option = $end;
1262 $retval = "$retval$option";
1270 my ($name, $option, $i) = @_;
[all …]
/linux-4.1.27/fs/devpts/
Dinode.c181 int option; in parse_mount_options() local
189 if (match_int(&args[0], &option)) in parse_mount_options()
191 uid = make_kuid(current_user_ns(), option); in parse_mount_options()
198 if (match_int(&args[0], &option)) in parse_mount_options()
200 gid = make_kgid(current_user_ns(), option); in parse_mount_options()
207 if (match_octal(&args[0], &option)) in parse_mount_options()
209 opts->mode = option & S_IALLUGO; in parse_mount_options()
213 if (match_octal(&args[0], &option)) in parse_mount_options()
215 opts->ptmxmode = option & S_IALLUGO; in parse_mount_options()
223 if (match_int(&args[0], &option) || in parse_mount_options()
[all …]
/linux-4.1.27/arch/arm64/
DKconfig.debug25 If this option is disabled, you allow userspace (root) access to all
30 If this option is switched on, the /dev/mem file only allows
38 Enabling this option causes the kernel to write the current PID to
48 this option will cause TEXT_OFFSET to be randomized upon any
53 This option is intended for bootloader and/or kernel testing
62 This option helps catch unintended modifications to loadable
83 If this option is enabled, sections that may potentially be marked as
87 alignment and potentially wasted space. Turn on this option if
/linux-4.1.27/drivers/infiniband/ulp/ipoib/
DKconfig16 This option enables support for IPoIB connected mode. After
17 enabling this option, you need to switch to connected mode
31 This option causes debugging code to be compiled into the
36 This option also creates a directory tree under ipoib/ in
45 This option compiles debugging code into the data path
/linux-4.1.27/arch/hexagon/
DMakefile18 cflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
19 aflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
20 ldflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
/linux-4.1.27/Documentation/filesystems/
Ddevpts.txt10 - '-o newinstance' mount option is specified while mounting devpts
16 (-o newinstance and -o ptmxmode) will be ignored with a 'bogus option' message
20 'newinstance' option (as in current start-up scripts) the new mount binds
29 If CONFIG_DEVPTS_MULTIPLE_INSTANCES=y and 'newinstance' option is specified,
57 In multi-instance mode (i.e '-o newinstance' mount option is specified at least
60 1. If -o newinstance mount option is never used, /dev/pts/ptmx can be ignored
85 - adding ptmxmode mount option to devpts entry in /etc/fstab, or
116 /dev/pts, using the '-o ptmxmode=%o' mount option (default is 0000).
124 7. A mount of devpts without the 'newinstance' option results in binding to
127 mounting devpts without the 'newinstance' option, a container could
[all …]
Djfs.txt15 growing a volume, not shrinking it. This option is only
20 nointegrity Do not write to the journal. The primary use of this option
25 integrity(*) Commit metadata changes to the journal. Use this option to
26 remount a volume where the nointegrity option was
43 command is also available together with the nodiscard option.
46 When no value is given to the discard option, it defaults to
Dvfat.txt26 allow_utime=### -- This option controls the permission check of mtime/atime.
32 The default is set from `dmask' option. (If the directory is
38 check is too unflexible. With this option you can
52 There is also an option of doing UTF-8 translations
53 with the utf8 option.
56 you should consider the following option instead.
60 filesystem with this option. If 'uni_xlate' gets set,
67 this gives you an alternative. Without this option,
76 option is set, then if the filename is
86 correct, by this option you can avoid scanning disk.
[all …]
/linux-4.1.27/arch/powerpc/platforms/pseries/
Deeh_pseries.c298 static int pseries_eeh_set_option(struct eeh_pe *pe, int option) in pseries_eeh_set_option() argument
309 switch (option) { in pseries_eeh_set_option()
323 __func__, option); in pseries_eeh_set_option()
329 BUID_LO(pe->phb->buid), option); in pseries_eeh_set_option()
485 static int pseries_eeh_reset(struct eeh_pe *pe, int option) in pseries_eeh_reset() argument
498 BUID_LO(pe->phb->buid), option); in pseries_eeh_reset()
501 if (option == EEH_RESET_FUNDAMENTAL && in pseries_eeh_reset()
503 option = EEH_RESET_HOT; in pseries_eeh_reset()
506 BUID_LO(pe->phb->buid), option); in pseries_eeh_reset()
510 if (option == EEH_RESET_FUNDAMENTAL || in pseries_eeh_reset()
[all …]
DKconfig31 Enabling this option will make the kernel run more efficiently
70 Select this option, if you want to enable support for IO Event
77 This option will only enable the IO event platform code. You
107 Select this option to enable shared memory partition support.
108 With this option a system running in an LPAR can be given more
117 Select this option, if you want to enable the kernel interface
/linux-4.1.27/net/batman-adv/
DKconfig23 This option enables BLA (Bridge Loop Avoidance), a mechanism
34 This option enables DAT (Distributed ARP Table), a DHT based
37 this option you can safely remove it and save some space.
44 This option enables network coding, a mechanism that aims to
58 This option enables the multicast optimisation which aims to
67 This is an option for use by developers; most people should
/linux-4.1.27/fs/ocfs2/
DKconfig44 This option will allow OCFS2 to use userspace clustering services
56 This option allows some fs statistics to be captured. Enabling
57 this option may increase the memory consumption.
66 This option will enlarge your kernel, but it allows debugging of
74 This option will enable expensive consistency checks. Enable
75 this option for debugging only as it is likely to decrease
Dsuper.c1299 int token, option; in ocfs2_parse_options() local
1317 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1321 if (option) in ocfs2_parse_options()
1351 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1355 if (option >= 0) in ocfs2_parse_options()
1356 mopt->atime_quantum = option; in ocfs2_parse_options()
1359 option = 0; in ocfs2_parse_options()
1360 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1364 if (option) in ocfs2_parse_options()
1365 mopt->slot = (s16)option; in ocfs2_parse_options()
[all …]
/linux-4.1.27/arch/metag/
DKconfig90 option which should result in a slightly faster kernel.
146 This option selects the mechanism for performing atomic operations.
152 This option disables interrupts to achieve atomicity. This mechanism
159 This option uses the LNKGET and LNKSET instructions to achieve
161 Choose this option if your system requires low latency.
167 This option uses the LOCK1 instruction for atomicity. This is mainly
178 This option allows processes to use FPU hardware available with this
179 CPU. If this option is not enabled FPU registers will not be saved
188 This option allows processes to use DSP hardware available
189 with this CPU. If this option is not enabled DSP registers
[all …]
/linux-4.1.27/net/wireless/
DKconfig39 Select this option ONLY for kernels that are specifically
52 This option enables some additional warnings that help
82 You should disable this option unless you are both capable
84 compliant with the features available under this option.
91 This option should only be enabled by system integrators
94 features. Alternatively you can enable this option if
102 This option enables support for parsing regulatory hints
115 This option enables support for relaxation of the NO_IR flag for
140 This option enables powersave mode by default.
160 This option generates an internal data structure representing
[all …]
Ddb.txt4 # enable that build option.
13 # best option is to extract the db.txt file from the wireless-regdb git
/linux-4.1.27/security/apparmor/
DKconfig23 This option sets the default value for the kernel parameter
25 at boot. If this option is set to 0 (zero), the AppArmor
27 boot. If this option is set to 1 (one), the AppArmor
41 This option selects whether sha1 hashing is done against loaded
/linux-4.1.27/arch/ia64/
DKconfig.debug27 Selecting this option prints more information for Illegal Dependency
29 or Write-after-Read (WAR) violations. This option is ignored if you
39 can select this option to disable the VHPT for debugging. If you're
46 Selecting this option turns on bug checking for the IA-64
55 Selecting this option turns on bug checking for the IA-64 irq_save
/linux-4.1.27/init/
DKconfig3 option env="ARCH"
7 option env="KERNELVERSION"
12 option defconfig_list
206 This option determines the default system hostname before userspace
216 This option allows you to choose whether you want to have support
269 Enabling this option adds the system calls process_vm_readv and
290 This option enables the uselib syscall, a system call used in the
356 Select this option to enable more accurate task and CPU time
371 Select this option to enable task and CPU time accounting on full
386 Select this option to enable fine granularity task irq time
[all …]
/linux-4.1.27/drivers/hv/
DKconfig7 Select this option to run Linux as a Hyper-V client operating
14 Select this option to enable the Hyper-V Utilities.
20 Select this option to enable Hyper-V Balloon driver.
/linux-4.1.27/fs/9p/
Dv9fs.c118 int option = 0; in v9fs_parse_options() local
147 r = match_int(&args[0], &option); in v9fs_parse_options()
154 v9ses->debug = option; in v9fs_parse_options()
156 p9_debug_level = option; in v9fs_parse_options()
161 r = match_int(&args[0], &option); in v9fs_parse_options()
168 v9ses->dfltuid = make_kuid(current_user_ns(), option); in v9fs_parse_options()
177 r = match_int(&args[0], &option); in v9fs_parse_options()
184 v9ses->dfltgid = make_kgid(current_user_ns(), option); in v9fs_parse_options()
193 r = match_int(&args[0], &option); in v9fs_parse_options()
200 v9ses->afid = option; in v9fs_parse_options()
/linux-4.1.27/arch/x86/kernel/cpu/microcode/
Dcore_early.c31 const char *option = (const char *)__pa_nodebug(opt); in check_loader_disabled_bsp() local
36 const char *option = "dis_ucode_ldr"; in check_loader_disabled_bsp()
40 if (cmdline_find_option_bool(cmdline, option)) in check_loader_disabled_bsp()
/linux-4.1.27/kernel/gcov/
DKconfig9 This option enables gcov-based code profiling (e.g. for code coverage
59 In such a case use this option to adjust the format used in the kernel
67 Select this option to use the format that corresponds to your GCC
73 Select this option to use the format defined by GCC 3.4.
78 Select this option to use the format defined by GCC 4.7.
/linux-4.1.27/
DMakefile612 KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks,)
621 KBUILD_CFLAGS += $(call cc-option,--param=allow-store-data-races=0)
628 KBUILD_CFLAGS += $(call cc-option,-fno-reorder-blocks,) \
629 $(call cc-option,-fno-ipa-cp-clone,) \
630 $(call cc-option,-fno-partial-inlining)
634 KBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN})
656 ifeq ($(call cc-option, $(stackp-flag)),)
663 ifeq ($(call cc-option, $(stackp-flag)),)
669 stackp-flag := $(call cc-option, -fno-stack-protector)
675 KBUILD_CPPFLAGS += $(call cc-option,-Qunused-arguments,)
[all …]
/linux-4.1.27/fs/nfs/
Dsuper.c1166 static int nfs_get_option_str(substring_t args[], char **option) in nfs_get_option_str() argument
1168 kfree(*option); in nfs_get_option_str()
1169 *option = match_strdup(args); in nfs_get_option_str()
1170 return !*option; in nfs_get_option_str()
1173 static int nfs_get_option_ul(substring_t args[], unsigned long *option) in nfs_get_option_ul() argument
1181 rc = kstrtoul(string, 10, option); in nfs_get_option_ul()
1223 unsigned long option; in nfs_parse_mount_options() local
1329 if (nfs_get_option_ul(args, &option) || in nfs_parse_mount_options()
1330 option > USHRT_MAX) in nfs_parse_mount_options()
1332 mnt->nfs_server.port = option; in nfs_parse_mount_options()
[all …]
DKconfig37 This option enables support for version 2 of the NFS protocol
47 This option enables support for version 3 of the NFS protocol
69 option to prevent your NFS client from trying to use the NFSv3
80 This option enables support for version 4 of the NFS protocol
95 This option enables swapon to work on files located on NFS mounts.
102 This option enables support for minor version 1 of the NFSv4 protocol
111 This option enables support for minor version 2 of the NFSv4 protocol
141 This option defines the domain portion of the implementation ID that
146 option should be set to the default "kernel.org".
153 This option makes the NFS client advertise to NFSv4.1 servers that
/linux-4.1.27/arch/arm/mach-davinci/
DKconfig73 Configure this option to specify the whether the board used
89 Configure this option to specify the whether the board used
97 Configure this option to specify the whether the board used
104 Configure this option to specify the whether the board used
115 Configure this option to specify the whether the board used
128 Configure this option to specify whether the board used
147 based GPIO expander on that board. This option selected in this
176 based GPIO expander on that card. This option selected in this
191 NOTE: Please take care while choosing this option, MII PHY will
251 This option saves power, but assumes all drivers are
[all …]
/linux-4.1.27/drivers/block/paride/
DKconfig15 This option enables the high-level driver for IDE-type disk devices
29 This option enables the high-level driver for ATAPI CD-ROM devices
45 This option enables the high-level driver for ATAPI disk devices
59 This option enables the high-level driver for ATAPI tape devices
72 This option enables a special high-level driver for generic ATAPI
99 This option enables support for the ATEN EH-100 parallel port IDE
112 This option enables support for the Micro Solutions BACKPACK
118 bottom, enable this option.
130 This option enables support for the Micro Solutions BACKPACK
137 bottom, enable this option.
[all …]
/linux-4.1.27/drivers/net/wireless/ath/ath9k/
DKconfig45 This option enables the PCI bus support in ath9k.
54 This option enables the AHB bus support in ath9k.
76 This option enables detailed statistics for association stations.
83 This option enables DFS support for initiating radiation on
85 certified and as such this is left as a build time option. This
86 option should only be enabled by system integrators that can
94 developed. At this point enabling this option won't do anything
102 This option enables ath9k dynamic ACK timeout estimation algorithm
131 This option enables Wake on Wireless LAN support for certain cards.
149 This option enables channel context support in ath9k, which is needed
/linux-4.1.27/arch/um/
DKconfig.char24 This option enables support for attaching UML consoles and serial
31 This option enables support for attaching UML consoles and serial
41 This option enables support for attaching UML consoles and serial
44 with this option. The assignment of UML devices to host devices
51 This option enables support for attaching UML consoles and serial
54 /dev/pts/*) are controlled by this option.
60 This option enables support for attaching UML consoles and serial
106 This option enables UML sound support. If enabled, it will pull in
DMakefile121 CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
122 $(call cc-option, -fno-stack-protector,) \
123 $(call cc-option, -fno-stack-protector-all,)
/linux-4.1.27/drivers/s390/net/
DKconfig9 Select this option if you want to use LCS networking on IBM System z.
19 Select this option if you want to use channel-to-channel
34 Select this option if you want to use inter-user communication
46 Select this option if you want to be able to receive SMSG messages
54 Select this option to deliver CP special messages (SMSGs) as
80 Select this option to be able to run qeth devices in layer 2 mode.
89 Select this option to be able to run qeth devices in layer 3 mode.
/linux-4.1.27/fs/adfs/
Dsuper.c162 int option; in parse_options() local
176 if (match_int(args, &option)) in parse_options()
178 asb->s_uid = make_kuid(current_user_ns(), option); in parse_options()
183 if (match_int(args, &option)) in parse_options()
185 asb->s_gid = make_kgid(current_user_ns(), option); in parse_options()
190 if (match_octal(args, &option)) in parse_options()
192 asb->s_owner_mask = option; in parse_options()
195 if (match_octal(args, &option)) in parse_options()
197 asb->s_other_mask = option; in parse_options()
200 if (match_int(args, &option)) in parse_options()
[all …]
/linux-4.1.27/arch/arm/mach-omap2/
Dpm-debug.c229 u32 *option = data; in option_get() local
231 *val = *option; in option_get()
238 u32 *option = data; in option_set() local
240 *option = val; in option_set()
242 if (option == &enable_off_mode) { in option_set()
/linux-4.1.27/arch/powerpc/platforms/512x/
DKconfig18 This option enables support for the MPC5121E ADS board.
25 This option enables support for simple MPC512x based boards
36 This option enables support for the PDM360NG board.
/linux-4.1.27/drivers/dma/bestcomm/
DKconfig23 This option enables the support for the ATA task.
29 This option enables the support for the FEC tasks.
35 This option enables the support for the GenBD tasks.
/linux-4.1.27/tools/perf/Documentation/
Dperf-mem.txt20 and stores are sampled. Use the -t option to limit to loads or stores.
42 Specify the field separator used when dump raw samples (-D option). By default,
47 Restrict dump of raw samples to those provided via this option. Note that the same
48 option can be passed in record mode. It will be interpreted the same way as perf
Dperf-help.txt19 If the option '--all' or '-a' is given, then all available commands are
34 option supersedes any other option.
/linux-4.1.27/drivers/net/usb/
DKconfig102 This option adds support for Realtek RTL8152 based USB 2.0
150 This option adds support for ASIX AX88xxx based USB 2.0
179 This option adds support for ASIX AX88179 based USB 3.0/2.0
195 This option supports devices conforming to the Communication Device
200 CDC Ethernet is an implementation option for DOCSIS cable modems
222 This option supports devices conforming to the Communication Device
289 This option adds support for Davicom DM9601/DM9620/DM9621A
297 This option adds support for CoreChip-sz SR9700 based USB 1.1
322 This option adds support for SMSC LAN75XX based USB 2.0
332 This option adds support for SMSC LAN95XX based USB 2.0
[all …]
/linux-4.1.27/block/
DKconfig10 Disable this option to remove the block layer support from the
13 If this option is disabled:
33 This option is required to support the full capacity of large
37 This option also enables support for single files larger than
63 This option is required by recent UDEV versions to properly
84 data integrity option provides hooks which can be used by
107 Enabling this option allows you to specify the partition layout from
/linux-4.1.27/security/integrity/ima/
DKconfig45 Disabling this option will disregard LSM based policy rules.
83 line 'ima_hash=' option.
115 This option enables local measurement integrity appraisal.
131 This option requires that all keys added to the .ima
142 .system keyring. This option enables X509 certificate
150 This option defines IMA X509 certificate path.
157 This option requires user-space init to be signed.
/linux-4.1.27/arch/frv/
DKconfig76 Setting this option causes the FR-V atomic operations to be mostly
87 system, you will need to select this option. The kernel can only see
100 Setting this option will put user-space page tables in high memory.
109 This option sets the base address for the uClinux kernel. The kernel
152 Selecting this option causes the uClinux kernel to change the
160 This option determines the default caching mode for the kernel.
176 The final option is to turn of caching entirely.
268 Select this option if the MB93091 CPU board is going to be used with
274 Select this option if the MB93091 CPU board is going to be used
283 Select this option if the MB93493 multimedia chip is going to be
[all …]
/linux-4.1.27/security/integrity/
DKconfig7 This option enables the integrity subsystem, which is comprised
24 This option enables digital signature verification support
41 This option enables digital signature verification using
50 option adds a kernel parameter 'integrity_audit', which
/linux-4.1.27/fs/omfs/
Dinode.c379 int option; in parse_options() local
392 if (match_int(&args[0], &option)) in parse_options()
394 sbi->s_uid = make_kuid(current_user_ns(), option); in parse_options()
399 if (match_int(&args[0], &option)) in parse_options()
401 sbi->s_gid = make_kgid(current_user_ns(), option); in parse_options()
406 if (match_octal(&args[0], &option)) in parse_options()
408 sbi->s_fmask = sbi->s_dmask = option; in parse_options()
411 if (match_octal(&args[0], &option)) in parse_options()
413 sbi->s_dmask = option; in parse_options()
416 if (match_octal(&args[0], &option)) in parse_options()
[all …]
/linux-4.1.27/arch/arm/plat-omap/
DKconfig59 This option saves power, but assumes all drivers are
61 yet use clock framework may not work with this option.
63 probably do not want this option enabled until your
96 Select this option if you want to use the OMAP mpu timer. This
105 Select this option if you want to enable the OMAP 32KHz timer.
122 Without this option, L2 Auxiliary control register contents are
138 Select this option if you want to use OMAP Dual-Mode timers.
145 Select this option if you want to have your system wake up
/linux-4.1.27/mm/
DKconfig16 This option allows you to change some of the ways that
18 only have one option here: FLATMEM. This is normal
19 and a correct option.
29 If unsure, choose this option (Flat Memory) over any other.
35 This option provides enhanced support for discontiguous
37 in their physical address spaces, and this option provides
41 this option imposes.
43 Many NUMA configurations will have this as the only option.
45 If unsure, choose "Flat Memory" over this option.
51 This will be the only option for some systems, including
[all …]
/linux-4.1.27/net/ipv4/netfilter/
DKconfig33 This option enables /proc and sysctl compatibility with the old
44 This option enables the IPv4 support for nf_tables.
51 This option enables the "route" chain for IPv4 in nf_tables. This
66 This option enables the ARP support for nf_tables.
90 The IPv4 NAT option allows masquerading, port forwarding and other
100 This option enables the "nat" chain for IPv4 in nf_tables. This
192 This is a backwards-compat option for the user's convenience
200 This option allows you to match packets whose replies would
211 This is a backwards-compat option for the user's convenience
286 This is a backwards-compat option for the user's convenience
[all …]
/linux-4.1.27/drivers/base/
DKconfig55 This option does not affect initramfs based booting, here
58 With this option enabled, it allows to bring up a system in
66 Select this option if you don't have magic firmware for drivers that
84 This option is provided for the case where none of the in-tree modules
100 Enabling this option will build each required firmware blob
106 This single option controls the inclusion of firmware for
117 This option allows firmware to be built into the kernel for the case
123 This option is a string and takes the (space-separated) names of the
126 the directory specified by the EXTRA_FIRMWARE_DIR option, which is
145 This option controls the directory in which the kernel build system
[all …]
/linux-4.1.27/drivers/staging/rtl8723au/
DKconfig9 This option adds the Realtek RTL8723AU USB device such as found in
18 This option enables Access Point mode. Unless you know that your system
26 This option enables icoexistence with BlueTooth communications for the r8723au driver.
/linux-4.1.27/drivers/eisa/
DKconfig9 Activate this option if your system contains a Vesa Local
20 Activate this option if your system contains a PCI to EISA
22 certainly need this option.
34 Activate this option if your system only have EISA bus
/linux-4.1.27/drivers/media/usb/pvrusb2/
DKconfig24 This option enables the operation of a sysfs based
48 This option enables a DVB interface for the pvrusb2 driver.
58 This option enables the inclusion of a debug interface
61 You do not need to select this option unless you plan
/linux-4.1.27/drivers/video/fbdev/
Dskeletonfb.c911 char *option = NULL; in xxxfb_init() local
913 if (fb_get_options("xxxfb", &option)) in xxxfb_init()
915 xxxfb_setup(option); in xxxfb_init()
999 char *option = NULL; in xxxfb_init() local
1001 if (fb_get_options("xxxfb", &option)) in xxxfb_init()
1003 xxxfb_setup(option); in xxxfb_init()
Dfm2fb.c314 char *option = NULL; in fm2fb_init() local
316 if (fb_get_options("fm2fb", &option)) in fm2fb_init()
318 fm2fb_setup(option); in fm2fb_init()
/linux-4.1.27/drivers/i2c/busses/
DKconfig15 If you say yes to this option, support will be included for the SMB
27 If you say yes to this option, support will be included for the SMB
39 If you say yes to this option, support will be included for the
49 If you say yes to this option, support will be included for the AMD
61 Enabling this option will add specific SMBus support for the Tyan
74 If you say yes to this option, support will be included for the
95 If you say yes to this option, support will be included for the Intel
146 If you say yes to this option, support will be included for the Intel
156 If you say yes to this option, support will be included for the Intel
189 If you say yes to this option, support will be included for the Nvidia
[all …]
/linux-4.1.27/tools/perf/
Dbuiltin-probe.c161 static int opt_add_probe_event(const struct option *opt __maybe_unused, in opt_add_probe_event()
171 static int opt_del_probe_event(const struct option *opt __maybe_unused, in opt_del_probe_event()
183 static int opt_set_target(const struct option *opt, const char *str, in opt_set_target()
221 static int opt_show_lines(const struct option *opt __maybe_unused, in opt_show_lines()
241 static int opt_show_vars(const struct option *opt __maybe_unused, in opt_show_vars()
261 static int opt_set_filter(const struct option *opt __maybe_unused, in opt_set_filter()
326 struct option options[] = { in __cmd_probe()
Dperf.h69 struct option;
71 extern struct option *record_options;
Dperf.c34 int option; member
129 struct option options[] = {
250 struct option *p = options+i; in handle_options()
358 if (p->option & RUN_SETUP) in run_builtin()
364 if (use_pager == -1 && p->option & RUN_SETUP) in run_builtin()
366 if (use_pager == -1 && p->option & USE_PAGER) in run_builtin()
Dbuiltin-data.c21 static const struct option data_options[] = {
57 const struct option options[] = { in cmd_data_convert()
/linux-4.1.27/security/tomoyo/
DKconfig47 policy was loaded. This option will be useful for systems where
65 command line option.
75 option. For example, if you pass init=/bin/systemd option, you may
76 want to also pass TOMOYO_trigger=/bin/systemd option.
/linux-4.1.27/arch/powerpc/platforms/
DKconfig.cputype7 This option selects whether a 32-bit or a 64-bit kernel
156 but somewhat slower on other machines. This option only changes
235 This option enables kernel support for larger than 32-bit physical
248 This option enables kernel support for the Altivec extensions to the
253 This option is only usefully if you have a processor that supports
265 This option enables kernel support for the Vector Scaler extensions
270 This option is only useful if you have a processor that supports
282 This option enables kernel support for the PowerPC Initiate
286 This option is only useful if you have a processor that supports
290 This option slightly increases kernel memory usage.
[all …]
/linux-4.1.27/drivers/staging/android/ion/
DKconfig7 Chose this option to enable the ION Memory Manager,
17 Choose this option to create a device that can be used to test the
34 Choose this option if you wish to use ion on an nVidia Tegra.
/linux-4.1.27/drivers/gpu/drm/
DKconfig88 Choose this option if you have a 3dfx Banshee or Voodoo3 (or later),
96 Choose this option if you have an ATI Rage 128 graphics card. If M
115 Choose this option if you have an ATI Radeon graphics card. There
130 Choose this option if you have an Intel I810 graphics card. If M is
141 Choose this option if you have a Matrox G200, G400 or G450 graphics
150 Choose this option if you have a SiS 630 or compatible video
158 Choose this option if you have a Via unichrome or compatible video
165 Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister
172 Choose this option to get a virtual graphics memory manager,
/linux-4.1.27/tools/testing/selftests/mqueue/
Dmq_perf_tests.c538 char *option, *next_option; in main() local
567 option = cpu_option_string; in main()
569 next_option = strchr(option, ','); in main()
572 cpu = atoi(option); in main()
580 option = ++next_option; in main()
602 option = queue_path; in main()
603 if (*option != '/') { in main()
604 queue_path = malloc(strlen(option) + 2); in main()
611 strcat(queue_path, option); in main()
612 free(option); in main()
/linux-4.1.27/fs/pstore/
DKconfig7 This option enables generic access to platform level
21 When the option is enabled, pstore will log all kernel
28 When the option is enabled, pstore will export a character
40 With this option kernel traces function calls into a persistent
/linux-4.1.27/drivers/of/
DKconfig15 This option builds in test cases for the device tree infrastructure
19 If unsure, say N here, but this option is safe to enable.
40 While this option is selected automatically on such platforms, you
97 While this option is selected automatically when needed, you can
/linux-4.1.27/net/sunrpc/
DKconfig42 This option enables a sysctl-based debugging interface
46 Disabling this option will make your kernel slightly smaller,
56 This option allows the NFS client to support an RDMA-enabled
69 This option allows the NFS server to support an RDMA-enabled
/linux-4.1.27/security/keys/
DKconfig9 This option provides support for retaining authentication tokens and
27 This option provides a register of persistent per-UID keyrings,
45 This option provides support for holding large keys within the kernel
58 This option provides support for creating, sealing, and unsealing
76 This option provides support for create/encrypting/decrypting keys
/linux-4.1.27/Documentation/
Defi-stub.txt25 The EFI boot stub is enabled with the CONFIG_EFI_STUB kernel option.
47 **** The "initrd=" option
50 multiple initrd files using the "initrd=" option. This is the only EFI
79 **** The "dtb=" option
82 device tree to the kernel. This is done with the "dtb=" command line option,
83 and is processed in the same manner as the "initrd=" option that is
/linux-4.1.27/sound/aoa/soundbus/
DKconfig5 This option enables the generic driver for the soundbus
14 This option enables support for Apple I2S busses.
/linux-4.1.27/arch/nios2/
DKconfig66 pages. This option selects the largest power of two that the kernel
71 This config option is actually maximum order plus one. For example,
142 This option allows you to set the link address offset of the zImage.
161 This option allows you to set the virtual address of the kernel MMU region.
169 This option allows you to set the virtual base address of the kernel MMU region.
175 This option allows you to set the virtual address of the kernel region.
187 This option allows you to set the virtual address of the I/O region.
/linux-4.1.27/drivers/staging/lustre/lnet/klnds/socklnd/
Dsocklnd_lib-linux.c460 int option; in ksocknal_lib_setup_sock() local
482 option = -1; in ksocknal_lib_setup_sock()
484 (char *)&option, sizeof(option)); in ksocknal_lib_setup_sock()
491 option = 1; in ksocknal_lib_setup_sock()
494 (char *)&option, sizeof(option)); in ksocknal_lib_setup_sock()
520 option = (do_keepalive ? 1 : 0); in ksocknal_lib_setup_sock()
522 (char *)&option, sizeof(option)); in ksocknal_lib_setup_sock()
/linux-4.1.27/Documentation/fb/
Duvesafb.txt62 start of the window. This option is available on x86
63 only and is the default option on that architecture.
74 used a parameter of the scroll option, e.g. scroll=ypan.)
98 amount of video RAM, use this option to override the BIOS (in MiB).
103 'mode_option' option.
110 HINT: If you use this option because normal <mode> parameter does
112 set the 'nocrtc' option to ensure that the video mode is properly
115 nocrtc Do not use CRTC timings while setting the video mode. This option
118 using this option implies that any refresh rate adjustments will
126 Set path to the v86d executable. This option is only available as
/linux-4.1.27/drivers/staging/rts5208/
Drtsx_transport.c298 struct rtsx_chip *chip, u32 addr, u32 len, u8 option) in rtsx_add_sg_tbl() argument
308 temp_opt = option & (~SG_END); in rtsx_add_sg_tbl()
311 temp_opt = option; in rtsx_add_sg_tbl()
381 u8 option; in rtsx_transfer_sglist_adma_partial() local
404 option = SG_VALID | SG_END | SG_TRANS_DATA; in rtsx_transfer_sglist_adma_partial()
406 option = SG_VALID | SG_TRANS_DATA; in rtsx_transfer_sglist_adma_partial()
408 rtsx_add_sg_tbl(chip, (u32)addr, (u32)len, option); in rtsx_transfer_sglist_adma_partial()
545 u8 option; in rtsx_transfer_sglist_adma() local
551 option = SG_VALID | SG_END | SG_TRANS_DATA; in rtsx_transfer_sglist_adma()
553 option = SG_VALID | SG_TRANS_DATA; in rtsx_transfer_sglist_adma()
[all …]
/linux-4.1.27/drivers/iommu/
DKconfig91 With this option you can enable support for AMD IOMMU hardware in
98 your BIOS for an option to enable it or if you have an IVRS ACPI
106 This option enables code in the AMD IOMMU driver to collect various
116 This option enables support for the AMD IOMMUv2 features of the IOMMU
117 hardware. Select this option if you want to use devices that support
142 Selecting this option will enable a DMAR device at boot time if
143 one is found. If this option is not selected, DMAR support can
152 option permits the IOMMU driver to set a unity map for
155 option is removed in the 2.6.32 kernel.
262 Support for Renesas IPMMU/IPMMUI. This option enables
[all …]
/linux-4.1.27/arch/mips/netlogic/
DPlatform10 cflags-$(CONFIG_CPU_XLR) += $(call cc-option,-march=xlr,-march=mips64)
11 cflags-$(CONFIG_CPU_XLP) += $(call cc-option,-march=xlp,-march=mips64r2)
/linux-4.1.27/sound/soc/au1x/
DKconfig8 This option enables support for the Programmable Serial
50 Select this option to enable AC97 audio on the early DB1x00 series
62 Select this option to enable audio (AC97 and I2S) on the
/linux-4.1.27/arch/powerpc/platforms/82xx/
DKconfig16 This option enables support for the MPC8272 ADS board
26 This option enables support for the PQ2FADS board
61 this option means that you wish to build a kernel for a machine with
/linux-4.1.27/arch/mips/loongson/common/
Denv.c37 #define parse_even_earlier(res, option, p) \ argument
41 if (strncmp(option, (char *)p, strlen(option)) == 0) \
42 tmp = kstrtou32((char *)p + strlen(option"="), 10, &res); \
/linux-4.1.27/drivers/cpuidle/
DKconfig.powerpc10 Select this option to enable processor idle state management
19 Select this option to enable processor idle state management
/linux-4.1.27/arch/x86/lib/
Dcmdline.c26 int cmdline_find_option_bool(const char *cmdline, const char *option) in cmdline_find_option_bool() argument
56 opptr = option; in cmdline_find_option_bool()
/linux-4.1.27/Documentation/kbuild/
Dmakefiles.txt171 # Each configuration option enables a list of files.
284 corresponding CONFIG_ option is neither 'y' nor 'm'.
362 Thus, if you change an option to $(CC) all affected files will
424 as-option
425 as-option is used to check if $(CC) -- when used to compile
426 assembler (*.S) files -- supports the given option. An optional
427 second option may be specified if the first option is not supported.
431 cflags-y += $(call as-option,-Wa$(comma)-isa=$(isa-y),)
433 In the above example, cflags-y will be assigned the option
440 supports the given option. An optional second option may be
[all …]
/linux-4.1.27/Documentation/m68k/
Dkernel-options.txt15 kernel understands, or how the exact syntax for the ... option is, or
16 ... about the option ... . I hope, this document supplies all the
34 follows: If the option is known to the kernel itself, i.e. if the name
45 In general, the value (the part after the '=') of an option is a
47 is up to the driver that "owns" the option. This association of
171 This option causes certain kernel messages be printed to the selected
183 at least 8 can also be set by the "debug" command line option (see
212 This option instructs the kernel to set up a ramdisk of the given
213 size in KBytes. Do not use this option if the ramdisk contents are
245 are really Plug-'n-Play, so the "ether=" option is useless altogether
[all …]
/linux-4.1.27/arch/powerpc/sysdev/qe_lib/
DKconfig9 This option provides qe_lib support to UCC slow
16 This option provides qe_lib support to UCC fast
/linux-4.1.27/sound/soc/nuc900/
DKconfig9 This option enables support for AC97 mode on the NUC900 SoC.
27 Select this option to enable audio (AC97) on the
/linux-4.1.27/Documentation/scsi/
DBusLogic.txt304 BusLogic has provided an AutoSCSI configuration option to enable a legacy ISA
307 To enable this backward compatibility option, invoke the AutoSCSI utility via
311 the "ISA Compatible Port" option should be set back to "Disable" to avoid
313 this configuration option, but the factory default setting is "Primary".
336 the "Use Bus And Device # For PCI Scanning Seq." option to OFF.
338 This driver will interrogate the setting of the PCI Scanning Sequence option
360 for multiple host adapters may be specified either by separating the option
362 command line. Individual option specifications for a single host adapter are
371 The "IO:" option specifies an ISA I/O Address to be probed for a non-PCI
380 The "NoProbe" option disables all probing and therefore no BusLogic Host
[all …]
/linux-4.1.27/drivers/gpu/drm/sti/
DKconfig11 Choose this option to enable DRM on STM stiH41x chipset
17 Choose this option to enable FBDEV on top of DRM for STM stiH41x chipset
/linux-4.1.27/drivers/staging/rtl8712/
DKconfig8 This option adds the Realtek RTL8712 USB device such as the D-Link DWA-130.
15 This option provides transmit aggregation for the Realtek RTL8712 USB device.
/linux-4.1.27/arch/sh/boards/mach-r2d/
DKconfig8 Selecting this option will configure the kernel for R2D-PLUS.
16 Selecting this option will configure the kernel for R2D-1.
/linux-4.1.27/drivers/usb/dwc2/
DKconfig29 integrated into many SoCs. Select this option if you want the
39 integrated into many SoCs. Select this option if you want the
40 driver to operate in Peripheral-only mode. This option requires
47 Select this option if you want the driver to work in a dual-role
50 option requires USB_GADGET to be enabled.
/linux-4.1.27/drivers/mtd/
DKconfig6 used for solid state file systems on embedded devices. This option
19 This option includes various MTD tests into compilation. The tests
37 this option.
41 SA1100 map driver (CONFIG_MTD_SA1100) has an option for this, for
50 This option is the Linux counterpart to the
52 option.
54 The option specifies which Flash sectors holds the RedBoot
66 'partition', enable this option.
72 'FIS directory' images, enable this option.
86 SA1100 map driver (CONFIG_MTD_SA1100) has an option for this, for
[all …]
/linux-4.1.27/drivers/gpu/drm/radeon/
DKconfig6 This option selects CONFIG_MMU_NOTIFIER if it isn't already
13 Choose this option if you still need userspace modesetting.
/linux-4.1.27/Documentation/netlabel/
Dcipso_ipv4.txt17 The CIPSO/IPv4 protocol engine applies the CIPSO IP option to packets by
19 system through the socket to have the CIPSO IP option applied. The socket's
23 configured to use CIPSO for packet labeling then a CIPSO IP option will be
28 The CIPSO/IPv4 protocol engine validates every CIPSO IP option it finds at the
/linux-4.1.27/net/ipv6/netfilter/
DKconfig33 This option enables the IPv6 support for nf_tables.
40 This option enables the "route" chain for IPv6 in nf_tables. This
68 The IPv6 NAT option allows masquerading, port forwarding and other
78 This option enables the "nat" chain for IPv6 in nf_tables. This
166 This is a backwards-compat option for the user's convenience
191 This option allows you to match packets whose replies would
212 This is a backwards-compatible option for the user's convenience
255 This option adds a `mangle' table to iptables: see the man page for
264 This option adds a `raw' table to ip6tables. This table is the very
277 This option adds a `security' table to iptables, for use
[all …]
/linux-4.1.27/kernel/trace/
DKconfig177 This option measures the time spent in irqs-off critical
186 (Note that kernel size and overhead increase with this option
187 enabled. This option and the preempt-off timing option can be
201 This option measures the time spent in preemption-off critical
210 (Note that kernel size and overhead increase with this option
211 enabled. This option and the irqs-off timing option can be
322 This option also enables the likely/unlikely profiler.
415 This option is also required by perf-probe subcommand of perf tools.
416 If you want to use perf tools, this option is strongly recommended.
432 This option is required if you plan to use perf-probe subcommand
[all …]
/linux-4.1.27/arch/parisc/
DKconfig136 Select this option for the PCX-L processor, as used in the
143 Select this option for the PCX-T' processor, as used in the
150 Select this option for the PCX-L2 processor, as used in the
157 Select this option for PCX-U to PCX-W2 processors.
176 bool "Enable the -mlong-calls compiler option for big kernels"
183 your vmlinux kernel. In that case enabling this option will help you
184 to overcome this limit by using the -mlong-calls compiler option.
190 Enabling this option will probably slow down your kernel.
202 enable this option otherwise. The 64bit kernel is significantly bigger
/linux-4.1.27/drivers/sn/
DKconfig12 This option enables basic support for the SGI IOC3-based Base IO
13 controller card. This option does not enable any specific
/linux-4.1.27/arch/microblaze/
DKconfig.debug16 This option turns on/off early printk messages to console.
23 This option turns on/off heart beat kernel functionality.
/linux-4.1.27/kernel/livepatch/
DKconfig15 This option has no runtime impact until a kernel "patch"
16 module uses the interface provided by this option to register
/linux-4.1.27/drivers/staging/rtl8188eu/
DKconfig7 This option adds the Realtek RTL8188EU USB device such as TP-Link TL-WN725N.
16 This option enables Access Point mode. Unless you know that your system
/linux-4.1.27/drivers/media/
DKconfig10 enable this option and other options below.
37 support both analog and digital TV. Disabling this option
59 support radio reception. Disabling this option will
77 Enable this option if you have a video capture board even
145 This option enables DVB Network Support which is a part of the DVB
153 # This Kconfig option is used by both PCI and USB drivers
203 Use this option with care, as deselecting ancillary drivers which
/linux-4.1.27/fs/tracefs/
Dinode.c168 int option; in tracefs_parse_options() local
183 if (match_int(&args[0], &option)) in tracefs_parse_options()
185 uid = make_kuid(current_user_ns(), option); in tracefs_parse_options()
191 if (match_int(&args[0], &option)) in tracefs_parse_options()
193 gid = make_kgid(current_user_ns(), option); in tracefs_parse_options()
199 if (match_octal(&args[0], &option)) in tracefs_parse_options()
201 opts->mode = option & S_IALLUGO; in tracefs_parse_options()
/linux-4.1.27/net/bluetooth/bnep/
DKconfig17 This option enables the multicast filter support for BNEP.
23 This option enables the protocol filter support for BNEP.
/linux-4.1.27/net/iucv/
DKconfig6 Select this option if you want to use inter-user communication
15 Select this option if you want to use AF_IUCV socket applications
/linux-4.1.27/drivers/isdn/capi/
DKconfig14 This option will provide the CAPI 2.0 interface to userspace
23 This option will enhance the capabilities of the /dev/capi20
33 This option provides the glue code to hook up CAPI driven cards to
/linux-4.1.27/arch/mips/cavium-octeon/
DKconfig8 function reliably, select this option to enable them. These
32 This option configures this kernel to be linked at a different
34 with this option to be run at the same time as one built without this
35 option.
/linux-4.1.27/drivers/net/wireless/brcm80211/
DKconfig44 This option enables the SDIO bus interface support for Broadcom
55 This option enables the USB bus interface support for Broadcom
67 This option enables the PCIE bus interface support for Broadcom
78 issues. This option adds a small amount of overhead when tracing
/linux-4.1.27/arch/powerpc/boot/
Dcuboot-pq2.c83 u32 base, option; in update_cs_ranges() local
98 option = in_be32(&ctrl_addr[cs * 2 + 1]) & 0x7fff; in update_cs_ranges()
101 option = 0x10; in update_cs_ranges()
106 option | ~(cs_ranges_buf[i].size - 1)); in update_cs_ranges()
/linux-4.1.27/fs/fat/
DKconfig24 file system and use GNU tar's M option. GNU tar is a program
55 This option will enlarge your kernel by about 7 KB. If unsure,
64 This option provides support for normal Windows file systems with
82 This option should be set to the codepage of your FAT filesystems.
83 It can be overridden with the "codepage" mount option.
94 with the "iocharset" mount option for FAT filesystems.
/linux-4.1.27/drivers/tty/serial/8250/
DKconfig74 you can alter that using a kernel command line option such as
83 You can set that using a kernel command line option such as
272 system, say Y to this option. The driver can handle 1, 2, or 3 port
284 Selecting this option will enable handling of the extra features
291 Selecting this option will add support for the integrated serial
300 serial port, say Y to this option. The driver can handle up to 2 serial
308 can enable its onboard serial ports by enabling this option.
317 This option replaces the "console=ttyO" argument with the matching
321 for ttyS instead of ttyO regardless of this option.
322 This option is intended for people who "automatically" enable this
[all …]
/linux-4.1.27/drivers/firmware/efi/libstub/
DMakefile18 $(call cc-option,-ffreestanding) \
19 $(call cc-option,-fno-stack-protector)
/linux-4.1.27/fs/
DKconfig45 on this option will compile in support for DAX; you will need to
46 mount the filesystem using the -o dax option.
69 This option enables standard file locking support, required
71 call. Disabling this option saves about 11k.
133 and this option selects support for ACLs specifically for tmpfs
137 this option as there are a number of Linux distros that require
189 This option alone does not add any kernel code.
235 This option alone does not add any kernel code.
/linux-4.1.27/drivers/net/ethernet/toshiba/
DKconfig37 This option adds the support for the wireless feature of PS3.
39 use wireless feature, disabling this option saves memory. As
41 safely enable this option even if you have a wireless-less model.
/linux-4.1.27/fs/udf/
Dsuper.c489 int option; in udf_parse_options() local
517 if (match_int(&args[0], &option)) in udf_parse_options()
519 n = option; in udf_parse_options()
544 if (match_int(args, &option)) in udf_parse_options()
546 uopt->gid = make_kgid(current_user_ns(), option); in udf_parse_options()
552 if (match_int(args, &option)) in udf_parse_options()
554 uopt->uid = make_kuid(current_user_ns(), option); in udf_parse_options()
560 if (match_octal(args, &option)) in udf_parse_options()
562 uopt->umask = option; in udf_parse_options()
568 if (match_int(args, &option)) in udf_parse_options()
[all …]
/linux-4.1.27/fs/debugfs/
Dinode.c79 int option; in debugfs_parse_options() local
94 if (match_int(&args[0], &option)) in debugfs_parse_options()
96 uid = make_kuid(current_user_ns(), option); in debugfs_parse_options()
102 if (match_int(&args[0], &option)) in debugfs_parse_options()
104 gid = make_kgid(current_user_ns(), option); in debugfs_parse_options()
110 if (match_octal(&args[0], &option)) in debugfs_parse_options()
112 opts->mode = option & S_IALLUGO; in debugfs_parse_options()
/linux-4.1.27/fs/isofs/
Dinode.c342 int option; in parse_options() local
410 if (match_int(&args[0], &option)) in parse_options()
412 n = option; in parse_options()
418 if (match_int(&args[0], &option)) in parse_options()
420 popt->sbsector = option; in parse_options()
431 if (match_int(&args[0], &option)) in parse_options()
433 popt->uid = make_kuid(current_user_ns(), option); in parse_options()
439 if (match_int(&args[0], &option)) in parse_options()
441 popt->gid = make_kgid(current_user_ns(), option); in parse_options()
447 if (match_int(&args[0], &option)) in parse_options()
[all …]
/linux-4.1.27/drivers/net/wireless/b43legacy/
DKconfig38 # This config option automatically enables b43legacy LEDS support,
45 # This config option automatically enables b43 HW-RNG support,
58 This option generates a minimum of log output.
83 If unsure, choose this option.
/linux-4.1.27/drivers/acpi/
DKconfig16 management (OSPM) software. This option will enlarge your
67 For backwards compatibility, this option allows
73 This option has no effect on /proc/acpi/ directories
75 This option, together with the proc directories, will be
93 tables. This option allows to access the EC directly without ACPI
95 Thus this option is a debug option that helps to write ACPI drivers
221 recommended that this option be enabled, as your processor(s)
238 This option supports a custom DSDT by linking it into the kernel.
255 This option provides functionality to override arbitrary ACPI tables
359 NOTE: This option is security sensitive, because it allows arbitrary
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/
DKconfig15 This option enables Lustre file system client support. Choose Y
39 This option defines the maximum size of buffer in bytes that user space
48 This option is mainly for debug purpose. It enables Lustre code to do
/linux-4.1.27/drivers/net/wireless/iwlwifi/
DKconfig10 This option enables support for use with the following hardware:
87 If unsure, don't enable this option, as some programs might
105 This option will enable debug tracing output for the iwlwifi drivers
113 This entry will only exist if this option is enabled.
131 is a low-impact option that allows getting insight into the
151 When tracing is not enabled, this option still has some
/linux-4.1.27/drivers/gpu/drm/vmwgfx/
DKconfig13 Choose this option if you would like to run 3D acceleration
23 Choose this option if you are shipping a new vmwgfx
/linux-4.1.27/drivers/gpu/drm/rockchip/
DKconfig13 Choose this option if you have a Rockchip soc chipset.
27 option.
/linux-4.1.27/drivers/misc/cb710/
DKconfig5 This option enables support for PCI ENE CB710/720 Flash memory card
19 This is an option for use by developers; most people should
/linux-4.1.27/drivers/gpu/drm/mgag200/
Dmgag200_mode.c790 int option = 0, option2 = 0; in mga_crtc_mode_set() local
820 option = 0x40049120; in mga_crtc_mode_set()
822 option = 0x4004d120; in mga_crtc_mode_set()
827 option = 0x41049120; in mga_crtc_mode_set()
834 option = 0x00000120; in mga_crtc_mode_set()
840 option = 0x00000120; in mga_crtc_mode_set()
891 if (option) in mga_crtc_mode_set()
892 pci_write_config_dword(dev->pdev, PCI_MGA_OPTION, option); in mga_crtc_mode_set()
1079 int option;
1094 pci_read_config_dword(pdev, PCI_MGA_OPTION, &option);
[all …]

123456789