/openbmc/qemu/tests/qemu-iotests/ |
H A D | 245 | 91 def reopenMultiple(self, opts, errmsg = None): argument 92 result = self.vm.qmp('blockdev-reopen', conv_keys=False, options=opts) 102 def reopen(self, opts, newopts = {}, errmsg = None): argument 103 opts = copy.deepcopy(opts) 110 subdict = opts 113 subdict = opts[prefix] 116 self.reopenMultiple([ opts ], errmsg) 138 opts = hd_opts(0) 139 self.vm.cmd('blockdev-add', conv_keys = False, **opts) 143 self.reopen(opts) [all …]
|
/openbmc/qemu/tests/unit/ |
H A D | test-qemu-opts.c | 132 QemuOpts *opts; in test_qemu_opts_create() local 140 opts = qemu_opts_find(list, NULL); in test_qemu_opts_create() 141 g_assert(opts == NULL); in test_qemu_opts_create() 144 opts = qemu_opts_create(list, NULL, 0, &error_abort); in test_qemu_opts_create() 145 g_assert(opts != NULL); in test_qemu_opts_create() 149 opts = qemu_opts_find(list, NULL); in test_qemu_opts_create() 150 g_assert(opts != NULL); in test_qemu_opts_create() 152 qemu_opts_del(opts); in test_qemu_opts_create() 155 opts = qemu_opts_find(list, NULL); in test_qemu_opts_create() 156 g_assert(opts == NULL); in test_qemu_opts_create() [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | verifier_log.c | 36 static int load_prog(struct bpf_prog_load_opts *opts, bool expect_load_error) in load_prog() argument 41 "GPL", insns, insn_cnt, opts); in load_prog() 49 LIBBPF_OPTS(bpf_prog_load_opts, opts); in verif_log_subtest() 77 opts.log_buf = logs.reference; in verif_log_subtest() 78 opts.log_size = sizeof(logs.reference); in verif_log_subtest() 79 opts.log_level = log_level | 8 /* BPF_LOG_FIXED */; in verif_log_subtest() 80 load_prog(&opts, expect_load_error); in verif_log_subtest() 100 opts.log_buf = logs.buf; in verif_log_subtest() 101 opts.log_level = log_level | 8; /* fixed-length log */ in verif_log_subtest() 102 opts.log_size = 25; in verif_log_subtest() [all …]
|
H A D | kprobe_multi_test.c | 61 static void test_link_api(struct bpf_link_create_opts *opts) in test_link_api() argument 72 link1_fd = bpf_link_create(prog_fd, 0, BPF_TRACE_KPROBE_MULTI, opts); in test_link_api() 76 opts->kprobe_multi.flags = BPF_F_KPROBE_MULTI_RETURN; in test_link_api() 78 link2_fd = bpf_link_create(prog_fd, 0, BPF_TRACE_KPROBE_MULTI, opts); in test_link_api() 100 LIBBPF_OPTS(bpf_link_create_opts, opts); in test_link_api_addrs() 112 opts.kprobe_multi.addrs = (const unsigned long*) addrs; in test_link_api_addrs() 113 opts.kprobe_multi.cnt = ARRAY_SIZE(addrs); in test_link_api_addrs() 114 test_link_api(&opts); in test_link_api_addrs() 119 LIBBPF_OPTS(bpf_link_create_opts, opts); in test_link_api_syms() 131 opts.kprobe_multi.syms = syms; in test_link_api_syms() [all …]
|
H A D | xdp_context_test_run.c | 6 void test_xdp_context_error(int prog_fd, struct bpf_test_run_opts opts, in test_xdp_context_error() argument 21 opts.ctx_in = &ctx; in test_xdp_context_error() 22 opts.ctx_size_in = sizeof(ctx); in test_xdp_context_error() 23 err = bpf_prog_test_run_opts(prog_fd, &opts); in test_xdp_context_error() 34 DECLARE_LIBBPF_OPTS(bpf_test_run_opts, opts, in test_xdp_context_test_run() 50 opts.ctx_in = bad_ctx; in test_xdp_context_test_run() 51 opts.ctx_size_in = sizeof(bad_ctx); in test_xdp_context_test_run() 52 err = bpf_prog_test_run_opts(prog_fd, &opts); in test_xdp_context_test_run() 58 opts.ctx_in = &ctx_in; in test_xdp_context_test_run() 59 opts.ctx_size_in = sizeof(ctx_in); in test_xdp_context_test_run() [all …]
|
H A D | bpf_cookie.c | 24 DECLARE_LIBBPF_OPTS(bpf_kprobe_opts, opts); in kprobe_subtest() 29 opts.bpf_cookie = 0x1; in kprobe_subtest() 30 opts.retprobe = false; in kprobe_subtest() 32 SYS_NANOSLEEP_KPROBE_NAME, &opts); in kprobe_subtest() 36 opts.bpf_cookie = 0x2; in kprobe_subtest() 37 opts.retprobe = false; in kprobe_subtest() 39 SYS_NANOSLEEP_KPROBE_NAME, &opts); in kprobe_subtest() 44 opts.bpf_cookie = 0x10; in kprobe_subtest() 45 opts.retprobe = true; in kprobe_subtest() 47 SYS_NANOSLEEP_KPROBE_NAME, &opts); in kprobe_subtest() [all …]
|
H A D | uprobe_multi_test.c | 153 __test_attach_api(const char *binary, const char *pattern, struct bpf_uprobe_multi_opts *opts, in __test_attach_api() argument 163 opts->retprobe = false; in __test_attach_api() 165 binary, pattern, opts); in __test_attach_api() 169 opts->retprobe = true; in __test_attach_api() 171 binary, pattern, opts); in __test_attach_api() 175 opts->retprobe = false; in __test_attach_api() 177 binary, pattern, opts); in __test_attach_api() 181 opts->retprobe = true; in __test_attach_api() 183 pid, binary, pattern, opts); in __test_attach_api() 187 opts->retprobe = false; in __test_attach_api() [all …]
|
H A D | log_buf.c | 33 LIBBPF_OPTS(bpf_object_open_opts, opts); in obj_load_log_buf() 47 opts.kernel_log_buf = obj_log_buf; in obj_load_log_buf() 48 opts.kernel_log_size = log_buf_sz; in obj_load_log_buf() 49 opts.kernel_log_level = 4; /* for BTF this will turn into 1 */ in obj_load_log_buf() 54 skel = test_log_buf__open_opts(&opts); in obj_load_log_buf() 101 opts.kernel_log_buf = NULL; /* let everything through into print callback */ in obj_load_log_buf() 102 opts.kernel_log_size = 0; in obj_load_log_buf() 103 opts.kernel_log_level = 1; in obj_load_log_buf() 105 skel = test_log_buf__open_opts(&opts); in obj_load_log_buf() 151 LIBBPF_OPTS(bpf_prog_load_opts, opts); in bpf_prog_load_log_buf() [all …]
|
/openbmc/linux/tools/objtool/ |
H A D | builtin-check.c | 17 struct opts opts; variable 32 opts.dump_orc = true; in parse_dump() 51 opts.hack_jump_label = true; in parse_hacks() 56 opts.hack_noinstr = true; in parse_hacks() 61 opts.hack_skylake = true; in parse_hacks() 71 OPT_BOOLEAN('i', "ibt", &opts.ibt, "validate and annotate IBT"), 72 OPT_BOOLEAN('m', "mcount", &opts.mcount, "annotate mcount/fentry calls for ftrace"), 73 OPT_BOOLEAN('n', "noinstr", &opts.noinstr, "validate noinstr rules"), 74 OPT_BOOLEAN('o', "orc", &opts.orc, "generate ORC metadata"), 75 OPT_BOOLEAN('r', "retpoline", &opts.retpoline, "validate and annotate retpoline usage"), [all …]
|
/openbmc/qemu/util/ |
H A D | qemu-option.c | 125 static const char *find_default_by_name(QemuOpts *opts, const char *name) in find_default_by_name() argument 127 const QemuOptDesc *desc = find_desc_by_name(opts->list->desc, name); in find_default_by_name() 224 QemuOpt *qemu_opt_find(QemuOpts *opts, const char *name) in qemu_opt_find() argument 228 QTAILQ_FOREACH_REVERSE(opt, &opts->head, next) { in qemu_opt_find() 238 QTAILQ_REMOVE(&opt->opts->head, opt, next); in qemu_opt_del() 247 static void qemu_opt_del_all(QemuOpts *opts, const char *name) in qemu_opt_del_all() argument 251 QTAILQ_FOREACH_SAFE(opt, &opts->head, next, next_opt) { in qemu_opt_del_all() 258 const char *qemu_opt_get(QemuOpts *opts, const char *name) in qemu_opt_get() argument 262 if (opts == NULL) { in qemu_opt_get() 266 opt = qemu_opt_find(opts, name); in qemu_opt_get() [all …]
|
/openbmc/linux/drivers/usb/gadget/function/ |
H A D | u_ether_configfs.h | 19 struct f_##_f_##_opts *opts = to_f_##_f_##_opts(item); \ 21 usb_put_function_instance(&opts->func_inst); \ 32 struct f_##_f_##_opts *opts = to_f_##_f_##_opts(item); \ 35 mutex_lock(&opts->lock); \ 36 result = gether_get_dev_addr(opts->net, page, PAGE_SIZE); \ 37 mutex_unlock(&opts->lock); \ 45 struct f_##_f_##_opts *opts = to_f_##_f_##_opts(item); \ 48 mutex_lock(&opts->lock); \ 49 if (opts->refcnt) { \ 50 mutex_unlock(&opts->lock); \ [all …]
|
H A D | uvc_configfs.c | 191 struct f_uvc_opts *opts; \ 199 opts = to_f_uvc_opts(opts_item); \ 201 mutex_lock(&opts->lock); \ 203 mutex_unlock(&opts->lock); \ 214 struct f_uvc_opts *opts; \ 223 opts = to_f_uvc_opts(opts_item); \ 225 mutex_lock(&opts->lock); \ 226 if (ch->linked || opts->refcnt) { \ 242 mutex_unlock(&opts->lock); \ 309 struct f_uvc_opts *opts; \ [all …]
|
H A D | f_uac1.c | 434 struct f_uac1_opts *opts = g_audio_to_uac1_opts(audio); in in_rq_cur() local 442 if ((FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) || in in_rq_cur() 443 (FUOUT_EN(opts) && (entity_id == USB_OUT_FU_ID))) { in in_rq_cur() 446 if (FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) in in_rq_cur() 485 struct f_uac1_opts *opts = g_audio_to_uac1_opts(audio); in in_rq_min() local 493 if ((FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) || in in_rq_min() 494 (FUOUT_EN(opts) && (entity_id == USB_OUT_FU_ID))) { in in_rq_min() 497 if (FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) in in_rq_min() 505 min_db = opts->p_volume_min; in in_rq_min() 507 min_db = opts->c_volume_min; in in_rq_min() [all …]
|
H A D | f_uvc.c | 652 struct f_uvc_opts *opts; in uvc_function_bind() local 657 opts = fi_to_f_uvc_opts(f->fi); in uvc_function_bind() 659 opts->streaming_interval = clamp(opts->streaming_interval, 1U, 16U); in uvc_function_bind() 660 opts->streaming_maxpacket = clamp(opts->streaming_maxpacket, 1U, 3072U); in uvc_function_bind() 661 opts->streaming_maxburst = min(opts->streaming_maxburst, 15U); in uvc_function_bind() 664 if (opts->streaming_maxburst && in uvc_function_bind() 665 (opts->streaming_maxpacket % 1024) != 0) { in uvc_function_bind() 666 opts->streaming_maxpacket = roundup(opts->streaming_maxpacket, 1024); in uvc_function_bind() 668 opts->streaming_maxpacket); in uvc_function_bind() 678 if (opts->streaming_maxpacket <= 1024) { in uvc_function_bind() [all …]
|
/openbmc/linux/drivers/nvme/host/ |
H A D | fabrics.c | 133 if (ctrl->opts->mask & NVMF_OPT_TRADDR) in nvmf_get_address() 134 len += scnprintf(buf, size, "traddr=%s", ctrl->opts->traddr); in nvmf_get_address() 135 if (ctrl->opts->mask & NVMF_OPT_TRSVCID) in nvmf_get_address() 137 (len) ? "," : "", ctrl->opts->trsvcid); in nvmf_get_address() 138 if (ctrl->opts->mask & NVMF_OPT_HOST_TRADDR) in nvmf_get_address() 140 (len) ? "," : "", ctrl->opts->host_traddr); in nvmf_get_address() 141 if (ctrl->opts->mask & NVMF_OPT_HOST_IFACE) in nvmf_get_address() 143 (len) ? "," : "", ctrl->opts->host_iface); in nvmf_get_address() 387 uuid_copy(&data->hostid, &ctrl->opts->host->id); in nvmf_connect_data_prep() 389 strncpy(data->subsysnqn, ctrl->opts->subsysnqn, NVMF_NQN_SIZE); in nvmf_connect_data_prep() [all …]
|
/openbmc/linux/tools/lib/bpf/ |
H A D | bpf.c | 170 const struct bpf_map_create_opts *opts) in bpf_map_create() argument 180 if (!OPTS_VALID(opts, bpf_map_create_opts)) in bpf_map_create() 190 attr.btf_fd = OPTS_GET(opts, btf_fd, 0); in bpf_map_create() 191 attr.btf_key_type_id = OPTS_GET(opts, btf_key_type_id, 0); in bpf_map_create() 192 attr.btf_value_type_id = OPTS_GET(opts, btf_value_type_id, 0); in bpf_map_create() 193 attr.btf_vmlinux_value_type_id = OPTS_GET(opts, btf_vmlinux_value_type_id, 0); in bpf_map_create() 195 attr.inner_map_fd = OPTS_GET(opts, inner_map_fd, 0); in bpf_map_create() 196 attr.map_flags = OPTS_GET(opts, map_flags, 0); in bpf_map_create() 197 attr.map_extra = OPTS_GET(opts, map_extra, 0); in bpf_map_create() 198 attr.numa_node = OPTS_GET(opts, numa_node, 0); in bpf_map_create() [all …]
|
H A D | libbpf_probes.c | 107 LIBBPF_OPTS(bpf_prog_load_opts, opts, in probe_prog_load() 118 opts.expected_attach_type = BPF_CGROUP_INET4_CONNECT; in probe_prog_load() 121 opts.expected_attach_type = BPF_CGROUP_GETSOCKOPT; in probe_prog_load() 124 opts.expected_attach_type = BPF_SK_LOOKUP; in probe_prog_load() 127 opts.kern_version = get_kernel_version(); in probe_prog_load() 130 opts.expected_attach_type = BPF_LIRC_MODE2; in probe_prog_load() 134 opts.log_buf = buf; in probe_prog_load() 135 opts.log_size = sizeof(buf); in probe_prog_load() 136 opts.log_level = 1; in probe_prog_load() 138 opts.expected_attach_type = BPF_TRACE_FENTRY; in probe_prog_load() [all …]
|
/openbmc/linux/net/mptcp/ |
H A D | options.c | 405 unsigned int *size, struct mptcp_out_options *opts) in mptcp_syn_options() argument 414 opts->suboptions = OPTION_MPTCP_MPC_SYN; in mptcp_syn_options() 415 opts->csum_reqd = mptcp_is_checksum_enabled(sock_net(sk)); in mptcp_syn_options() 416 opts->allow_join_id0 = mptcp_allow_join_id0(sock_net(sk)); in mptcp_syn_options() 422 opts->suboptions = OPTION_MPTCP_MPJ_SYN; in mptcp_syn_options() 423 opts->join_id = subflow->local_id; in mptcp_syn_options() 424 opts->token = subflow->remote_token; in mptcp_syn_options() 425 opts->nonce = subflow->local_nonce; in mptcp_syn_options() 426 opts->backup = subflow->request_bkup; in mptcp_syn_options() 446 struct mptcp_out_options *opts) in mptcp_established_options_mp() argument [all …]
|
/openbmc/qemu/include/qemu/ |
H A D | option.h | 74 const char *qemu_opt_get(QemuOpts *opts, const char *name); 75 char *qemu_opt_get_del(QemuOpts *opts, const char *name); 87 bool qemu_opt_has_help_opt(QemuOpts *opts); 88 QemuOpt *qemu_opt_find(QemuOpts *opts, const char *name); 89 bool qemu_opt_get_bool(QemuOpts *opts, const char *name, bool defval); 90 uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval); 91 uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval); 92 bool qemu_opt_get_bool_del(QemuOpts *opts, const char *name, bool defval); 93 uint64_t qemu_opt_get_number_del(QemuOpts *opts, const char *name, 95 uint64_t qemu_opt_get_size_del(QemuOpts *opts, const char *name, [all …]
|
/openbmc/linux/net/netfilter/ |
H A D | nf_synproxy_core.c | 29 const struct tcphdr *th, struct synproxy_options *opts) in synproxy_parse_options() argument 41 opts->options = 0; in synproxy_parse_options() 64 opts->mss_option = get_unaligned_be16(ptr); in synproxy_parse_options() 65 opts->options |= NF_SYNPROXY_OPT_MSS; in synproxy_parse_options() 70 opts->wscale = *ptr; in synproxy_parse_options() 71 if (opts->wscale > TCP_MAX_WSCALE) in synproxy_parse_options() 72 opts->wscale = TCP_MAX_WSCALE; in synproxy_parse_options() 73 opts->options |= NF_SYNPROXY_OPT_WSCALE; in synproxy_parse_options() 78 opts->tsval = get_unaligned_be32(ptr); in synproxy_parse_options() 79 opts->tsecr = get_unaligned_be32(ptr + 4); in synproxy_parse_options() [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_bpf_nf_fail.c | 30 struct bpf_ct_opts___local opts = {}; in alloc_release() local 34 ct = bpf_skb_ct_alloc(ctx, &tup, sizeof(tup.ipv4), &opts, sizeof(opts)); in alloc_release() 44 struct bpf_ct_opts___local opts = {}; in insert_insert() local 48 ct = bpf_skb_ct_alloc(ctx, &tup, sizeof(tup.ipv4), &opts, sizeof(opts)); in insert_insert() 61 struct bpf_ct_opts___local opts = {}; in lookup_insert() local 65 ct = bpf_skb_ct_lookup(ctx, &tup, sizeof(tup.ipv4), &opts, sizeof(opts)); in lookup_insert() 75 struct bpf_ct_opts___local opts = {}; in write_not_allowlisted_field() local 79 ct = bpf_skb_ct_lookup(ctx, &tup, sizeof(tup.ipv4), &opts, sizeof(opts)); in write_not_allowlisted_field() 89 struct bpf_ct_opts___local opts = {}; in set_timeout_after_insert() local 93 ct = bpf_skb_ct_alloc(ctx, &tup, sizeof(tup.ipv4), &opts, sizeof(opts)); in set_timeout_after_insert() [all …]
|
/openbmc/linux/tools/perf/arch/arm64/util/ |
H A D | arm-spe.c | 68 arm_spe_snapshot_resolve_auxtrace_defaults(struct record_opts *opts, in arm_spe_snapshot_resolve_auxtrace_defaults() argument 85 if (!opts->auxtrace_snapshot_size && !opts->auxtrace_mmap_pages) { in arm_spe_snapshot_resolve_auxtrace_defaults() 87 opts->auxtrace_mmap_pages = MiB(4) / page_size; in arm_spe_snapshot_resolve_auxtrace_defaults() 89 opts->auxtrace_mmap_pages = KiB(128) / page_size; in arm_spe_snapshot_resolve_auxtrace_defaults() 90 if (opts->mmap_pages == UINT_MAX) in arm_spe_snapshot_resolve_auxtrace_defaults() 91 opts->mmap_pages = KiB(256) / page_size; in arm_spe_snapshot_resolve_auxtrace_defaults() 93 } else if (!opts->auxtrace_mmap_pages && !privileged && opts->mmap_pages == UINT_MAX) { in arm_spe_snapshot_resolve_auxtrace_defaults() 94 opts->mmap_pages = KiB(256) / page_size; in arm_spe_snapshot_resolve_auxtrace_defaults() 101 if (!opts->auxtrace_snapshot_size) in arm_spe_snapshot_resolve_auxtrace_defaults() 102 opts->auxtrace_snapshot_size = opts->auxtrace_mmap_pages * (size_t)page_size; in arm_spe_snapshot_resolve_auxtrace_defaults() [all …]
|
/openbmc/linux/tools/perf/util/ |
H A D | record.c | 95 void evlist__config(struct evlist *evlist, struct record_opts *opts, struct callchain_param *callch… in evlist__config() argument 100 bool sample_id = opts->sample_id; in evlist__config() 103 opts->no_inherit = true; in evlist__config() 108 evsel__config(evsel, opts, callchain); in evlist__config() 117 if (opts->full_auxtrace || opts->sample_identifier) { in evlist__config() 150 static int record_opts__config_freq(struct record_opts *opts) in record_opts__config_freq() argument 152 bool user_freq = opts->user_freq != UINT_MAX; in record_opts__config_freq() 153 bool user_interval = opts->user_interval != ULLONG_MAX; in record_opts__config_freq() 162 opts->default_interval = opts->user_interval; in record_opts__config_freq() 164 opts->freq = opts->user_freq; in record_opts__config_freq() [all …]
|
/openbmc/linux/tools/perf/arch/x86/util/ |
H A D | intel-bts.c | 107 struct record_opts *opts) in intel_bts_recording_options() argument 116 if (opts->auxtrace_sample_mode) { in intel_bts_recording_options() 122 btsr->snapshot_mode = opts->auxtrace_snapshot_mode; in intel_bts_recording_options() 134 opts->full_auxtrace = true; in intel_bts_recording_options() 138 if (opts->auxtrace_snapshot_mode && !opts->full_auxtrace) { in intel_bts_recording_options() 143 if (!opts->full_auxtrace) in intel_bts_recording_options() 146 if (opts->full_auxtrace && !perf_cpu_map__empty(cpus)) { in intel_bts_recording_options() 152 if (opts->auxtrace_snapshot_mode) { in intel_bts_recording_options() 153 if (!opts->auxtrace_snapshot_size && !opts->auxtrace_mmap_pages) { in intel_bts_recording_options() 155 opts->auxtrace_mmap_pages = MiB(4) / page_size; in intel_bts_recording_options() [all …]
|
/openbmc/linux/drivers/net/ppp/ |
H A D | ppp_mppe.h | 34 #define MPPE_OPTS_TO_CI(opts, ci) \ argument 39 if (opts & MPPE_OPT_STATEFUL) \ 48 if (opts & MPPE_OPT_128) \ 50 if (opts & MPPE_OPT_40) \ 56 #define MPPE_CI_TO_OPTS(ci, opts) \ argument 60 opts = 0; \ 64 opts |= MPPE_OPT_STATEFUL; \ 68 opts |= MPPE_OPT_128; \ 70 opts |= MPPE_OPT_40; \ 74 opts |= MPPE_OPT_56; \ [all …]
|