[libvirt] [PATCH] virNetDevTapCreate: Fail on systems not supporting IFF_MULTI_QUEUE

2013-05-22 Thread Michal Privoznik
In my previous patches I enabled the IFF_MULTI_QUEUE flag every time the user requested multiqueue TAP device. However, this works only at runtime. During build time the flag may be undeclared. --- src/util/virnetdevtap.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git

Re: [libvirt] [PATCH] virNetDevTapCreate: Fail on systems not supporting IFF_MULTI_QUEUE

2013-05-22 Thread Eric Blake
On 05/22/2013 10:37 AM, Michal Privoznik wrote: In my previous patches I enabled the IFF_MULTI_QUEUE flag every time the user requested multiqueue TAP device. However, this works only at runtime. During build time the flag may be undeclared. --- src/util/virnetdevtap.c | 9 - 1

Re: [libvirt] [PATCH] virNetDevTapCreate: Fail on systems not supporting IFF_MULTI_QUEUE

2013-05-22 Thread Michal Privoznik
On 22.05.2013 18:50, Eric Blake wrote: On 05/22/2013 10:37 AM, Michal Privoznik wrote: In my previous patches I enabled the IFF_MULTI_QUEUE flag every time the user requested multiqueue TAP device. However, this works only at runtime. During build time the flag may be undeclared. ---