Re: [ovs-dev] [PATCH V2 09/11] compat: Use nla_parse deprecated functions

2020-02-28 Thread Gregory Rose
On 2/28/2020 9:42 AM, David Ahern wrote: On 2/28/20 10:21 AM, Gregory Rose wrote: On 2/27/2020 4:39 PM, Yi-Hung Wei wrote: On Wed, Feb 26, 2020 at 9:42 AM Greg Rose wrote: Changes for in kernel generated netlink attribute parsing functions require our out of tree driver to use the deprecated

Re: [ovs-dev] [PATCH V2 09/11] compat: Use nla_parse deprecated functions

2020-02-28 Thread David Ahern
On 2/28/20 10:21 AM, Gregory Rose wrote: > > On 2/27/2020 4:39 PM, Yi-Hung Wei wrote: >> On Wed, Feb 26, 2020 at 9:42 AM Greg Rose wrote: >>> Changes for in kernel generated netlink attribute parsing functions >>> require our out of tree driver to use the deprecated forms of those >>> functions. 

Re: [ovs-dev] [PATCH V2 09/11] compat: Use nla_parse deprecated functions

2020-02-28 Thread Gregory Rose
On 2/27/2020 4:39 PM, Yi-Hung Wei wrote: On Wed, Feb 26, 2020 at 9:42 AM Greg Rose wrote: Changes for in kernel generated netlink attribute parsing functions require our out of tree driver to use the deprecated forms of those functions. Otherwise the message parsing will return -EINVAL becau

Re: [ovs-dev] [PATCH V2 09/11] compat: Use nla_parse deprecated functions

2020-02-27 Thread Yi-Hung Wei
On Wed, Feb 26, 2020 at 9:42 AM Greg Rose wrote: > > Changes for in kernel generated netlink attribute parsing functions > require our out of tree driver to use the deprecated forms of those > functions. Otherwise the message parsing will return -EINVAL because > NLA_F_NESTED is not set in the nl

[ovs-dev] [PATCH V2 09/11] compat: Use nla_parse deprecated functions

2020-02-26 Thread Greg Rose
Changes for in kernel generated netlink attribute parsing functions require our out of tree driver to use the deprecated forms of those functions. Otherwise the message parsing will return -EINVAL because NLA_F_NESTED is not set in the nla_type field. Signed-off-by: Greg Rose --- acinclude.m4