Home
last modified time | relevance | path

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

12345678910

/linux-4.4.14/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.kasan12 CFLAGS_KASAN := $(call cc-option, -fsanitize=kernel-address \
17 ifeq ($(call cc-option, $(CFLAGS_KASAN_MINIMAL) -Werror),)
/linux-4.4.14/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.c257 struct pnp_option *option; in pnp_assign_resources() local
266 list_for_each_entry(option, &dev->options, list) { in pnp_assign_resources()
267 if (pnp_option_is_dependent(option) && in pnp_assign_resources()
268 pnp_option_set(option) != set) in pnp_assign_resources()
271 switch (option->type) { in pnp_assign_resources()
273 ret = pnp_assign_port(dev, &option->u.port, nport++); in pnp_assign_resources()
276 ret = pnp_assign_mem(dev, &option->u.mem, nmem++); in pnp_assign_resources()
279 ret = pnp_assign_irq(dev, &option->u.irq, nirq++); in pnp_assign_resources()
283 ret = pnp_assign_dma(dev, &option->u.dma, ndma++); in pnp_assign_resources()
/linux-4.4.14/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.4.14/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.4.14/net/mac80211/
DKconfig11 This option enables the hardware independent IEEE 802.11
27 This option enables the 'minstrel' TX rate control algorithm
34 This option enables the 'minstrel_ht' TX rate control algorithm
41 This option enables VHT in the 'minstrel_ht' TX rate control algorithm
48 This option selects the default rate control algorithm
89 This option enables a few LED triggers for different
105 Select this option to have mac80211 register the
110 The overhead in this option is that all the messages
118 This option collects various mac80211 debug settings.
124 This option affects code generation in mac80211, when
[all …]
/linux-4.4.14/arch/powerpc/
DMakefile15 HAS_BIARCH := $(call cc-option-yn, -m32)
80 KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-save-toc-indirect)
82 ifeq ($(call cc-option-yn,-mbig-endian),y)
104 ifeq ($(call cc-option-yn,-mcmodel=medium),y)
119 CFLAGS-$(CONFIG_PPC64) := $(call cc-option,-mtraceback=no)
121 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2,$(call cc-option,-mcall-aixdesc))
122 AFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2)
124 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcall-aixdesc)
126 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcmodel=medium,$(call cc-option,-mminimal-toc))
127 CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mno-pointers-to-nested-functions)
[all …]
/linux-4.4.14/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.4.14/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.4.14/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)
50 KBUILD_CFLAGS += $(call cc-option,-mno-avx,)
57 biarch := $(call cc-option,-m32)
68 KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
73 $(call cc-option,-fno-unit-at-a-time))
97 KBUILD_CFLAGS += $(call cc-option,-mno-80387)
98 KBUILD_CFLAGS += $(call cc-option,-mno-fp-ret-in-387)
[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
109 This option enables a testcase for the DEBUG_RODATA
136 There is no runtime or memory usage effect of this option
145 This option helps catch unintended modifications to loadable
156 This option enables a testcase for the CPU NX capability
164 This option allows trapping of rare doublefault exceptions that
166 option saves about 4k and might cause you much additional grey
176 This option allows the user to tune the amount of TLB entries the
207 This option disables various optimizations in IOMMU related
[all …]
DKconfig345 This option compiles in a table of x86 feature bits and corresponding
375 This option is needed for the systems that have more than 8 CPUs
386 If you disable this option then the kernel will only support
390 If you enable this option then you'll be able to select support
408 If you disable this option then the kernel will only support
412 If you enable this option then you'll be able to select support
445 supposed to run on these EM64T-based machines. Only choose this option
456 This option is needed in order to support SGI Ultraviolet systems.
482 This option compiles in support for the CE4100 SOC for settop
531 found on Intel Lynxpoint PCH. Selecting this option enables
[all …]
DKconfig.cpu1 # Put here option for CPU selection and depending optimization
49 See each option's help text for additional details. If you don't know
94 pre-Coppermine Celeron core. This option enables an unaligned
104 Celeron-Coppermine core. This option enables use of some
121 Pentium-4 M (not Pentium M) chips. This option enables compile
212 Do not use this option for K6/Athlon/Opteron processors!
260 Netburst core and shouldn't use this option. You can distinguish them
280 support in order to fully benefit from selecting this option.
323 Enabling this option will attempt to work around some (but not all)
408 Intel CPU. Disabling this option on other types of CPUs
[all …]
/linux-4.4.14/tools/perf/Documentation/
Dintel-bts.txt17 recording must also be stipulated i.e. the --per-thread option for
28 option is:
32 Currently Intel BTS is limited to per-thread tracing so the --per-thread option
36 snapshot option
39 The snapshot option is the same as Intel PT (refer Intel PT documentation).
42 auxtrace mmap size option
45 The mmap size option is the same as Intel PT (refer Intel PT documentation).
52 This can be further controlled by option --itrace. The --itrace option is
57 To disable trace decoding entirely, use the option --no-itrace.
60 dump option
[all …]
Dperf-kmem.txt43 migtype, gfp' for page. This option should be preceded by one of the
61 default, but this option shows live (currently allocated) pages
62 instead. (This option works with --page option only)
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.
Dperf-stat.txt85 In per-thread mode, this option is ignored. The -a option is still necessary
91 This option is only valid in system-wide mode.
108 monitor only in the container (cgroup) called "name". This option is available only
122 Append to the output file designated with the -o option. Ignored if -o is not specified.
157 Aggregate counts per monitored threads, when monitoring threads (-t option)
158 or processes (-p option).
/linux-4.4.14/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 AHCI SATA3 controller found on
114 This option enables support for the DaVinci DA850 SoC's
[all …]
/linux-4.4.14/drivers/gpu/drm/exynos/
DKconfig11 Choose this option if you have a Samsung SoC EXYNOS chipset.
29 Choose this option if you want to use Exynos FIMD for DRM.
34 Choose this option if you want to use Exynos5433 DECON for DRM.
41 Choose this option if you want to use Exynos DECON for DRM.
47 Choose this option if you want to use Exynos Mixer for DRM.
52 Choose this option if you want to use Exynos VIDI for DRM.
85 Choose this option if you want to use Exynos HDMI for DRM.
91 Choose this option if you want to use Exynos MIC for DRM.
100 Choose this option if you want to use Exynos G2D for DRM.
105 Choose this option if you want to use IPP feature for DRM.
[all …]
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/drivers/leds/
DKconfig4 This option provides the function gpio_led_register_device.
19 This option enables the led sysfs class in /sys/class/leds. You'll
26 This option enables the flash led sysfs class in /sys/class/leds.
39 This option enables support for on-chip LED drivers found on Marvell
50 This option enables support for the LEDs on the AAT1290.
57 This option enables support for LEDs connected to the BCM6328
65 This option enables support for LEDs connected to the BCM6358
73 This option enables support for the LCD backlight using
83 This option enables support for the LEDs on National Semiconductor /
96 This option enables support for LEDs connected to LM3642.
[all …]
/linux-4.4.14/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.4.14/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
154 const struct option *options,
158 const struct option *options,
163 const struct option *options);
166 const struct option *options,
189 const struct option *excl_opt;
194 const struct option *opts,
202 const struct option *options,
[all …]
Dparse-options.c12 static int opterror(const struct option *opt, const char *reason, int flags) in opterror()
21 static int get_arg(struct parse_opt_ctx_t *p, const struct option *opt, in get_arg()
39 const struct option *opt, int flags) in get_value()
228 static int parse_short_opt(struct parse_opt_ctx_t *p, const struct option *options) in parse_short_opt()
240 const struct option *options) in parse_long_opt()
243 const struct option *abbrev_option = NULL, *ambiguous_option = NULL; in parse_long_opt()
343 static void check_typos(const char *arg, const struct option *options) in check_typos()
378 const struct option *, int,
382 const struct option *options, in parse_options_step()
499 int parse_options_subcommand(int argc, const char **argv, const struct option *options, in parse_options_subcommand()
[all …]
Dparse-regs-options.h3 struct option;
4 int parse_regs(const struct option *opt, const char *str, int unset);
Dparse-branch-options.h3 struct option;
4 int parse_branch_stack(const struct option *opt, const char *str, int unset);
Dcgroup.h6 struct option;
17 extern int parse_cgroups(const struct option *opt, const char *str, int unset);
Dparse-events.h17 struct option;
31 extern int parse_events_option(const struct option *opt, const char *str,
36 extern int parse_filter(const struct option *opt, const char *str, int unset);
37 extern int exclude_perf(const struct option *opt, const char *arg, int unset);
Dparse-events.l2 %option reentrant
3 %option bison-bridge
4 %option prefix="parse_events_"
5 %option stack
6 %option bison-locations
7 %option yylineno
/linux-4.4.14/arch/mips/loongson64/
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)
/linux-4.4.14/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()
DKconfig20 If this option is enabled, the kernel will include support
28 If this option is enabled, the kernel will include support
36 If this option is enabled, the kernel will include support
66 This option enables support for connection marks, used by the
76 This option enables security markings to be applied to
89 This option enables support for connection tracking zones.
102 This option enables for the list of known conntrack entries
111 If this option is enabled, the connection tracking code will
121 This option enables support for connection tracking timeout
131 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()
/linux-4.4.14/arch/arm/
DMakefile31 KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
40 KBUILD_CFLAGS += $(call cc-option,-mno-unaligned-access)
63 KBUILD_CFLAGS += $(call cc-option,-fno-ipa-sra)
70 arch-$(CONFIG_CPU_32v7) =-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa$…
71 arch-$(CONFIG_CPU_32v6) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(c…
75 arch-$(CONFIG_CPU_32v6K) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6k,-march=armv5t -Wa$(…
77 arch-$(CONFIG_CPU_32v5) =-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4t)
91 tune-$(CONFIG_CPU_ARM946E) =$(call cc-option,-mtune=arm9e,-mtune=arm9tdmi)
99 tune-$(CONFIG_CPU_XSCALE) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
100 tune-$(CONFIG_CPU_XSC3) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
[all …]
/linux-4.4.14/arch/arm/include/asm/
Dbarrier.h16 #define isb(option) __asm__ __volatile__ ("isb " #option : : : "memory") argument
17 #define dsb(option) __asm__ __volatile__ ("dsb " #option : : : "memory") argument
18 #define dmb(option) __asm__ __volatile__ ("dmb " #option : : : "memory") argument
/linux-4.4.14/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.h63 int cmdline_find_option(const char *option, char *buffer, int bufsize);
64 int cmdline_find_option_bool(const char *option);
/linux-4.4.14/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.4.14/sound/soc/sh/
DKconfig8 Enable this option for SH7760 AC97/I2S audio support.
27 This option enables FSI sound support
44 This option enables R-Car SRU/SCU/SSIU/SSI sound support
49 This option enables simple sound if you need sampling rate convert
61 This option enables generic sound support for the first
70 This option enables sound support for the SH7722 Migo-R board
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/lib/
DKconfig21 This option enables the use of hardware bit-reversal instructions on
65 This option is provided for the case where no in-kernel-tree
73 This option is provided for the case where no in-kernel-tree
83 This option is only needed if a module that's not in the
90 This option is provided for the case where no in-kernel-tree
100 This option is provided for the case where no in-kernel-tree
110 This option enables the CRC32 library functions to perform a
120 This option allows a kernel builder to override the default choice
142 Only choose this option if you know what you are doing.
150 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()
/linux-4.4.14/drivers/staging/lustre/lnet/lnet/
Dlib-socket.c375 int option; in lnet_sock_create() local
387 option = 1; in lnet_sock_create()
389 (char *)&option, sizeof(option)); in lnet_sock_create()
425 int option; in lnet_sock_setbuf() local
429 option = txbufsize; in lnet_sock_setbuf()
431 (char *)&option, sizeof(option)); in lnet_sock_setbuf()
434 option, rc); in lnet_sock_setbuf()
440 option = rxbufsize; in lnet_sock_setbuf()
442 (char *)&option, sizeof(option)); in lnet_sock_setbuf()
445 option, rc); in lnet_sock_setbuf()
/linux-4.4.14/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.4.14/drivers/of/
DKconfig7 This option enables the device tree infrastructure.
20 This option builds in test cases for the device tree infrastructure
24 If unsure, say N here, but this option is safe to enable.
31 This option builds all possible Device Tree Blobs (DTBs) for the
34 If unsure, say N here, but this option is safe to enable.
55 While this option is selected automatically on such platforms, you
112 While this option is selected automatically when needed, you can
/linux-4.4.14/arch/s390/
DMakefile58 ifeq ($(call cc-option-yn,-mkernel-backchain),y)
64 ifeq ($(call cc-option-yn,-mpacked-stack),y)
69 ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
71 ifneq ($(call cc-option-yn,-mstack-size=8192),y)
76 ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
83 ifeq ($(call cc-option-yn,$(cc_hotpatch)),y)
DKconfig297 This option only changes how the compiler emits instructions, not the
341 Select this option if you want to enable your system kernel to
342 handle system-calls from ELF binaries for 31 bit ESA. This option
411 This option adds NUMA support to the kernel.
522 This option enables the compiler option -mkernel-backchain if it
523 is available. If the option is available the compiler supports
536 This option enables the compiler option -mstack-guard and
561 This option enables the compiler option -mwarn-dynamicstack. If the
684 This option also enables s390 zfcpdump.
747 Select this option, if you want to use PFAULT pseudo page fault
[all …]
/linux-4.4.14/arch/powerpc/platforms/powernv/
Deeh-powernv.c475 static int pnv_eeh_set_option(struct eeh_pe *pe, int option) in pnv_eeh_set_option() argument
483 switch (option) { in pnv_eeh_set_option()
499 pr_warn("%s: Invalid option %d\n", __func__, option); in pnv_eeh_set_option()
528 __func__, rc, option, phb->hose->global_number, in pnv_eeh_set_option()
753 int pnv_eeh_phb_reset(struct pci_controller *hose, int option) in pnv_eeh_phb_reset() argument
759 __func__, hose->global_number, option); in pnv_eeh_phb_reset()
762 if (option == EEH_RESET_FUNDAMENTAL || in pnv_eeh_phb_reset()
763 option == EEH_RESET_HOT) in pnv_eeh_phb_reset()
767 else if (option == EEH_RESET_DEACTIVATE) in pnv_eeh_phb_reset()
781 if (option == EEH_RESET_DEACTIVATE) { in pnv_eeh_phb_reset()
[all …]
/linux-4.4.14/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.4.14/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.h273 int __cmdline_find_option(unsigned long cmdline_ptr, const char *option, char *buffer, int bufsize);
274 int __cmdline_find_option_bool(unsigned long cmdline_ptr, const char *option);
275 static inline int cmdline_find_option(const char *option, char *buffer, int bufsize) in cmdline_find_option() argument
282 return __cmdline_find_option(cmd_line_ptr, option, buffer, bufsize); in cmdline_find_option()
285 static inline int cmdline_find_option_bool(const char *option) in cmdline_find_option_bool() argument
292 return __cmdline_find_option_bool(cmd_line_ptr, option); in cmdline_find_option_bool()
/linux-4.4.14/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.4.14/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.4.14/include/net/
Dbond_options.h105 int __bond_opt_set(struct bonding *bond, unsigned int option,
107 int bond_opt_tryset_rtnl(struct bonding *bond, unsigned int option, char *buf);
111 const struct bond_option *bond_opt_get(unsigned int option);
113 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.4.14/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()
477 static int pseries_eeh_reset(struct eeh_pe *pe, int option) in pseries_eeh_reset() argument
490 BUID_LO(pe->phb->buid), option); in pseries_eeh_reset()
493 if (option == EEH_RESET_FUNDAMENTAL && in pseries_eeh_reset()
495 option = EEH_RESET_HOT; in pseries_eeh_reset()
498 BUID_LO(pe->phb->buid), option); in pseries_eeh_reset()
502 if (option == EEH_RESET_FUNDAMENTAL || in pseries_eeh_reset()
[all …]
DKconfig31 Enabling this option will make the kernel run more efficiently
65 Select this option, if you want to enable support for IO Event
72 This option will only enable the IO event platform code. You
102 Select this option to enable shared memory partition support.
103 With this option a system running in an LPAR can be given more
112 Select this option, if you want to enable the kernel interface
/linux-4.4.14/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 …]
/linux-4.4.14/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.4.14/fs/devpts/
Dinode.c183 int option; in parse_mount_options() local
191 if (match_int(&args[0], &option)) in parse_mount_options()
193 uid = make_kuid(current_user_ns(), option); in parse_mount_options()
200 if (match_int(&args[0], &option)) in parse_mount_options()
202 gid = make_kgid(current_user_ns(), option); in parse_mount_options()
209 if (match_octal(&args[0], &option)) in parse_mount_options()
211 opts->mode = option & S_IALLUGO; in parse_mount_options()
215 if (match_octal(&args[0], &option)) in parse_mount_options()
217 opts->ptmxmode = option & S_IALLUGO; in parse_mount_options()
225 if (match_int(&args[0], &option) || in parse_mount_options()
[all …]
/linux-4.4.14/arch/arm64/
DKconfig.debug21 If this option is disabled, you allow userspace (root) access to all
26 If this option is switched on, the /dev/mem file only allows
34 Enabling this option causes the kernel to write the current PID to
44 this option will cause TEXT_OFFSET to be randomized upon any
49 This option is intended for bootloader and/or kernel testing
58 This option helps catch unintended modifications to loadable
79 If this option is enabled, sections that may potentially be marked as
83 alignment and potentially wasted space. Turn on this option if
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.c1301 int token, option; in ocfs2_parse_options() local
1319 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1323 if (option) in ocfs2_parse_options()
1362 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1366 if (option >= 0) in ocfs2_parse_options()
1367 mopt->atime_quantum = option; in ocfs2_parse_options()
1370 option = 0; in ocfs2_parse_options()
1371 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1375 if (option) in ocfs2_parse_options()
1376 mopt->slot = (s16)option; in ocfs2_parse_options()
[all …]
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/drivers/gpu/drm/i915/
DKconfig24 Choose this option if you have a system that has "Intel Graphics
44 Choose this option if you have prerelease Intel hardware and want the
46 runtime with the module option i915.preliminary_hw_support=1; this
47 option changes the default for that module option.
/linux-4.4.14/
DMakefile608 KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks,)
617 KBUILD_CFLAGS += $(call cc-option,--param=allow-store-data-races=0)
624 KBUILD_CFLAGS += $(call cc-option,-fno-reorder-blocks,) \
625 $(call cc-option,-fno-ipa-cp-clone,) \
626 $(call cc-option,-fno-partial-inlining)
630 KBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN})
652 ifeq ($(call cc-option, $(stackp-flag)),)
659 ifeq ($(call cc-option, $(stackp-flag)),)
665 stackp-flag := $(call cc-option, -fno-stack-protector)
671 KBUILD_CPPFLAGS += $(call cc-option,-Qunused-arguments,)
[all …]
/linux-4.4.14/drivers/net/usb/
DKconfig102 This option adds support for Realtek RTL8152 based USB 2.0
115 This option adds support for Microchip LAN78XX based USB 2
162 This option adds support for ASIX AX88xxx based USB 2.0
192 This option adds support for ASIX AX88179 based USB 3.0/2.0
208 This option supports devices conforming to the Communication Device
213 CDC Ethernet is an implementation option for DOCSIS cable modems
235 This option supports devices conforming to the Communication Device
302 This option adds support for Davicom DM9601/DM9620/DM9621A
310 This option adds support for CoreChip-sz SR9700 based USB 1.1
335 This option adds support for SMSC LAN75XX based USB 2.0
[all …]
/linux-4.4.14/fs/nfs/
Dsuper.c1169 static int nfs_get_option_str(substring_t args[], char **option) in nfs_get_option_str() argument
1171 kfree(*option); in nfs_get_option_str()
1172 *option = match_strdup(args); in nfs_get_option_str()
1173 return !*option; in nfs_get_option_str()
1176 static int nfs_get_option_ul(substring_t args[], unsigned long *option) in nfs_get_option_ul() argument
1184 rc = kstrtoul(string, 10, option); in nfs_get_option_ul()
1226 unsigned long option; in nfs_parse_mount_options() local
1332 if (nfs_get_option_ul(args, &option) || in nfs_parse_mount_options()
1333 option > USHRT_MAX) in nfs_parse_mount_options()
1335 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.4.14/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.4.14/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.4.14/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.4.14/drivers/gpu/drm/msm/
DKconfig33 Choose this option if you have a need for MIPI DSI connector
41 Choose this option to enable DSI PLL driver which provides DSI
49 Choose this option if the 28nm DSI PHY is used on the platform.
56 Choose this option if the 20nm DSI PHY is used on the platform.
/linux-4.4.14/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
DMakefile122 CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
123 $(call cc-option, -fno-stack-protector,) \
124 $(call cc-option, -fno-stack-protector-all,)
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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
73 This option enables the ARP support for nf_tables.
81 This option enables the nf_dup_ipv4 core, which duplicates an IPv4
104 The IPv4 NAT option allows masquerading, port forwarding and other
114 This option enables the "nat" chain for IPv4 in nf_tables. This
206 This is a backwards-compat option for the user's convenience
215 This option allows you to match packets whose replies would
226 This is a backwards-compat option for the user's convenience
[all …]
/linux-4.4.14/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.4.14/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.4.14/arch/powerpc/platforms/512x/
DKconfig24 This option enables support for the MPC5121E ADS board.
31 This option enables support for simple MPC512x based boards
42 This option enables support for the PDM360NG board.
/linux-4.4.14/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.4.14/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.4.14/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()
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Dgtm601.txt7 - compatible : "option,gtm601"
12 compatible = "option,gtm601";
/linux-4.4.14/drivers/gpu/drm/
DKconfig57 Choose this option if you have a need for the legacy fbdev
106 Choose this option if you have a 3dfx Banshee or Voodoo3 (or later),
114 Choose this option if you have an ATI Rage 128 graphics card. If M
134 Choose this option if you have an ATI Radeon graphics card. There
158 Choose this option if you have a recent AMD Radeon graphics card.
171 Choose this option if you have an Intel I810 graphics card. If M is
182 Choose this option if you have a Matrox G200, G400 or G450 graphics
191 Choose this option if you have a SiS 630 or compatible video
199 Choose this option if you have a Via unichrome or compatible video
206 Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister
[all …]
/linux-4.4.14/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.4.14/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
149 If you say yes to this option, support will be included for the Intel
159 If you say yes to this option, support will be included for the Intel
192 If you say yes to this option, support will be included for the Nvidia
[all …]
/linux-4.4.14/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.4.14/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.4.14/tools/testing/selftests/mqueue/
Dmq_perf_tests.c539 char *option, *next_option; in main() local
568 option = cpu_option_string; in main()
570 next_option = strchr(option, ','); in main()
573 cpu = atoi(option); in main()
581 option = ++next_option; in main()
603 option = queue_path; in main()
604 if (*option != '/') { in main()
605 queue_path = malloc(strlen(option) + 2); in main()
612 strcat(queue_path, option); in main()
613 free(option); in main()
/linux-4.4.14/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 Selecting this option will add support for the alternate register
309 can enable its onboard serial ports by enabling this option.
318 This option replaces the "console=ttyO" argument with the matching
322 for ttyS instead of ttyO regardless of this option.
323 This option is intended for people who "automatically" enable this
[all …]
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/sound/aoa/soundbus/
DKconfig5 This option enables the generic driver for the soundbus
14 This option enables support for Apple I2S busses.
/linux-4.4.14/drivers/staging/lustre/lnet/klnds/socklnd/
Dsocklnd_lib.c457 int option; in ksocknal_lib_setup_sock() local
479 option = -1; in ksocknal_lib_setup_sock()
481 (char *)&option, sizeof(option)); in ksocknal_lib_setup_sock()
488 option = 1; in ksocknal_lib_setup_sock()
491 (char *)&option, sizeof(option)); in ksocknal_lib_setup_sock()
516 option = (do_keepalive ? 1 : 0); in ksocknal_lib_setup_sock()
518 (char *)&option, sizeof(option)); in ksocknal_lib_setup_sock()
/linux-4.4.14/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.4.14/arch/cris/arch-v32/drivers/
DKconfig8 This option enables the ETRAX FS built-in 10/100Mbit Ethernet
15 This option disables all MDIO communication with an ethernet
16 transceiver connected to the MII interface. This option shall
18 switch. This option should normally be disabled. If enabled,
87 Selecting this option will make it run in DMA mode.
100 Selecting this option will make it run in DMA mode.
113 This option enables MTD mapping of flash devices. Needed to use
120 When this option is not set, mtd0 refers to the first partition
141 This option enables MTD mapping of NAND flash devices. Needed to use
175 This option enables a driver for the stream co-processor
[all …]
/linux-4.4.14/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.4.14/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
64 This option enables the nf_dup_ipv6 core, which duplicates an IPv6
82 The IPv6 NAT option allows masquerading, port forwarding and other
92 This option enables the "nat" chain for IPv6 in nf_tables. This
180 This is a backwards-compat option for the user's convenience
206 This option allows you to match packets whose replies would
227 This is a backwards-compatible option for the user's convenience
270 This option adds a `mangle' table to iptables: see the man page for
279 This option adds a `raw' table to ip6tables. This table is the very
[all …]
/linux-4.4.14/arch/powerpc/platforms/
DKconfig.cputype7 This option selects whether a 32-bit or a 64-bit kernel
224 This option enables kernel support for larger than 32-bit physical
237 This option enables kernel support for the Altivec extensions to the
242 This option is only usefully if you have a processor that supports
254 This option enables kernel support for the Vector Scaler extensions
259 This option is only useful if you have a processor that supports
271 This option enables kernel support for the PowerPC Initiate
275 This option is only useful if you have a processor that supports
279 This option slightly increases kernel memory usage.
311 This option enables kernel support for the Signal Processing
[all …]
/linux-4.4.14/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.4.14/arch/mips/pistachio/
DKconfig7 This option enables a clocksource driver based on a Pistachio
11 this option.
/linux-4.4.14/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.4.14/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.4.14/arch/mips/loongson64/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/samples/pktgen/
Dparameters.sh22 while getopts "s:i:d:m:t:c:b:vxh" option; do
23 case $option in
/linux-4.4.14/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.4.14/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.4.14/tools/perf/
Dbuiltin-probe.c176 static int opt_set_target(const struct option *opt, const char *str, in opt_set_target()
214 static int opt_show_lines(const struct option *opt, in opt_show_lines()
234 static int opt_show_vars(const struct option *opt, in opt_show_vars()
253 static int opt_add_probe_event(const struct option *opt, in opt_add_probe_event()
264 static int opt_set_filter_with_command(const struct option *opt, in opt_set_filter_with_command()
276 static int opt_set_filter(const struct option *opt __maybe_unused, in opt_set_filter()
440 struct option options[] = { in __cmd_probe()
Dperf.h78 struct option;
80 extern struct option *record_options;
/linux-4.4.14/drivers/vhost/
DKconfig27 This option is selected by any driver which needs to access
33 This option is selected by any driver which needs to access
40 This option allows vhost to support guests with a different byte
/linux-4.4.14/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.4.14/drivers/gpu/drm/amd/amdgpu/
DKconfig5 Choose this option if you want to enable experimental support
16 This option selects CONFIG_MMU_NOTIFIER if it isn't already
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/drivers/i2c/muxes/
DKconfig13 If you say yes to this option, support will be included for an
25 If you say yes to this option, support will be included for a
56 If you say yes to this option, support will be included for an I2C
67 If you say yes to this option, support will be included for a
/linux-4.4.14/drivers/iommu/
DKconfig98 With this option you can enable support for AMD IOMMU hardware in
105 your BIOS for an option to enable it or if you have an IVRS ACPI
113 This option enables code in the AMD IOMMU driver to collect various
123 This option enables support for the AMD IOMMUv2 features of the IOMMU
124 hardware. Select this option if you want to use devices that support
159 Selecting this option will enable a DMAR device at boot time if
160 one is found. If this option is not selected, DMAR support can
169 option permits the IOMMU driver to set a unity map for
172 option is removed in the 2.6.32 kernel.
282 Support for Renesas IPMMU/IPMMUI. This option enables
[all …]
/linux-4.4.14/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.4.14/arch/parisc/
DKconfig139 Select this option for the PCX-L processor, as used in the
146 Select this option for the PCX-T' processor, as used in the
153 Select this option for the PCX-L2 processor, as used in the
160 Select this option for PCX-U to PCX-W2 processors.
179 bool "Enable the -mlong-calls compiler option for big kernels"
186 your vmlinux kernel. In that case enabling this option will help you
187 to overcome this limit by using the -mlong-calls compiler option.
193 Enabling this option will probably slow down your kernel.
205 enable this option otherwise. The 64bit kernel is significantly bigger
/linux-4.4.14/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.4.14/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.4.14/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.4.14/drivers/acpi/
DKconfig16 management (OSPM) software. This option will enlarge your
79 For backwards compatibility, this option allows
85 This option has no effect on /proc/acpi/ directories
87 This option, together with the proc directories, will be
107 This option enables a DMI-based quirk for the above Dell machine (so
125 tables. This option allows to access the EC directly without ACPI
127 Thus this option is a debug option that helps to write ACPI drivers
216 If this option is enabled, this file implements common functionality
221 leave this option disabled.
274 recommended that this option be enabled, as your processor(s)
[all …]
/linux-4.4.14/drivers/scsi/mpt3sas/
DKconfig11 # of the License, or (at your option) any later version.
57 This option allows you to specify the maximum number of scatter-
69 This option allows you to specify the maximum number of scatter-
76 tristate "Legacy MPT2SAS config option"
81 Dummy config option for backwards compatiblity: configure the MPT3SAS
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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 and server to use RDMA
/linux-4.4.14/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.4.14/drivers/net/ethernet/toshiba/
DKconfig35 This option adds the support for the wireless feature of PS3.
37 use wireless feature, disabling this option saves memory. As
39 safely enable this option even if you have a wireless-less model.
/linux-4.4.14/fs/ubifs/
DKconfig18 This option allows to explicitly choose which compressions, if any,
45 increased flash wear. This option adds atime support and it is disabled by default
46 to preserve the old behavior. If you enable this option, UBIFS starts updating atime,
/linux-4.4.14/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.4.14/drivers/firmware/efi/
DKconfig60 Saying Y here will enable "efi_fake_mem" boot option.
68 int "maximum allowable number of ranges in efi_fake_mem boot option"
73 Maximum allowable number of ranges in efi_fake_mem boot option.
80 Select this config option from the architecture Kconfig if
/linux-4.4.14/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.4.14/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.4.14/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.4.14/fs/
DKconfig42 on this option will compile in support for DAX; you will need to
43 mount the filesystem using the -o dax option.
72 This option enables standard file locking support, required
74 call. Disabling this option saves about 11k.
136 and this option selects support for ACLs specifically for tmpfs
140 this option as there are a number of Linux distros that require
192 This option alone does not add any kernel code.
238 This option alone does not add any kernel code.
/linux-4.4.14/certs/
DKconfig13 If this option is unchanged from its default "certs/signing_key.pem",
33 If set, this option should be the filename of a PEM-formatted file
40 those are no longer used. You will need to set this option instead.
/linux-4.4.14/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.4.14/fs/debugfs/
Dinode.c74 int option; in debugfs_parse_options() local
89 if (match_int(&args[0], &option)) in debugfs_parse_options()
91 uid = make_kuid(current_user_ns(), option); in debugfs_parse_options()
97 if (match_int(&args[0], &option)) in debugfs_parse_options()
99 gid = make_kgid(current_user_ns(), option); in debugfs_parse_options()
105 if (match_octal(&args[0], &option)) in debugfs_parse_options()
107 opts->mode = option & S_IALLUGO; in debugfs_parse_options()
/linux-4.4.14/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 …]

12345678910