Re: [ovs-dev] [PATCH v2] ofproto-dpif: fix packet_execute_prepare

2022-02-14 Thread Peng He
Aaron Conole 于2022年2月15日周二 01:33写道: > Peng He writes: > > > In the commit 1df7f7aac8c976690167261fec9a50d832ef9e7e, the packet > > metadata's in_port has been changed from ofp port into odp port, > > however, the odp->flow->in_port is still ofp_port. This patch changes > > the odp->flow->in_port

Re: [ovs-dev] [PATCH v2] ofproto-dpif: fix packet_execute_prepare

2022-02-14 Thread Peng He
Ilya Maximets 于2022年2月15日周二 01:42写道: > On 2/14/22 18:32, Aaron Conole wrote: > > Peng He writes: > > > >> In the commit 1df7f7aac8c976690167261fec9a50d832ef9e7e, the packet > >> metadata's in_port has been changed from ofp port into odp port, > >> however, the odp->flow->in_port is still ofp_por

Re: [ovs-dev] [PATCH v2] ofproto-dpif: fix packet_execute_prepare

2022-02-14 Thread Ilya Maximets
On 2/14/22 18:32, Aaron Conole wrote: > Peng He writes: > >> In the commit 1df7f7aac8c976690167261fec9a50d832ef9e7e, the packet >> metadata's in_port has been changed from ofp port into odp port, >> however, the odp->flow->in_port is still ofp_port. This patch changes >> the odp->flow->in_port in

Re: [ovs-dev] [PATCH v2] ofproto-dpif: fix packet_execute_prepare

2022-02-14 Thread Aaron Conole
Peng He writes: > In the commit 1df7f7aac8c976690167261fec9a50d832ef9e7e, the packet > metadata's in_port has been changed from ofp port into odp port, > however, the odp->flow->in_port is still ofp_port. This patch changes > the odp->flow->in_port into odp_port. > > Fixes: 1df7f7aac8 ("ofproto-d

Re: [ovs-dev] [PATCH v2] ofproto-dpif: fix packet_execute_prepare

2022-02-12 Thread 0-day Robot
Bleep bloop. Greetings Peng He, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. checkpatch: ERROR: Author Peng He needs to sign off. WARNING: Unexpected sign-offs from developers who are not a

[ovs-dev] [PATCH v2] ofproto-dpif: fix packet_execute_prepare

2022-02-12 Thread Peng He
In the commit 1df7f7aac8c976690167261fec9a50d832ef9e7e, the packet metadata's in_port has been changed from ofp port into odp port, however, the odp->flow->in_port is still ofp_port. This patch changes the odp->flow->in_port into odp_port. Fixes: 1df7f7aac8 ("ofproto-dpif: Restore packet metadata