Searched refs:opts (Results 151 - 175 of 512) sorted by relevance

1234567891011>>

/linux-master/drivers/phy/mediatek/
H A Dphy-mtk-dp.c109 static int mtk_dp_phy_configure(struct phy *phy, union phy_configure_opts *opts) argument
114 if (opts->dp.set_rate) {
115 switch (opts->dp.link_rate) {
119 opts->dp.link_rate);
138 TPLL_SSC_EN, opts->dp.ssc ? TPLL_SSC_EN : 0);
H A Dphy-mtk-hdmi.h26 int (*hdmi_phy_configure)(struct phy *phy, union phy_configure_opts *opts);
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dfill_link_info.c153 DECLARE_LIBBPF_OPTS(bpf_kprobe_opts, opts,
162 link = bpf_program__attach_kprobe_opts(skel->progs.kprobe_run, KPROBE_FUNC, &opts);
181 DECLARE_LIBBPF_OPTS(bpf_tracepoint_opts, opts,
187 link = bpf_program__attach_tracepoint_opts(skel->progs.tp_run, TP_CAT, TP_NAME, &opts);
199 DECLARE_LIBBPF_OPTS(bpf_perf_event_opts, opts,
217 link = bpf_program__attach_perf_event_opts(skel->progs.event_run, pfd, &opts);
233 DECLARE_LIBBPF_OPTS(bpf_uprobe_opts, opts,
243 &opts);
356 LIBBPF_OPTS(bpf_kprobe_multi_opts, opts);
360 opts
[all...]
/linux-master/fs/bcachefs/
H A Dchecksum.h130 struct bch_io_opts opts)
132 if (opts.nocow)
136 return c->opts.wide_macs
140 return bch2_csum_opt_to_type(opts.data_checksum, true);
148 return bch2_csum_opt_to_type(c->opts.metadata_checksum, false);
H A Dopts.c9 #include "opts.h"
98 static void prt_str_opt_boundscheck(struct printbuf *out, const char * const opts[], argument
102 prt_str(out, opts[idx]);
183 bool bch2_opt_defined_by_id(const struct bch_opts *opts, enum bch_opt_id id) argument
188 return opt_defined(*opts, _name);
196 u64 bch2_opt_get_by_id(const struct bch_opts *opts, enum bch_opt_id id) argument
201 return opts->_name;
209 void bch2_opt_set_by_id(struct bch_opts *opts, enum bch_opt_id id, u64 v) argument
214 opt_set(*opts, _name, v); \
455 bch2_opt_get_by_id(&c->opts,
463 bch2_parse_mount_opts(struct bch_fs *c, struct bch_opts *opts, char *options) argument
561 bch2_opts_from_sb(struct bch_opts *opts, struct bch_sb *sb) argument
[all...]
/linux-master/drivers/usb/gadget/function/
H A Df_ecm.c844 struct f_ecm_opts *opts; local
846 opts = container_of(f, struct f_ecm_opts, func_inst);
847 if (opts->bound)
848 gether_cleanup(netdev_priv(opts->net));
850 free_netdev(opts->net);
851 kfree(opts);
856 struct f_ecm_opts *opts; local
858 opts = kzalloc(sizeof(*opts), GFP_KERNEL);
859 if (!opts)
898 struct f_ecm_opts *opts; local
928 struct f_ecm_opts *opts; local
[all...]
H A Du_midi2.h64 struct f_midi2_opts *opts; member in struct:f_midi2_ep_opts
/linux-master/drivers/staging/vt6655/
H A Ddevice_main.c161 struct vnt_options *opts = &priv->opts; local
163 opts->rx_descs0 = RX_DESC_DEF0;
164 opts->rx_descs1 = RX_DESC_DEF1;
165 opts->tx_descs[0] = TX_DESC_DEF0;
166 opts->tx_descs[1] = TX_DESC_DEF1;
167 opts->int_works = INT_WORKS_DEF;
169 opts->short_retry = SHORT_RETRY_DEF;
170 opts->long_retry = LONG_RETRY_DEF;
171 opts
[all...]
/linux-master/fs/efivarfs/
H A Dsuper.c51 struct efivarfs_mount_opts *opts = &sbi->mount_opts; local
53 if (!uid_eq(opts->uid, GLOBAL_ROOT_UID))
55 from_kuid_munged(&init_user_ns, opts->uid));
56 if (!gid_eq(opts->gid, GLOBAL_ROOT_GID))
58 from_kgid_munged(&init_user_ns, opts->gid));
286 struct efivarfs_mount_opts *opts = &sbi->mount_opts; local
296 opts->uid = make_kuid(current_user_ns(), result.uint_32);
297 if (!uid_valid(opts->uid))
301 opts->gid = make_kgid(current_user_ns(), result.uint_32);
302 if (!gid_valid(opts
[all...]
/linux-master/include/net/
H A Dmptcp.h140 unsigned int *size, struct mptcp_out_options *opts);
142 struct mptcp_out_options *opts);
145 struct mptcp_out_options *opts);
149 struct mptcp_out_options *opts);
246 struct mptcp_out_options *opts)
253 struct mptcp_out_options *opts)
262 struct mptcp_out_options *opts)
244 mptcp_syn_options(struct sock *sk, const struct sk_buff *skb, unsigned int *size, struct mptcp_out_options *opts) argument
251 mptcp_synack_options(const struct request_sock *req, unsigned int *size, struct mptcp_out_options *opts) argument
258 mptcp_established_options(struct sock *sk, struct sk_buff *skb, unsigned int *size, unsigned int remaining, struct mptcp_out_options *opts) argument
/linux-master/tools/testing/selftests/bpf/map_tests/
H A Dmap_in_map_batch_ops.c122 struct bpf_map_batch_opts *opts,
147 &fetch_count, opts)
153 &fetch_count, opts);
191 LIBBPF_OPTS(bpf_map_batch_opts, opts);
214 inner_map_fds, &max_entries, &opts);
221 fetch_and_validate(outer_map_fd, &opts,
226 fetch_and_validate(outer_map_fd, &opts,
121 fetch_and_validate(int outer_map_fd, struct bpf_map_batch_opts *opts, __u32 batch_size, bool delete_entries) argument
H A Darray_map_batch_ops.c20 DECLARE_LIBBPF_OPTS(bpf_map_batch_opts, opts,
36 err = bpf_map_update_batch(map_fd, keys, values, &max_entries, &opts);
78 DECLARE_LIBBPF_OPTS(bpf_map_batch_opts, opts,
116 &count, &opts);
/linux-master/tools/perf/tests/
H A Dopenat-syscall-tp-fields.c29 struct record_opts opts = { local
59 err = evlist__create_maps(evlist, &opts.target);
65 evsel__config(evsel, &opts, NULL);
/linux-master/tools/objtool/
H A Dobjtool.c97 if (opts.backup && !objtool_create_backup(objname)) {
109 file.ignore_unreachables = opts.no_unreachable;
117 if (!opts.noinstr)
/linux-master/drivers/nvme/target/
H A Dloop.c286 nvmf_free_options(nctrl->opts);
304 struct nvmf_ctrl_options *opts = ctrl->ctrl.opts; local
308 nr_io_queues = min(opts->nr_io_queues, num_online_cpus());
527 if ((ctrl->opts->mask & NVMF_OPT_TRADDR) &&
528 strcmp(ctrl->opts->traddr, p->disc_addr.traddr))
538 struct nvmf_ctrl_options *opts)
546 ctrl->ctrl.opts = opts;
563 ctrl->ctrl.kato = opts
537 nvme_loop_create_ctrl(struct device *dev, struct nvmf_ctrl_options *opts) argument
[all...]
/linux-master/fs/ext2/
H A Dsuper.c468 struct ext2_mount_options *opts)
487 clear_opt (opts->s_mount_opt, MINIX_DF);
490 set_opt (opts->s_mount_opt, MINIX_DF);
493 set_opt (opts->s_mount_opt, GRPID);
496 clear_opt (opts->s_mount_opt, GRPID);
507 opts->s_resuid = uid;
517 opts->s_resgid = gid;
524 clear_opt (opts->s_mount_opt, ERRORS_CONT);
525 clear_opt (opts->s_mount_opt, ERRORS_RO);
526 set_opt (opts
467 parse_options(char *options, struct super_block *sb, struct ext2_mount_options *opts) argument
821 struct ext2_mount_options opts; local
[all...]
/linux-master/tools/perf/util/
H A Devsel.c844 static void __evsel__config_callchain(struct evsel *evsel, struct record_opts *opts, argument
855 if (opts->kernel_callchains)
857 if (opts->user_callchains)
860 if (!opts->branch_stack) {
882 if (opts->sample_user_regs &&
905 void evsel__config_callchain(struct evsel *evsel, struct record_opts *opts, argument
909 return __evsel__config_callchain(evsel, opts, param);
930 struct record_opts *opts, bool track)
946 if (!(term->weak && opts->user_interval != ULLONG_MAX)) {
953 if (!(term->weak && opts
929 evsel__apply_config_terms(struct evsel *evsel, struct record_opts *opts, bool track) argument
1084 evsel__set_default_freq_period(struct record_opts *opts, struct perf_event_attr *attr) argument
1128 evsel__config(struct evsel *evsel, struct record_opts *opts, struct callchain_param *callchain) argument
[all...]
H A Dauxtrace.h394 struct record_opts *opts);
408 struct record_opts *opts,
577 struct record_opts *opts,
581 struct record_opts *opts, const char *str);
585 struct record_opts *opts);
688 void itrace_synth_opts__set_time_range(struct itrace_synth_opts *opts, argument
692 opts->ptime_range = ptime_range;
693 opts->range_num = range_num;
697 void itrace_synth_opts__clear_time_range(struct itrace_synth_opts *opts) argument
699 opts
[all...]
/linux-master/drivers/scsi/aic7xxx/
H A DMakefile53 aicasm-7xxx-opts-$(CONFIG_AIC7XXX_REG_PRETTY_PRINT) := \
59 $(aicasm-7xxx-opts-y) -o $(obj)/aic7xxx_seq.h \
71 aicasm-79xx-opts-$(CONFIG_AIC79XX_REG_PRETTY_PRINT) := \
77 $(aicasm-79xx-opts-y) -o $(obj)/aic79xx_seq.h \
/linux-master/kernel/trace/
H A Dtrace_nop.c32 .opts = nop_opts
/linux-master/arch/um/drivers/
H A Dnull.c15 static void *null_init(char *str, int device, const struct chan_opts *opts) argument
/linux-master/scripts/package/debian/
H A Drules26 make-opts = ARCH=$(ARCH) KERNELRELEASE=$(KERNELRELEASE) KBUILD_BUILD_VERSION=$(revision) $(addprefix CROSS_COMPILE=,$(CROSS_COMPILE))
48 $(Q)+$(MAKE) $(make-opts) run-command KBUILD_RUN_COMMAND='+$$(srctree)/scripts/package/builddeb $(package)'
73 $(Q)$(MAKE) $(make-opts) olddefconfig
74 $(Q)$(MAKE) $(make-opts) $(if $(filter um,$(ARCH)),,headers) all
/linux-master/drivers/phy/cadence/
H A Dcdns-dphy.c121 struct phy_configure_opts_mipi_dphy *opts,
140 dlane_bps = opts->hs_clk_rate;
284 struct phy_configure_opts_mipi_dphy *opts,
291 ret = phy_mipi_dphy_config_validate(opts);
296 opts, &dsi_hfp_ext);
300 opts->wakeup = cdns_dphy_get_wakeup_time_ns(dphy) / 1000;
324 union phy_configure_opts *opts)
331 return cdns_dphy_config_from_opts(phy, &opts->mipi_dphy, &cfg);
334 static int cdns_dphy_configure(struct phy *phy, union phy_configure_opts *opts) argument
341 ret = cdns_dphy_config_from_opts(phy, &opts
119 cdns_dsi_get_dphy_pll_cfg(struct cdns_dphy *dphy, struct cdns_dphy_cfg *cfg, struct phy_configure_opts_mipi_dphy *opts, unsigned int *dsi_hfp_ext) argument
283 cdns_dphy_config_from_opts(struct phy *phy, struct phy_configure_opts_mipi_dphy *opts, struct cdns_dphy_cfg *cfg) argument
323 cdns_dphy_validate(struct phy *phy, enum phy_mode mode, int submode, union phy_configure_opts *opts) argument
[all...]
/linux-master/net/ipv4/
H A Dtcp_output.c457 struct tcp_out_options *opts)
460 if (unlikely(OPTION_MPTCP & opts->options))
461 mptcp_write_options(th, ptr, tp, &opts->mptcp);
483 struct tcp_out_options *opts,
535 opts->bpf_opt_len = *remaining - sock_ops.remaining_opt_len;
537 opts->bpf_opt_len = (opts->bpf_opt_len + 3) & ~3;
539 *remaining -= opts->bpf_opt_len;
546 struct tcp_out_options *opts)
548 u8 first_opt_off, nr_written, max_opt_len = opts
455 mptcp_options_write(struct tcphdr *th, __be32 *ptr, struct tcp_sock *tp, struct tcp_out_options *opts) argument
479 bpf_skops_hdr_opt_len(struct sock *sk, struct sk_buff *skb, struct request_sock *req, struct sk_buff *syn_skb, enum tcp_synack_type synack_type, struct tcp_out_options *opts, unsigned int *remaining) argument
542 bpf_skops_write_hdr_opt(struct sock *sk, struct sk_buff *skb, struct request_sock *req, struct sk_buff *syn_skb, enum tcp_synack_type synack_type, struct tcp_out_options *opts) argument
586 bpf_skops_hdr_opt_len(struct sock *sk, struct sk_buff *skb, struct request_sock *req, struct sk_buff *syn_skb, enum tcp_synack_type synack_type, struct tcp_out_options *opts, unsigned int *remaining) argument
595 bpf_skops_write_hdr_opt(struct sock *sk, struct sk_buff *skb, struct request_sock *req, struct sk_buff *syn_skb, enum tcp_synack_type synack_type, struct tcp_out_options *opts) argument
604 process_tcp_ao_options(struct tcp_sock *tp, const struct tcp_request_sock *tcprsk, struct tcp_out_options *opts, struct tcp_key *key, __be32 *ptr) argument
655 tcp_options_write(struct tcphdr *th, struct tcp_sock *tp, const struct tcp_request_sock *tcprsk, struct tcp_out_options *opts, struct tcp_key *key) argument
758 smc_set_option(const struct tcp_sock *tp, struct tcp_out_options *opts, unsigned int *remaining) argument
774 smc_set_option_cond(const struct tcp_sock *tp, const struct inet_request_sock *ireq, struct tcp_out_options *opts, unsigned int *remaining) argument
791 mptcp_set_option_cond(const struct request_sock *req, struct tcp_out_options *opts, unsigned int *remaining) argument
810 tcp_syn_options(struct sock *sk, struct sk_buff *skb, struct tcp_out_options *opts, struct tcp_key *key) argument
893 tcp_synack_options(const struct sock *sk, struct request_sock *req, unsigned int mss, struct sk_buff *skb, struct tcp_out_options *opts, const struct tcp_key *key, struct tcp_fastopen_cookie *foc, enum tcp_synack_type synack_type, struct sk_buff *syn_skb) argument
958 smc_set_option_cond(tcp_sk(sk), ireq, opts, &remaining); local
969 tcp_established_options(struct sock *sk, struct sk_buff *skb, struct tcp_out_options *opts, struct tcp_key *key) argument
1288 struct tcp_out_options opts; local
1858 struct tcp_out_options opts; local
3672 struct tcp_out_options opts; local
[all...]
/linux-master/tools/usb/usbip/src/
H A Dusbip_unbind.c102 static const struct option opts[] = { local
111 opt = getopt_long(argc, argv, "b:", opts, NULL);

Completed in 195 milliseconds

1234567891011>>