Searched refs:option (Results 101 - 125 of 610) sorted by relevance

1234567891011>>

/linux-master/arch/loongarch/kernel/
H A DMakefile24 CFLAGS_module.o += $(call cc-option,-Wno-override-init,)
25 CFLAGS_syscall.o += $(call cc-option,-Wno-override-init,)
26 CFLAGS_traps.o += $(call cc-option,-Wno-override-init,)
27 CFLAGS_perf_event.o += $(call cc-option,-Wno-override-init,)
/linux-master/fs/adfs/
H A Dsuper.c133 int option; local
147 if (match_int(args, &option))
149 asb->s_uid = make_kuid(current_user_ns(), option);
154 if (match_int(args, &option))
156 asb->s_gid = make_kgid(current_user_ns(), option);
161 if (match_octal(args, &option))
163 asb->s_owner_mask = option;
166 if (match_octal(args, &option))
168 asb->s_other_mask = option;
171 if (match_int(args, &option))
[all...]
/linux-master/samples/pktgen/
H A Dparameters.sh30 while getopts "s:i:d:m:p:f:t:c:n:b:w:vxh6ak" option; do
31 case $option in
/linux-master/tools/testing/selftests/bpf/progs/
H A Dbpf_syscall_macro.c68 int BPF_KSYSCALL(prctl_enter, int option, unsigned long arg2, argument
76 option_syscall = option;
/linux-master/scripts/
H A DMakefile.ubsan13 ubsan-cflags-$(CONFIG_UBSAN_TRAP) += $(call cc-option,-fsanitize-trap=undefined,-fsanitize-undefined-trap-on-error)
H A DMakefile.modinst73 # are installed. If INSTALL_MOD_STRIP is '1', then the default option
79 strip-option := --strip-debug
81 strip-option := $(INSTALL_MOD_STRIP)
85 cmd_strip = $(STRIP) $(strip-option) $@
/linux-master/arch/arm64/kernel/pi/
H A DMakefile7 $(call cc-option,-mbranch-protection=none) \
12 $(call cc-option,-fno-addrsig)
/linux-master/arch/riscv/kernel/pi/
H A DMakefile6 $(call cc-option,-mbranch-protection=none) \
10 $(call cc-option,-fno-addrsig)
/linux-master/arch/arm64/kernel/vdso32/
H A DMakefile8 # Same as cc-*option, but using CC_COMPAT instead of CC
22 cc32-option = $(call try-run,\
29 # and therefore may not understand flags set using $(cc-option ...). Besides,
42 VDSO_CAFLAGS += $(call cc32-option,-fno-PIE)
48 VDSO_CAFLAGS += $(call cc32-option,-fno-dwarf2-cfi-asm)
71 VDSO_CFLAGS += $(call cc32-option,-Wno-pointer-sign)
73 VDSO_CFLAGS += $(call cc32-option,-Werror=strict-prototypes)
75 VDSO_CFLAGS += $(call cc32-option,-Werror=incompatible-pointer-types)
/linux-master/arch/arm64/
H A DMakefile20 $(call ld-option, --no-apply-dynamic-relocs)
46 KBUILD_CFLAGS += $(call cc-option,-mabi=lp64)
47 KBUILD_AFLAGS += $(call cc-option,-mabi=lp64)
79 KBUILD_CFLAGS += $(call cc-option,-mbranch-protection=none)
117 KBUILD_LDFLAGS += -EB $(call ld-option, -maarch64elfb, -maarch64linuxb -z norelro)
123 KBUILD_LDFLAGS += -EL $(call ld-option, -maarch64elf, -maarch64linux -z norelro)
/linux-master/tools/perf/util/
H A Dexpr.l1 %option prefix="expr_"
2 %option reentrant
3 %option bison-bridge
H A Dparse-events.h19 struct option;
30 int parse_events_option(const struct option *opt, const char *str, int unset);
31 int parse_events_option_new_evlist(const struct option *opt, const char *str, int unset);
47 int parse_filter(const struct option *opt, const char *str, int unset);
48 int exclude_perf(const struct option *opt, const char *arg, int unset);
H A Dsetup.py18 def clang_has_option(option):
19 cc_output = Popen([cc, cc_options + option, path.join(src_feature_tests, "test-hello.c") ], stderr=PIPE).stderr.readlines()
/linux-master/arch/s390/
H A DMakefile21 KBUILD_CFLAGS += $(call cc-option,-munaligned-symbols,)
40 KBUILD_CFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO_DWARF4), $(call cc-option, -gdwarf-4,))
80 ifneq ($(call cc-option,-mstack-size=8192 -mstack-guard=128),)
82 ifeq ($(call cc-option,-mstack-size=8192),)
105 ifeq ($(call cc-option,-mfentry -mnop-mcount),)
108 ifneq ($(call cc-option,$(cc_hotpatch)),)
/linux-master/arch/arm/
H A DMakefile23 KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
26 KBUILD_CFLAGS += $(call cc-option,-mno-fdpic)
34 KBUILD_CFLAGS += $(call cc-option,-mno-unaligned-access)
60 KBUILD_CFLAGS += $(call cc-option,-fno-ipa-sra)
66 # Only override the compiler option if ARMv6. The ARMv6K extensions are
82 # Only override the compiler option if ARMv6. The ARMv6K extensions are
115 CFLAGS_ABI :=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) $(call cc-option,-mno-thumb-interwork,)
131 AFLAGS_NOWARN :=$(call as-option,-Wa$(comma)-mno-warn-deprecated,-Wa$(comma)-W)
138 CFLAGS_ISA :=$(call cc-option,
[all...]
/linux-master/drivers/net/team/
H A Dteam.c107 struct team_option_inst { /* One for each option instance */
110 struct team_option *option; member in struct:team_option_inst
119 struct team_option *option; local
121 list_for_each_entry(option, &team->option_list, list) {
122 if (strcmp(option->name, opt_name) == 0)
123 return option;
135 struct team_option *option)
140 if (opt_inst->option == option)
145 static int __team_option_inst_add(struct team *team, struct team_option *option, argument
134 __team_option_inst_del_option(struct team *team, struct team_option *option) argument
173 __team_option_inst_add_option(struct team *team, struct team_option *option) argument
190 __team_option_inst_mark_removed_option(struct team *team, struct team_option *option) argument
218 struct team_option *option; local
248 __team_options_register(struct team *team, const struct team_option *option, size_t option_count) argument
297 __team_options_mark_removed(struct team *team, const struct team_option *option, size_t option_count) argument
312 __team_options_unregister(struct team *team, const struct team_option *option, size_t option_count) argument
332 team_options_register(struct team *team, const struct team_option *option, size_t option_count) argument
346 team_options_unregister(struct team *team, const struct team_option *option, size_t option_count) argument
2349 struct team_option *option = opt_inst->option; local
2629 struct team_option *option = opt_inst->option; local
[all...]
/linux-master/arch/powerpc/platforms/pseries/
H A Deeh_pseries.c158 * @option: reset option
162 static int pseries_eeh_phb_reset(struct pci_controller *phb, int config_addr, int option) argument
169 BUID_LO(phb->buid), option);
172 if (option == EEH_RESET_FUNDAMENTAL && ret == -8) {
173 option = EEH_RESET_HOT;
176 BUID_LO(phb->buid), option);
180 if (option == EEH_RESET_FUNDAMENTAL || option == EEH_RESET_HOT)
504 * @option
510 pseries_eeh_set_option(struct eeh_pe *pe, int option) argument
620 pseries_eeh_reset(struct eeh_pe *pe, int option) argument
[all...]
/linux-master/fs/9p/
H A Dv9fs.c44 /* Lock timeout option */
158 * @opts: The mount option string
168 int option = 0; local
200 r = match_int(&args[0], &option);
206 v9ses->debug = option;
208 p9_debug_level = option;
214 r = match_int(&args[0], &option);
221 v9ses->dfltuid = make_kuid(current_user_ns(), option);
229 r = match_int(&args[0], &option);
236 v9ses->dfltgid = make_kgid(current_user_ns(), option);
[all...]
/linux-master/tools/objtool/
H A Dbuiltin-check.c29 static int parse_dump(const struct option *opt, const char *str, int unset)
39 static int parse_hacks(const struct option *opt, const char *str, int unset)
68 static const struct option check_options[] = {
/linux-master/drivers/video/fbdev/
H A Dfm2fb.c311 char *option = NULL; local
313 if (fb_get_options("fm2fb", &option))
315 fm2fb_setup(option);
H A Dskeletonfb.c901 char *option = NULL; local
903 if (fb_get_options("xxxfb", &option))
905 xxxfb_setup(option);
989 char *option = NULL; local
996 if (fb_get_options("xxxfb", &option))
998 xxxfb_setup(option);
/linux-master/arch/x86/boot/
H A Dboot.h249 int __cmdline_find_option(unsigned long cmdline_ptr, const char *option, char *buffer, int bufsize);
250 int __cmdline_find_option_bool(unsigned long cmdline_ptr, const char *option);
251 static inline int cmdline_find_option(const char *option, char *buffer, int bufsize) argument
258 return __cmdline_find_option(cmd_line_ptr, option, buffer, bufsize);
261 static inline int cmdline_find_option_bool(const char *option) argument
268 return __cmdline_find_option_bool(cmd_line_ptr, option);
/linux-master/tools/perf/tests/
H A Dpfm.c30 struct option opt;
91 struct option opt;
/linux-master/arch/riscv/kernel/compat_vdso/
H A DMakefile24 COMPAT_CC_FLAGS += $(call cc-option,-mno-riscv-attribute)
25 COMPAT_CC_FLAGS += $(call as-option,-Wa$(comma)-mno-arch-attr)
/linux-master/drivers/staging/rts5208/
H A Drtsx_transport.c286 u32 addr, u32 len, u8 option)
296 temp_opt = option & (~RTSX_SG_END);
299 temp_opt = option;
372 u8 option; local
394 option = RTSX_SG_VALID | RTSX_SG_TRANS_DATA;
396 option |= RTSX_SG_END;
398 rtsx_add_sg_tbl(chip, (u32)addr, (u32)len, option); local
536 u8 option; local
541 option = RTSX_SG_VALID | RTSX_SG_TRANS_DATA;
543 option |
285 rtsx_add_sg_tbl(struct rtsx_chip *chip, u32 addr, u32 len, u8 option) argument
545 rtsx_add_sg_tbl(chip, (u32)addr, (u32)len, option); local
[all...]

Completed in 213 milliseconds

1234567891011>>