]> git.baikalelectronics.ru Git - kernel.git/commit
liquidio: fix VF incorrectly indicating that it successfully set its VLAN
authorFelix Manlunas <felix.manlunas@cavium.com>
Fri, 7 Apr 2017 02:22:22 +0000 (19:22 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 8 Apr 2017 15:38:41 +0000 (08:38 -0700)
commit98f33fcda0a894009e93a7d2d82e922b5da05f57
tree3a54c23f86bf473e8e9d6669217f60cbef056865
parent297c16486ec351a0c4456e760a552267b24a5849
liquidio: fix VF incorrectly indicating that it successfully set its VLAN

For security reasons, NIC firmware does not allow VF to set its VLAN if PF
set it already.  Firmware allows VF to set its VLAN if PF did not set it.
After the VF instructs the firmware to set the VLAN, VF always indicates
(via return 0) that the operation is successful--even for the times when it
isn't.

Put in a mechanism for the VF's set VLAN function to receive the firmware
response code, then make that function return -EPERM if the firmware
forbids the operation.

Make that mechanism available for other functions that may, in the future,
be interested in receiving the response code from the firmware.  That
mechanism involves adding new fields to struct octnic_ctrl_pkt, so make all
users of struct octnic_ctrl_pkt initialize the struct to zero before using
it; otherwise, the mechanism might act on uninitialized garbage.

Signed-off-by: Felix Manlunas <felix.manlunas@cavium.com>
Signed-off-by: Derek Chickles <derek.chickles@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/cavium/liquidio/lio_core.c
drivers/net/ethernet/cavium/liquidio/lio_main.c
drivers/net/ethernet/cavium/liquidio/lio_vf_main.c
drivers/net/ethernet/cavium/liquidio/octeon_nic.c
drivers/net/ethernet/cavium/liquidio/octeon_nic.h