Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9409e1c7 authored by Lipeng's avatar Lipeng Committed by Greg Kroah-Hartman
Browse files

net: hns3: fix the TX/RX ring.queue_index in hns3_ring_get_cfg




[ Upstream commit 66b44730 ]

The interface hns3_ring_get_cfg only update TX ring queue_index,
but do not update RX ring queue_index. This patch fixes it.

Fixes: 76ad4f0e (net: hns3: Add support of HNS3 Ethernet Driver for hip08 SoC)

Signed-off-by: default avatarLipeng <lipeng321@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <alexander.levin@verizon.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent aeb01451
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2488,16 +2488,16 @@ static int hns3_ring_get_cfg(struct hnae3_queue *q, struct hns3_nic_priv *priv,

	if (ring_type == HNAE3_RING_TYPE_TX) {
		ring_data[q->tqp_index].ring = ring;
		ring_data[q->tqp_index].queue_index = q->tqp_index;
		ring->io_base = (u8 __iomem *)q->io_base + HNS3_TX_REG_OFFSET;
	} else {
		ring_data[q->tqp_index + queue_num].ring = ring;
		ring_data[q->tqp_index + queue_num].queue_index = q->tqp_index;
		ring->io_base = q->io_base;
	}

	hnae_set_bit(ring->flag, HNAE3_RING_TYPE_B, ring_type);

	ring_data[q->tqp_index].queue_index = q->tqp_index;

	ring->tqp = q;
	ring->desc = NULL;
	ring->desc_cb = NULL;