-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ceph#49116 from Matan-B/wip-matanb-c-balanced-reads
crimson/osd: Support balance reads Reviewed-by: Samuel Just <[email protected]>
- Loading branch information
Showing
21 changed files
with
374 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ tasks: | |
- workunit: | ||
clients: | ||
client.0: | ||
- rbd/test_librbd.sh | ||
- rbd/crimson/test_crimson_librbd.sh |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/sh -e | ||
|
||
if [ -n "${VALGRIND}" ]; then | ||
valgrind ${VALGRIND} --suppressions=${TESTDIR}/valgrind.supp \ | ||
--error-exitcode=1 ceph_test_librbd | ||
else | ||
# Run test cases indivually to allow better selection | ||
# of ongoing Crimson development. | ||
# Disabled test groups are tracked here: | ||
# https://tracker.ceph.com/issues/58791 | ||
ceph_test_librbd --gtest_filter='TestLibRBD.*' | ||
ceph_test_librbd --gtest_filter='EncryptedFlattenTest/0.*' | ||
ceph_test_librbd --gtest_filter='EncryptedFlattenTest/1.*' | ||
ceph_test_librbd --gtest_filter='EncryptedFlattenTest/2.*' | ||
ceph_test_librbd --gtest_filter='EncryptedFlattenTest/3.*' | ||
ceph_test_librbd --gtest_filter='EncryptedFlattenTest/4.*' | ||
ceph_test_librbd --gtest_filter='EncryptedFlattenTest/5.*' | ||
ceph_test_librbd --gtest_filter='EncryptedFlattenTest/6.*' | ||
ceph_test_librbd --gtest_filter='EncryptedFlattenTest/7.*' | ||
# ceph_test_librbd --gtest_filter='DiffIterateTest/0.*' | ||
# ceph_test_librbd --gtest_filter='DiffIterateTest/1.*' | ||
ceph_test_librbd --gtest_filter='TestImageWatcher.*' | ||
ceph_test_librbd --gtest_filter='TestInternal.*' | ||
ceph_test_librbd --gtest_filter='TestMirroring.*' | ||
# ceph_test_librbd --gtest_filter='TestDeepCopy.*' | ||
ceph_test_librbd --gtest_filter='TestGroup.*' | ||
# ceph_test_librbd --gtest_filter='TestMigration.*' | ||
ceph_test_librbd --gtest_filter='TestMirroringWatcher.*' | ||
ceph_test_librbd --gtest_filter='TestObjectMap.*' | ||
ceph_test_librbd --gtest_filter='TestOperations.*' | ||
ceph_test_librbd --gtest_filter='TestTrash.*' | ||
ceph_test_librbd --gtest_filter='TestJournalEntries.*' | ||
ceph_test_librbd --gtest_filter='TestJournalReplay.*' | ||
fi | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.