diff options
author | oulijun <oulijun@huawei.com> | 2017-06-10 18:49:24 +0800 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-07-17 21:21:29 -0400 |
commit | d322f004aaa647a5dc9dcddfe5ab1bff1e92f634 (patch) | |
tree | 35893c38e0d87f382bb6aa2950070cc08bc361d2 /drivers/infiniband/hw | |
parent | 9de61d3fcdde06087f65b4022a1a966c10ab5803 (diff) | |
download | linux-d322f004aaa647a5dc9dcddfe5ab1bff1e92f634.tar.bz2 |
IB/hns: Fix the bug with modifying the MAC address without removing the driver
When modified the MAC address used hns_roce_mac function, we release and create
reserved qp again, It is not necessary to use spin_lock_bh and spin_unlock_bh in
handle_en_event, Otherwise, it will occur a error. This patch mainly fixes it.
Signed-off-by: Lijun Ou <oulijun@huawei.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw')
-rw-r--r-- | drivers/infiniband/hw/hns/hns_roce_main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/infiniband/hw/hns/hns_roce_main.c b/drivers/infiniband/hw/hns/hns_roce_main.c index c3b41f95e70a..d9777b662eba 100644 --- a/drivers/infiniband/hw/hns/hns_roce_main.c +++ b/drivers/infiniband/hw/hns/hns_roce_main.c @@ -125,8 +125,6 @@ static int handle_en_event(struct hns_roce_dev *hr_dev, u8 port, return -ENODEV; } - spin_lock_bh(&hr_dev->iboe.lock); - switch (event) { case NETDEV_UP: case NETDEV_CHANGE: @@ -144,7 +142,6 @@ static int handle_en_event(struct hns_roce_dev *hr_dev, u8 port, break; } - spin_unlock_bh(&hr_dev->iboe.lock); return 0; } |