aboutsummaryrefslogtreecommitdiffstats
path: root/kvm-ipc.c
diff options
context:
space:
mode:
authorMichael Ellerman <michael@ellerman.id.au>2013-02-06 19:19:12 +1100
committerWill Deacon <will.deacon@arm.com>2015-06-01 16:39:54 +0100
commit211370d69e62335e3345aae5c52e935b11307acf (patch)
treee7c3b09aa5501e4e2f7a12f4c365baa5d358f89a /kvm-ipc.c
parent0cf9e1f442e1311e8c0b900caa3c6b62c961f573 (diff)
downloadkvmtool-211370d69e62335e3345aae5c52e935b11307acf.tar.gz
kvm tools: More error handling in the ipc code
Add perror() calls to a couple of exit paths, to ease debugging. There are also two places where we print "Failed starting IPC thread", but one is really an epoll failure, so make that obvious. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'kvm-ipc.c')
-rw-r--r--kvm-ipc.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/kvm-ipc.c b/kvm-ipc.c
index bdcc0d1f..78975192 100644
--- a/kvm-ipc.c
+++ b/kvm-ipc.c
@@ -49,18 +49,25 @@ static int kvm__create_socket(struct kvm *kvm)
}
s = socket(AF_UNIX, SOCK_STREAM, 0);
- if (s < 0)
+ if (s < 0) {
+ perror("socket");
return s;
+ }
+
local.sun_family = AF_UNIX;
strlcpy(local.sun_path, full_name, sizeof(local.sun_path));
len = strlen(local.sun_path) + sizeof(local.sun_family);
r = bind(s, (struct sockaddr *)&local, len);
- if (r < 0)
+ if (r < 0) {
+ perror("bind");
goto fail;
+ }
r = listen(s, 5);
- if (r < 0)
+ if (r < 0) {
+ perror("listen");
goto fail;
+ }
return s;
@@ -430,6 +437,7 @@ int kvm_ipc__init(struct kvm *kvm)
epoll_fd = epoll_create(KVM_IPC_MAX_MSGS);
if (epoll_fd < 0) {
+ perror("epoll_create");
ret = epoll_fd;
goto err;
}
@@ -437,13 +445,14 @@ int kvm_ipc__init(struct kvm *kvm)
ev.events = EPOLLIN | EPOLLET;
ev.data.fd = sock;
if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, sock, &ev) < 0) {
- pr_err("Failed starting IPC thread");
+ pr_err("Failed adding socket to epoll");
ret = -EFAULT;
goto err_epoll;
}
stop_fd = eventfd(0, 0);
if (stop_fd < 0) {
+ perror("eventfd");
ret = stop_fd;
goto err_epoll;
}