net: ena: Remove ena_select_queue
[ Upstream commit 78e886ba2b549945ecada055ee0765f0ded5707a ] Avoid the following warnings by removing the ena_select_queue() function and rely on the net core to do the queue selection, The issue happen when an skb received from an interface with more queues than ena is forwarded to the ena interface. [ 1176.159959] eth0 selects TX queue 11, but real number of TX queues is 8 [ 1176.863976] eth0 selects TX queue 14, but real number of TX queues is 8 [ 1180.767877] eth0 selects TX queue 14, but real number of TX queues is 8 [ 1188.703742] eth0 selects TX queue 14, but real number of TX queues is 8 Fixes: 1738cd3ed342 ("net: ena: Add a driver for Amazon Elastic Network Adapters (ENA)") Signed-off-by: Kamal Heib <kheib@redhat.com> Reviewed-by: Jacob Keller <jacob.e.keller@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
10e44311bd
commit
e8ab74ddc8
1 changed files with 0 additions and 17 deletions
|
@ -3057,22 +3057,6 @@ error_drop_packet:
|
|||
return NETDEV_TX_OK;
|
||||
}
|
||||
|
||||
static u16 ena_select_queue(struct net_device *dev, struct sk_buff *skb,
|
||||
struct net_device *sb_dev)
|
||||
{
|
||||
u16 qid;
|
||||
/* we suspect that this is good for in--kernel network services that
|
||||
* want to loop incoming skb rx to tx in normal user generated traffic,
|
||||
* most probably we will not get to this
|
||||
*/
|
||||
if (skb_rx_queue_recorded(skb))
|
||||
qid = skb_get_rx_queue(skb);
|
||||
else
|
||||
qid = netdev_pick_tx(dev, skb, NULL);
|
||||
|
||||
return qid;
|
||||
}
|
||||
|
||||
static void ena_config_host_info(struct ena_com_dev *ena_dev, struct pci_dev *pdev)
|
||||
{
|
||||
struct device *dev = &pdev->dev;
|
||||
|
@ -3242,7 +3226,6 @@ static const struct net_device_ops ena_netdev_ops = {
|
|||
.ndo_open = ena_open,
|
||||
.ndo_stop = ena_close,
|
||||
.ndo_start_xmit = ena_start_xmit,
|
||||
.ndo_select_queue = ena_select_queue,
|
||||
.ndo_get_stats64 = ena_get_stats64,
|
||||
.ndo_tx_timeout = ena_tx_timeout,
|
||||
.ndo_change_mtu = ena_change_mtu,
|
||||
|
|
Loading…
Add table
Reference in a new issue