linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] bnx2fc: setup em for npiv port
       [not found] <20110315231329.13280.54456.stgit@vifc.jf.intel.com>
@ 2011-04-28 22:18 ` Bhanu Gollapudi
  2011-04-28 22:25   ` James Bottomley
  0 siblings, 1 reply; 4+ messages in thread
From: Bhanu Gollapudi @ 2011-04-28 22:18 UTC (permalink / raw)
  To: James.Bottomley; +Cc: Vasu Dev, linux-scsi

On Tue, 2011-03-15 at 16:13 -0700, Vasu Dev wrote: 
> Use fc_exch_mgr_list_clone to setup em for npiv port.
> 
> Also remove redundant vport and lport initializations.
> 
> Signed-off-by: Vasu Dev <vasu.dev@intel.com>

Acked-by: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
> ---
> 
>  drivers/scsi/bnx2fc/bnx2fc_fcoe.c |   29 +++++++++++++++--------------
>  1 files changed, 15 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c
> index e476e87..71842a7 100644
> --- a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c
> +++ b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c
> @@ -1296,20 +1296,17 @@ setup_err:
>  static struct fc_lport *bnx2fc_if_create(struct bnx2fc_hba *hba,
>  				  struct device *parent, int npiv)
>  {
> -	struct fc_lport		*lport = NULL;
> +	struct fc_lport		*lport, *n_port;
>  	struct fcoe_port	*port;
>  	struct Scsi_Host	*shost;
>  	struct fc_vport		*vport = dev_to_vport(parent);
>  	int			rc = 0;
>  
>  	/* Allocate Scsi_Host structure */
> -	if (!npiv) {
> -		lport = libfc_host_alloc(&bnx2fc_shost_template,
> -					  sizeof(struct fcoe_port));
> -	} else {
> -		lport = libfc_vport_create(vport,
> -					   sizeof(struct fcoe_port));
> -	}
> +	if (!npiv)
> +		lport = libfc_host_alloc(&bnx2fc_shost_template, sizeof(*port));
> +	else
> +		lport = libfc_vport_create(vport, sizeof(*port));
>  
>  	if (!lport) {
>  		printk(KERN_ERR PFX "could not allocate scsi host structure\n");
> @@ -1327,7 +1324,6 @@ static struct fc_lport *bnx2fc_if_create(struct bnx2fc_hba *hba,
>  		goto lp_config_err;
>  
>  	if (npiv) {
> -		vport = dev_to_vport(parent);
>  		printk(KERN_ERR PFX "Setting vport names, 0x%llX 0x%llX\n",
>  			vport->node_name, vport->port_name);
>  		fc_set_wwnn(lport, vport->node_name);
> @@ -1356,12 +1352,17 @@ static struct fc_lport *bnx2fc_if_create(struct bnx2fc_hba *hba,
>  	fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
>  
>  	/* Allocate exchange manager */
> -	if (!npiv) {
> +	if (!npiv)
>  		rc = bnx2fc_em_config(lport);
> -		if (rc) {
> -			printk(KERN_ERR PFX "Error on bnx2fc_em_config\n");
> -			goto shost_err;
> -		}
> +	else {
> +		shost = vport_to_shost(vport);
> +		n_port = shost_priv(shost);
> +		rc = fc_exch_mgr_list_clone(n_port, lport);
> +	}
> +
> +	if (rc) {
> +		printk(KERN_ERR PFX "Error on bnx2fc_em_config\n");
> +		goto shost_err;
>  	}
>  
>  	bnx2fc_interface_get(hba);
> 
> 




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] bnx2fc: setup em for npiv port
  2011-04-28 22:18 ` [PATCH] bnx2fc: setup em for npiv port Bhanu Gollapudi
@ 2011-04-28 22:25   ` James Bottomley
  2011-04-28 22:32     ` Bhanu Prakash Gollapudi
  0 siblings, 1 reply; 4+ messages in thread
From: James Bottomley @ 2011-04-28 22:25 UTC (permalink / raw)
  To: Bhanu Gollapudi; +Cc: Vasu Dev, linux-scsi

On Thu, 2011-04-28 at 15:18 -0700, Bhanu Gollapudi wrote:
> On Tue, 2011-03-15 at 16:13 -0700, Vasu Dev wrote: 
> > Use fc_exch_mgr_list_clone to setup em for npiv port.
> > 
> > Also remove redundant vport and lport initializations.
> > 
> > Signed-off-by: Vasu Dev <vasu.dev@intel.com>
> 
> Acked-by: Bhanu Prakash Gollapudi <bprakash@broadcom.com>

This patch hasn't ever been submitted as far as I can tell.

James



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] bnx2fc: setup em for npiv port
  2011-04-28 22:25   ` James Bottomley
@ 2011-04-28 22:32     ` Bhanu Prakash Gollapudi
  0 siblings, 0 replies; 4+ messages in thread
From: Bhanu Prakash Gollapudi @ 2011-04-28 22:32 UTC (permalink / raw)
  To: James Bottomley; +Cc: Vasu Dev, linux-scsi@vger.kernel.org

On 4/28/2011 3:25 PM, James Bottomley wrote:
> On Thu, 2011-04-28 at 15:18 -0700, Bhanu Gollapudi wrote:
>> On Tue, 2011-03-15 at 16:13 -0700, Vasu Dev wrote:
>>> Use fc_exch_mgr_list_clone to setup em for npiv port.
>>>
>>> Also remove redundant vport and lport initializations.
>>>
>>> Signed-off-by: Vasu Dev<vasu.dev@intel.com>
>>
>> Acked-by: Bhanu Prakash Gollapudi<bprakash@broadcom.com>
>
> This patch hasn't ever been submitted as far as I can tell.

Probably because Vasu submitted only to devel@open-fcoe.org. Should I 
re-submit the patch to linux-scsi list?

Thanks,
Bhanu

>
> James
>
>
>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] bnx2fc: setup em for npiv port
@ 2011-04-28 22:55 Bhanu Gollapudi
  0 siblings, 0 replies; 4+ messages in thread
From: Bhanu Gollapudi @ 2011-04-28 22:55 UTC (permalink / raw)
  To: James Bottomley; +Cc: linux-scsi@vger.kernel.org

From: Vasu Dev <vasu.dev@intel.com>

Use fc_exch_mgr_list_clone to setup em for npiv port.

Also remove redundant vport and lport initializations.

Signed-off-by: Vasu Dev <vasu.dev@intel.com>
Acked-by: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
---

 drivers/scsi/bnx2fc/bnx2fc_fcoe.c |   29 +++++++++++++++--------------
 1 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c
index e476e87..71842a7 100644
--- a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c
+++ b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c
@@ -1296,20 +1296,17 @@ setup_err:
 static struct fc_lport *bnx2fc_if_create(struct bnx2fc_hba *hba,
 				  struct device *parent, int npiv)
 {
-	struct fc_lport		*lport = NULL;
+	struct fc_lport		*lport, *n_port;
 	struct fcoe_port	*port;
 	struct Scsi_Host	*shost;
 	struct fc_vport		*vport = dev_to_vport(parent);
 	int			rc = 0;
 
 	/* Allocate Scsi_Host structure */
-	if (!npiv) {
-		lport = libfc_host_alloc(&bnx2fc_shost_template,
-					  sizeof(struct fcoe_port));
-	} else {
-		lport = libfc_vport_create(vport,
-					   sizeof(struct fcoe_port));
-	}
+	if (!npiv)
+		lport = libfc_host_alloc(&bnx2fc_shost_template, sizeof(*port));
+	else
+		lport = libfc_vport_create(vport, sizeof(*port));
 
 	if (!lport) {
 		printk(KERN_ERR PFX "could not allocate scsi host structure\n");
@@ -1327,7 +1324,6 @@ static struct fc_lport *bnx2fc_if_create(struct bnx2fc_hba *hba,
 		goto lp_config_err;
 
 	if (npiv) {
-		vport = dev_to_vport(parent);
 		printk(KERN_ERR PFX "Setting vport names, 0x%llX 0x%llX\n",
 			vport->node_name, vport->port_name);
 		fc_set_wwnn(lport, vport->node_name);
@@ -1356,12 +1352,17 @@ static struct fc_lport *bnx2fc_if_create(struct bnx2fc_hba *hba,
 	fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
 
 	/* Allocate exchange manager */
-	if (!npiv) {
+	if (!npiv)
 		rc = bnx2fc_em_config(lport);
-		if (rc) {
-			printk(KERN_ERR PFX "Error on bnx2fc_em_config\n");
-			goto shost_err;
-		}
+	else {
+		shost = vport_to_shost(vport);
+		n_port = shost_priv(shost);
+		rc = fc_exch_mgr_list_clone(n_port, lport);
+	}
+
+	if (rc) {
+		printk(KERN_ERR PFX "Error on bnx2fc_em_config\n");
+		goto shost_err;
 	}
 
 	bnx2fc_interface_get(hba);




^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-04-28 22:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20110315231329.13280.54456.stgit@vifc.jf.intel.com>
2011-04-28 22:18 ` [PATCH] bnx2fc: setup em for npiv port Bhanu Gollapudi
2011-04-28 22:25   ` James Bottomley
2011-04-28 22:32     ` Bhanu Prakash Gollapudi
2011-04-28 22:55 Bhanu Gollapudi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).