int vmbus_uio_irq_read(struct rte_vmbus_device *dev)
{
int32_t count;
-
- if (read(dev->intr_handle.fd, &count, sizeof(count)) < 0) {
- VMBUS_LOG(ERR, "cannot read to %d:%s",
- dev->intr_handle.fd, strerror(errno));
- count = -errno;
+ int cc;
+
+ cc = read(dev->intr_handle.fd, &count, sizeof(count));
+ if (cc < (int)sizeof(count)) {
+ if (cc < 0) {
+ VMBUS_LOG(ERR, "IRQ read failed %s",
+ strerror(errno));
+ return -errno;
+ }
+ VMBUS_LOG(ERR, "can't read IRQ count");
+ return -EINVAL;
}
return count;