Home
last modified time | relevance | path

Searched full:seen (Results 1 – 25 of 1162) sorted by relevance

12345678910>>...47

/Linux-v5.10/tools/testing/selftests/
Dkselftest_harness.h438 * @seen: measured value
442 #define ASSERT_EQ(expected, seen) \ argument
443 __EXPECT(expected, #expected, seen, #seen, ==, 1)
449 * @seen: measured value
453 #define ASSERT_NE(expected, seen) \ argument
454 __EXPECT(expected, #expected, seen, #seen, !=, 1)
460 * @seen: measured value
464 #define ASSERT_LT(expected, seen) \ argument
465 __EXPECT(expected, #expected, seen, #seen, <, 1)
471 * @seen: measured value
[all …]
/Linux-v5.10/net/netfilter/
Dnf_conntrack_proto_tcp.c115 * we haven't seen.
124 * SYN_SENT: SYN-only packet seen
125 * SYN_SENT2: SYN-only packet seen from reply dir, simultaneous open
126 * SYN_RECV: SYN-ACK packet seen
127 * ESTABLISHED: ACK packet seen
128 * FIN_WAIT: FIN packet seen
129 * CLOSE_WAIT: ACK seen (after FIN)
130 * LAST_ACK: FIN seen (after FIN)
131 * TIME_WAIT: last ACK seen
185 * sFW -> sLA FIN seen in both directions, waiting for
[all …]
/Linux-v5.10/arch/powerpc/net/
Dbpf_jit_comp.c30 if (ctx->seen & (SEEN_MEM | SEEN_DATAREF)) { in bpf_jit_build_prologue()
32 if (ctx->seen & SEEN_DATAREF) { in bpf_jit_build_prologue()
41 if (ctx->seen & SEEN_MEM) { in bpf_jit_build_prologue()
47 if (ctx->seen & (1 << (i-r_M))) in bpf_jit_build_prologue()
54 if (ctx->seen & SEEN_DATAREF) { in bpf_jit_build_prologue()
68 if (ctx->seen & SEEN_XREG) { in bpf_jit_build_prologue()
85 if (ctx->seen & (SEEN_MEM | SEEN_DATAREF)) { in bpf_jit_build_epilogue()
87 if (ctx->seen & SEEN_DATAREF) { in bpf_jit_build_epilogue()
93 if (ctx->seen & SEEN_MEM) { in bpf_jit_build_epilogue()
96 if (ctx->seen & (1 << (i-r_M))) in bpf_jit_build_epilogue()
[all …]
/Linux-v5.10/include/linux/netfilter/
Dnf_conntrack_tcp.h18 struct ip_ct_tcp_state seen[2]; /* connection parameters per direction */ member
24 u_int32_t last_seq; /* Last sequence number seen in dir */
25 u_int32_t last_ack; /* Last sequence number seen in opposite dir */
27 u_int16_t last_win; /* Last window advertisement seen in dir */
29 u_int8_t last_wscale; /* Last window scaling factor seen */
/Linux-v5.10/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-v5.10/fs/xfs/scrub/
Drefcount.c40 * a. If a given rmap completely overlaps, mark it as seen.
44 * Once we've seen all the rmaps, we know that for all blocks in the
46 * visited $seen extents that overlap all the blocks. Therefore, we
47 * need to find ($refcount - $seen) owners for every block in the
80 /* number of owners seen */
81 xfs_nlink_t seen; member
118 * one refcount owner seen. in xchk_refcountbt_rmap_check()
120 refchk->seen++; in xchk_refcountbt_rmap_check()
159 target_nr = refchk->refcount - refchk->seen; in xchk_refcountbt_process_rmap_fragments()
252 /* Actually record us having seen the remaining refcount. */ in xchk_refcountbt_process_rmap_fragments()
[all …]
/Linux-v5.10/drivers/dma-buf/
Dst-dma-fence.c148 bool seen; member
153 smp_store_mb(container_of(cb, struct simple_cb, cb)->seen, true); in simple_callback()
172 if (!cb.seen) { in test_add_callback()
201 if (cb.seen) { in test_late_add_callback()
233 if (cb.seen) { in test_rm_callback()
260 if (!cb.seen) { in test_late_rm_callback()
473 smp_store_mb(cb.seen, false); in thread_signal_callback()
475 miss++, cb.seen = true; in thread_signal_callback()
480 if (!cb.seen) { in thread_signal_callback()
485 if (!READ_ONCE(cb.seen)) { in thread_signal_callback()
[all …]
/Linux-v5.10/include/net/sctp/
Dtsnmap.h91 * 0 if the TSN has not yet been seen
92 * >0 if the TSN has been seen (duplicate)
97 /* Mark this TSN as seen. */
101 /* Mark this TSN and all lower as seen. */
110 /* Retrieve the highest TSN we've seen. */
151 /* Renege a TSN that was seen. */
/Linux-v5.10/lib/
Derrseq.c38 /* This bit is used as a flag to indicate whether the value has been seen */
56 * calls as it will not have the SEEN flag set.
115 * If the error has been "seen", new callers will not see an old error.
126 /* If nobody has seen this error yet, then we can be the first. */ in errseq_sample()
140 * is no need to mark the value as seen.
162 * If it doesn't, then the value has changed. Set the "seen" flag, and try to
194 * just setting the "seen" flag. Either outcome is OK, and we in errseq_check_and_advance()
/Linux-v5.10/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()
120 /* Count how many distinct digits seen */ in is_prefixed_hash()
123 if (seen[i]) in is_prefixed_hash()
/Linux-v5.10/tools/testing/selftests/net/forwarding/
Dbridge_igmp.sh82 # return 0 if the packet wasn't seen on host2_if or 1 if it was
89 local seen=0
104 seen=1
110 return $seen
/Linux-v5.10/Documentation/accounting/
Ddelay-accounting.rst48 delay seen for cpu, sync block I/O, swapin, memory reclaim etc.
82 seen by a given task or a task group (tgid).
85 seen.
111 Get delays seen in executing a given simple command::
/Linux-v5.10/drivers/of/
Ddevice.c301 int seen = 0; in of_device_uevent() local
316 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent()
317 seen++; in of_device_uevent()
319 add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in of_device_uevent()
321 seen = 0; in of_device_uevent()
325 add_uevent_var(env, "OF_ALIAS_%d=%s", seen, in of_device_uevent()
327 seen++; in of_device_uevent()
/Linux-v5.10/arch/s390/net/
Dbpf_jit_comp.c36 u32 seen; /* Flags to remember seen eBPF instructions */ member
300 jit->seen |= SEEN_LITERAL; \
316 jit->seen |= SEEN_LITERAL; \
420 if (jit->seen & SEEN_STACK) in restore_regs()
432 * Return first seen register (from start)
446 * Return last seen register (from start) (gap >= 2)
518 if (jit->seen & SEEN_TAIL_CALL) { in bpf_jit_prologue()
533 if (is_first_pass(jit) || (jit->seen & SEEN_LITERAL)) { in bpf_jit_prologue()
546 if (is_first_pass(jit) || (jit->seen & SEEN_STACK)) { in bpf_jit_prologue()
547 if (is_first_pass(jit) || (jit->seen & SEEN_FUNC)) in bpf_jit_prologue()
[all …]
/Linux-v5.10/include/linux/
Dpid.h50 * seen in particular namespace. Later the struct pid is found with
169 * the helpers to get the pid's id seen from different namespaces
171 * pid_nr() : global id, i.e. the id seen from the init namespace;
172 * pid_vnr() : virtual id, i.e. the id seen from the pid namespace of
174 * pid_nr_ns() : id seen from the ns specified.
/Linux-v5.10/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-v5.10/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-v5.10/scripts/
Dcheck-sysctl-docs49 seen[entry]++
169 # Count the first subdirectory as seen
170 seen[components[2]]++
177 if (!seen[entry]) {
/Linux-v5.10/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-v5.10/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-v5.10/arch/x86/lib/
Dinsn-eval.c167 * @regs: Register values as seen when entering kernel mode
234 * @regs: Register values as seen when entering kernel mode
328 * @regs: Register values as seen when entering kernel mode
518 * @regs: Register values as seen when entering kernel mode
648 * @regs: Register values as seen when entering kernel mode
715 * @regs: Register values as seen when entering kernel mode
764 * @regs: Structure with register values as seen when entering kernel mode
828 * @regs: Register values as seen when entering kernel mode
845 * @regs: Register values as seen when entering kernel mode
860 * @regs: Register values as seen when entering kernel mode
[all …]
/Linux-v5.10/net/sctp/
Dtsnmap.c65 * 0 if the TSN has not yet been seen
66 * >0 if the TSN has been seen (duplicate)
94 /* Mark this TSN as seen. */
189 /* Mark this and any lower TSN as seen. */
281 /* Also, stop looking past the maximum TSN seen. */ in sctp_tsnmap_find_gap_ack()
299 /* Renege that we have seen a TSN. */
/Linux-v5.10/include/uapi/linux/
Dgen_stats.h23 * @bytes: number of seen bytes
24 * @packets: number of seen packets
/Linux-v5.10/include/vdso/
Dhelpers.h34 * updates to vd[x].seq and it is possible that the value seen by the in vdso_write_begin()
47 * updates to vd[x].seq and it is possible that the value seen by the in vdso_write_end()
/Linux-v5.10/fs/ocfs2/cluster/
Dheartbeat.h21 /* number of changes to be seen as live */
23 /* number of equal samples to be seen as dead */

12345678910>>...47