-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It has: 64 logical CPUs, 256GB memory and 12 Intel SSD drives.
- Loading branch information
Fengguang Wu
committed
Apr 13, 2012
1 parent
2a2335a
commit 47cf2de
Showing
1 changed file
with
33 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
DEVICES=" | ||
$(echo /dev/disk/by-id/ata-INTEL_SSD*part1 | xargs -n1 readlink -f | sort) | ||
" | ||
|
||
FILESYSTEMS="ext4 xfs btrfs" | ||
DD_TASKS="1 10 100" | ||
|
||
KERNEL_OPTIONS=("") | ||
|
||
KERNELS=( | ||
3.0.0 | ||
3.1.0 | ||
3.2.0 | ||
3.3.0 | ||
) | ||
|
||
test_cases() { | ||
echo | ||
|
||
echo jbod_12hdd_thresh_100m | ||
echo jbod_12hdd_thresh_1000m | ||
echo jbod_12hdd_thresh_8g | ||
|
||
echo raid0_12hdd_thresh_100m | ||
echo raid0_12hdd_thresh_1000m | ||
echo raid0_12hdd_thresh_8g | ||
|
||
echo raid5_12hdd_thresh_100m | ||
echo raid5_12hdd_thresh_1000m | ||
echo raid5_12hdd_thresh_8g | ||
|
||
} | ||
|