diff options
author | Markus Armbruster <armbru@redhat.com> | 2015-05-15 13:58:58 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2015-05-27 10:34:07 +0100 |
commit | 468dd82408e950d48def28f87e4cffabfd592ace (patch) | |
tree | 0c8ab84fa85e8914fffce19cc3a566940ce5abff /net/tap-linux.c | |
parent | ac4fcf5639f44f7d863a35eaa2ad07ff31aabc01 (diff) |
tap: Permit incremental conversion of tap_open() to Error
Convert the trivial ones immediately: tap-aix and tap-haiku.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 1431691143-1015-11-git-send-email-armbru@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'net/tap-linux.c')
-rw-r--r-- | net/tap-linux.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/tap-linux.c b/net/tap-linux.c index 6fa27442bc..be18382517 100644 --- a/net/tap-linux.c +++ b/net/tap-linux.c @@ -37,8 +37,9 @@ #define PATH_NET_TUN "/dev/net/tun" int tap_open(char *ifname, int ifname_size, int *vnet_hdr, - int vnet_hdr_required, int mq_required) + int vnet_hdr_required, int mq_required, Error **errp) { + /* FIXME error_setg(errp, ...) on failure */ struct ifreq ifr; int fd, ret; int len = sizeof(struct virtio_net_hdr); |