Displaying 12 results from an estimated 12 matches for "net_tap_init".
2007 Jul 30
2
possible bug in xen.hg/tools/ioemu/tools/vl.c, function net_tap_init()
in xen.hg/tools/ioemu/tools/vl.c, function net_tap_init()
if (need_setphysaddr) {
if ((r = dlpi_set_physaddr(dh, DL_CURR_PHYS_ADDR,
s->mac_addr, ETHERADDRL)) != DLPI_SUCCESS) {
fprintf(logfile,
"net_tap_init: cannot set physaddr (%d)\n",...
2012 Jun 25
4
[RFC V2 PATCH 0/4] Multiqueue support for tap and virtio-net/vhost
Hello all:
This seires is an update of last version of multiqueue support to add multiqueue
capability to both tap and virtio-net.
Some kinds of tap backends has (macvatp in linux) or would (tap) support
multiqueue. In such kind of tap backend, each file descriptor of a tap is a
qeueu and ioctls were prodived to attach an exist tap file descriptor to the
tun/tap device. So the patch let qemu to
2012 Jun 25
4
[RFC V2 PATCH 0/4] Multiqueue support for tap and virtio-net/vhost
Hello all:
This seires is an update of last version of multiqueue support to add multiqueue
capability to both tap and virtio-net.
Some kinds of tap backends has (macvatp in linux) or would (tap) support
multiqueue. In such kind of tap backend, each file descriptor of a tap is a
qeueu and ioctls were prodived to attach an exist tap file descriptor to the
tun/tap device. So the patch let qemu to
2012 Jul 06
5
[RFC V3 0/5] Multiqueue support for tap and virtio-net/vhost
Hello all:
This seires is an update of last version of multiqueue support to add multiqueue
capability to both tap and virtio-net.
Some kinds of tap backends has (macvatp in linux) or would (tap) support
multiqueue. In such kind of tap backend, each file descriptor of a tap is a
qeueu and ioctls were prodived to attach an exist tap file descriptor to the
tun/tap device. So the patch let qemu to
2012 Jul 06
5
[RFC V3 0/5] Multiqueue support for tap and virtio-net/vhost
Hello all:
This seires is an update of last version of multiqueue support to add multiqueue
capability to both tap and virtio-net.
Some kinds of tap backends has (macvatp in linux) or would (tap) support
multiqueue. In such kind of tap backend, each file descriptor of a tap is a
qeueu and ioctls were prodived to attach an exist tap file descriptor to the
tun/tap device. So the patch let qemu to
2008 Mar 25
11
Failure to instal S10U4 HVM at SNV85 Dom0
System config:-
bash-3.2# ifconfig -a
lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
rge0: flags=201004843<UP,BROADCAST,RUNNING,MULTICAST,DHCP,IPv4,CoS> mtu 1500 index 2
inet 192.168.1.53 netmask ffffff00 broadcast 192.168.1.255
ether 0:1e:8c:25:cc:a5
lo0:
2009 Nov 02
0
[PATCHv4 3/6] qemu/net: add raw backend
...}
diff --git a/net.c b/net.c
index 8ac639b..1fb2f2f 100644
--- a/net.c
+++ b/net.c
@@ -93,6 +93,9 @@
#endif
#endif
+#include <netpacket/packet.h>
+#include <net/ethernet.h>
+
#if defined(__OpenBSD__)
#include <util.h>
#endif
@@ -1870,6 +1873,158 @@ static TAPState *net_tap_init(VLANState *vlan, const char *model,
#endif /* !_WIN32 */
+typedef struct RAWState {
+ VLANClientState *vc;
+ int fd;
+ uint8_t buf[4096];
+ int promisc;
+} RAWState;
+
+static int net_raw_fd_init(Monitor *mon, const char *ifname, int promisc)
+{
+ int fd, ret;
+ struct ifreq req;
+...
2009 Nov 02
0
[PATCHv4 3/6] qemu/net: add raw backend
...}
diff --git a/net.c b/net.c
index 8ac639b..1fb2f2f 100644
--- a/net.c
+++ b/net.c
@@ -93,6 +93,9 @@
#endif
#endif
+#include <netpacket/packet.h>
+#include <net/ethernet.h>
+
#if defined(__OpenBSD__)
#include <util.h>
#endif
@@ -1870,6 +1873,158 @@ static TAPState *net_tap_init(VLANState *vlan, const char *model,
#endif /* !_WIN32 */
+typedef struct RAWState {
+ VLANClientState *vc;
+ int fd;
+ uint8_t buf[4096];
+ int promisc;
+} RAWState;
+
+static int net_raw_fd_init(Monitor *mon, const char *ifname, int promisc)
+{
+ int fd, ret;
+ struct ifreq req;
+...
2009 Feb 26
4
SXCE104, Cannot boot HVM domain
Hi,
I cannot boot Windows XP domU on SXCE104 dom0.
It was running for weeks..
Is it a known bug?
# virsh start wxpp01 &
# virsh dumpxml wxpp01
<domain type=''xen'' id=''-1''>
<name>wxpp01</name>
<uuid>fb96e8c9-940d-7e0a-12ef-f167a7f1102c</uuid>
<os>
<type>hvm</type>
2009 Aug 10
0
[PATCH 3/3] qemu-kvm: vhost-net implementation
..._t *config);
void (*reset)(VirtIODevice *vdev);
+ void (*driver_ok)(VirtIODevice *vdev);
VirtQueue *vq;
const VirtIOBindings *binding;
void *binding_opaque;
diff --git a/net.c b/net.c
index 9965da3..d976123 100644
--- a/net.c
+++ b/net.c
@@ -1903,7 +1903,7 @@ static TAPState *net_tap_init(VLANState *vlan, const char *model,
typedef struct RAWState {
VLANClientState *vc;
int fd;
- uint8_t buf[4096];
+ uint8_t buf[65000];
int promisc;
} RAWState;
@@ -2745,7 +2745,8 @@ int net_client_init(Monitor *mon, const char *device, const char *p)
}
if (!strcmp(...
2009 Aug 10
0
[PATCH 3/3] qemu-kvm: vhost-net implementation
..._t *config);
void (*reset)(VirtIODevice *vdev);
+ void (*driver_ok)(VirtIODevice *vdev);
VirtQueue *vq;
const VirtIOBindings *binding;
void *binding_opaque;
diff --git a/net.c b/net.c
index 9965da3..d976123 100644
--- a/net.c
+++ b/net.c
@@ -1903,7 +1903,7 @@ static TAPState *net_tap_init(VLANState *vlan, const char *model,
typedef struct RAWState {
VLANClientState *vc;
int fd;
- uint8_t buf[4096];
+ uint8_t buf[65000];
int promisc;
} RAWState;
@@ -2745,7 +2745,8 @@ int net_client_init(Monitor *mon, const char *device, const char *p)
}
if (!strcmp(...
2009 Jun 26
14
Unable to install Solaris 10 Update 7 Dom-U
uname -a
SunOS i7 5.11 snv_114 i86pc i386 i86xpv
The box is a core i7 with 6GB of RAM.
The command
virt-install --name 10u7 --ram 1024 --hvm --file /guests/10u7
--os-type=solaris os-variant=solaris10 --location
/export/iso/sol-10-u7-ga-x86-dvd.iso
get as far as opening the VNC client, when I select Solaris from grub,
the OS starts to boot then panics, closing the session. So I