/kernel/linux/linux-5.10/drivers/acpi/acpica/ |
D | psscope.c | 32 return (parser_state->scope->parse_scope.op); in acpi_ps_get_parent_scope() 53 ((parser_state->aml >= parser_state->scope->parse_scope.arg_end in acpi_ps_has_completed_scope() 54 || !parser_state->scope->parse_scope.arg_count))); in acpi_ps_has_completed_scope() 74 union acpi_generic_state *scope; in acpi_ps_init_scope() local 78 scope = acpi_ut_create_generic_state(); in acpi_ps_init_scope() 79 if (!scope) { in acpi_ps_init_scope() 83 scope->common.descriptor_type = ACPI_DESC_TYPE_STATE_RPSCOPE; in acpi_ps_init_scope() 84 scope->parse_scope.op = root_op; in acpi_ps_init_scope() 85 scope->parse_scope.arg_count = ACPI_VAR_ARGS; in acpi_ps_init_scope() 86 scope->parse_scope.arg_end = parser_state->aml_end; in acpi_ps_init_scope() [all …]
|
D | dswscope.c | 40 walk_state->scope_info = scope_info->scope.next; in acpi_ds_scope_stack_clear() 100 scope_info->scope.node = node; in acpi_ds_scope_stack_push() 114 scope.node), in acpi_ds_scope_stack_push() 123 acpi_ut_get_node_name(scope_info->scope.node), in acpi_ds_scope_stack_push() 164 acpi_ut_get_node_name(scope_info->scope.node), in acpi_ds_scope_stack_pop() 171 scope.node), in acpi_ds_scope_stack_pop()
|
/kernel/liteos_a/testsuites/unittest/libc/posix/pthread/full/ |
D | It_posix_pthread_177.cpp | 38 INT32 scope; in Testcase() local 43 ret = pthread_attr_getscope(&attr, &scope); in Testcase() 45 ICUNIT_ASSERT_EQUAL(scope, PTHREAD_SCOPE_PROCESS, scope); in Testcase() 51 ret = pthread_attr_getscope(&attr, &scope); in Testcase() 53 ICUNIT_ASSERT_EQUAL(scope, PTHREAD_SCOPE_PROCESS, scope); in Testcase() 59 ret = pthread_attr_getscope(&attr, &scope); in Testcase() 61 ICUNIT_ASSERT_EQUAL(scope, PTHREAD_SCOPE_PROCESS, scope); in Testcase()
|
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/full/ |
D | It_posix_pthread_177.c | 45 INT32 scope; in Testcase() local 50 ret = pthread_attr_getscope(&attr, &scope); in Testcase() 52 ICUNIT_ASSERT_EQUAL(scope, PTHREAD_SCOPE_PROCESS, scope); in Testcase() 58 ret = pthread_attr_getscope(&attr, &scope); in Testcase() 60 ICUNIT_ASSERT_EQUAL(scope, PTHREAD_SCOPE_PROCESS, scope); in Testcase() 66 ret = pthread_attr_getscope(&attr, &scope); in Testcase() 68 ICUNIT_ASSERT_EQUAL(scope, PTHREAD_SCOPE_PROCESS, scope); in Testcase()
|
/kernel/linux/linux-5.10/arch/m68k/kernel/ |
D | sys_m68k.c | 68 cache_flush_040 (unsigned long addr, int scope, int cache, unsigned long len) in cache_flush_040() argument 72 switch (scope) in cache_flush_040() 228 cache_flush_060 (unsigned long addr, int scope, int cache, unsigned long len) in cache_flush_060() argument 238 switch (scope) in cache_flush_060() 378 sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len) in sys_cacheflush() argument 382 if (scope < FLUSH_SCOPE_LINE || scope > FLUSH_SCOPE_ALL || in sys_cacheflush() 386 if (scope == FLUSH_SCOPE_ALL) { in sys_cacheflush() 411 if (scope == FLUSH_SCOPE_LINE && len < 256) { in sys_cacheflush() 444 if (len>=3*PAGE_SIZE && scope<FLUSH_SCOPE_PAGE) in sys_cacheflush() 445 scope=FLUSH_SCOPE_PAGE; in sys_cacheflush() [all …]
|
/kernel/liteos_a/compat/posix/src/ |
D | pthread_attr.c | 46 attr->scope = PTHREAD_SCOPE_PROCESS; in pthread_attr_init() 90 int pthread_attr_setscope(pthread_attr_t *attr, int scope) in pthread_attr_setscope() argument 96 if (scope == PTHREAD_SCOPE_PROCESS) { in pthread_attr_setscope() 97 attr->scope = (unsigned int)scope; in pthread_attr_setscope() 101 if (scope == PTHREAD_SCOPE_SYSTEM) { in pthread_attr_setscope() 108 int pthread_attr_getscope(const pthread_attr_t *attr, int *scope) in pthread_attr_getscope() argument 110 if ((attr == NULL) || (scope == NULL)) { in pthread_attr_getscope() 114 *scope = (int)attr->scope; in pthread_attr_getscope()
|
/kernel/liteos_m/kal/posix/src/ |
D | pthread_attr.c | 49 attr->scope = PTHREAD_SCOPE_SYSTEM; in pthread_attr_init() 90 int pthread_attr_setscope(pthread_attr_t *attr, int scope) in pthread_attr_setscope() argument 96 if (scope == PTHREAD_SCOPE_SYSTEM) { in pthread_attr_setscope() 97 attr->scope = (unsigned int)scope; in pthread_attr_setscope() 101 if (scope == PTHREAD_SCOPE_PROCESS) { in pthread_attr_setscope() 108 int pthread_attr_getscope(const pthread_attr_t *attr, int *scope) in pthread_attr_getscope() argument 110 if ((attr == NULL) || (scope == NULL)) { in pthread_attr_getscope() 114 *scope = (int)attr->scope; in pthread_attr_getscope()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
D | test_lwt_seg6local.sh | 94 ip netns exec ns1 ip -6 addr add fb00::12/16 dev veth1 scope link 95 ip netns exec ns1 ip -6 route add fb00::21 dev veth1 scope link 96 ip netns exec ns2 ip -6 addr add fb00::21/16 dev veth2 scope link 97 ip netns exec ns2 ip -6 addr add fb00::34/16 dev veth3 scope link 98 ip netns exec ns2 ip -6 route add fb00::43 dev veth3 scope link 99 ip netns exec ns3 ip -6 route add fb00::65 dev veth5 scope link 100 ip netns exec ns3 ip -6 addr add fb00::43/16 dev veth4 scope link 101 ip netns exec ns3 ip -6 addr add fb00::56/16 dev veth5 scope link 102 ip netns exec ns4 ip -6 addr add fb00::65/16 dev veth6 scope link 103 ip netns exec ns4 ip -6 addr add fb00::78/16 dev veth7 scope link [all …]
|
D | test_tc_redirect.sh | 98 ip -netns ${NS_SRC} route add ${IP4_DST}/32 dev veth_src scope global 99 ip -netns ${NS_SRC} route add ${IP4_NET}/16 dev veth_src scope global 100 ip -netns ${NS_FWD} route add ${IP4_SRC}/32 dev veth_src_fwd scope global 102 ip -netns ${NS_SRC} route add ${IP6_DST}/128 dev veth_src scope global 103 ip -netns ${NS_FWD} route add ${IP6_SRC}/128 dev veth_src_fwd scope global 105 ip -netns ${NS_DST} route add ${IP4_SRC}/32 dev veth_dst scope global 106 ip -netns ${NS_DST} route add ${IP4_NET}/16 dev veth_dst scope global 107 ip -netns ${NS_FWD} route add ${IP4_DST}/32 dev veth_dst_fwd scope global 109 ip -netns ${NS_DST} route add ${IP6_SRC}/128 dev veth_dst scope global 110 ip -netns ${NS_FWD} route add ${IP6_DST}/128 dev veth_dst_fwd scope global
|
/kernel/linux/linux-5.10/arch/arm64/kernel/ |
D | cpu_errata.c | 18 is_affected_midr_range(const struct arm64_cpu_capabilities *entry, int scope) in is_affected_midr_range() argument 23 WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible()); in is_affected_midr_range() 38 int scope) in is_affected_midr_range_list() argument 40 WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible()); in is_affected_midr_range_list() 45 is_kryo_midr(const struct arm64_cpu_capabilities *entry, int scope) in is_kryo_midr() argument 49 WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible()); in is_kryo_midr() 60 int scope) in has_mismatched_cache_type() argument 66 WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible()); in has_mismatched_cache_type() 114 int scope) in has_cortex_a76_erratum_1463225() argument 116 return is_affected_midr_range_list(entry, scope) && is_kernel_in_hyp_mode(); in has_cortex_a76_erratum_1463225() [all …]
|
D | proton-pack.c | 201 bool has_spectre_v2(const struct arm64_cpu_capabilities *entry, int scope) in has_spectre_v2() argument 203 WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible()); in has_spectre_v2() 527 bool has_spectre_v4(const struct arm64_cpu_capabilities *cap, int scope) in has_spectre_v4() argument 531 WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible()); in has_spectre_v4() 856 u8 spectre_bhb_loop_affected(int scope) in spectre_bhb_loop_affected() argument 861 if (scope == SCOPE_LOCAL_CPU) { in spectre_bhb_loop_affected() 924 static bool is_spectre_bhb_fw_affected(int scope) in is_spectre_bhb_fw_affected() argument 937 if (scope != SCOPE_LOCAL_CPU) in is_spectre_bhb_fw_affected() 949 static bool supports_ecbhb(int scope) in supports_ecbhb() argument 953 if (scope == SCOPE_LOCAL_CPU) in supports_ecbhb() [all …]
|
/kernel/liteos_a/testsuites/unittest/process/basic/pthread/smoke/ |
D | pthread_test_013.cpp | 37 int scope = 0; in Testcase() local 45 ret = pthread_attr_getscope(&attr, &scope); in Testcase() 47 ICUNIT_ASSERT_EQUAL(scope, PTHREAD_SCOPE_PROCESS, scope); in Testcase()
|
/kernel/linux/linux-5.10/arch/arm64/include/asm/ |
D | spectre.h | 24 bool has_spectre_v2(const struct arm64_cpu_capabilities *cap, int scope); 28 bool has_spectre_v4(const struct arm64_cpu_capabilities *cap, int scope); 33 bool is_spectre_bhb_affected(const struct arm64_cpu_capabilities *entry, int scope); 34 u8 spectre_bhb_loop_affected(int scope);
|
/kernel/liteos_m/testsuites/unittest/xts/sched/ |
D | pthread_sched_api_test.c | 196 int scope = -1; /* -1, common data for test, no special meaning */ variable 197 int rt = pthread_attr_getscope(&attr, &scope); 199 ICUNIT_ASSERT_EQUAL(scope, PTHREAD_SCOPE_SYSTEM, scope); 224 int scope = -1; /* -1, common data for test, no special meaning */ variable 225 rt = pthread_attr_getscope(&attr, &scope); 227 ICUNIT_ASSERT_EQUAL(scope, PTHREAD_SCOPE_SYSTEM, scope);
|
/kernel/linux/linux-5.10/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm_symbol.h | 168 typedef struct scope { struct 169 SLIST_ENTRY(scope) scope_stack_links; 170 TAILQ_ENTRY(scope) scope_links; 171 TAILQ_HEAD(, scope) inner_scope; 181 SLIST_HEAD(scope_list, scope); argument 182 TAILQ_HEAD(scope_tailq, scope);
|
D | aicasm.c | 80 static void dump_scope(scope_t *scope); 81 static void emit_patch(scope_t *scope, int patch); 460 dump_scope(scope_t *scope) in dump_scope() argument 467 emit_patch(scope, 0); in dump_scope() 472 cur_scope = TAILQ_FIRST(&scope->inner_scope); in dump_scope() 484 emit_patch(scope, 1); in dump_scope() 488 emit_patch(scope_t *scope, int patch) in emit_patch() argument 493 pinfo = &scope->patches[patch]; in emit_patch() 507 new_patch->patch_func = scope->func_num; in emit_patch() 508 new_patch->begin = scope->begin_addr; in emit_patch() [all …]
|
/kernel/linux/linux-5.10/net/sctp/ |
D | bind_addr.c | 34 union sctp_addr *addr, enum sctp_scope scope, 45 enum sctp_scope scope, gfp_t gfp, in sctp_bind_addr_copy() argument 56 error = sctp_copy_one_addr(net, dest, &addr->a, scope, in sctp_bind_addr_copy() 66 if (list_empty(&dest->address_list) && (SCTP_SCOPE_GLOBAL == scope)) { in sctp_bind_addr_copy() 460 union sctp_addr *addr, enum sctp_scope scope, in sctp_copy_one_addr() argument 466 error = sctp_copy_local_addr_list(net, dest, scope, gfp, flags); in sctp_copy_one_addr() 467 } else if (sctp_in_scope(net, addr, scope)) { in sctp_copy_one_addr() 506 enum sctp_scope scope) in sctp_in_scope() argument 528 if (addr_scope <= scope) in sctp_in_scope() 532 if (addr_scope <= scope || SCTP_SCOPE_PRIVATE == addr_scope) in sctp_in_scope() [all …]
|
/kernel/linux/linux-5.10/net/decnet/ |
D | dn_fib.c | 68 u8 scope; member 70 [RTN_UNSPEC] = { .error = 0, .scope = RT_SCOPE_NOWHERE }, 71 [RTN_UNICAST] = { .error = 0, .scope = RT_SCOPE_UNIVERSE }, 72 [RTN_LOCAL] = { .error = 0, .scope = RT_SCOPE_HOST }, 73 [RTN_BROADCAST] = { .error = -EINVAL, .scope = RT_SCOPE_NOWHERE }, 74 [RTN_ANYCAST] = { .error = -EINVAL, .scope = RT_SCOPE_NOWHERE }, 75 [RTN_MULTICAST] = { .error = -EINVAL, .scope = RT_SCOPE_NOWHERE }, 76 [RTN_BLACKHOLE] = { .error = -EINVAL, .scope = RT_SCOPE_UNIVERSE }, 77 [RTN_UNREACHABLE] = { .error = -EHOSTUNREACH, .scope = RT_SCOPE_UNIVERSE }, 78 [RTN_PROHIBIT] = { .error = -EACCES, .scope = RT_SCOPE_UNIVERSE }, [all …]
|
/kernel/linux/linux-5.10/net/tipc/ |
D | name_table.c | 223 u32 scope, u32 node, u32 port, in tipc_publ_create() argument 234 publ->scope = scope; in tipc_publ_create() 320 u32 upper, u32 scope, in tipc_service_insert_publ() argument 342 p = tipc_publ_create(type, lower, upper, scope, node, port, key); in tipc_service_insert_publ() 354 p->port, p->node, p->scope, first); in tipc_service_insert_publ() 439 p->scope, true); in tipc_service_subscribe() 460 u32 scope, u32 node, in tipc_nametbl_insert_publ() argument 467 if (scope > TIPC_NODE_SCOPE || lower > upper) { in tipc_nametbl_insert_publ() 469 type, lower, upper, scope); in tipc_nametbl_insert_publ() 480 scope, node, port, key); in tipc_nametbl_insert_publ() [all …]
|
/kernel/linux/linux-5.10/tools/include/linux/ |
D | btf_ids.h | 65 #define __BTF_ID_LIST(name, scope) \ argument 68 "." #scope " " #name "; \n" \ 121 #define __BTF_SET_START(name, scope) \ argument 124 "." #scope " __BTF_ID__set__" #name "; \n" \
|
/kernel/linux/linux-5.10/include/linux/ |
D | btf_ids.h | 65 #define __BTF_ID_LIST(name, scope) \ argument 68 "." #scope " " #name "; \n" \ 121 #define __BTF_SET_START(name, scope) \ argument 124 "." #scope " __BTF_ID__set__" #name "; \n" \
|
/kernel/linux/linux-5.10/arch/powerpc/platforms/pseries/ |
D | mobility.c | 48 static int mobility_rtas_call(int token, char *buf, s32 scope) in mobility_rtas_call() argument 55 rc = rtas_call(token, 2, 1, NULL, rtas_data_buf, scope); in mobility_rtas_call() 151 static int update_dt_node(struct device_node *dn, s32 scope) in update_dt_node() argument 175 scope); in update_dt_node() 265 int pseries_devicetree_update(s32 scope) in pseries_devicetree_update() argument 281 rc = mobility_rtas_call(update_nodes_token, rtas_buf, scope); in pseries_devicetree_update() 310 update_dt_node(np, scope); in pseries_devicetree_update()
|
/kernel/linux/linux-5.10/Documentation/core-api/ |
D | gfp_mask-from-fs-io.rst | 31 Since 4.12 we do have a generic scope API for both NOFS and NOIO context 33 ``memalloc_noio_restore`` which allow to mark a scope to be a critical 35 scope will inherently drop __GFP_FS respectively __GFP_IO from the given 53 scope. 62 achieved by the scope API. 68 by the scope API with a comment explaining the problem.
|
/kernel/linux/linux-5.10/drivers/iommu/intel/ |
D | irq_remapping.c | 861 static int ir_parse_one_hpet_scope(struct acpi_dmar_device_scope *scope, in ir_parse_one_hpet_scope() argument 869 bus = scope->bus; in ir_parse_one_hpet_scope() 870 path = (struct acpi_dmar_pci_path *)(scope + 1); in ir_parse_one_hpet_scope() 871 count = (scope->length - sizeof(struct acpi_dmar_device_scope)) in ir_parse_one_hpet_scope() 886 ir_hpet[count].id == scope->enumeration_id) in ir_parse_one_hpet_scope() 897 ir_hpet[free].id = scope->enumeration_id; in ir_parse_one_hpet_scope() 901 scope->enumeration_id, drhd->address); in ir_parse_one_hpet_scope() 906 static int ir_parse_one_ioapic_scope(struct acpi_dmar_device_scope *scope, in ir_parse_one_ioapic_scope() argument 914 bus = scope->bus; in ir_parse_one_ioapic_scope() 915 path = (struct acpi_dmar_pci_path *)(scope + 1); in ir_parse_one_ioapic_scope() [all …]
|
D | dmar.c | 83 struct acpi_dmar_device_scope *scope; in dmar_alloc_dev_scope() local 87 scope = start; in dmar_alloc_dev_scope() 88 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_NAMESPACE || in dmar_alloc_dev_scope() 89 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT || in dmar_alloc_dev_scope() 90 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE) in dmar_alloc_dev_scope() 92 else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC && in dmar_alloc_dev_scope() 93 scope->entry_type != ACPI_DMAR_SCOPE_TYPE_HPET) { in dmar_alloc_dev_scope() 96 start += scope->length; in dmar_alloc_dev_scope() 225 struct acpi_dmar_device_scope *scope; in dmar_insert_dev_scope() local 231 for (; start < end; start += scope->length) { in dmar_insert_dev_scope() [all …]
|