diff options
Diffstat (limited to 'kvm-all.c')
| -rw-r--r-- | kvm-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvm-all.c b/kvm-all.c index b605caaef4..b8ffe546c5 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -416,7 +416,7 @@ int kvm_init(int smp_cpus) s->slots[i].slot = i; s->vmfd = -1; - s->fd = open("/dev/kvm", O_RDWR); + s->fd = qemu_open("/dev/kvm", O_RDWR); if (s->fd == -1) { fprintf(stderr, "Could not access KVM kernel module: %m\n"); ret = -errno; |