diff options
author | Yinan Zhang <zyn8950@gmail.com> | 2019-04-09 11:01:26 -0700 |
---|---|---|
committer | Qi Wang <interwq@gmail.com> | 2019-04-10 13:03:20 -0700 |
commit | 7ee3897740aabdccb2381b7b6ab68fff0aac3ec4 (patch) | |
tree | e8674cc98f46b62c4027a1c47ff897f290c53434 /src | |
parent | d3d7a8ef09b6fa79109e8930aaba7a677f8b24ac (diff) |
Separate tests for extent utilization API
As title.
Diffstat (limited to 'src')
-rw-r--r-- | src/ctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3131,7 +3131,7 @@ label_return: * #define BIN_NREGS_READ(out) COUNTS(out)[4] * * and then write e.g. NFREE_READ(oldp) to fetch the output. See the unit test - * test_utilization_query in test/unit/mallctl.c for an example. + * test_query in test/unit/extent_util.c for an example. * * For a typical defragmentation workflow making use of this API for * understanding the fragmentation level, please refer to the comment for @@ -3223,7 +3223,7 @@ label_return: * #define SIZE_READ(out, i) out[(i) * 3 + 2] * * and then write e.g. NFREE_READ(oldp, i) to fetch the output. See the unit - * test test_utilization_batch in test/unit/mallctl.c for a concrete example. + * test test_batch in test/unit/extent_util.c for a concrete example. * * A typical workflow would be composed of the following steps: * |