2015-01-12 14:11:13 +01:00
|
|
|
/*
|
|
|
|
|
* Test block device write threshold
|
|
|
|
|
*
|
|
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2 or later.
|
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2016-02-08 18:08:51 +00:00
|
|
|
#include "qemu/osdep.h"
|
2015-01-12 14:11:13 +01:00
|
|
|
#include "block/block_int.h"
|
|
|
|
|
#include "block/write-threshold.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void test_threshold_not_trigger(void)
|
|
|
|
|
{
|
|
|
|
|
uint64_t threshold = 4 * 1024 * 1024;
|
|
|
|
|
BlockDriverState bs;
|
|
|
|
|
|
|
|
|
|
memset(&bs, 0, sizeof(bs));
|
2020-12-04 01:27:13 +03:00
|
|
|
|
2015-01-12 14:11:13 +01:00
|
|
|
bdrv_write_threshold_set(&bs, threshold);
|
2021-05-06 12:06:16 +03:00
|
|
|
bdrv_write_threshold_check_write(&bs, 1024, 1024);
|
|
|
|
|
g_assert_cmpuint(bdrv_write_threshold_get(&bs), ==, threshold);
|
2015-01-12 14:11:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void test_threshold_trigger(void)
|
|
|
|
|
{
|
|
|
|
|
uint64_t threshold = 4 * 1024 * 1024;
|
|
|
|
|
BlockDriverState bs;
|
|
|
|
|
|
|
|
|
|
memset(&bs, 0, sizeof(bs));
|
2020-12-04 01:27:13 +03:00
|
|
|
|
2015-01-12 14:11:13 +01:00
|
|
|
bdrv_write_threshold_set(&bs, threshold);
|
2021-05-06 12:06:16 +03:00
|
|
|
bdrv_write_threshold_check_write(&bs, threshold - 1024, 2 * 1024);
|
|
|
|
|
g_assert_cmpuint(bdrv_write_threshold_get(&bs), ==, 0);
|
2015-01-12 14:11:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
g_test_init(&argc, &argv, NULL);
|
2021-05-06 12:06:20 +03:00
|
|
|
g_test_add_func("/write-threshold/not-trigger", test_threshold_not_trigger);
|
|
|
|
|
g_test_add_func("/write-threshold/trigger", test_threshold_trigger);
|
|
|
|
|
|
2015-01-12 14:11:13 +01:00
|
|
|
return g_test_run();
|
|
|
|
|
}
|