Searched refs:option (Results 176 - 200 of 610) sorted by relevance

1234567891011>>

/linux-master/net/netfilter/
H A Dxt_tcpudp.c35 tcp_find_option(u_int8_t option, argument
47 pr_debug("finding option\n");
61 if (op[i] == option) return !invert;
110 if (tcpinfo->option) {
115 if (!tcp_find_option(tcpinfo->option, skb, par->thoff,
H A Dxt_sctp.c20 #define SCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \
21 || (!!((invflag) & (option)) ^ (cond)))
/linux-master/tools/perf/
H A Dbuiltin-data.c38 const struct option data_options[] = {
H A Dbuiltin-version.c18 static struct option version_options[] = {
/linux-master/tools/perf/ui/
H A Dsetup.c70 int stdio__config_color(const struct option *opt __maybe_unused,
/linux-master/tools/perf/util/
H A Dbpf-filter.l1 %option prefix="perf_bpf_filter_"
2 %option noyywrap
H A Dparse-branch-options.c99 parse_branch_stack(const struct option *opt, const char *str, int unset)
H A Dbpf-filter.c26 const char *option; member in struct:perf_sample_info
83 if (info->option)
84 pr_err(" Hint: please add %s option to perf record\n", info->option);
H A Dcallchain.h239 struct option;
242 int record_parse_callchain_opt(const struct option *opt, const char *arg, int unset);
243 int record_callchain_opt(const struct option *opt, const char *arg, int unset);
/linux-master/tools/testing/selftests/cgroup/
H A Dcgroup_util.h57 int proc_mount_contains(const char *option);
/linux-master/arch/x86/include/asm/fpu/
H A Dapi.h175 extern long fpu_xstate_prctl(int option, unsigned long arg2);
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dfirmware.h5 #include <core/option.h>
/linux-master/drivers/net/bonding/
H A Dbond_options.c518 /* Searches for an option by name */
522 int option; local
524 for (option = 0; option < BOND_OPT_LAST; option++) {
525 opt = bond_opt_get(option);
534 const struct bond_opt_value *bond_opt_get_val(unsigned int option, u64 val) argument
539 opt = bond_opt_get(option);
578 * bond_opt_parse - parse option value
579 * @opt: the option t
762 __bond_opt_set(struct bonding *bond, unsigned int option, struct bond_opt_value *val, struct nlattr *bad_attr, struct netlink_ext_ack *extack) argument
801 __bond_opt_set_notify(struct bonding *bond, unsigned int option, struct bond_opt_value *val) argument
825 bond_opt_tryset_rtnl(struct bonding *bond, unsigned int option, char *buf) argument
846 bond_opt_get(unsigned int option) argument
[all...]
/linux-master/scripts/
H A Dleaking_addresses.pl244 # Gets config option value from kernel config file.
245 # Returns "" on error or if config option not found.
248 my ($option) = @_;
275 $value = option_from_file($option, $file);
284 # Parses $file and returns kernel configuration option value.
287 my ($option, $file) = @_;
293 if ($line =~ /^$option/) {
419 # CONFIG_PGTABLE_LEVELS. If config file parsing fails or config option
/linux-master/arch/riscv/crypto/
H A Dsm3-riscv64-zvksh-zvkb.S49 .option arch, +zvksh, +zvkb
H A Dsm4-riscv64-zvksed-zvkb.S49 .option arch, +zvksed, +zvkb
/linux-master/drivers/staging/rtl8712/
H A Dusb_ops.c154 void r8712_usb_set_intf_option(u32 *option) argument
156 *option = ((*option) | _INTF_ASYNC_);
/linux-master/arch/riscv/kernel/
H A DMakefile12 CFLAGS_syscall_table.o += $(call cc-option,-Wno-override-init,)
13 CFLAGS_compat_syscall_table.o += $(call cc-option,-Wno-override-init,)
16 AFLAGS_kexec_relocate.o := -mcmodel=medany $(call cc-option,-mno-relax)
/linux-master/arch/riscv/include/asm/
H A Dasm.h119 .option push
120 .option norelax
122 .option pop
/linux-master/drivers/gpu/drm/amd/display/dc/core/
H A Ddc_resource.c4429 enum dc_dither_option option = stream->dither_option; local
4435 if (option == DITHER_OPTION_DEFAULT) {
4438 option = DITHER_OPTION_SPATIAL6;
4441 option = DITHER_OPTION_SPATIAL8;
4444 option = DITHER_OPTION_TRUN10;
4447 option = DITHER_OPTION_DISABLE;
4451 if (option == DITHER_OPTION_DISABLE)
4454 if (option == DITHER_OPTION_TRUN6) {
4457 } else if (option == DITHER_OPTION_TRUN8 ||
4458 option
[all...]
/linux-master/drivers/memory/
H A Drenesas-rpc-if.c188 u32 option; /* DROPR or SMOPR */ member in struct:rpcif_priv
424 rpc->option = 0;
464 if (op->option.buswidth) {
466 rpcif_bits_set(rpc, op->option.nbytes)) |
467 RPCIF_SMENR_OPDB(rpcif_bit_size(op->option.buswidth));
468 if (op->option.ddr)
470 rpc->option = op->option.val;
517 regmap_write(rpc->regmap, RPCIF_SMOPR, rpc->option);
572 regmap_write(rpc->regmap, RPCIF_DROPR, rpc->option);
[all...]
/linux-master/fs/affs/
H A Dsuper.c209 int token, n, option; local
226 if (match_octal(&args[0], &option))
228 *mode = option & 0777;
256 if (match_int(&args[0], &option))
258 *gid = make_kgid(current_user_ns(), option);
264 if (match_int(&args[0], &option))
266 *uid = make_kuid(current_user_ns(), option);
286 pr_warn("Unrecognized mount option \"%s\" or missing value\n",
/linux-master/fs/hpfs/
H A Dsuper.c276 * A tiny parser for option strings, stolen from dosfs.
278 * And updated for table-driven option parsing.
318 int option; local
336 if (match_int(args, &option))
338 *uid = make_kuid(current_user_ns(), option);
343 if (match_int(args, &option))
345 *gid = make_kgid(current_user_ns(), option);
350 if (match_octal(args, &option))
352 *umask = option;
/linux-master/fs/tracefs/
H A Dinode.c263 int option; local
279 if (match_int(&args[0], &option))
281 uid = make_kuid(current_user_ns(), option);
287 if (match_int(&args[0], &option))
289 gid = make_kgid(current_user_ns(), option);
295 if (match_octal(&args[0], &option))
297 opts->mode = option & S_IALLUGO;
/linux-master/fs/debugfs/
H A Dinode.c109 int option; local
125 if (match_int(&args[0], &option))
127 uid = make_kuid(current_user_ns(), option);
133 if (match_int(&args[0], &option))
135 gid = make_kgid(current_user_ns(), option);
141 if (match_octal(&args[0], &option))
143 opts->mode = option & S_IALLUGO;

Completed in 203 milliseconds

1234567891011>>