summaryrefslogtreecommitdiff
path: root/net/tap-solaris.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/tap-solaris.c')
-rw-r--r--net/tap-solaris.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/net/tap-solaris.c b/net/tap-solaris.c
index ef4e60c878..e14fe36fdb 100644
--- a/net/tap-solaris.c
+++ b/net/tap-solaris.c
@@ -180,6 +180,17 @@ int tap_open(char *ifname, int ifname_size, int *vnet_hdr, int vnet_hdr_required
return -1;
}
pstrcpy(ifname, ifname_size, dev);
+ if (*vnet_hdr) {
+ /* Solaris doesn't have IFF_VNET_HDR */
+ *vnet_hdr = 0;
+
+ if (vnet_hdr_required && !*vnet_hdr) {
+ qemu_error("vnet_hdr=1 requested, but no kernel "
+ "support for IFF_VNET_HDR available");
+ close(fd);
+ return -1;
+ }
+ }
fcntl(fd, F_SETFL, O_NONBLOCK);
return fd;
}