Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/throtl/002
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test() {
local io_size_kb block_size
local iops=256

page_size=$(getconf PAGE_SIZE)
page_size=$(_get_page_size)

if ! _set_up_throtl --sector_size "${page_size}"; then
return 1;
Expand Down
2 changes: 1 addition & 1 deletion tests/throtl/003
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test() {
echo "Running ${TEST_NAME}"

local page_size
page_size=$(getconf PAGE_SIZE)
page_size=$(_get_page_size)

if ! _set_up_throtl --sector_size "${page_size}"; then
return 1;
Expand Down
2 changes: 1 addition & 1 deletion tests/throtl/007
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test() {
echo "Running ${TEST_NAME}"

local page_size
page_size=$(getconf PAGE_SIZE)
page_size=$(_get_page_size)

if ! _set_up_throtl --sector_size "${page_size}"; then
return 1;
Expand Down
2 changes: 1 addition & 1 deletion tests/zbd/014
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ run_test() {
local bio_max_vecs=256

local page_size
page_size=$(getconf PAGE_SIZE)
page_size=$(_get_page_size)

# In bytes.
local max_inl_encr_bio_size=$((bio_max_vecs * page_size))
Expand Down
Loading