diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-01-10 01:37:23 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-01-10 01:38:43 +0100 |
| commit | 252b11a01e061fd17821e53a41c8451a1d2c27bd (patch) | |
| tree | e887ead2faddc8691fc13da426655a0062351cdc /util/reset.c | |
| parent | 864f5fa9d539734d823b3d0613dbf1a43beec334 (diff) | |
| download | cachepc-252b11a01e061fd17821e53a41c8451a1d2c27bd.tar.gz cachepc-252b11a01e061fd17821e53a41c8451a1d2c27bd.zip | |
Begin ioctl and test-case overhaul
Diffstat (limited to 'util/reset.c')
| -rw-r--r-- | util/reset.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/util/reset.c b/util/reset.c index 125a2b6..6285149 100644 --- a/util/reset.c +++ b/util/reset.c @@ -1,29 +1,20 @@ #include "cachepc/uapi.h" #include <sys/ioctl.h> -#include <stdlib.h> -#include <stdio.h> #include <fcntl.h> -#include <stdint.h> #include <err.h> -#include <fcntl.h> #include <unistd.h> int main(int argc, const char **argv) { - uint64_t arg; int fd, ret; fd = open("/dev/kvm", O_RDONLY); if (fd < 0) err(1, "open"); - ret = ioctl(fd, KVM_CPC_RESET_TRACKING); - if (ret) warn("ioctl RESET_TRACKING"); - - arg = 0; - ret = ioctl(fd, KVM_CPC_ACK_EVENT, &arg); - if (ret) warn("ioctl ACK_EVENT"); + ret = ioctl(fd, KVM_CPC_RESET); + if (ret) warn("ioctl KVM_CPC_RESET"); close(fd); } |
