Re: [ovs-dev] why we need op wait when add-port or delete port

2016-03-11 Thread ychen
Another 3 questions: 1. when use ovs-vsctl to add or del port p0 in br0, is that ok in the transaction when I change the op wait to the following? for port adding, the operation wait is only for br0(condition must exist), p0(conditon must not exist) for port deleting, the operation wait is

Re: [ovs-dev] why we need op wait when add-port or delete port

2016-03-07 Thread Ben Pfaff
On Tue, Mar 08, 2016 at 11:43:53AM +0800, ychen wrote: > I noticed that when add or delete port, the transaction always send op wait > with all the ports in the same bridge. > If the port p0 and p1 are totally independent, and have no relationship with > each other, why when I add port p1, I

[ovs-dev] why we need op wait when add-port or delete port

2016-03-07 Thread ychen
hi: I noticed that when add or delete port, the transaction always send op wait with all the ports in the same bridge. If the port p0 and p1 are totally independent, and have no relationship with each other, why when I add port p1, I need to wait port p0?