[Kernel-packages] [Bug 1691817] Re: ubuntu 17.04 lpfc fix.

2018-07-16 Thread Po-Hsu Lin
Thank for the feedback.
Please feel free to open another bug if you ever need assistance like this.
(You can target it to linux (Ubuntu) as well, just like this report here. So it 
won't fall off the net)
Cheers.


** Changed in: linux (Ubuntu)
   Status: Incomplete => Fix Released

** Changed in: linux-aws (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-aws in Ubuntu.
https://bugs.launchpad.net/bugs/1691817

Title:
  ubuntu 17.04 lpfc fix.

Status in linux package in Ubuntu:
  Fix Released
Status in linux-aws package in Ubuntu:
  Fix Released

Bug description:
  Can someone from ubuntu check the 17.04 lpfc sources and make sure that this 
fix is in?
7e04e21afa82ef024416f5413b5bdb66e0505bcd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1691817/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1691817] Re: ubuntu 17.04 lpfc fix.

2018-07-10 Thread laurie barry
Yes, but after further consideration, the bug was introduced with a
patch submit to the lpfc 12.0.0.0 driver which is likely not present in
any kernels prior to bionic so we don't need the fix after all.  Let's
close this bug as no action required.  Thank you and apologize for the
distraction.

thx
Laurie

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-aws in Ubuntu.
https://bugs.launchpad.net/bugs/1691817

Title:
  ubuntu 17.04 lpfc fix.

Status in linux package in Ubuntu:
  Incomplete
Status in linux-aws package in Ubuntu:
  New

Bug description:
  Can someone from ubuntu check the 17.04 lpfc sources and make sure that this 
fix is in?
7e04e21afa82ef024416f5413b5bdb66e0505bcd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1691817/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1691817] Re: ubuntu 17.04 lpfc fix.

2018-07-09 Thread Po-Hsu Lin
Hi Laurie,
Thanks for the info!

It looks like bug 1768103 has been fixed and
7e04e21afa82ef024416f5413b5bdb66e0505bcd has landed in the bionic-kernel
as well.

So for this one, it's asking for commit 7e04e21af to land in other
kernels?

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-aws in Ubuntu.
https://bugs.launchpad.net/bugs/1691817

Title:
  ubuntu 17.04 lpfc fix.

Status in linux package in Ubuntu:
  Incomplete
Status in linux-aws package in Ubuntu:
  New

Bug description:
  Can someone from ubuntu check the 17.04 lpfc sources and make sure that this 
fix is in?
7e04e21afa82ef024416f5413b5bdb66e0505bcd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1691817/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1691817] Re: ubuntu 17.04 lpfc fix.

2018-07-09 Thread laurie barry
This is a duplicate of Lanchpad bug 1768103 - Emulex LPe16000 (Lancer A0
ASIC's) FC HBA won't boot.  This has the potential for impacting
OEM/customer's with these models preventing them from booting/running on
that card.

From: James Smart 


[ Upstream commit 7e04e21afa82ef024416f5413b5bdb66e0505bcd ]

The older sli4 adapters only supported the 64 byte WQE entry size.
The new adapter (fw) support both 64 and 128 byte WQE entry sizies.
The Express lane WQ was not being created with the 128 byte WQE sizes
when it was supported.

Not having the right WQE size created for the express lane work queue
caused the the firmware to overwrite the lun indentifier in the FCP header.

This patch correctly creates the express lane work queue with the
supported size.

Signed-off-by: Dick Kennedy 
Signed-off-by: James Smart 
Reviewed-by: Johannes Thumshirn 
Signed-off-by: Sasha Levin 
Signed-off-by: Greg Kroah-Hartman 
---
 drivers/scsi/lpfc/lpfc_init.c |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)
Patch
--- a/drivers/scsi/lpfc/lpfc_init.c
+++ b/drivers/scsi/lpfc/lpfc_init.c
@@ -11312,6 +11312,7 @@  int
 lpfc_fof_queue_create(struct lpfc_hba *phba)
 {
struct lpfc_queue *qdesc;
+   uint32_t wqesize;
 
/* Create FOF EQ */
qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.eq_esize,
@@ -11332,8 +11333,11 @@  lpfc_fof_queue_create(struct lpfc_hba *p
phba->sli4_hba.oas_cq = qdesc;
 
/* Create OAS WQ */
-   qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.wq_esize,
+   wqesize = (phba->fcp_embed_io) ?
+   LPFC_WQE128_SIZE : phba->sli4_hba.wq_esize;
+   qdesc = lpfc_sli4_queue_alloc(phba, wqesize,
  phba->sli4_hba.wq_ecount);
+
if (!qdesc)
goto out_error;

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-aws in Ubuntu.
https://bugs.launchpad.net/bugs/1691817

Title:
  ubuntu 17.04 lpfc fix.

Status in linux package in Ubuntu:
  Incomplete
Status in linux-aws package in Ubuntu:
  New

Bug description:
  Can someone from ubuntu check the 17.04 lpfc sources and make sure that this 
fix is in?
7e04e21afa82ef024416f5413b5bdb66e0505bcd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1691817/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1691817] Re: ubuntu 17.04 lpfc fix.

2018-07-06 Thread Po-Hsu Lin
Hello,

can you elaborate the impact of this bug?
We will need it for SRU the patch.

Thanks

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-aws in Ubuntu.
https://bugs.launchpad.net/bugs/1691817

Title:
  ubuntu 17.04 lpfc fix.

Status in linux package in Ubuntu:
  Incomplete
Status in linux-aws package in Ubuntu:
  New

Bug description:
  Can someone from ubuntu check the 17.04 lpfc sources and make sure that this 
fix is in?
7e04e21afa82ef024416f5413b5bdb66e0505bcd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1691817/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1691817] Re: ubuntu 17.04 lpfc fix.

2018-07-06 Thread Po-Hsu Lin
** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1691817

Title:
  ubuntu 17.04 lpfc fix.

Status in linux package in Ubuntu:
  Incomplete
Status in linux-aws package in Ubuntu:
  New

Bug description:
  Can someone from ubuntu check the 17.04 lpfc sources and make sure that this 
fix is in?
7e04e21afa82ef024416f5413b5bdb66e0505bcd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1691817/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1691817] Re: ubuntu 17.04 lpfc fix.

2017-05-23 Thread laurie barry
This bug also exists and needs to be fixed in 16.04 LTS.  How do we
ensure this happens.  OEMs like HPE and others need this fix.

thank you
Laurie

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-aws in Ubuntu.
https://bugs.launchpad.net/bugs/1691817

Title:
  ubuntu 17.04 lpfc fix.

Status in linux-aws package in Ubuntu:
  New

Bug description:
  Can someone from ubuntu check the 17.04 lpfc sources and make sure that this 
fix is in?
7e04e21afa82ef024416f5413b5bdb66e0505bcd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-aws/+bug/1691817/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp