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

Commit 5add6e4a authored by Netanel Belgazal's avatar Netanel Belgazal Committed by David S. Miller
Browse files

net/ena: reduce the severity of ena printouts

parent a8496eb8
Loading
Loading
Loading
Loading
+17 −10
Original line number Diff line number Diff line
@@ -784,7 +784,7 @@ static int ena_com_get_feature_ex(struct ena_com_dev *ena_dev,
	int ret;

	if (!ena_com_check_supported_feature_id(ena_dev, feature_id)) {
		pr_info("Feature %d isn't supported\n", feature_id);
		pr_debug("Feature %d isn't supported\n", feature_id);
		return -EPERM;
	}

@@ -1126,7 +1126,13 @@ int ena_com_execute_admin_command(struct ena_com_admin_queue *admin_queue,
	comp_ctx = ena_com_submit_admin_cmd(admin_queue, cmd, cmd_size,
					    comp, comp_size);
	if (unlikely(IS_ERR(comp_ctx))) {
		pr_err("Failed to submit command [%ld]\n", PTR_ERR(comp_ctx));
		if (comp_ctx == ERR_PTR(-ENODEV))
			pr_debug("Failed to submit command [%ld]\n",
				 PTR_ERR(comp_ctx));
		else
			pr_err("Failed to submit command [%ld]\n",
			       PTR_ERR(comp_ctx));

		return PTR_ERR(comp_ctx);
	}

@@ -1895,7 +1901,7 @@ int ena_com_set_dev_mtu(struct ena_com_dev *ena_dev, int mtu)
	int ret;

	if (!ena_com_check_supported_feature_id(ena_dev, ENA_ADMIN_MTU)) {
		pr_info("Feature %d isn't supported\n", ENA_ADMIN_MTU);
		pr_debug("Feature %d isn't supported\n", ENA_ADMIN_MTU);
		return -EPERM;
	}

@@ -1948,7 +1954,7 @@ int ena_com_set_hash_function(struct ena_com_dev *ena_dev)

	if (!ena_com_check_supported_feature_id(ena_dev,
						ENA_ADMIN_RSS_HASH_FUNCTION)) {
		pr_info("Feature %d isn't supported\n",
		pr_debug("Feature %d isn't supported\n",
			 ENA_ADMIN_RSS_HASH_FUNCTION);
		return -EPERM;
	}
@@ -2112,7 +2118,8 @@ int ena_com_set_hash_ctrl(struct ena_com_dev *ena_dev)

	if (!ena_com_check_supported_feature_id(ena_dev,
						ENA_ADMIN_RSS_HASH_INPUT)) {
		pr_info("Feature %d isn't supported\n", ENA_ADMIN_RSS_HASH_INPUT);
		pr_debug("Feature %d isn't supported\n",
			 ENA_ADMIN_RSS_HASH_INPUT);
		return -EPERM;
	}

@@ -2270,7 +2277,7 @@ int ena_com_indirect_table_set(struct ena_com_dev *ena_dev)

	if (!ena_com_check_supported_feature_id(
		    ena_dev, ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG)) {
		pr_info("Feature %d isn't supported\n",
		pr_debug("Feature %d isn't supported\n",
			 ENA_ADMIN_RSS_REDIRECTION_TABLE_CONFIG);
		return -EPERM;
	}
@@ -2542,7 +2549,7 @@ int ena_com_init_interrupt_moderation(struct ena_com_dev *ena_dev)

	if (rc) {
		if (rc == -EPERM) {
			pr_info("Feature %d isn't supported\n",
			pr_debug("Feature %d isn't supported\n",
				 ENA_ADMIN_INTERRUPT_MODERATION);
			rc = 0;
		} else {
+11 −3
Original line number Diff line number Diff line
@@ -563,6 +563,7 @@ static void ena_free_all_rx_bufs(struct ena_adapter *adapter)
 */
static void ena_free_tx_bufs(struct ena_ring *tx_ring)
{
	bool print_once = true;
	u32 i;

	for (i = 0; i < tx_ring->ring_size; i++) {
@@ -574,9 +575,16 @@ static void ena_free_tx_bufs(struct ena_ring *tx_ring)
		if (!tx_info->skb)
			continue;

		if (print_once) {
			netdev_notice(tx_ring->netdev,
				      "free uncompleted tx skb qid %d idx 0x%x\n",
				      tx_ring->qid, i);
			print_once = false;
		} else {
			netdev_dbg(tx_ring->netdev,
				   "free uncompleted tx skb qid %d idx 0x%x\n",
				   tx_ring->qid, i);
		}

		ena_buf = tx_info->bufs;
		dma_unmap_single(tx_ring->dev,