Re: [ovs-dev] [xlate v1 02/18] ofproto-dpif: Modularize mirror code.

2013-07-05 Thread Ethan Jackson
> It seems a little odd to make the mirror code keep a map from > ofproto_dpif to mbridge, instead of making ofproto_dpif keep an > mbridge pointer. I think you might have mentioned the reason to me in > person, but I don't remember what it was. Yeah turns out that wasn't necessary. I ditched th

Re: [ovs-dev] [xlate v1 02/18] ofproto-dpif: Modularize mirror code.

2013-06-26 Thread Ben Pfaff
On Mon, Jun 24, 2013 at 06:59:16PM -0700, Ethan Jackson wrote: > This code modularizes ofproto-dpif's mirror code by moving it to > ofproto-dpif-mirror. Not only does this shorten ofproto-dpif and > hide complexity, but its also necessary for future patches which > modularize ofproto-dpif-xlate in

[ovs-dev] [xlate v1 02/18] ofproto-dpif: Modularize mirror code.

2013-06-24 Thread Ethan Jackson
This code modularizes ofproto-dpif's mirror code by moving it to ofproto-dpif-mirror. Not only does this shorten ofproto-dpif and hide complexity, but its also necessary for future patches which modularize ofproto-dpif-xlate in preparation for multi-threading. Signed-off-by: Ethan Jackson --- o