public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: "Michael Chan" <mchan@broadcom.com>
To: "Francois Romieu" <romieu@fr.zoreil.com>
Cc: "davem@davemloft.net" <davem@davemloft.net>,
	"netdev@vger.kernel.org" <netdev@vger.kernel.org>
Subject: Re: [PATCH RFT v3] bnx2: don't request firmware when there's no userspace.
Date: Wed, 31 Aug 2011 09:32:02 -0700	[thread overview]
Message-ID: <1314808322.9556.14.camel@HP1> (raw)
In-Reply-To: <20110831045943.GB24254@electric-eye.fr.zoreil.com>


On Tue, 2011-08-30 at 21:59 -0700, Francois Romieu wrote:
> The firmware is cached during the first successful call to open() and
> released once the network device is unregistered. The driver uses the
> cached firmware between open() and unregister_netdev().
> 
> It's similar to 953a12cc2889d1be92e80a2d0bab5ffef4942300 but the
> firmware is mandatory.
> 
> Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
> Reviewed-by: Michael Chan <mchan@broadcom.com>

This version looks good.  If this is for net-next, please re-diff
against net-next which has moved all net drivers to new locations.
Thanks.

> ---
>  Since v2: remove erroneous __devinit.
>  Since v1: conditional release in bnx2_release_firmware.
> 
>  drivers/net/bnx2.c |   64 ++++++++++++++++++++++++++++++++-------------------
>  1 files changed, 40 insertions(+), 24 deletions(-)
> 
> diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c
> index 4b2b570..87a21c1 100644
> --- a/drivers/net/bnx2.c
> +++ b/drivers/net/bnx2.c
> @@ -3649,8 +3649,17 @@ check_mips_fw_entry(const struct firmware *fw,
>  	return 0;
>  }
>  
> -static int __devinit
> -bnx2_request_firmware(struct bnx2 *bp)
> +static void bnx2_release_firmware(struct bnx2 *bp)
> +{
> +	if (bp->rv2p_firmware) {
> +		release_firmware(bp->mips_firmware);
> +		release_firmware(bp->rv2p_firmware);
> +		bp->rv2p_firmware = NULL;
> +	}
> +}
> +
> +static int
> +bnx2_request_uncached_firmware(struct bnx2 *bp)
>  {
>  	const char *mips_fw_file, *rv2p_fw_file;
>  	const struct bnx2_mips_fw_file *mips_fw;
> @@ -3672,13 +3681,13 @@ bnx2_request_firmware(struct bnx2 *bp)
>  	rc = request_firmware(&bp->mips_firmware, mips_fw_file, &bp->pdev->dev);
>  	if (rc) {
>  		pr_err("Can't load firmware file \"%s\"\n", mips_fw_file);
> -		return rc;
> +		goto out;
>  	}
>  
>  	rc = request_firmware(&bp->rv2p_firmware, rv2p_fw_file, &bp->pdev->dev);
>  	if (rc) {
>  		pr_err("Can't load firmware file \"%s\"\n", rv2p_fw_file);
> -		return rc;
> +		goto err_release_mips_firmware;
>  	}
>  	mips_fw = (const struct bnx2_mips_fw_file *) bp->mips_firmware->data;
>  	rv2p_fw = (const struct bnx2_rv2p_fw_file *) bp->rv2p_firmware->data;
> @@ -3689,16 +3698,30 @@ bnx2_request_firmware(struct bnx2 *bp)
>  	    check_mips_fw_entry(bp->mips_firmware, &mips_fw->tpat) ||
>  	    check_mips_fw_entry(bp->mips_firmware, &mips_fw->txp)) {
>  		pr_err("Firmware file \"%s\" is invalid\n", mips_fw_file);
> -		return -EINVAL;
> +		rc = -EINVAL;
> +		goto err_release_firmware;
>  	}
>  	if (bp->rv2p_firmware->size < sizeof(*rv2p_fw) ||
>  	    check_fw_section(bp->rv2p_firmware, &rv2p_fw->proc1.rv2p, 8, true) ||
>  	    check_fw_section(bp->rv2p_firmware, &rv2p_fw->proc2.rv2p, 8, true)) {
>  		pr_err("Firmware file \"%s\" is invalid\n", rv2p_fw_file);
> -		return -EINVAL;
> +		rc = -EINVAL;
> +		goto err_release_firmware;
>  	}
> +out:
> +	return rc;
>  
> -	return 0;
> +err_release_firmware:
> +	release_firmware(bp->rv2p_firmware);
> +	bp->rv2p_firmware = NULL;
> +err_release_mips_firmware:
> +	release_firmware(bp->mips_firmware);
> +	goto out;
> +}
> +
> +static int bnx2_request_firmware(struct bnx2 *bp)
> +{
> +	return bp->rv2p_firmware ? 0 : bnx2_request_uncached_firmware(bp);
>  }
>  
>  static u32
> @@ -6266,6 +6289,10 @@ bnx2_open(struct net_device *dev)
>  	struct bnx2 *bp = netdev_priv(dev);
>  	int rc;
>  
> +	rc = bnx2_request_firmware(bp);
> +	if (rc < 0)
> +		goto out;
> +
>  	netif_carrier_off(dev);
>  
>  	bnx2_set_power_state(bp, PCI_D0);
> @@ -6326,8 +6353,8 @@ bnx2_open(struct net_device *dev)
>  		netdev_info(dev, "using MSIX\n");
>  
>  	netif_tx_start_all_queues(dev);
> -
> -	return 0;
> +out:
> +	return rc;
>  
>  open_err:
>  	bnx2_napi_disable(bp);
> @@ -6335,7 +6362,8 @@ open_err:
>  	bnx2_free_irq(bp);
>  	bnx2_free_mem(bp);
>  	bnx2_del_napi(bp);
> -	return rc;
> +	bnx2_release_firmware(bp);
> +	goto out;
>  }
>  
>  static void
> @@ -8353,10 +8381,6 @@ bnx2_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
>  
>  	pci_set_drvdata(pdev, dev);
>  
> -	rc = bnx2_request_firmware(bp);
> -	if (rc)
> -		goto error;
> -
>  	memcpy(dev->dev_addr, bp->mac_addr, 6);
>  	memcpy(dev->perm_addr, bp->mac_addr, 6);
>  
> @@ -8387,11 +8411,6 @@ bnx2_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
>  	return 0;
>  
>  error:
> -	if (bp->mips_firmware)
> -		release_firmware(bp->mips_firmware);
> -	if (bp->rv2p_firmware)
> -		release_firmware(bp->rv2p_firmware);
> -
>  	if (bp->regview)
>  		iounmap(bp->regview);
>  	pci_release_regions(pdev);
> @@ -8412,11 +8431,6 @@ bnx2_remove_one(struct pci_dev *pdev)
>  	del_timer_sync(&bp->timer);
>  	cancel_work_sync(&bp->reset_task);
>  
> -	if (bp->mips_firmware)
> -		release_firmware(bp->mips_firmware);
> -	if (bp->rv2p_firmware)
> -		release_firmware(bp->rv2p_firmware);
> -
>  	if (bp->regview)
>  		iounmap(bp->regview);
>  
> @@ -8427,6 +8441,8 @@ bnx2_remove_one(struct pci_dev *pdev)
>  		bp->flags &= ~BNX2_FLAG_AER_ENABLED;
>  	}
>  
> +	bnx2_release_firmware(bp);
> +
>  	free_netdev(dev);
>  
>  	pci_release_regions(pdev);

      reply	other threads:[~2011-08-31 16:40 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-31  4:59 [PATCH RFT v3] bnx2: don't request firmware when there's no userspace Francois Romieu
2011-08-31 16:32 ` Michael Chan [this message]

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=1314808322.9556.14.camel@HP1 \
    --to=mchan@broadcom.com \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    --cc=romieu@fr.zoreil.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox