summaryrefslogtreecommitdiff
path: root/hw/net
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2013-12-22 15:51:22 +0100
committerMichael S. Tsirkin <mst@redhat.com>2014-01-26 13:06:48 +0200
commit4dd72e04c2c4759782d0eb3e3aff6a36889c1e18 (patch)
treee264c2c43ce73e83ee95e63c92a928dec4cdf1b9 /hw/net
parent8977557ae418f9b9ff5c35ee39161a33f2368e6a (diff)
downloadqemu-4dd72e04c2c4759782d0eb3e3aff6a36889c1e18.tar.gz
virtio: Fix return value for dummy function vhost_net_virtqueue_pending
cgcc complains that -ENOSYS is not a good value for 'bool'. A dummy virtio will never have pending queue entries, so let us return false. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/net')
-rw-r--r--hw/net/vhost_net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/net/vhost_net.c b/hw/net/vhost_net.c
index 006576db31..854997d9ba 100644
--- a/hw/net/vhost_net.c
+++ b/hw/net/vhost_net.c
@@ -321,7 +321,7 @@ void vhost_net_ack_features(struct vhost_net *net, unsigned features)
bool vhost_net_virtqueue_pending(VHostNetState *net, int idx)
{
- return -ENOSYS;
+ return false;
}
void vhost_net_virtqueue_mask(VHostNetState *net, VirtIODevice *dev,