All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] qedf: Update the max_id value in host structure.
@ 2021-06-02 10:46 Javed Hasan
  2021-06-02 13:45 ` Himanshu Madhani
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Javed Hasan @ 2021-06-02 10:46 UTC (permalink / raw)
  To: martin.petersen; +Cc: linux-scsi, GR-QLogic-Storage-Upstream, jhasan

From: Saurav Kashyap <skashyap@marvell.com>

  The max_id value defines the max id of the target that stack
  can scan during manual scanning through scsi_host sysfs interface.
  If default value is 8, update the value to the max sessions driver support.

Signed-off-by: Saurav Kashyap <skashyap@marvell.com>
Signed-off-by: Javed Hasan <jhasan@marvell.com>
---
Changes in v2:
 - Added description and signed-off.
---
 drivers/scsi/qedf/qedf_main.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/scsi/qedf/qedf_main.c b/drivers/scsi/qedf/qedf_main.c
index c5f37277..322046f4 100644
--- a/drivers/scsi/qedf/qedf_main.c
+++ b/drivers/scsi/qedf/qedf_main.c
@@ -2089,6 +2089,7 @@ static int qedf_vport_create(struct fc_vport *vport, bool disabled)
 	vn_port->host->max_lun = qedf_max_lun;
 	vn_port->host->sg_tablesize = QEDF_MAX_BDS_PER_CMD;
 	vn_port->host->max_cmd_len = QEDF_MAX_CDB_LEN;
+	vn_port->host->max_id = QEDF_MAX_SESSIONS;
 
 	rc = scsi_add_host(vn_port->host, &vport->dev);
 	if (rc) {
@@ -3855,6 +3856,7 @@ static int __qedf_probe(struct pci_dev *pdev, int mode)
 		host->transportt = qedf_fc_transport_template;
 		host->max_lun = qedf_max_lun;
 		host->max_cmd_len = QEDF_MAX_CDB_LEN;
+		host->max_id = QEDF_MAX_SESSIONS;
 #ifdef USE_BLK_MQ
 		host->use_blk_mq = qedf_use_blk_mq;
 		if (shost_use_blk_mq(host)) {
-- 
2.18.2


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

* Re: [PATCH V2] qedf: Update the max_id value in host structure.
  2021-06-02 10:46 [PATCH V2] qedf: Update the max_id value in host structure Javed Hasan
@ 2021-06-02 13:45 ` Himanshu Madhani
  2021-06-08  1:30 ` Martin K. Petersen
  2021-06-16  3:48 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Himanshu Madhani @ 2021-06-02 13:45 UTC (permalink / raw)
  To: Javed Hasan, martin.petersen; +Cc: linux-scsi, GR-QLogic-Storage-Upstream



On 6/2/21 5:46 AM, Javed Hasan wrote:
> From: Saurav Kashyap <skashyap@marvell.com>
> 
>    The max_id value defines the max id of the target that stack
>    can scan during manual scanning through scsi_host sysfs interface.
>    If default value is 8, update the value to the max sessions driver support.
> 
> Signed-off-by: Saurav Kashyap <skashyap@marvell.com>
> Signed-off-by: Javed Hasan <jhasan@marvell.com>
> ---
> Changes in v2:
>   - Added description and signed-off.
> ---
>   drivers/scsi/qedf/qedf_main.c | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/scsi/qedf/qedf_main.c b/drivers/scsi/qedf/qedf_main.c
> index c5f37277..322046f4 100644
> --- a/drivers/scsi/qedf/qedf_main.c
> +++ b/drivers/scsi/qedf/qedf_main.c
> @@ -2089,6 +2089,7 @@ static int qedf_vport_create(struct fc_vport *vport, bool disabled)
>   	vn_port->host->max_lun = qedf_max_lun;
>   	vn_port->host->sg_tablesize = QEDF_MAX_BDS_PER_CMD;
>   	vn_port->host->max_cmd_len = QEDF_MAX_CDB_LEN;
> +	vn_port->host->max_id = QEDF_MAX_SESSIONS;
>   
>   	rc = scsi_add_host(vn_port->host, &vport->dev);
>   	if (rc) {
> @@ -3855,6 +3856,7 @@ static int __qedf_probe(struct pci_dev *pdev, int mode)
>   		host->transportt = qedf_fc_transport_template;
>   		host->max_lun = qedf_max_lun;
>   		host->max_cmd_len = QEDF_MAX_CDB_LEN;
> +		host->max_id = QEDF_MAX_SESSIONS;
>   #ifdef USE_BLK_MQ
>   		host->use_blk_mq = qedf_use_blk_mq;
>   		if (shost_use_blk_mq(host)) {
> 

Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com>

-- 
Himanshu Madhani                                Oracle Linux Engineering

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

* Re: [PATCH V2] qedf: Update the max_id value in host structure.
  2021-06-02 10:46 [PATCH V2] qedf: Update the max_id value in host structure Javed Hasan
  2021-06-02 13:45 ` Himanshu Madhani
@ 2021-06-08  1:30 ` Martin K. Petersen
  2021-06-16  3:48 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2021-06-08  1:30 UTC (permalink / raw)
  To: Javed Hasan; +Cc: martin.petersen, linux-scsi, GR-QLogic-Storage-Upstream


Javed,

> The max_id value defines the max id of the target that stack can scan
> during manual scanning through scsi_host sysfs interface.  If default
> value is 8, update the value to the max sessions driver support.

Applied to 5.14/scsi-staging, thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

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

* Re: [PATCH V2] qedf: Update the max_id value in host structure.
  2021-06-02 10:46 [PATCH V2] qedf: Update the max_id value in host structure Javed Hasan
  2021-06-02 13:45 ` Himanshu Madhani
  2021-06-08  1:30 ` Martin K. Petersen
@ 2021-06-16  3:48 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2021-06-16  3:48 UTC (permalink / raw)
  To: Javed Hasan; +Cc: Martin K . Petersen, linux-scsi, GR-QLogic-Storage-Upstream

On Wed, 2 Jun 2021 03:46:53 -0700, Javed Hasan wrote:

>   The max_id value defines the max id of the target that stack
>   can scan during manual scanning through scsi_host sysfs interface.
>   If default value is 8, update the value to the max sessions driver support.

Applied to 5.14/scsi-queue, thanks!

[1/1] qedf: Update the max_id value in host structure.
      https://git.kernel.org/mkp/scsi/c/1b67f3d74e45

-- 
Martin K. Petersen	Oracle Linux Engineering

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

end of thread, other threads:[~2021-06-16  3:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-02 10:46 [PATCH V2] qedf: Update the max_id value in host structure Javed Hasan
2021-06-02 13:45 ` Himanshu Madhani
2021-06-08  1:30 ` Martin K. Petersen
2021-06-16  3:48 ` Martin K. Petersen

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.