| /Linux-v6.1/tools/testing/selftests/ |
| D | kselftest_harness.h | 450 * @seen: measured value 454 #define ASSERT_EQ(expected, seen) \ argument 455 __EXPECT(expected, #expected, seen, #seen, ==, 1) 461 * @seen: measured value 465 #define ASSERT_NE(expected, seen) \ argument 466 __EXPECT(expected, #expected, seen, #seen, !=, 1) 472 * @seen: measured value 476 #define ASSERT_LT(expected, seen) \ argument 477 __EXPECT(expected, #expected, seen, #seen, <, 1) 483 * @seen: measured value [all …]
|
| /Linux-v6.1/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 …]
|
| /Linux-v6.1/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 */
|
| /Linux-v6.1/fs/xfs/scrub/ |
| D | refcount.c | 42 * a. If a given rmap completely overlaps, mark it as seen. 46 * Once we've seen all the rmaps, we know that for all blocks in the 48 * visited $seen extents that overlap all the blocks. Therefore, we 49 * need to find ($refcount - $seen) owners for every block in the 82 /* number of owners seen */ 83 xfs_nlink_t seen; member 120 * one refcount owner seen. in xchk_refcountbt_rmap_check() 122 refchk->seen++; in xchk_refcountbt_rmap_check() 161 target_nr = refchk->refcount - refchk->seen; in xchk_refcountbt_process_rmap_fragments() 254 /* Actually record us having seen the remaining refcount. */ in xchk_refcountbt_process_rmap_fragments() [all …]
|
| /Linux-v6.1/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
|
| /Linux-v6.1/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 …]
|
| D | st-dma-fence-unwrap.c | 155 pr_err("Not all fences seen!\n"); in unwrap_array() 199 pr_err("Not all fences seen!\n"); in unwrap_chain() 247 pr_err("Not all fences seen!\n"); in unwrap_chain_array() 295 pr_err("Not all fences seen!\n"); in unwrap_merge() 354 pr_err("Not all fences seen!\n"); in unwrap_merge_complex()
|
| /Linux-v6.1/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. */
|
| /Linux-v6.1/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()
|
| /Linux-v6.1/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()
|
| /Linux-v6.1/net/bridge/ |
| D | br_mst.c | 235 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()
|
| D | br_private_cfm.h | 93 /* Indications that an OAM PDU has been seen. */ 110 /* Indications that a CCM PDU has been seen. */ 111 u8 seen:1; /* CCM PDU received */ member
|
| /Linux-v6.1/arch/s390/net/ |
| D | bpf_jit_comp.c | 36 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() 431 * Return first seen register (from start) 445 * Return last seen register (from start) (gap >= 2) 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() [all …]
|
| /Linux-v6.1/drivers/of/ |
| D | device.c | 343 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-v6.1/arch/sparc/net/ |
| D | bpf_jit_comp_32.c | 139 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-v6.1/include/linux/ |
| D | pid.h | 50 * seen in particular namespace. Later the struct pid is found with 171 * the helpers to get the pid's id seen from different namespaces 173 * pid_nr() : global id, i.e. the id seen from the init namespace; 174 * pid_vnr() : virtual id, i.e. the id seen from the pid namespace of 176 * pid_nr_ns() : id seen from the ns specified.
|
| /Linux-v6.1/sound/aoa/soundbus/ |
| D | core.c | 64 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-v6.1/scripts/ |
| D | check-sysctl-docs | 49 seen[entry]++ 169 # Count the first subdirectory as seen 170 seen[components[2]]++ 177 if (!seen[entry]) {
|
| /Linux-v6.1/arch/x86/lib/ |
| D | insn-eval.c | 165 * @regs: Register values as seen when entering kernel mode 232 * @regs: Register values as seen when entering kernel mode 326 * @regs: Register values as seen when entering kernel mode 536 * @regs: Register values as seen when entering kernel mode 666 * @regs: Register values as seen when entering kernel mode 733 * @regs: Register values as seen when entering kernel mode 782 * @regs: Structure with register values as seen when entering kernel mode 846 * @regs: Register values as seen when entering kernel mode 863 * @regs: Register values as seen when entering kernel mode 878 * @regs: Register values as seen when entering kernel mode [all …]
|
| /Linux-v6.1/drivers/zorro/ |
| D | names.c | 21 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-v6.1/Documentation/hwmon/ |
| D | drivetemp.rst | 37 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-v6.1/arch/powerpc/net/ |
| D | bpf_jit_comp.c | 195 * If we have seen a tail call, we need a second pass. in bpf_int_jit_compile() 197 * from bpf_jit_emit_tail_call() with a not yet stable ctx->seen. in bpf_int_jit_compile() 201 if (cgctx.seen & SEEN_TAILCALL || !is_offset_in_branch_range((long)cgctx.idx * 4)) { in bpf_int_jit_compile() 211 * Pretend to build prologue, given the features we've seen. This will in bpf_int_jit_compile() 267 pr_info("Pass %d: shrink = %d, seen = 0x%x\n", pass, in bpf_int_jit_compile() 268 proglen - (cgctx.idx * 4), cgctx.seen); in bpf_int_jit_compile()
|
| D | bpf_jit.h | 132 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()
|
| /Linux-v6.1/net/sctp/ |
| D | tsnmap.c | 65 * 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-v6.1/Documentation/accounting/ |
| D | delay-accounting.rst | 51 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.
|