Searched refs:nested (Results 51 - 62 of 62) sorted by path

123

/linux-master/net/wireless/
H A Dnl80211.c2239 struct nlattr *nested, *nested_akms; local
2246 nested = nla_nest_start(msg, NL80211_ATTR_IFTYPE_AKM_SUITES);
2247 if (!nested)
2269 nla_nest_end(msg, nested);
2813 struct nlattr *nested; local
2815 nested = nla_nest_start_noflag(msg,
2817 if (!nested)
2825 nla_nest_end(msg, nested);
2830 struct nlattr *nested; local
2832 nested
2867 struct nlattr *nested; local
2891 struct nlattr *nested_ext_capab, *nested; local
18103 struct nlattr *nested; local
18209 struct nlattr *nested; local
[all...]
/linux-master/rust/
H A DMakefile276 -mno-pointers-to-nested-functions -mno-string \
/linux-master/tools/net/ynl/
H A Dynl-gen-c.py59 if 'nested-attributes' in attr:
60 self.nested_attrs = attr['nested-attributes']
694 self.nested = type_list is None
700 if self.nested and space_name in family.consts:
1019 if 'nested-attributes' in spec:
1020 nested = spec['nested-attributes']
1022 if self.pure_nested_structs[nested].recursive:
1024 if nested not in pns_key_seen:
1042 if 'nested
[all...]
/linux-master/tools/objtool/
H A DMakefile34 WARNINGS := $(EXTRA_WARNINGS) -Wno-switch-default -Wno-switch-enum -Wno-packed -Wno-nested-externs
/linux-master/tools/perf/bench/
H A Depoll-ctl.c57 static unsigned int nested = 0; variable
79 OPT_UINTEGER( 'N', "nested", &nested, "Nesting level epoll hierarchy (default is 0, no nesting)"),
105 if (nested > EPOLL_MAXNESTS)
106 nested = EPOLL_MAXNESTS;
107 printinfo("Nesting level(s): %d\n", nested);
109 epollfdp = calloc(nested, sizeof(int));
113 for (i = 0; i < nested; i++) {
122 for (i = nested - 1; i; i--) {
343 * Deal with nested epoll
[all...]
H A Depoll-wait.c105 static unsigned int nested = 0; variable
138 OPT_UINTEGER( 'N', "nested", &nested, "Nesting level epoll hierarchy (default is 0, no nesting)"),
246 if (nested > EPOLL_MAXNESTS)
247 nested = EPOLL_MAXNESTS;
249 epollfdp = calloc(nested, sizeof(*epollfdp));
253 for (i = 0; i < nested; i++) {
262 for (i = nested - 1; i; i--) {
325 if (nested)
458 * Deal with nested epoll
[all...]
/linux-master/tools/testing/ktest/
H A Dktest.pl493 menu must be a non-nested menu. Add the quotes used in the menu
/linux-master/tools/testing/selftests/kvm/
H A Ddirty_log_perf_test.c311 printf(" -n: Run the vCPUs in nested mode (L2)\n");
386 memstress_args.nested = true;
/linux-master/tools/testing/selftests/kvm/include/
H A Dmemstress.h42 bool nested; member in struct:memstress_args
/linux-master/tools/testing/selftests/kvm/include/x86_64/
H A Dprocessor.h409 struct kvm_nested_state nested; member in union:kvm_x86_state::__anon1659
/linux-master/tools/testing/selftests/kvm/lib/
H A Dmemstress.c159 * If using nested, allocate extra pages for the nested page tables and
162 if (args->nested)
184 if (args->nested)
223 if (args->nested) {
224 pr_info("Configuring vCPUs to run in L2 (nested).\n");
/linux-master/tools/testing/selftests/kvm/lib/x86_64/
H A Dprocessor.c1073 state->nested.size = sizeof(state->nested_);
1075 vcpu_nested_state_get(vcpu, &state->nested);
1076 TEST_ASSERT(state->nested.size <= nested_size,
1078 state->nested.size, nested_size);
1080 state->nested.size = 0;
1107 if (state->nested.size)
1108 vcpu_nested_state_set(vcpu, &state->nested);

Completed in 374 milliseconds

123