diff options
author | Mark McLoughlin <markmc@redhat.com> | 2009-10-22 17:49:14 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-30 08:39:28 -0500 |
commit | dc69004c7d89afb6ede02ca9379075c062c0c091 (patch) | |
tree | 3a365fe328d765619951dbf732b43f39d7226262 /net/tap-solaris.c | |
parent | net: move tap_set_sndbuf() to tap-linux.c (diff) | |
download | qemu-kvm-dc69004c7d89afb6ede02ca9379075c062c0c091.tar.gz qemu-kvm-dc69004c7d89afb6ede02ca9379075c062c0c091.tar.bz2 qemu-kvm-dc69004c7d89afb6ede02ca9379075c062c0c091.zip |
net: move tap_probe_vnet_hdr() to tap-linux.c
Only Linux has support for IFF_VNET_HDR
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'net/tap-solaris.c')
-rw-r--r-- | net/tap-solaris.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/tap-solaris.c b/net/tap-solaris.c index de5855aa0..3f48e5732 100644 --- a/net/tap-solaris.c +++ b/net/tap-solaris.c @@ -188,3 +188,8 @@ int tap_set_sndbuf(int fd, QemuOpts *opts) { return 0; } + +int tap_probe_vnet_hdr(int fd) +{ + return 0; +} |