All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Nguyen <anthony.l.nguyen@intel.com>
To: davem@davemloft.net, kuba@kernel.org
Cc: Christophe JAILLET <christophe.jaillet@wanadoo.fr>,
	netdev@vger.kernel.org, anthony.l.nguyen@intel.com
Subject: [PATCH net-next 08/10] igc: Remove useless DMA-32 fallback configuration
Date: Thu, 27 Jan 2022 13:52:22 -0800	[thread overview]
Message-ID: <20220127215224.422113-9-anthony.l.nguyen@intel.com> (raw)
In-Reply-To: <20220127215224.422113-1-anthony.l.nguyen@intel.com>

From: Christophe JAILLET <christophe.jaillet@wanadoo.fr>

As stated in [1], dma_set_mask() with a 64-bit mask never fails if
dev->dma_mask is non-NULL.
So, if it fails, the 32 bits case will also fail for the same reason.

So, if dma_set_mask_and_coherent() succeeds, 'pci_using_dac' is known to be
1.

Simplify code and remove some dead code accordingly.

[1]: https://lkml.org/lkml/2021/6/7/398

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
---
 drivers/net/ethernet/intel/igc/igc_main.c | 19 ++++++-------------
 1 file changed, 6 insertions(+), 13 deletions(-)

diff --git a/drivers/net/ethernet/intel/igc/igc_main.c b/drivers/net/ethernet/intel/igc/igc_main.c
index 2f17f36e94fd..6b51baadee3d 100644
--- a/drivers/net/ethernet/intel/igc/igc_main.c
+++ b/drivers/net/ethernet/intel/igc/igc_main.c
@@ -6251,23 +6251,17 @@ static int igc_probe(struct pci_dev *pdev,
 	struct net_device *netdev;
 	struct igc_hw *hw;
 	const struct igc_info *ei = igc_info_tbl[ent->driver_data];
-	int err, pci_using_dac;
+	int err;
 
 	err = pci_enable_device_mem(pdev);
 	if (err)
 		return err;
 
-	pci_using_dac = 0;
 	err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
-	if (!err) {
-		pci_using_dac = 1;
-	} else {
-		err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
-		if (err) {
-			dev_err(&pdev->dev,
-				"No usable DMA configuration, aborting\n");
-			goto err_dma;
-		}
+	if (err) {
+		dev_err(&pdev->dev,
+			"No usable DMA configuration, aborting\n");
+		goto err_dma;
 	}
 
 	err = pci_request_mem_regions(pdev, igc_driver_name);
@@ -6367,8 +6361,7 @@ static int igc_probe(struct pci_dev *pdev,
 	netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX;
 	netdev->hw_features |= netdev->features;
 
-	if (pci_using_dac)
-		netdev->features |= NETIF_F_HIGHDMA;
+	netdev->features |= NETIF_F_HIGHDMA;
 
 	netdev->vlan_features |= netdev->features | NETIF_F_TSO_MANGLEID;
 	netdev->mpls_features |= NETIF_F_HW_CSUM;
-- 
2.31.1


  parent reply	other threads:[~2022-01-27 21:52 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-27 21:52 [PATCH net-next 00/10][pull request] 1GbE Intel Wired LAN Driver Updates 2022-01-27 Tony Nguyen
2022-01-27 21:52 ` [PATCH net-next 01/10] ixgb: Remove useless DMA-32 fallback configuration Tony Nguyen
2022-01-27 21:52 ` [PATCH net-next 02/10] ixgbe: " Tony Nguyen
2022-01-27 21:52 ` [PATCH net-next 03/10] ixgbevf: " Tony Nguyen
2022-01-27 21:52 ` [PATCH net-next 04/10] i40e: " Tony Nguyen
2022-01-27 21:52 ` [PATCH net-next 05/10] e1000e: " Tony Nguyen
2022-01-27 21:52 ` [PATCH net-next 06/10] iavf: " Tony Nguyen
2022-01-27 21:52 ` [PATCH net-next 07/10] ice: " Tony Nguyen
2022-01-27 21:52 ` Tony Nguyen [this message]
2022-01-27 21:52 ` [PATCH net-next 09/10] igb: " Tony Nguyen
2022-01-27 21:52 ` [PATCH net-next 10/10] igbvf: " Tony Nguyen
2022-01-28  3:10 ` [PATCH net-next 00/10][pull request] 1GbE Intel Wired LAN Driver Updates 2022-01-27 patchwork-bot+netdevbpf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220127215224.422113-9-anthony.l.nguyen@intel.com \
    --to=anthony.l.nguyen@intel.com \
    --cc=christophe.jaillet@wanadoo.fr \
    --cc=davem@davemloft.net \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.