Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 2180) sorted by relevance

12345678910>>...88

/Linux-v4.19/scripts/
Dconfig16 --enable|-e option Enable option
17 --disable|-d option Disable option
18 --module|-m option Turn option into a module
19 --set-str option string
20 Set option to "string"
21 --set-val option value
22 Set option to value
23 --undefine|-u option Undefine option
24 --state|-s option Print state of option (n,y,m,undef)
26 --enable-after|-E beforeopt option
[all …]
DMakefile.ubsan3 CFLAGS_UBSAN += $(call cc-option, -fsanitize=shift)
4 CFLAGS_UBSAN += $(call cc-option, -fsanitize=integer-divide-by-zero)
5 CFLAGS_UBSAN += $(call cc-option, -fsanitize=unreachable)
6 CFLAGS_UBSAN += $(call cc-option, -fsanitize=vla-bound)
7 CFLAGS_UBSAN += $(call cc-option, -fsanitize=signed-integer-overflow)
8 CFLAGS_UBSAN += $(call cc-option, -fsanitize=bounds)
9 CFLAGS_UBSAN += $(call cc-option, -fsanitize=object-size)
10 CFLAGS_UBSAN += $(call cc-option, -fsanitize=bool)
11 CFLAGS_UBSAN += $(call cc-option, -fsanitize=enum)
14 CFLAGS_UBSAN += $(call cc-option, -fsanitize=alignment)
[all …]
DMakefile.extrawarn26 warning-1 += $(call cc-option, -Wmissing-prototypes)
28 warning-1 += $(call cc-option, -Wmissing-include-dirs)
29 warning-1 += $(call cc-option, -Wunused-but-set-variable)
30 warning-1 += $(call cc-option, -Wunused-const-variable)
31 warning-1 += $(call cc-option, -Wpacked-not-aligned)
40 warning-2 += $(call cc-option, -Wlogical-op)
41 warning-2 += $(call cc-option, -Wmissing-field-initializers)
42 warning-2 += $(call cc-option, -Wsign-compare)
43 warning-2 += $(call cc-option, -Wmaybe-uninitialized)
44 warning-2 += $(call cc-option, -Wunused-macros)
[all …]
/Linux-v4.19/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.c38 struct pnp_option *option; in pnp_build_option() local
40 option = kzalloc(sizeof(struct pnp_option), GFP_KERNEL); in pnp_build_option()
41 if (!option) in pnp_build_option()
44 option->flags = option_flags; in pnp_build_option()
45 option->type = type; in pnp_build_option()
47 list_add_tail(&option->list, &dev->options); in pnp_build_option()
48 return option; in pnp_build_option()
54 struct pnp_option *option; in pnp_register_irq_resource() local
57 option = pnp_build_option(dev, IORESOURCE_IRQ, option_flags); in pnp_register_irq_resource()
58 if (!option) in pnp_register_irq_resource()
[all …]
Dsupport.c92 char *pnp_option_priority_name(struct pnp_option *option) in pnp_option_priority_name() argument
94 switch (pnp_option_priority(option)) { in pnp_option_priority_name()
105 void dbg_pnp_show_option(struct pnp_dev *dev, struct pnp_option *option) in dbg_pnp_show_option() argument
114 if (pnp_option_is_dependent(option)) in dbg_pnp_show_option()
117 pnp_option_set(option), in dbg_pnp_show_option()
118 pnp_option_priority_name(option)); in dbg_pnp_show_option()
123 switch (option->type) { in dbg_pnp_show_option()
125 port = &option->u.port; in dbg_pnp_show_option()
134 mem = &option->u.mem; in dbg_pnp_show_option()
143 irq = &option->u.irq; in dbg_pnp_show_option()
[all …]
/Linux-v4.19/arch/m68k/
DMakefile43 cpuflags-$(CONFIG_M5441x) := $(call cc-option,-mcpu=54455,-mcfv4e)
44 cpuflags-$(CONFIG_M54xx) := $(call cc-option,-mcpu=5475,-m5200)
45 cpuflags-$(CONFIG_M5407) := $(call cc-option,-mcpu=5407,-m5200)
46 cpuflags-$(CONFIG_M532x) := $(call cc-option,-mcpu=532x,-m5307)
47 cpuflags-$(CONFIG_M537x) := $(call cc-option,-mcpu=537x,-m5307)
48 cpuflags-$(CONFIG_M5307) := $(call cc-option,-mcpu=5307,-m5200)
49 cpuflags-$(CONFIG_M528x) := $(call cc-option,-mcpu=528x,-m5307)
50 cpuflags-$(CONFIG_M5275) := $(call cc-option,-mcpu=5275,-m5307)
51 cpuflags-$(CONFIG_M5272) := $(call cc-option,-mcpu=5272,-m5307)
52 cpuflags-$(CONFIG_M5271) := $(call cc-option,-mcpu=5271,-m5307)
[all …]
/Linux-v4.19/tools/perf/trace/beauty/
Dprctl.c15 static size_t prctl__scnprintf_option(int option, char *bf, size_t size) in prctl__scnprintf_option() argument
18 return strarray__scnprintf(&strarray__prctl_options, bf, size, "%d", option); in prctl__scnprintf_option()
21 static size_t prctl__scnprintf_set_mm(int option, char *bf, size_t size) in prctl__scnprintf_set_mm() argument
24 return strarray__scnprintf(&strarray__prctl_set_mm_options, bf, size, "%d", option); in prctl__scnprintf_set_mm()
29 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg2() local
31 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg2()
37 if (option == PR_SET_NAME) in syscall_arg__scnprintf_prctl_arg2()
45 int option = syscall_arg__val(arg, 0); in syscall_arg__scnprintf_prctl_arg3() local
47 if (option == PR_SET_MM) in syscall_arg__scnprintf_prctl_arg3()
55 unsigned long option = arg->val; in syscall_arg__scnprintf_prctl_option() local
[all …]
/Linux-v4.19/include/linux/
Dkconfig.h50 #define IS_BUILTIN(option) __is_defined(option) argument
56 #define IS_MODULE(option) __is_defined(option##_MODULE) argument
64 #define IS_REACHABLE(option) __or(IS_BUILTIN(option), \ argument
65 __and(IS_MODULE(option), __is_defined(MODULE)))
71 #define IS_ENABLED(option) __or(IS_BUILTIN(option), IS_MODULE(option)) argument
/Linux-v4.19/arch/powerpc/
DMakefile15 HAS_BIARCH := $(call cc-option-yn, -m32)
83 KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-save-toc-indirect)
85 KBUILD_CFLAGS += $(call cc-option,-mbig-endian)
93 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1)
94 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mcall-aixdesc)
95 aflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1)
103 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mbig-endian)
105 aflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mbig-endian)
118 LDFLAGS_vmlinux += $(call ld-option,--orphan-handling=warn)
121 ifeq ($(call cc-option-yn,-mcmodel=medium),y)
[all …]
/Linux-v4.19/drivers/misc/cardreader/
Drts5260.c205 struct rtsx_cr_option *option = &pcr->option; in rts5260_card_power_on() local
207 if (option->ocp_en) in rts5260_card_power_on()
293 struct rtsx_cr_option *option = &pcr->option; in rts5260_card_before_power_off() local
298 if (option->ocp_en) in rts5260_card_before_power_off()
320 struct rtsx_cr_option *option = &pcr->option; in rts5260_init_ocp() local
322 if (option->ocp_en) { in rts5260_init_ocp()
338 option->sd_400mA_ocp_thd); in rts5260_init_ocp()
423 if (!pcr->option.ocp_en) in rts5260_process_ocp()
549 struct rtsx_cr_option *option = &pcr->option; in rts5260_init_from_cfg() local
568 if (option->ltr_en) { in rts5260_init_from_cfg()
[all …]
Drts5249.c108 struct rtsx_cr_option *option = &(pcr->option); in rts5249_init_from_cfg() local
130 if (option->ltr_en) { in rts5249_init_from_cfg()
135 option->ltr_enabled = true; in rts5249_init_from_cfg()
136 option->ltr_active = true; in rts5249_init_from_cfg()
137 rtsx_set_ltr_latency(pcr, option->ltr_active_latency); in rts5249_init_from_cfg()
139 option->ltr_enabled = false; in rts5249_init_from_cfg()
146 struct rtsx_cr_option *option = &(pcr->option); in rts5249_init_from_hw() local
150 option->force_clkreq_0 = false; in rts5249_init_from_hw()
152 option->force_clkreq_0 = true; in rts5249_init_from_hw()
159 struct rtsx_cr_option *option = &(pcr->option); in rts5249_extra_init_hw() local
[all …]
/Linux-v4.19/arch/x86/
DMakefile17 ifneq ($(call cc-option, -mpreferred-stack-boundary=4),)
20 else ifneq ($(call cc-option, -mstack-alignment=16),)
32 M16_CFLAGS := $(call cc-option, -m16, $(CODE16GCC_CFLAGS))
39 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -ffreestanding)
40 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -fno-stack-protector)
41 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), $(cc_stack_align4))
61 KBUILD_CFLAGS += $(call cc-option,-mno-avx,)
68 biarch := $(call cc-option,-m32)
81 KBUILD_CFLAGS += $(call cc-option,$(cc_stack_align4))
99 KBUILD_CFLAGS += $(call cc-option,-falign-jumps=1)
[all …]
DMakefile_32.cpu6 HAS_MTUNE := $(call cc-option-yn, -mtune=i386)
8 tune = $(call cc-option,-mtune=$(1),$(2))
10 tune = $(call cc-option,-mcpu=$(1),$(2))
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) -falign-functions=0 -falign-j…
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))…
36 $(call cc-option,-mtune=atom,$(call cc-option,-mtune=generic))
[all …]
DMakefile.um12 KBUILD_CFLAGS += $(call cc-option,-m32)
13 KBUILD_AFLAGS += $(call cc-option,-m32)
14 LINK-y += $(call cc-option,-m32)
23 cflags-y += $(call cc-option,-mpreferred-stack-boundary=2)
33 echo $(call cc-option,-fno-unit-at-a-time); \
34 else echo $(call cc-option,-funit-at-a-time); fi ;)
58 KBUILD_CFLAGS += $(call cc-option,-funit-at-a-time)
/Linux-v4.19/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-v4.19/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 …]
/Linux-v4.19/arch/powerpc/platforms/85xx/
DKconfig23 When selected, this option enables cache-sram support
26 parameters should be passed when this option is enabled.
32 This option enables support for the Freescale BSC9131RDB board.
41 This option enables support for the C293PCIE board
47 This option enables support for the Freescale BSC9132 QDS board.
56 This option enables support for the MPC 8540 ADS board
63 This option enables support for the MPC 8560 ADS board
71 This option enables support for the MPC85xx CDS board
80 This option enables support for the MPC85xx MDS board
87 This option enables support for the MPC8536 DS board
[all …]
/Linux-v4.19/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
91 This option enables support for AHCI Serial ATA.
117 This option enables support for Platform AHCI Serial ATA
126 This option enables support for the AHCI SATA3 controller found on
135 This option enables support for the DaVinci DA850 SoC's
[all …]
/Linux-v4.19/tools/bpf/
Dbpf_exp.l36 %option align
37 %option ecs
39 %option nounput
40 %option noreject
41 %option noinput
42 %option noyywrap
44 %option 8bit
45 %option caseless
46 %option yylineno
/Linux-v4.19/arch/x86/lib/
Dcmdline.c30 const char *option) in __cmdline_find_option_bool() argument
60 opptr = option; in __cmdline_find_option_bool()
123 const char *option, char *buffer, int bufsize) in __cmdline_find_option() argument
154 opptr = option; in __cmdline_find_option()
205 int cmdline_find_option_bool(const char *cmdline, const char *option) in cmdline_find_option_bool() argument
207 return __cmdline_find_option_bool(cmdline, COMMAND_LINE_SIZE, option); in cmdline_find_option_bool()
210 int cmdline_find_option(const char *cmdline, const char *option, char *buffer, in cmdline_find_option() argument
213 return __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option, in cmdline_find_option()
/Linux-v4.19/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)
30 # by GAS. The cc-option can't probe for this behaviour so -march=loongson3a
36 $(call cc-option,-march=loongson3a -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS64)
39 $(call cc-option,-march=mips64r2,-mips64r2 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS64)
43 $(call cc-option,-march=mips64r2,-mips64r2 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS64)
/Linux-v4.19/sound/soc/intel/
DKconfig9 enable this option by saying Y
19 # This option controls the IPC core for HiFi2 platforms
24 # This option controls the PCI-based IPC for HiFi2 platforms
30 # This option controls the ACPI-based IPC for HiFi2 platforms
35 # This option controls ACPI-based probing on
45 # This option controls firmware download on
59 an I2S codec, then enable this option by saying Y or m. This is
60 typically used for Chromebooks. This is a recommended option.
71 then enable this option by saying Y or m. This was typically used
72 for Baytrail Chromebooks but this option is now deprecated and is
[all …]
/Linux-v4.19/drivers/gpu/drm/exynos/
DKconfig8 Choose this option if you have a Samsung SoC EXYNOS chipset.
25 Choose this option if you want to use Exynos FIMD for DRM.
30 Choose this option if you want to use Exynos5433 DECON for DRM.
36 Choose this option if you want to use Exynos DECON for DRM.
41 Choose this option if you want to use Exynos Mixer for DRM.
46 Choose this option if you want to use Exynos VIDI for DRM.
81 Choose this option if you want to use Exynos HDMI for DRM.
87 Choose this option if you want to use Exynos MIC for DRM.
96 Choose this option if you want to use Exynos G2D for DRM.
105 Choose this option if you want to use Exynos FIMC for DRM.
[all …]
/Linux-v4.19/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
46 This option enables writing to a selinuxfs node 'disable', which
49 This option is similar to the selinux=0 boot parameter, but is to
54 NOTE: selecting this option will disable the '__ro_after_init'
57 option.
[all …]

12345678910>>...88