net: dsa: do not skip -EOPNOTSUPP in dsa_port_vid_add
authorVivien Didelot <vivien.didelot@gmail.com>
Sun, 25 Aug 2019 17:25:16 +0000 (13:25 -0400)
committerDavid S. Miller <davem@davemloft.net>
Wed, 28 Aug 2019 03:17:27 +0000 (20:17 -0700)
commitcf360866b11901eca5317e8a5c26c3e15b7bf1f2
tree9321d3d52b8f01ad89b9133cbb6a3ed9701f50cc
parente65d45cc351ac5f1c11e6bac5669e536df753664
net: dsa: do not skip -EOPNOTSUPP in dsa_port_vid_add

Currently dsa_port_vid_add returns 0 if the switch returns -EOPNOTSUPP.

This function is used in the tag_8021q.c code to offload the PVID of
ports, which would simply not work if .port_vlan_add is not supported
by the underlying switch.

Do not skip -EOPNOTSUPP in dsa_port_vid_add but only when necessary,
that is to say in dsa_slave_vlan_rx_add_vid.

Signed-off-by: Vivien Didelot <vivien.didelot@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dsa/port.c
net/dsa/slave.c