[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <55532DBD.1080901@mellanox.com>
Date: Wed, 13 May 2015 13:55:57 +0300
From: Or Gerlitz <ogerlitz@...lanox.com>
To: Jiri Pirko <jiri@...nulli.us>
CC: Scott Feldman <sfeldma@...il.com>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>
Subject: Re: gone with the spring cleanup..
On 5/13/2015 1:42 PM, Jiri Pirko wrote:
>> Looks like the problem might be in named structures which suppose to be
>> >anonymous. Would you try following patch:
> oh, switchdev_obj_vlan and switchdev_obj_ipv4_fib is used in rocker..
> So better:
nope, fails.. if I remove the union (it is struct switchdev_obj has
strict vlan and ipv4_fib fields) it works. Seems there's some problem
also with anonymous unions.
>
> diff --git a/include/net/switchdev.h b/include/net/switchdev.h
> index 3b217b4..32ce31d 100644
> --- a/include/net/switchdev.h
> +++ b/include/net/switchdev.h
> @@ -49,24 +49,28 @@ enum switchdev_obj_id {
> SWITCHDEV_OBJ_IPV4_FIB,
> };
>
> +struct switchdev_obj_vlan {
> + u16 flags;
> + u16 vid_start;
> + u16 vid_end;
> +};
> +
> +struct switchdev_obj_ipv4_fib {
> + u32 dst;
> + int dst_len;
> + struct fib_info *fi;
> + u8 tos;
> + u8 type;
> + u32 nlflags;
> + u32 tb_id;
> +};
> +
> struct switchdev_obj {
> enum switchdev_obj_id id;
> enum switchdev_trans trans;
> union {
> - struct switchdev_obj_vlan { /* PORT_VLAN */
> - u16 flags;
> - u16 vid_start;
> - u16 vid_end;
> - } vlan;
> - struct switchdev_obj_ipv4_fib { /* IPV4_FIB */
> - u32 dst;
> - int dst_len;
> - struct fib_info *fi;
> - u8 tos;
> - u8 type;
> - u32 nlflags;
> - u32 tb_id;
> - } ipv4_fib;
> + struct switchdev_obj_vlan vlan;
> + struct switchdev_obj_ipv4_fib ipv4_fib;
> };
> };
>
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists