On Fri, 23 Feb 2018 14:10:09 -0500
Donald Sharp <[email protected]> wrote:
> The vxlan driver when a neighbor add/delete event occurs sends
> NDA_DST filled with a union:
>
> union vxlan_addr {
> struct sockaddr_in sin;
> struct sockaddr_in6 sin6;
> struct sockaddr sa;
> };
>
> This eventually calls rt_addr_n2a_r which had no handler for the
> AF_BRIDGE family and "???" was being printed.
>
> Add code to properly display this data when requested.
>
> Signed-off-by: Donald Sharp <[email protected]>
I did some minor changes to the patch and applied it.
(need space after switch, and can don't need local variable family).
Thanks.