Re: [ovs-discuss] switch flow self-insertion

2018-07-08 Thread Grzegorz
We want to aggregate flows using MPLS labeling sob., 7 lip 2018 o 00:51 Ben Pfaff napisał(a): > An MPLS packet, from an OVS datapath perspective, only has a few fields > anyway: > > - Ethernet source and destination. > - Ethertype is always the MPLS ethertype. > - Optiona

[ovs-discuss] ovs-appctl to monitor HVs sb connection status

2018-07-08 Thread aginwala
Hi: As per discussions in past OVN meetings regarding ovn monitoring stand point, need some clarity from design perspective. I am thinking of below approaches: 1. Can we implement something like ovs-appctl -t chassis-conn/list that will show all HVs stats (connected/non-connected)? 2. or on in

Re: [ovs-discuss] ofproto-dpif-upcall: reg. udpif_revalidator thread

2018-07-08 Thread Ethan J. Jackson
Gosh, this is some old code.  On my read, the `n_flows > 2000` is redundant.  My best guess is the line below where it sets a floor on the flow_limit of 1000 was supposed to catch it.  Really that floor should either be 2000, or the check in the if statement should be `n_flows > 1000`. All of t