Home
last modified time | relevance | path

Searched refs:seen (Results 1 – 25 of 280) sorted by relevance

12345678910>>...12

/linux-6.1.9/tools/testing/selftests/
Dkselftest_harness.h454 #define ASSERT_EQ(expected, seen) \ argument
455 __EXPECT(expected, #expected, seen, #seen, ==, 1)
465 #define ASSERT_NE(expected, seen) \ argument
466 __EXPECT(expected, #expected, seen, #seen, !=, 1)
476 #define ASSERT_LT(expected, seen) \ argument
477 __EXPECT(expected, #expected, seen, #seen, <, 1)
487 #define ASSERT_LE(expected, seen) \ argument
488 __EXPECT(expected, #expected, seen, #seen, <=, 1)
498 #define ASSERT_GT(expected, seen) \ argument
499 __EXPECT(expected, #expected, seen, #seen, >, 1)
[all …]
/linux-6.1.9/net/netfilter/
Dnf_conntrack_proto_tcp.c514 struct ip_ct_tcp_state *sender = &state->seen[dir]; in tcp_in_window()
515 struct ip_ct_tcp_state *receiver = &state->seen[!dir]; in tcp_in_window()
856 ct->proto.tcp.seen[0].td_end = in tcp_new()
859 ct->proto.tcp.seen[0].td_maxwin = ntohs(th->window); in tcp_new()
860 if (ct->proto.tcp.seen[0].td_maxwin == 0) in tcp_new()
861 ct->proto.tcp.seen[0].td_maxwin = 1; in tcp_new()
862 ct->proto.tcp.seen[0].td_maxend = in tcp_new()
863 ct->proto.tcp.seen[0].td_end; in tcp_new()
865 tcp_options(skb, dataoff, th, &ct->proto.tcp.seen[0]); in tcp_new()
876 ct->proto.tcp.seen[0].td_end = in tcp_new()
[all …]
/linux-6.1.9/tools/perf/util/
Ddemangle-rust.c103 bool seen[16]; in is_prefixed_hash() local
111 memset(seen, false, sizeof(seen)); in is_prefixed_hash()
114 seen[*str - '0'] = true; in is_prefixed_hash()
116 seen[*str - 'a' + 10] = true; in is_prefixed_hash()
123 if (seen[i]) in is_prefixed_hash()
/linux-6.1.9/drivers/dma-buf/
Dst-dma-fence.c152 bool seen; member
157 smp_store_mb(container_of(cb, struct simple_cb, cb)->seen, true); in simple_callback()
176 if (!cb.seen) { in test_add_callback()
207 if (cb.seen) { in test_late_add_callback()
239 if (cb.seen) { in test_rm_callback()
266 if (!cb.seen) { in test_late_rm_callback()
489 smp_store_mb(cb.seen, false); in thread_signal_callback()
493 cb.seen = true; in thread_signal_callback()
499 if (!cb.seen) { in thread_signal_callback()
504 if (!READ_ONCE(cb.seen)) { in thread_signal_callback()
/linux-6.1.9/arch/s390/net/
Dbpf_jit_comp.c36 u32 seen; /* Flags to remember seen eBPF instructions */ member
299 jit->seen |= SEEN_LITERAL; \
315 jit->seen |= SEEN_LITERAL; \
419 if (jit->seen & SEEN_STACK) in restore_regs()
517 if (jit->seen & SEEN_TAIL_CALL) { in bpf_jit_prologue()
532 if (is_first_pass(jit) || (jit->seen & SEEN_LITERAL)) { in bpf_jit_prologue()
545 if (is_first_pass(jit) || (jit->seen & SEEN_STACK)) { in bpf_jit_prologue()
546 if (is_first_pass(jit) || (jit->seen & SEEN_FUNC)) in bpf_jit_prologue()
553 if (is_first_pass(jit) || (jit->seen & SEEN_FUNC)) in bpf_jit_prologue()
582 (is_first_pass(jit) || (jit->seen & SEEN_FUNC))) { in bpf_jit_epilogue()
[all …]
/linux-6.1.9/drivers/of/
Ddevice.c343 int seen = 0; in of_device_uevent() local
358 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent()
359 seen++; in of_device_uevent()
361 add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in of_device_uevent()
363 seen = 0; in of_device_uevent()
367 add_uevent_var(env, "OF_ALIAS_%d=%s", seen, in of_device_uevent()
369 seen++; in of_device_uevent()
/linux-6.1.9/drivers/zorro/
Dnames.c21 unsigned short seen; member
92 int nr = prod_p->seen + 1; in zorro_name_device()
93 prod_p->seen = nr; in zorro_name_device()
/linux-6.1.9/net/bridge/
Dbr_mst.c235 DECLARE_BITMAP(seen, VLAN_N_VID) = { 0 }; in br_mst_info_size()
243 if (test_bit(v->brvlan->msti, seen)) in br_mst_info_size()
253 __set_bit(v->brvlan->msti, seen); in br_mst_info_size()
262 DECLARE_BITMAP(seen, VLAN_N_VID) = { 0 }; in br_mst_fill_info()
268 if (test_bit(v->brvlan->msti, seen)) in br_mst_fill_info()
280 __set_bit(v->brvlan->msti, seen); in br_mst_fill_info()
/linux-6.1.9/sound/aoa/soundbus/
Dcore.c64 int cplen, seen = 0; in soundbus_uevent() local
91 retval = add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in soundbus_uevent()
96 seen += 1; in soundbus_uevent()
99 retval = add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in soundbus_uevent()
/linux-6.1.9/arch/powerpc/net/
Dbpf_jit.h132 unsigned int seen; member
156 return ctx->seen & (1 << (31 - i)); in bpf_is_seen_register()
161 ctx->seen |= 1 << (31 - i); in bpf_set_seen_register()
166 ctx->seen &= ~(1 << (31 - i)); in bpf_clear_seen_register()
Dbpf_jit_comp32.c86 if (ctx->seen & SEEN_FUNC) in bpf_jit_realloc_regs()
91 while (ctx->seen & nvreg_mask && in bpf_jit_realloc_regs()
92 (ctx->seen & SEEN_VREG_MASK) != SEEN_VREG_MASK) { in bpf_jit_realloc_regs()
93 int old = 32 - fls(ctx->seen & (nvreg_mask & 0xaaaaaaab)); in bpf_jit_realloc_regs()
94 int new = 32 - fls(~ctx->seen & (SEEN_VREG_MASK & 0xaaaaaaaa)); in bpf_jit_realloc_regs()
123 if (ctx->seen & SEEN_TAILCALL) in bpf_jit_build_prologue()
134 if (ctx->seen & SEEN_FUNC) in bpf_jit_build_prologue()
157 if (ctx->seen & SEEN_FUNC) in bpf_jit_build_prologue()
170 if (ctx->seen & SEEN_FUNC) in bpf_jit_emit_common_epilogue()
176 if (ctx->seen & SEEN_FUNC) in bpf_jit_emit_common_epilogue()
[all …]
/linux-6.1.9/Documentation/ABI/testing/
Dsysfs-bus-pci-devices-aer_stats5 statistical counters indicate the errors "as seen/reported by the device".
8 errors may be "seen" / reported by the link partner and not the
16 Description: List of correctable errors seen and reported by this
37 Description: List of uncorrectable fatal errors seen and reported by this
67 Description: List of uncorrectable nonfatal errors seen and reported by this
99 (internally) the ERR_* messages for errors seen by the internal rootport PCI
/linux-6.1.9/arch/sparc/net/
Dbpf_jit_comp_32.c139 seen |= SEEN_XREG; \
329 u32 temp[8], *prog, *func, seen = 0, pass; in bpf_jit_compile() local
352 u8 seen_or_pass0 = (pass == 0) ? (SEEN_XREG | SEEN_DATAREF | SEEN_MEM) : seen; in bpf_jit_compile()
513 seen |= SEEN_XREG; in bpf_jit_compile()
517 seen |= SEEN_XREG; in bpf_jit_compile()
577 seen |= SEEN_MEM; in bpf_jit_compile()
581 seen |= SEEN_MEM | SEEN_XREG; in bpf_jit_compile()
585 seen |= SEEN_MEM; in bpf_jit_compile()
589 seen |= SEEN_MEM | SEEN_XREG; in bpf_jit_compile()
598 common_load: seen |= SEEN_DATAREF; in bpf_jit_compile()
[all …]
/linux-6.1.9/scripts/
Dcheck-sysctl-docs49 seen[entry]++
170 seen[components[2]]++
177 if (!seen[entry]) {
/linux-6.1.9/fs/xfs/scrub/
Drefcount.c83 xfs_nlink_t seen; member
122 refchk->seen++; in xchk_refcountbt_rmap_check()
161 target_nr = refchk->refcount - refchk->seen; in xchk_refcountbt_process_rmap_fragments()
255 refchk->seen = refchk->refcount; in xchk_refcountbt_process_rmap_fragments()
279 .seen = 0, in xchk_refcountbt_xref_rmap()
303 if (irec->rc_refcount != refchk.seen) in xchk_refcountbt_xref_rmap()
/linux-6.1.9/crypto/asymmetric_keys/
Dpkcs7_trust.c39 if (x509->seen) { in pkcs7_validate_trust_one()
45 x509->seen = true; in pkcs7_validate_trust_one()
167 p->seen = false; in pkcs7_validate_trust()
Dpkcs7_verify.c204 p->seen = false; in pkcs7_verify_sig_chain()
210 x509->seen = true; in pkcs7_verify_sig_chain()
286 if (p->seen) { in pkcs7_verify_sig_chain()
/linux-6.1.9/tools/testing/selftests/lkdtm/
Dstack-entropy.sh39 seen=$(tac "$log" | grep -m1 -B"$samples"0 'Starting stack offset' | \
41 bits=$(echo "obase=2; $seen" | bc | wc -L)
/linux-6.1.9/Documentation/hwmon/
Ddrivetemp.rst37 This has been observed with WD120EFAX drives, but may be seen with other
68 temp1_lowest Minimum temperature seen this power cycle
69 temp1_highest Maximum temperature seen this power cycle
/linux-6.1.9/Documentation/devicetree/bindings/iommu/
Dapple,sart.yaml23 SART2, first seen in A14 and M1, allows 36 bit of physical address space
26 SART3, first seen in M1 Pro/Max, extends both the address space and filter
/linux-6.1.9/drivers/usb/host/
Dohci-dbg.c489 struct ed **seen, *ed; in fill_periodic_buffer() local
495 seen = kmalloc_array(DBG_SCHED_LIMIT, sizeof(*seen), GFP_ATOMIC); in fill_periodic_buffer()
496 if (!seen) in fill_periodic_buffer()
525 if (seen [temp] == ed) in fill_periodic_buffer()
558 seen [seen_count++] = ed; in fill_periodic_buffer()
575 kfree (seen); in fill_periodic_buffer()
/linux-6.1.9/samples/bpf/
Dtest_lru_dist.c132 int seen = 0; in pfect_lru_lookup_or_insert() local
140 seen = 1; in pfect_lru_lookup_or_insert()
159 if (seen) { in pfect_lru_lookup_or_insert()
166 return seen; in pfect_lru_lookup_or_insert()
/linux-6.1.9/include/linux/netfilter/
Dnf_conntrack_tcp.h18 struct ip_ct_tcp_state seen[2]; /* connection parameters per direction */ member
/linux-6.1.9/tools/testing/selftests/powerpc/scripts/
Dhmi.sh77 echo "Haven't seen expected $expected_hmis recoveries after 1 min. Aborting."
/linux-6.1.9/Documentation/accounting/
Ddelay-accounting.rst51 delay seen for cpu, sync block I/O, swapin, memory reclaim, thrash page
88 seen by a given task or a task group (tgid).
91 seen.

12345678910>>...12