]> Git Repo - qemu.git/blobdiff - net/tap-solaris.c
apic: fix broken migration for kvm-apic
[qemu.git] / net / tap-solaris.c
index 90b2fd12f103c19f75c9716e5d9c61c9a4b5ed16..a2a92356c1a017ae0270e4d4ee8c8b665969c788 100644 (file)
  * THE SOFTWARE.
  */
 
+#include "qemu/osdep.h"
+#include "qapi/error.h"
 #include "tap_int.h"
 #include "sysemu/sysemu.h"
+#include "qemu/cutils.h"
 
-#include <sys/stat.h>
 #include <sys/ethernet.h>
 #include <sys/sockio.h>
 #include <netinet/arp.h>
@@ -223,6 +225,16 @@ void tap_fd_set_vnet_hdr_len(int fd, int len)
 {
 }
 
+int tap_fd_set_vnet_le(int fd, int is_le)
+{
+    return -EINVAL;
+}
+
+int tap_fd_set_vnet_be(int fd, int is_be)
+{
+    return -EINVAL;
+}
+
 void tap_fd_set_offload(int fd, int csum, int tso4,
                         int tso6, int ecn, int ufo)
 {
This page took 0.023536 seconds and 4 git commands to generate.