| /kernel/linux/linux-5.10/tools/testing/selftests/ |
| D | kselftest_harness.h | 438 * @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 …]
|
| /kernel/linux/linux-6.6/tools/testing/selftests/ |
| D | kselftest_harness.h | 451 * @seen: measured value 455 #define ASSERT_EQ(expected, seen) \ argument 456 __EXPECT(expected, #expected, seen, #seen, ==, 1) 462 * @seen: measured value 466 #define ASSERT_NE(expected, seen) \ argument 467 __EXPECT(expected, #expected, seen, #seen, !=, 1) 473 * @seen: measured value 477 #define ASSERT_LT(expected, seen) \ argument 478 __EXPECT(expected, #expected, seen, #seen, <, 1) 484 * @seen: measured value [all …]
|
| /kernel/linux/linux-5.10/arch/powerpc/net/ |
| D | bpf_jit_comp.c | 30 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 …]
|
| /kernel/linux/linux-5.10/net/netfilter/ |
| D | nf_conntrack_proto_tcp.c | 115 * 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 …]
|
| /kernel/linux/linux-6.6/net/netfilter/ |
| D | nf_conntrack_proto_tcp.c | 107 * we haven't seen. 116 * SYN_SENT: SYN-only packet seen 117 * SYN_SENT2: SYN-only packet seen from reply dir, simultaneous open 118 * SYN_RECV: SYN-ACK packet seen 119 * ESTABLISHED: ACK packet seen 120 * FIN_WAIT: FIN packet seen 121 * CLOSE_WAIT: ACK seen (after FIN) 122 * LAST_ACK: FIN seen (after FIN) 123 * TIME_WAIT: last ACK seen 177 * sFW -> sLA FIN seen in both directions, waiting for [all …]
|
| /kernel/linux/linux-5.10/include/linux/netfilter/ |
| D | nf_conntrack_tcp.h | 18 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 */
|
| /kernel/linux/linux-6.6/include/linux/netfilter/ |
| D | nf_conntrack_tcp.h | 18 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 */
|
| /kernel/linux/linux-5.10/Documentation/ABI/testing/ |
| D | sysfs-bus-pci-devices-aer_stats | 5 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
|
| /kernel/linux/linux-6.6/Documentation/ABI/testing/ |
| D | sysfs-bus-pci-devices-aer_stats | 5 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
|
| /kernel/linux/linux-5.10/fs/xfs/scrub/ |
| D | refcount.c | 40 * 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 …]
|
| /kernel/linux/linux-6.6/drivers/dma-buf/ |
| D | st-dma-fence.c | 152 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() [all …]
|
| /kernel/linux/linux-5.10/drivers/dma-buf/ |
| D | st-dma-fence.c | 148 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 …]
|
| /kernel/linux/linux-6.6/include/net/sctp/ |
| D | tsnmap.h | 91 * 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. */
|
| /kernel/linux/linux-5.10/include/net/sctp/ |
| D | tsnmap.h | 91 * 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. */
|
| /kernel/linux/linux-6.6/fs/xfs/scrub/ |
| D | refcount.c | 45 * a. If a given rmap completely overlaps, mark it as seen. 49 * Once we've seen all the rmaps, we know that for all blocks in the 51 * visited $seen extents that overlap all the blocks. Therefore, we 52 * need to find ($refcount - $seen) owners for every block in the 85 /* number of owners seen */ 86 xfs_nlink_t seen; member 123 * one refcount owner seen. in xchk_refcountbt_rmap_check() 125 refchk->seen++; in xchk_refcountbt_rmap_check() 164 target_nr = refchk->refcount - refchk->seen; in xchk_refcountbt_process_rmap_fragments() 257 /* Actually record us having seen the remaining refcount. */ in xchk_refcountbt_process_rmap_fragments() [all …]
|
| /kernel/linux/linux-5.10/lib/ |
| D | errseq.c | 38 /* 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()
|
| /kernel/linux/linux-6.6/lib/ |
| D | errseq.c | 39 /* This bit is used as a flag to indicate whether the value has been seen */ 57 * calls as it will not have the SEEN flag set. 116 * If the error has been "seen", new callers will not see an old error. 127 /* If nobody has seen this error yet, then we can be the first. */ in errseq_sample() 141 * is no need to mark the value as seen. 163 * If it doesn't, then the value has changed. Set the "seen" flag, and try to 195 * just setting the "seen" flag. Either outcome is OK, and we in errseq_check_and_advance()
|
| /kernel/linux/linux-5.10/tools/perf/util/ |
| D | demangle-rust.c | 103 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()
|
| /kernel/linux/linux-6.6/tools/perf/util/ |
| D | demangle-rust.c | 103 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()
|
| /kernel/linux/linux-5.10/tools/testing/selftests/net/forwarding/ |
| D | bridge_igmp.sh | 82 # 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
|
| /kernel/linux/linux-5.10/Documentation/accounting/ |
| D | delay-accounting.rst | 48 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::
|
| /kernel/linux/linux-6.6/drivers/of/ |
| D | device.c | 252 int seen = 0; in of_device_uevent() local 267 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent() 268 seen++; in of_device_uevent() 270 add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in of_device_uevent() 272 seen = 0; in of_device_uevent() 276 add_uevent_var(env, "OF_ALIAS_%d=%s", seen, in of_device_uevent() 278 seen++; in of_device_uevent()
|
| /kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
| D | test_ksyms_weak.c | 57 /* dead code won't be seen by the verifier */ in pass_handler() 61 /* dead code won't be seen by the verifier */ in pass_handler() 65 /* dead code won't be seen by the verifier */ in pass_handler()
|
| /kernel/linux/linux-5.10/drivers/of/ |
| D | device.c | 308 int seen = 0; in of_device_uevent() local 323 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat); in of_device_uevent() 324 seen++; in of_device_uevent() 326 add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen); in of_device_uevent() 328 seen = 0; in of_device_uevent() 332 add_uevent_var(env, "OF_ALIAS_%d=%s", seen, in of_device_uevent() 334 seen++; in of_device_uevent()
|
| /kernel/linux/linux-6.6/arch/powerpc/net/ |
| D | bpf_jit_comp.c | 129 * If we have seen a tail call, we need a second pass. in bpf_int_jit_compile() 131 * from bpf_jit_emit_tail_call() with a not yet stable ctx->seen. in bpf_int_jit_compile() 135 if (cgctx.seen & SEEN_TAILCALL || !is_offset_in_branch_range((long)cgctx.idx * 4)) { in bpf_int_jit_compile() 145 * Pretend to build prologue, given the features we've seen. This will in bpf_int_jit_compile() 185 pr_info("Pass %d: shrink = %d, seen = 0x%x\n", pass, in bpf_int_jit_compile() 186 proglen - (cgctx.idx * 4), cgctx.seen); in bpf_int_jit_compile()
|