Re: [libvirt] [PATCH 1/6] Optimize the elements the iterator visits.

2012-01-10 Thread Stefan Berger
On 01/09/2012 07:05 PM, Eric Blake wrote: On 12/09/2011 08:07 AM, Stefan Berger wrote: In this patch we introduce testing whether the iterator points to a unique set of entries that have not been seen before at one of the previous iterations. The point is to eliminate duplicates and with that un

Re: [libvirt] [PATCH 1/6] Optimize the elements the iterator visits.

2012-01-09 Thread Eric Blake
On 12/09/2011 08:07 AM, Stefan Berger wrote: > In this patch we introduce testing whether the iterator points to a > unique set of entries that have not been seen before at one of the previous > iterations. The point is to eliminate duplicates and with that unnecessary > filtering rules by preventi

[libvirt] [PATCH 1/6] Optimize the elements the iterator visits.

2011-12-09 Thread Stefan Berger
In this patch we introduce testing whether the iterator points to a unique set of entries that have not been seen before at one of the previous iterations. The point is to eliminate duplicates and with that unnecessary filtering rules by preventing identical filtering rules from being instantiated.