/freebsd/sys/contrib/openzfs/man/man8/ |
H A D | zpool-trim.8 | 57 property above for the types of vdev devices which can be trimmed. 62 device guarantees that data stored on the trimmed blocks has been erased. 75 trimmed, the command will fail and no cancellation will occur on any device. 80 trimmed, the command will fail and no suspension will occur on any device. 85 Wait until the devices are done being trimmed before returning.
|
/freebsd/lib/libutil/ |
H A D | realhostname.c | 50 char trimmed[MAXHOSTNAMELEN]; in realhostname() local 58 strlcpy(trimmed, hp->h_name, sizeof(trimmed)); in realhostname() 59 trimdomain(trimmed, strlen(trimmed)); in realhostname() 60 if (strlen(trimmed) <= hsize) { in realhostname() 73 strncpy(host, trimmed, hsize); in realhostname()
|
/freebsd/stand/efi/gptboot/ |
H A D | proto.c | 142 EFI_DEVICE_PATH *devpath, *trimmed = NULL; in probe_handle() local 158 * MEDIA_DEVICE bit trimmed off. imgpath will end with the in probe_handle() 162 trimmed = efi_devpath_trim(imgpath); in probe_handle() 163 if (!efi_devpath_match(trimmed, devpath)) { in probe_handle() 164 free(trimmed); in probe_handle() 185 if (trimmed == NULL) { in probe_handle() 189 free(trimmed); in probe_handle()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_wait/ |
H A D | zpool_wait_trim_basic.ksh | 22 # 'zpool wait' works when waiting for devices to finish being trimmed 41 # Check whether any vdevs in given pool are being trimmed 45 zpool status -t "$pool" | grep "trimmed, started"
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
H A D | SectionMemoryManager.cpp | 192 sys::MemoryBlock Trimmed((void *)((uintptr_t)M.base() + StartOverlap), in trimBlockToPageSize() local 195 assert(((uintptr_t)Trimmed.base() % PageSize) == 0); in trimBlockToPageSize() 196 assert((Trimmed.allocatedSize() % PageSize) == 0); in trimBlockToPageSize() 197 assert(M.base() <= Trimmed.base() && in trimBlockToPageSize() 198 Trimmed.allocatedSize() <= M.allocatedSize()); in trimBlockToPageSize() 200 return Trimmed; in trimBlockToPageSize()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_trim/ |
H A D | zpool_trim_partial.ksh | 87 # which have never been used and therefore do not need be trimmed. 100 # Perform a full trim, all metaslabs will be trimmed the pool vdev 114 log_pass "Manual 'zpool trim' successfully partially trimmed pool"
|
H A D | zpool_trim.kshlib | 25 zpool status -t "$pool" | grep "$disk" | grep "[[:digit:]]* trimmed" 30 trim_prog_line "$1" "$2" | sed 's/.*(\([0-9]\{1,\}\)% trimmed.*/\1/g'
|
H A D | zpool_trim_verify_trimmed.ksh | 28 # After trimming, the disk is actually trimmed. 81 log_pass "Trimmed appropriate amount of disk space"
|
H A D | zpool_trim_start_and_cancel_neg.ksh | 28 # are being trimmed.
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | vdev_trim.c | 57 * While a metaslab is being actively trimmed it is not eligible to perform 87 * be automatically trimmed. 128 * and issuing them promptly so the trimmed space is available. Note 129 * that this value is a minimum; metaslabs can be trimmed less frequently 130 * when there are a large number of ranges which need to be trimmed. 134 * usage in order to track the ranges to be trimmed. Decreasing this value 142 * should be trimmed. The core elements are the vdev, the metaslab being 143 * trimmed and a range tree containing the extents to TRIM. All provided 162 uint64_t trim_bytes_done; /* Bytes trimmed */ 703 /* Metaslab space after this offset has not been trimmed. */ in vdev_trim_calculate_progress() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/trim/ |
H A D | autotrim_integrity.ksh | 33 # 3. Generate some interesting pool data which can be trimmed. 70 # to generate a variety of interesting ranges to be auto trimmed.
|
H A D | trim_integrity.ksh | 32 # 2. Generate some interesting pool data which can be trimmed. 69 # to generate a variety of interesting ranges to be manually trimmed.
|
H A D | autotrim_trim_integrity.ksh | 33 # 3. Generate some interesting pool data which can be trimmed. 71 # to generate a variety of interesting ranges to be auto trimmed.
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/ |
H A D | zvol_misc_trim.ksh | 42 # 7. Verify the trimmed regions are zero'd on the zvol 136 log_pass "ZFS volumes can be trimmed"
|
/freebsd/usr.sbin/newsyslog/ |
H A D | newsyslog.conf.5 | 122 the log file will be trimmed as described above. 125 the log file will not be trimmed based on size. 153 If an interval is specified, the log file will be trimmed if that many
|
/freebsd/share/man/man4/ |
H A D | nda.4 | 149 Total number of LBAs that have been trimmed. 151 Total number of LBA ranges that have been trimmed.
|
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/ |
H A D | CrashDebugger.cpp | 191 BD.setNewProgram(std::move(M)); // It crashed, keep the trimmed version... in TestGlobalVariables() 323 BD.setNewProgram(std::move(M)); // It crashed, keep the trimmed version... in TestFuncs() 389 BD.setNewProgram(std::move(M)); // It crashed, keep the trimmed version... in TestFuncAttrs() 533 BD.setNewProgram(std::move(M)); // It crashed, keep the trimmed version... in TestBlocks() 634 BD.setNewProgram(std::move(M)); // It crashed, keep the trimmed version... in TestBlocks() 720 BD.setNewProgram(std::move(M)); // It crashed, keep the trimmed version... in TestBlocks() 799 BD.setNewProgram(std::move(M)); // It crashed, keep the trimmed version... in TestInsts() 869 BD.setNewProgram(std::move(M)); // It crashed, keep the trimmed version... in TestInsts() 942 BD.setNewProgram(std::move(M)); // It crashed, keep the trimmed version... in TestNamedMDs() 1011 BD.setNewProgram(std::move(M)); // It crashed, keep the trimmed version... in TestNamedMDOps()
|
/freebsd/sys/contrib/openzfs/cmd/zed/zed.d/ |
H A D | trim_finish-notify.sh | 5 # will be received for each vdev in the pool which was trimmed.
|
/freebsd/contrib/bzip2/ |
H A D | FREEBSD-upgrade | 6 cvs import -m "Virgin import (trimmed) of Bzip2 version 1.0.5." \
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | cond-func-exists.mk | 36 # Whitespace is trimmed on both sides of the function argument.
|
H A D | cond-func-empty.mk | 106 # neither leading nor trailing spaces are trimmed in the argument of the 107 # function. If the spaces were trimmed, the variable name would be "", and
|
H A D | directive-info.mk | 27 # Even if lines would have trailing whitespace, this would be trimmed by
|
/freebsd/contrib/ncurses/ncurses/tinfo/ |
H A D | captoinfo.c | 623 const char *trimmed = 0; in _nc_infotocap() local 650 trimmed = padding; in _nc_infotocap() 659 ((trimmed == 0) || (str < trimmed)); str++) { in _nc_infotocap() 664 if (str[1] == '\0' || (str + 1) == trimmed) { in _nc_infotocap() 685 if (str[1] == '\0' || (str + 1) == trimmed) { in _nc_infotocap()
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | BreakableToken.cpp | 750 size_t Trimmed = Content[LineIndex].find_first_not_of(Blanks); in getReflowSplit() local 753 if (PreviousContentIndent && Trimmed != StringRef::npos && in getReflowSplit() 754 Trimmed != PreviousContentIndent) { in getReflowSplit() 759 return Split(0, Trimmed != StringRef::npos ? Trimmed : 0); in getReflowSplit() 1046 size_t Trimmed = Content[LineIndex].find_first_not_of(Blanks); in getReflowSplit() local 1052 return Split(0, Trimmed != StringRef::npos ? Trimmed : 0); in getReflowSplit()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | LiveRangeEdit.h | 90 /// live range trimmed or entirely removed. 234 /// (allDefsAreDead returns true). This may cause live intervals to be trimmed
|