diff options
author | Daniel P. Berrangé | 2020-07-21 14:25:21 +0200 |
---|---|---|
committer | Daniel P. Berrangé | 2020-09-16 11:33:48 +0200 |
commit | 448058aa99aaf30e7b8978508e575284a19fcfc9 (patch) | |
tree | f656a519ced58db3846b3e0118b027da94cebf2b /accel/kvm/kvm-all.c | |
parent | util: split off a helper for dealing with O_CLOEXEC flag (diff) | |
download | qemu-448058aa99aaf30e7b8978508e575284a19fcfc9.tar.gz qemu-448058aa99aaf30e7b8978508e575284a19fcfc9.tar.xz qemu-448058aa99aaf30e7b8978508e575284a19fcfc9.zip |
util: rename qemu_open() to qemu_open_old()
We want to introduce a new version of qemu_open() that uses an Error
object for reporting problems and make this it the preferred interface.
Rename the existing method to release the namespace for the new impl.
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'accel/kvm/kvm-all.c')
-rw-r--r-- | accel/kvm/kvm-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c index 63ef6af9a1..ad8b315b35 100644 --- a/accel/kvm/kvm-all.c +++ b/accel/kvm/kvm-all.c @@ -2013,7 +2013,7 @@ static int kvm_init(MachineState *ms) #endif QLIST_INIT(&s->kvm_parked_vcpus); s->vmfd = -1; - s->fd = qemu_open("/dev/kvm", O_RDWR); + s->fd = qemu_open_old("/dev/kvm", O_RDWR); if (s->fd == -1) { fprintf(stderr, "Could not access KVM kernel module: %m\n"); ret = -errno; |