Commit ee83f776 authored by Lipeng's avatar Lipeng Committed by David S. Miller

net: hns3: fixes the ring index in hns3_fini_ring

This patch fixes the ring index in hns3_fini_ring.
Signed-off-by: default avatarLipeng <lipeng321@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 652faa98
...@@ -2661,7 +2661,7 @@ static int hns3_init_all_ring(struct hns3_nic_priv *priv) ...@@ -2661,7 +2661,7 @@ static int hns3_init_all_ring(struct hns3_nic_priv *priv)
out_when_alloc_ring_memory: out_when_alloc_ring_memory:
for (j = i - 1; j >= 0; j--) for (j = i - 1; j >= 0; j--)
hns3_fini_ring(priv->ring_data[i].ring); hns3_fini_ring(priv->ring_data[j].ring);
return -ENOMEM; return -ENOMEM;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment