search for: max_nic

Displaying 3 results from an estimated 3 matches for "max_nic".

Did you mean: max_nics
2007 May 30
0
[PATCH] Exceed maximum number of ioemu''s NIC for VNIF.
...0 1024 4 r----- 291.1 RHEL5GA 10 2048 1 ------ 0.0 # cat /var/log/xen/qemu-XXX.log domid: 10 qemu: the number of cpus is 1 Too Many NICs ---------------------------------------------------------- The cause is to exceed the number of maximum in ioemu NIC.(MAX_NICS=8) However, VNIF can be used because of nine more expanding grant table. We usually use and operate VNIF of ten or more. Even if the maximum number of ioemu NICs is exceeded when VNIF is used, the HVM domain should be able to be created. It was corrected that ioemu disregarded it when the...
2009 Jun 21
0
[PATCHv6 12/12] qemu/net: flag to control the number of vectors a nic has
...tors; + } nd->vlan = vlan; nd->name = name; nd->used = 1; diff --git a/net.h b/net.h index 89e7706..f8b9eac 100644 --- a/net.h +++ b/net.h @@ -83,6 +83,9 @@ int do_set_link(Monitor *mon, const char *name, const char *up_or_down); /* NIC info */ #define MAX_NICS 8 +enum { + NIC_NVECTORS_UNSPECIFIED = -1 +}; struct NICInfo { uint8_t macaddr[6]; @@ -91,6 +94,7 @@ struct NICInfo { VLANState *vlan; void *private; int used; + int nvectors; }; extern int nb_nics; diff --git a/qemu-options.hx b/qemu-options.hx index 9d5e05a..a8a1db4...
2009 Jun 21
0
[PATCHv6 12/12] qemu/net: flag to control the number of vectors a nic has
...tors; + } nd->vlan = vlan; nd->name = name; nd->used = 1; diff --git a/net.h b/net.h index 89e7706..f8b9eac 100644 --- a/net.h +++ b/net.h @@ -83,6 +83,9 @@ int do_set_link(Monitor *mon, const char *name, const char *up_or_down); /* NIC info */ #define MAX_NICS 8 +enum { + NIC_NVECTORS_UNSPECIFIED = -1 +}; struct NICInfo { uint8_t macaddr[6]; @@ -91,6 +94,7 @@ struct NICInfo { VLANState *vlan; void *private; int used; + int nvectors; }; extern int nb_nics; diff --git a/qemu-options.hx b/qemu-options.hx index 9d5e05a..a8a1db4...