mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
d2ebfd0519
Screw the description like that inbred T3Q
54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* tools/testing/selftests/kvm/include/perf_test_util.h
|
|
*
|
|
* Copyright (C) 2020, Google LLC.
|
|
*/
|
|
|
|
#ifndef SELFTEST_KVM_PERF_TEST_UTIL_H
|
|
#define SELFTEST_KVM_PERF_TEST_UTIL_H
|
|
|
|
#include <pthread.h>
|
|
|
|
#include "kvm_util.h"
|
|
|
|
/* Default guest test virtual memory offset */
|
|
#define DEFAULT_GUEST_TEST_MEM 0xc0000000
|
|
|
|
#define DEFAULT_PER_VCPU_MEM_SIZE (1 << 30) /* 1G */
|
|
|
|
#define PERF_TEST_MEM_SLOT_INDEX 1
|
|
|
|
struct perf_test_vcpu_args {
|
|
uint64_t gpa;
|
|
uint64_t gva;
|
|
uint64_t pages;
|
|
|
|
/* Only used by the host userspace part of the vCPU thread */
|
|
int vcpu_id;
|
|
};
|
|
|
|
struct perf_test_args {
|
|
struct kvm_vm *vm;
|
|
uint64_t gpa;
|
|
uint64_t guest_page_size;
|
|
int wr_fract;
|
|
|
|
struct perf_test_vcpu_args vcpu_args[KVM_MAX_VCPUS];
|
|
};
|
|
|
|
extern struct perf_test_args perf_test_args;
|
|
|
|
struct kvm_vm *perf_test_create_vm(enum vm_guest_mode mode, int vcpus,
|
|
uint64_t vcpu_memory_bytes, int slots,
|
|
enum vm_mem_backing_src_type backing_src,
|
|
bool partition_vcpu_memory_access);
|
|
void perf_test_destroy_vm(struct kvm_vm *vm);
|
|
|
|
void perf_test_set_wr_fract(struct kvm_vm *vm, int wr_fract);
|
|
|
|
void perf_test_start_vcpu_threads(int vcpus, void (*vcpu_fn)(struct perf_test_vcpu_args *));
|
|
void perf_test_join_vcpu_threads(int vcpus);
|
|
|
|
#endif /* SELFTEST_KVM_PERF_TEST_UTIL_H */
|