/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_add/ |
H A D | add_nested_replacing_spare.ksh | 31 # 'zpool add' works with nested replacing/spare vdevs 36 # this creates a situation where replacing and spare vdevs are nested. 51 log_assert "'zpool add' works with nested replacing/spare vdevs" 87 # 2.2 Replace the faulted device: this creates a replacing vdev inside a 93 END { if (s != poolname":"type"-0:spare-0:replacing-0:") exit 1; }' || 94 log_fail "Pool does not contain nested replacing/spare vdevs" 108 log_pass "'zpool add' works with nested replacing/spare vdevs"
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | IntegerDivision.h | 25 /// Generate code to calculate the remainder of two integers, replacing Rem 34 /// Generate code to divide two integers, replacing Div with the generated 43 /// Generate code to calculate the remainder of two integers, replacing Rem 51 /// Generate code to calculate the remainder of two integers, replacing Rem 57 /// Generate code to divide two integers, replacing Div with the generated 64 /// Generate code to divide two integers, replacing Div with the generated
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/ |
H A D | fault_limits.ksh | 34 # 2. Replace one of the child vdevs to create a replacing vdev 36 # 4. Verify that less than parity count was faulted while replacing 72 # Replace the last child vdev to form a replacing vdev 74 # imediately offline replacement disk to keep replacing vdev around 77 # Fault disks while a replacing vdev is still active
|
H A D | suspend_on_probe_errors.ksh | 37 # 4. Replace one of the child vdevs to start a replacing vdev 38 # 5. During the resilver, remove 4 disks including one from the replacing vdev 107 # Start a replacing vdev, but suspend the resilver
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cache/ |
H A D | cache_005_neg.ksh | 37 # Replacing a cache device fails. 41 # 2. Replacing one cache device 49 log_assert "Replacing a cache device fails." 65 log_pass "Replacing a cache device fails."
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/slog/ |
H A D | slog_006_pos.ksh | 36 # Replacing a log device passes. 40 # 2. Replacing one log device 47 log_assert "Replacing a log device passes." 73 log_pass "Replacing a log device passes."
|
/freebsd/tests/sys/cddl/zfs/tests/slog/ |
H A D | slog_006_pos.ksh | 36 # Replacing a log device passes. 40 # 2. Replacing one log device 56 log_assert "Replacing a log device passes." 75 log_pass "Replacing a log device passes."
|
/freebsd/tests/sys/cddl/zfs/tests/cache/ |
H A D | cache_005_neg.ksh | 36 # Replacing a cache device fails. 40 # 2. Replacing one cache device 56 log_assert "Replacing a cache device fails." 72 log_pass "Replacing a cache device fails."
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_add/ |
H A D | zpool_add_010_pos.ksh | 32 log_assert "'zpool add' can add devices, even if a replacing vdev with a spare child is present" 35 # A replacing vdev will automatically detach the older member when resilvering 44 log_pass "'zpool add <pool> <vdev> ...' executes successfully, even when a replacing vdev with a sp…
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_wait/scan/ |
H A D | zpool_wait_replace_cancel.ksh | 22 # 'zpool wait' works when a replacing disk is detached before the replacement 32 # 6. Cancel the replacement by detaching the replacing disk. 65 log_pass "'zpool wait -t replace' returns when replacing disk is detached."
|
H A D | zpool_wait_replace.ksh | 22 # 'zpool wait' works when a replacing disks. 46 zpool status $TESTPOOL | grep 'replacing-' >/dev/null
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | UnsafeBufferUsage.h | 9 // This file defines an analysis that aids replacing buffer accesses through 53 Span, // We recommend replacing the variable with std::span. 54 Iterator, // We recommend replacing the variable with std::span::iterator. 55 Array, // We recommend replacing the variable with std::array. 56 Vector // We recommend replacing the variable with std::vector.
|
/freebsd/tests/sys/cddl/zfs/tests/replacement/ |
H A D | replacement_test.sh | 30 atf_set "descr" "Replacing a disk during I/O completes." 52 atf_set "descr" "Replacing a disk during I/O completes." 74 atf_set "descr" "Replacing a disk during I/O completes."
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/alloc_class/ |
H A D | alloc_class_007_pos.ksh | 23 # Replacing a special device succeeds 25 claim="Replacing a special device is successful."
|
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_x86_64.cpp | 126 // Here we do the dance of replacing the following sled: in patchFunctionEntry() 174 // Here we do the dance of replacing the following sled: in patchFunctionExit() 221 // Here we do the dance of replacing the tail call sled with a similar in patchFunctionTailExit() 251 // Here we do the dance of replacing the following sled: in patchCustomEvent() 279 // Here we do the dance of replacing the following sled: in patchTypedEvent()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | LegalizerHelper.h | 109 /// Legalize an instruction by replacing the value type 135 /// ExtOpcode for the extension instruction, and replacing the vreg of the 142 /// replacing the vreg of the operand in place. 147 /// with the \p TruncOpcode, and replacing the vreg of the operand in place. 152 // Def by truncating the operand's type to \p NarrowTy, replacing in place and 158 /// result elements, and replacing the vreg of the operand in place. 163 /// original vector type, and replacing the vreg of the operand in place.
|
/freebsd/tests/sys/cddl/zfs/tests/zfsd/ |
H A D | zfsd_hotspare_008_neg.ksh | 45 # Write some data to the pool so the replacing vdev doesn't complete 67 log_assert "zfsd will not use newly added spares on replacing vdevs"
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ReplaceConstant.h | 1 //===- ReplaceConstant.h - Replacing LLVM constant expressions --*- C++ -*-===// 9 // This file declares the utility function for replacing LLVM constant
|
/freebsd/crypto/openssh/ |
H A D | ssh_config.5 | 417 instead of replacing them. 421 from the default set instead of replacing them. 557 instead of replacing them. 561 from the default set instead of replacing them. 968 to the default set instead of replacing them. 972 will be removed from the default set instead of replacing them. 1014 the default set instead of replacing them. 1018 will be removed from the default set instead of replacing them. 1277 instead of replacing them. 1281 from the default set instead of replacing them. [all …]
|
H A D | sshd_config.5 | 396 instead of replacing them. 400 from the default set instead of replacing them. 541 instead of replacing them. 545 from the default set instead of replacing them. 762 the default set instead of replacing them. 766 will be removed from the default set instead of replacing them. 1015 instead of replacing them. 1019 from the default set instead of replacing them. 1163 instead of replacing them. 1167 from the default set instead of replacing them. [all …]
|
/freebsd/sys/contrib/openzfs/cmd/zpool/ |
H A D | zpool_vdev.c | 586 * If this is a replacing or spare vdev, then in get_replication() 588 * in a loop because replacing and spare vdevs in get_replication() 963 make_disks(zpool_handle_t *zhp, nvlist_t *nv, boolean_t replacing) in make_disks() argument 1067 replacing ? "replace" : "add", &lines, in make_disks() 1118 if ((ret = make_disks(zhp, child[c], replacing)) != 0) in make_disks() 1124 if ((ret = make_disks(zhp, child[c], replacing)) != 0) in make_disks() 1130 if ((ret = make_disks(zhp, child[c], replacing)) != 0) in make_disks() 1142 boolean_t replacing, boolean_t isspare) in is_device_in_use() argument 1167 if (replacing) { in is_device_in_use() 1189 if (is_device_in_use(config, child[c], force, replacing, in is_device_in_use() [all …]
|
/freebsd/tests/sys/cddl/zfs/tests/hotspare/ |
H A D | hotspare_detach_002_pos.ksh | 75 while check_state "$TESTPOOL" "replacing" \ 86 while check_state "$TESTPOOL" "replacing" \
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/replacement/ |
H A D | replace_rebuild.ksh | 38 # Replacing disks during I/O should pass for supported pools. 67 log_assert "Replacing a disk with -r during I/O completes."
|
H A D | replace_resilver.ksh | 37 # Replacing disks during I/O should pass for supported pools. 64 log_assert "Replacing a disk during I/O completes."
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | Pragma.h | 128 /// deleting the leading and trailing double-quotes, replacing each escape 129 /// sequence \" by a double-quote, and replacing each escape sequence \\ by a
|