diff options
author | Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> | 2014-04-14 18:02:21 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-04-14 21:43:52 +0400 |
commit | a78b6da89f52d03997619f5a78a5325bec865977 (patch) | |
tree | 30be25c34f7fdfa0403989cea87263de57787606 /drivers/net | |
parent | 7b546842b1e87f5b7929cf15e9cd1ac861b14de3 (diff) | |
download | linux-a78b6da89f52d03997619f5a78a5325bec865977.tar.xz |
qlcnic: Fix PVID configuration on eSwitch port.
Clear older PVID before adding a newer PVID to the eSwicth port
Signed-off-by: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Signed-off-by: Shahed Shaikh <shahed.shaikh@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/qlogic/qlcnic/qlcnic_ctx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_ctx.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_ctx.c index a81ad5088b07..c1e11f5715b0 100644 --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_ctx.c +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_ctx.c @@ -1354,6 +1354,7 @@ int qlcnic_config_switch_port(struct qlcnic_adapter *adapter, arg2 &= ~BIT_3; break; case QLCNIC_ADD_VLAN: + arg1 &= ~(0x0ffff << 16); arg1 |= (BIT_2 | BIT_5); arg1 |= (esw_cfg->vlan_id << 16); break; |