forked from Minki/linux
net: ena: Remove redundant print of placement policy
The placement policy is printed in the process of queue creation in ena_up(). No need to print it in ena_probe(). Signed-off-by: Arthur Kiyanovski <akiyano@amazon.com> Signed-off-by: Shay Agroskin <shayagr@amazon.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
bf2746e849
commit
a8aea84981
@ -4156,7 +4156,6 @@ static int ena_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||||||
struct net_device *netdev;
|
struct net_device *netdev;
|
||||||
static int adapters_found;
|
static int adapters_found;
|
||||||
u32 max_num_io_queues;
|
u32 max_num_io_queues;
|
||||||
char *queue_type_str;
|
|
||||||
bool wd_state;
|
bool wd_state;
|
||||||
int bars, rc;
|
int bars, rc;
|
||||||
|
|
||||||
@ -4334,15 +4333,10 @@ static int ena_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||||||
timer_setup(&adapter->timer_service, ena_timer_service, 0);
|
timer_setup(&adapter->timer_service, ena_timer_service, 0);
|
||||||
mod_timer(&adapter->timer_service, round_jiffies(jiffies + HZ));
|
mod_timer(&adapter->timer_service, round_jiffies(jiffies + HZ));
|
||||||
|
|
||||||
if (ena_dev->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_HOST)
|
|
||||||
queue_type_str = "Regular";
|
|
||||||
else
|
|
||||||
queue_type_str = "Low Latency";
|
|
||||||
|
|
||||||
dev_info(&pdev->dev,
|
dev_info(&pdev->dev,
|
||||||
"%s found at mem %lx, mac addr %pM, Placement policy: %s\n",
|
"%s found at mem %lx, mac addr %pM\n",
|
||||||
DEVICE_NAME, (long)pci_resource_start(pdev, 0),
|
DEVICE_NAME, (long)pci_resource_start(pdev, 0),
|
||||||
netdev->dev_addr, queue_type_str);
|
netdev->dev_addr);
|
||||||
|
|
||||||
set_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags);
|
set_bit(ENA_FLAG_DEVICE_RUNNING, &adapter->flags);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user