Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-05-31 Thread Eelco Chaudron
On 23 May 2022, at 14:54, Eelco Chaudron wrote: > On 17 May 2022, at 13:10, Eelco Chaudron wrote: > >> On 12 May 2022, at 12:08, Vlad Buslov wrote: >> >>> On Thu 12 May 2022 at 12:19, Eelco Chaudron wrote: On 7 Apr 2022, at 12:22, Ilya Maximets wrote: > On 4/7/22 10:02, Vlad

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-05-23 Thread Eelco Chaudron
On 17 May 2022, at 13:10, Eelco Chaudron wrote: > On 12 May 2022, at 12:08, Vlad Buslov wrote: > >> On Thu 12 May 2022 at 12:19, Eelco Chaudron wrote: >>> On 7 Apr 2022, at 12:22, Ilya Maximets wrote: >>> On 4/7/22 10:02, Vlad Buslov wrote: > On Mon 14 Mar 2022 at 20:40, Ilya Maximets

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-05-17 Thread Eelco Chaudron
On 12 May 2022, at 12:08, Vlad Buslov wrote: > On Thu 12 May 2022 at 12:19, Eelco Chaudron wrote: >> On 7 Apr 2022, at 12:22, Ilya Maximets wrote: >> >>> On 4/7/22 10:02, Vlad Buslov wrote: On Mon 14 Mar 2022 at 20:40, Ilya Maximets wrote: > On 3/14/22 19:33, Roi Dayan wrote: >>

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-05-12 Thread Vlad Buslov via dev
On Thu 12 May 2022 at 12:19, Eelco Chaudron wrote: > On 7 Apr 2022, at 12:22, Ilya Maximets wrote: > >> On 4/7/22 10:02, Vlad Buslov wrote: >>> On Mon 14 Mar 2022 at 20:40, Ilya Maximets wrote: On 3/14/22 19:33, Roi Dayan wrote: > > > On 2022-03-10 8:44 PM, Aaron Conole wrote:

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-05-12 Thread Eelco Chaudron
On 7 Apr 2022, at 12:22, Ilya Maximets wrote: > On 4/7/22 10:02, Vlad Buslov wrote: >> On Mon 14 Mar 2022 at 20:40, Ilya Maximets wrote: >>> On 3/14/22 19:33, Roi Dayan wrote: On 2022-03-10 8:44 PM, Aaron Conole wrote: > Ilya Maximets writes: > >> Few years ago OVS

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-04-07 Thread Vlad Buslov via dev
On Mon 14 Mar 2022 at 20:40, Ilya Maximets wrote: > On 3/14/22 19:33, Roi Dayan wrote: >> >> >> On 2022-03-10 8:44 PM, Aaron Conole wrote: >>> Ilya Maximets writes: >>> Few years ago OVS user space made a strange choice in the commit [1] to define types only valid for the user space

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-04-07 Thread Ilya Maximets
On 4/7/22 10:02, Vlad Buslov wrote: > On Mon 14 Mar 2022 at 20:40, Ilya Maximets wrote: >> On 3/14/22 19:33, Roi Dayan wrote: >>> >>> >>> On 2022-03-10 8:44 PM, Aaron Conole wrote: Ilya Maximets writes: > Few years ago OVS user space made a strange choice in the commit [1] > to

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-03-14 Thread Ilya Maximets
On 3/14/22 19:33, Roi Dayan wrote: > > > On 2022-03-10 8:44 PM, Aaron Conole wrote: >> Ilya Maximets writes: >> >>> Few years ago OVS user space made a strange choice in the commit [1] >>> to define types only valid for the user space inside the copy of a >>> kernel uAPI header.  '#ifndef

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-03-14 Thread Roi Dayan via dev
On 2022-03-10 8:44 PM, Aaron Conole wrote: Ilya Maximets writes: Few years ago OVS user space made a strange choice in the commit [1] to define types only valid for the user space inside the copy of a kernel uAPI header. '#ifndef __KERNEL__' and another attribute was added later. This

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-03-10 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (master) by Jakub Kicinski : On Wed, 9 Mar 2022 23:20:33 +0100 you wrote: > Few years ago OVS user space made a strange choice in the commit [1] > to define types only valid for the user space inside the copy of a > kernel uAPI header.

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-03-10 Thread Aaron Conole
Ilya Maximets writes: > Few years ago OVS user space made a strange choice in the commit [1] > to define types only valid for the user space inside the copy of a > kernel uAPI header. '#ifndef __KERNEL__' and another attribute was > added later. > > This leads to the inevitable clash between

Re: [ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-03-10 Thread Nicolas Dichtel
Le 09/03/2022 à 23:20, Ilya Maximets a écrit : > Few years ago OVS user space made a strange choice in the commit [1] > to define types only valid for the user space inside the copy of a > kernel uAPI header. '#ifndef __KERNEL__' and another attribute was > added later. > > This leads to the

[ovs-dev] [PATCH net-next v2] net: openvswitch: fix uAPI incompatibility with existing user space

2022-03-09 Thread Ilya Maximets
Few years ago OVS user space made a strange choice in the commit [1] to define types only valid for the user space inside the copy of a kernel uAPI header. '#ifndef __KERNEL__' and another attribute was added later. This leads to the inevitable clash between user space and kernel types when the