[Bug 1956982] Re: Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.4 for Ubuntu 22.04

2022-05-31 Thread Laurie Barry
Broadcom Emulex has verified the 14.0.0.4 lpfc Ubuntu 22.04 driver
patchset in the package linux - 5.15.0-23.23 kernel.

Thank you for your support
Laurie Barry
Software Program Manager

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1956982

Title:
  Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.4 for Ubuntu 22.04

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1971193] Re: Server Crash while running IO and switch port bounce test with 2K login session

2022-05-09 Thread Laurie Barry
Driver team has highlighted this patch is required to address this
issue:

author  James Smart   2022-04-12 15:19:44 -0700
committer   Martin K. Petersen  2022-04-18 
22:48:43 -0400
commit  e294647b1aed4247fe52851f3a3b2b19ae906228 (patch)
treefd7e11a3c6f680d5aabd468d523d08ffcd66b59f /drivers/scsi/lpfc
parent  b83a8c21f3fe874e12eb2b6e6c5cfb220d35c446 (diff)
downloadscsi-e294647b1aed4247fe52851f3a3b2b19ae906228.tar.gz
scsi: lpfc: Move cfg_log_verbose check before calling lpfc_dmp_dbg()
In an attempt to log message 0126 with LOG_TRACE_EVENT, the following hard
lockup call trace hangs the system.

Call Trace:
 _raw_spin_lock_irqsave+0x32/0x40
 lpfc_dmp_dbg.part.32+0x28/0x220 [lpfc]
 lpfc_cmpl_els_fdisc+0x145/0x460 [lpfc]
 lpfc_sli_cancel_jobs+0x92/0xd0 [lpfc]
 lpfc_els_flush_cmd+0x43c/0x670 [lpfc]
 lpfc_els_flush_all_cmd+0x37/0x60 [lpfc]
 lpfc_sli4_async_event_proc+0x956/0x1720 [lpfc]
 lpfc_do_work+0x1485/0x1d70 [lpfc]
 kthread+0x112/0x130
 ret_from_fork+0x1f/0x40
Kernel panic - not syncing: Hard LOCKUP

The same CPU tries to claim the phba->port_list_lock twice.

Move the cfg_log_verbose checks as part of the lpfc_printf_vlog() and
lpfc_printf_log() macros before calling lpfc_dmp_dbg().  There is no need
to take the phba->port_list_lock within lpfc_dmp_dbg().

Link: https://lore.kernel.org/r/2022041008.126521-3-jsmart2...@gmail.com
Co-developed-by: Justin Tee 
Signed-off-by: Justin Tee 
Signed-off-by: James Smart 
Signed-off-by: Martin K. Petersen 
Diffstat (limited to 'drivers/scsi/lpfc')
-rw-r--r--  drivers/scsi/lpfc/lpfc_init.c   29  
-rw-r--r--  drivers/scsi/lpfc/lpfc_logmsg.h 6   
2 files changed, 4 insertions, 31 deletions
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c
index 461d333b1b3a8..f9cd4b72d949a 100644
--- a/drivers/scsi/lpfc/lpfc_init.c
+++ b/drivers/scsi/lpfc/lpfc_init.c
@@ -15700,34 +15700,7 @@ void lpfc_dmp_dbg(struct lpfc_hba *phba)
unsigned int temp_idx;
int i;
int j = 0;
-   unsigned long rem_nsec, iflags;
-   bool log_verbose = false;
-   struct lpfc_vport *port_iterator;
-
-   /* Don't dump messages if we explicitly set log_verbose for the
-* physical port or any vport.
-*/
-   if (phba->cfg_log_verbose)
-   return;
-
-   spin_lock_irqsave(&phba->port_list_lock, iflags);
-   list_for_each_entry(port_iterator, &phba->port_list, listentry) {
-   if (port_iterator->load_flag & FC_UNLOADING)
-   continue;
-   if (scsi_host_get(lpfc_shost_from_vport(port_iterator))) {
-   if (port_iterator->cfg_log_verbose)
-   log_verbose = true;
-
-   scsi_host_put(lpfc_shost_from_vport(port_iterator));
-
-   if (log_verbose) {
-   spin_unlock_irqrestore(&phba->port_list_lock,
-  iflags);
-   return;
-   }
-   }
-   }
-   spin_unlock_irqrestore(&phba->port_list_lock, iflags);
+   unsigned long rem_nsec;
 
if (atomic_cmpxchg(&phba->dbg_log_dmping, 0, 1) != 0)
return;
diff --git a/drivers/scsi/lpfc/lpfc_logmsg.h b/drivers/scsi/lpfc/lpfc_logmsg.h
index 7d480c7987942..a5aafe230c74f 100644
--- a/drivers/scsi/lpfc/lpfc_logmsg.h
+++ b/drivers/scsi/lpfc/lpfc_logmsg.h
@@ -73,7 +73,7 @@ do { \
 #define lpfc_printf_vlog(vport, level, mask, fmt, arg...) \
 do { \
{ if (((mask) & (vport)->cfg_log_verbose) || (level[1] <= '3')) { \
-   if ((mask) & LOG_TRACE_EVENT) \
+   if ((mask) & LOG_TRACE_EVENT && !(vport)->cfg_log_verbose) \
lpfc_dmp_dbg((vport)->phba); \
dev_printk(level, &((vport)->phba->pcidev)->dev, "%d:(%d):" \
   fmt, (vport)->phba->brd_no, vport->vpi, ##arg);  \
@@ -89,11 +89,11 @@ do { \
 (phba)->pport->cfg_log_verbose : \
 (phba)->cfg_log_verbose; \
if (((mask) & log_verbose) || (level[1] <= '3')) { \
-   if ((mask) & LOG_TRACE_EVENT) \
+   if ((mask) & LOG_TRACE_EVENT && !log_verbose) \
lpfc_dmp_dbg(phba); \
dev_printk(level, &((phba)->pcidev)->dev, "%d:" \
fmt, phba->brd_no, ##arg); \
-   } else  if (!(phba)->cfg_log_verbose)\
+   } else if (!log_verbose)\
lpfc_dbg_print(phba, "%d:" fmt, phba->brd_no, ##arg); \
} \
 } while (0)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1971193

Title:
  Server Crash while running IO and switch port bounce test with 2K
  login session

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

[Bug 1971193] [NEW] Server Crash while running IO and switch port bounce test with 2K login session

2022-05-02 Thread Laurie Barry
Public bug reported:

Server crash and Call trace reported on one of the servers running IO and
switch port bounce test from the 2K login session configuration.


Call Trace:
[56048.470488] Call Trace:
[56048.470489]  _raw_spin_lock_irqsave+0x32/0x40
[56048.470489]  lpfc_dmp_dbg.part.32+0x28/0x220 [lpfc]
[56048.470490]  lpfc_cmpl_els_fdisc+0x145/0x460 [lpfc]
[56048.470490]  lpfc_sli_cancel_jobs+0x92/0xd0 [lpfc]
[56048.470490]  lpfc_els_flush_cmd+0x43c/0x670 [lpfc]
[56048.470491]  lpfc_els_flush_all_cmd+0x37/0x60 [lpfc]
[56048.470491]  lpfc_sli4_async_event_proc+0x956/0x1720 [lpfc]
[56048.470492]  lpfc_do_work+0x1485/0x1d70 [lpfc]
[56048.470492]  ? __schedule+0x280/0x700
[56048.470492]  ? finish_wait+0x80/0x80
[56048.470493]  ? lpfc_unregister_unused_fcf+0x80/0x80 [lpfc]
[56048.470493]  kthread+0x112/0x130
[56048.470493]  ? kthread_flush_work_fn+0x10/0x10
[56048.470494]  ret_from_fork+0x1f/0x40
[56048.470494] Kernel panic - not syncing: Hard LOCKUP
[56048.470495] CPU: 0 PID: 682 Comm: lpfc_worker_0 Kdump: loaded Tainted: G
 IOE- -  - 4.18.0-240.el8.x86_64 #1
[56048.470496] Hardware name: Dell Inc. PowerEdge R740/0DY2X0, BIOS 2.11.2
004/21/2021
[56048.470496] Call Trace:
[56048.470496]  
[56048.470496]  dump_stack+0x5c/0x80
[56048.470497]  panic+0xe7/0x2a9
[56048.470497]  ? __switch_to_asm+0x51/0x70
[56048.470497]  nmi_panic.cold.9+0xc/0xc
[56048.470498]  watchdog_overflow_callback.cold.7+0x5c/0x70
[56048.470498]  __perf_event_overflow+0x52/0xf0
[56048.470499]  handle_pmi_common+0x1db/0x270
[56048.470499]  ? __set_pte_vaddr+0x32/0x50
[56048.470499]  ? __native_set_fixmap+0x24/0x30
[56048.470500]  ? ghes_copy_tofrom_phys+0xd3/0x1c0
[56048.470500]  ? __ghes_peek_estatus.isra.12+0x49/0xa0
[56048.470500]  intel_pmu_handle_irq+0xbf/0x160
[56048.470501]  perf_event_nmi_handler+0x2d/0x50
[56048.470501]  nmi_handle+0x63/0x110
[56048.470501]  default_do_nmi+0x4e/0x100
[56048.470502]  do_nmi+0x128/0x190
[56048.470502]  end_repeat_nmi+0x16/0x6a
[56048.470503] RIP: 0010:native_queued_spin_lock_slowpath+0x5d/0x1d0
[56048.470504] Code: 0f ba 2f 08 0f 92 c0 0f b6 c0 c1 e0 08 89 c2 8b 07 30 e4
09 d0 a9 00 01 ff ff 75 47 85 c0 74 0e 8b 07 84 c0 74 08 f3 90 8b 07 <84> c0 75
f8 b8 01 00 00 00 66 89 07 c3 8b 37 81 fe 00 01 00 00 75
[56048.470504] RSP: 0018:acebc7877ca8 EFLAGS: 0002
[56048.470505] RAX: 0101 RBX: 0246 RCX:
001f
[56048.470505] RDX:  RSI:  RDI:
94dcf5341dc0
[56048.470506] RBP: 94dcf534 R08: 0002 R09:
00029600
[56048.470506] R10: 60d29656a45c R11: 94dcf534fd12 R12:
94dcf5341db0
[56048.470507] R13: 94dcf5341dc0 R14: 94dcc4ae8a00 R15:
0003
[56048.470507]  ? native_queued_spin_lock_slowpath+0x5d/0x1d0
[56048.470507]  ? native_queued_spin_lock_slowpath+0x5d/0x1d0
[56048.470508]  
[56048.470508]  _raw_spin_lock_irqsave+0x32/0x40
[56048.470509]  lpfc_dmp_dbg.part.32+0x28/0x220 [lpfc]
[56048.470509]  lpfc_cmpl_els_fdisc+0x145/0x460 [lpfc]
[56048.470509]  lpfc_sli_cancel_jobs+0x92/0xd0 [lpfc]
[56048.470510]  lpfc_els_flush_cmd+0x43c/0x670 [lpfc]
[56048.470510]  lpfc_els_flush_all_cmd+0x37/0x60 [lpfc]
[56048.470510]  lpfc_sli4_async_event_proc+0x956/0x1720 [lpfc]
[56048.470511]  lpfc_do_work+0x1485/0x1d70 [lpfc]
[56048.470511]  ? __schedule+0x280/0x700
[56048.470511]  ? finish_wait+0x80/0x80
[56048.470512]  ? lpfc_unregister_unused_fcf+0x80/0x80 [lpfc]
[56048.470512]  kthread+0x112/0x130
[56048.470513]  ? kthread_flush_work_fn+0x10/0x10
[56048.470513]  ret_from_fork+0x1f/0x40
[root@ms-svr3-10-231-131-160 127.0.0.1-2021-11-20-05:14:30]#


[root@ms-svr3-10-231-131-160 127.0.0.1-2021-11-20-05:14:30]# cat
/etc/redhat-release
Red Hat Enterprise Linux release 8.3 (Ootpa)

[root@ms-svr3-10-231-131-160 127.0.0.1-2021-11-20-05:14:30]# cat
/sys/module/lpfc/version
0:14.0.390.2

[root@ms-svr3-10-231-131-160 127.0.0.1-2021-11-20-05:14:30]# cat
/sys/class/scsi_host/host*/modeldesc
Emulex LightPulse LPe32002-M2 2-Port 32Gb Fibre Channel Adapter
Emulex LightPulse LPe32002-M2 2-Port 32Gb Fibre Channel Adapter

[root@ms-svr3-10-231-131-160 127.0.0.1-2021-11-20-05:14:30]# cat
/sys/class/scsi_host/host*/fwrev
14.0.390.1, sli-4:2:c
14.0.390.1, sli-4:2:c

[root@ms-svr3-10-231-131-160 127.0.0.1-2021-11-20-05:14:30]# cat
/sys/class/fc_host/host*/port_name
0x1090faf09459
0x1090faf0945a
[root@ms-svr3-10-231-131-160 127.0.0.1-2021-11-20-05:14:30]#


HBA Attributes for 10:00:00:90:fa:f0:94:59

Host Name : ms-svr3-10-231-131-160
Manufacturer  : Emulex Corporation
Serial Number : FC70793283
Model : LPe32002-M2
Model Desc: Emulex LightPulse LPe32002-M2 2-Port 32Gb Fibre
Channel Adapter
Node WWN  : 20 00 00 90 fa f0 94 59
Node Symname  :
HW Version: 000c 0001 
FW Version: 14.0.390.1
Vendor Spec ID 

[Bug 1956982] Re: Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.4 for Ubuntu 22.04

2022-03-10 Thread Laurie Barry
Jeff - thank you for the update but what is the ETA for a kernel with
these patches integrated?

Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1956982

Title:
  Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.4 for Ubuntu 22.04

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Re: [Bug 1951111] Re: [Jammy] Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.3 for Ubuntu 22.04

2022-01-10 Thread Laurie Barry
Thank you

On Monday, January 10, 2022, Jeff Lane <1951...@bugs.launchpad.net>
wrote:

> ** Changed in: linux (Ubuntu)
>Status: Incomplete => Confirmed
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/195
>
> Title:
>   [Jammy] Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.3 for
>   Ubuntu 22.04
>
> Status in linux package in Ubuntu:
>   Confirmed
>
> Bug description:
>   The purpose of this bug is to track the incremental patches needed in
>   Ubuntu 22.04 for the Broadcom Emulex FC HBA lpfc driver that are
>   committed to the 5.16 upstream kernel and not part of the 5.15 kernel
>   that 22.04 is rebased to.
>
>   Please integrate the following patches from the 5.16 kernel per James
>   Smart the lpfc maintainter.
>
>   James Smart
>   Fri, Nov 12, 2:31 PM (4 days ago)
>   to me, Dick, Justin, Teresa
>
>   I would argue to take all of the patches in the following list
>   (14.0.0.2 & 14.0.0.3 & a mbx cmd failure issue)
>
>   -- james
>
>
>   Applied to 5.16/scsi-queue, thanks!
>
>   [1/8] lpfc: Revert LOG_TRACE_EVENT back to LOG_INIT prior to
> driver_resource_setup
>   https://git.kernel.org/mkp/scsi/c/a516074c2026
>   [2/8] lpfc: Wait for successful restart of SLI3 adapter during host
> sg_reset
>   https://git.kernel.org/mkp/scsi/c/d305c253af69
>   [3/8] lpfc: Correct sysfs reporting of loop support after SFP status
> change
>   https://git.kernel.org/mkp/scsi/c/7a1dda943630
>   [4/8] lpfc: Fix use-after-free in lpfc_unreg_rpi() routine
>   https://git.kernel.org/mkp/scsi/c/79b20beccea3
>   [5/8] lpfc: Allow PLOGI retry if previous PLOGI was aborted
>   https://git.kernel.org/mkp/scsi/c/15af02d8a585
>   [6/8] lpfc: Fix link down processing to address NULL pointer dereference
>   https://git.kernel.org/mkp/scsi/c/1854f53ccd88
>   [7/8] lpfc: Allow fabric node recovery if recovery is in progress before
> devloss
>   https://git.kernel.org/mkp/scsi/c/af984c87293b
>   [8/8] lpfc: Update lpfc version to 14.0.0.3
>   https://git.kernel.org/mkp/scsi/c/83c3a7beaef7
>
>   Applied to 5.16/scsi-queue, thanks!
>
>   [1/1] lpfc: Fix mailbox command failure during driver initialization
>   https://git.kernel.org/mkp/scsi/c/efe1dc571a5b
>
>
>   Applied to 5.16/scsi-queue, thanks!
>
>   [01/14] lpfc: Fix list_add corruption in lpfc_drain_txq
>   https://git.kernel.org/mkp/scsi/c/99154581b05c
>   [02/14] lpfc: Don't release final kref on Fport node while ABTS
> outstanding
>   https://git.kernel.org/mkp/scsi/c/982fc3965d13
>   [03/14] lpfc: Fix premature rpi release for unsolicited TPLS and LS_RJT
>   https://git.kernel.org/mkp/scsi/c/20d2279f90ce
>   [04/14] lpfc: Fix hang on unload due to stuck fport node
>   https://git.kernel.org/mkp/scsi/c/88f7702984e6
>   [05/14] lpfc: Fix rediscovery of tape device after issue lip
>   https://git.kernel.org/mkp/scsi/c/3a874488d2e9
>   [06/14] lpfc: Don't remove ndlp on PRLI errors in P2P mode
>   https://git.kernel.org/mkp/scsi/c/a864ee709bc0
>   [07/14] lpfc: Fix NVME I/O failover to non-optimized path
>   https://git.kernel.org/mkp/scsi/c/b507357f7917
>   [08/14] lpfc: Fix FCP I/O flush functionality for TMF routines
>   https://git.kernel.org/mkp/scsi/c/cd8a36a90bab
>   [09/14] lpfc: Fix EEH support for NVME I/O
>   https://git.kernel.org/mkp/scsi/c/25ac2c970be3
>   [10/14] lpfc: Adjust bytes received vales during cmf timer interval
>   https://git.kernel.org/mkp/scsi/c/d5ac69b332d8
>   [11/14] lpfc: Fix I/O block after enabling managed congestion mode
>   https://git.kernel.org/mkp/scsi/c/3ea998cbf9e7
>   [12/14] lpfc: Zero CGN stats only during initial driver load and stat
> reset
>   https://git.kernel.org/mkp/scsi/c/afd63fa51149
>   [13/14] lpfc: Improve PBDE checks during SGL processing
>   https://git.kernel.org/mkp/scsi/c/315b3fd13521
>   [14/14] lpfc: Update lpfc version to 14.0.0.2
>   https://git.kernel.org/mkp/scsi/c/0d6b26795bd2
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/
> 195/+subscriptions
>
>

--

*Laurie Barry*
Software Program Manager |  Emulex Connectivity Division
office/soft phone: 978-719-1503 | mobile: 603-930-1771
200 Brickstone Square  |  Andover, MA 01810
laurie.ba...@broadcom.com   |   broadcom.com

-- 
This electronic communication and the information and any files transmitted 
with it, or attached to it, are confidential and are intended solely for 
the use of the individual or entity to whom it is addressed and may contain 
information that is confidential, legally privileged, protected by privacy 
laws, or otherwise restricted from disclosure to anyone else. If

[Bug 1956982] [NEW] Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.4 for Ubuntu 22.04

2022-01-10 Thread Laurie Barry
Public bug reported:

Please integrate this customer critical/reported fix that was submitted as a 
stand along patch:
Accepted 11/29/21:

Applied to 5.16/scsi-fixes, thanks!

[1/1] lpfc: Fix nonrecovery of remote ports following an unsolicited LOGO
  https://git.kernel.org/mkp/scsi/c/0956ba63bd94

As well as this latest set of bug fix patches accepted upstream
12/6/2021:

scsi: lpfc: Fix leaked lpfc_dmabuf mbox allocations with NPIV
  commitf0d3919697492950f57a26a1093aee53880d669d
scsi: lpfc: Change return code on I/Os received during link bounce
  commit2e81b1a374da5d6024208c16c4a5224a70cafa64
scsi: lpfc: Fix lpfc_force_rscn ndlp kref imbalance
  commit7576d48c64f36f6fea9df2882f710a474fa35f40
scsi: lpfc: Fix NPIV port deletion crash
  commit8ed190a91950564775cbaae9e8e8083a69a8da23
scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup
  commit7dd2e2a923173d637c272e483966be8e96a72b64
scsi: lpfc: Adjust CMF total bytes and rxmonitor
  commita6269f837045acb02904f31f05acde847ec8f8a7
scsi: lpfc: Cap CMF read bytes to MBPI
  commit05116ef9c4b444f7fdbb56f9e13c2ec941726639
scsi: lpfc: Add additional debugfs support for CMF
  commit6014a2468f0e49194f612b1f09f99eacee0a409a
scsi: lpfc: Update lpfc version to 14.0.0.4
  commit4437503bfbec2f02b41b2492520fe627715889a7


Extended log info:

  -cover-letter.patch

  0001-lpfc-Fix-leaked-lpfc_dmabuf-mbox-allocations-with-np.patch
   commitf0d3919697492950f57a26a1093aee53880d669d
   lpfc: Fix memory leaked lpfc_dmabuf mbox allocations
   Fix leaked lpfc_dmabuf allocations in an mbox.
 svn: r82112
  bz: 249968 250131

  0002-lpfc-Change-return-code-on-ios-received-during-link-.patch
   commit2e81b1a374da5d6024208c16c4a5224a70cafa64
   lpfc: Group RPI_SUSPENDED error action with DID_REQUEUE
   Fix Medusa IO errors on Scope and Scale LIP test
 svn: r82348
  bz: 247164 250466
   Fix Medusa IO errors on Scope and Scale LIP test - build
 svn: r82377
  bz: 247164 250466

  0003-lpfc-Fix-lpfc_force_rscn-ndlp-kref-imbalance.patch
   commit7576d48c64f36f6fea9df2882f710a474fa35f40
   lpfc: Fix lpfc_force_rscn ndlp kref imbalance
   Fix ndlp kref crash during lpfc_force_rscn
 svn: r82526
  bz: 250692 250695

  0004-lpfc-Fix-NPIV-port-deletion-crash.patch
   commit8ed190a91950564775cbaae9e8e8083a69a8da23
   lpfc: Fix NPIV port deletion crash
   Fix crash when deleting a large number of vports.
 svn: r82120
  bz: 240671 250158
   Fix a log message formatting error introduced in svn r82120.
 svn: r82743
  bz: 249968 250131

  0005-lpfc-Trigger-SLI4-firmware-dump-before-doing-driver-.patch
   commit7dd2e2a923173d637c272e483966be8e96a72b64
   lpfc: Trigger SLI4 firmware dump immediately without delays
   Trigger SLI4 firmware dump immediately without delays
 svn: r82770
  bz: 250111 251061

  0006-lpfc-Adjust-CMF-total-bytes-and-rxmonitor.patch
   commita6269f837045acb02904f31f05acde847ec8f8a7
   lpfc: Adjust CMF total bytes and rxmonitor
   Adjust CMF total bytes and add to rxmonitor
 svn: r82429
  bz: 250581 250587

  0007-lpfc-Cap-CMF-read-bytes-to-MBPI.patch
   commit05116ef9c4b444f7fdbb56f9e13c2ec941726639
   lpfc: Cap CMF read bytes to MBPI
   Cap CMF read bytes to MBPI only for shortened timer intervals
 svn: r82483
  bz: 250605 251274

  0008-lpfc-Add-additional-debugfs-support-for-CMF.patch
   commit6014a2468f0e49194f612b1f09f99eacee0a409a
   lpfc: Add additional debugfs support for CMF
   Add debugfs support for CMF parameters
 svn: r82144
  bz: 250206 250237
   Coverity: CID 19805 Fix memory illegal access
 svn: r82349
  bz: 250454 250465

  0009-lpfc-Update-lpfc-version-to-14.0.0.4.patch
commit4437503bfbec2f02b41b2492520fe627715889a7

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1956982

Title:
  Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.4 for Ubuntu 22.04

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1951111] Re: Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.3 for Ubuntu 22.04

2021-11-16 Thread Laurie Barry
Please note that this patch includes fixes needed by IBMp for it's
upcoming Broadcom Emulex HBA program.

Thank you
Laurie Barry

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/195

Title:
  Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.3 for Ubuntu 22.04

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1951111] [NEW] Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.3 for Ubuntu 22.04

2021-11-16 Thread Laurie Barry
Public bug reported:

The purpose of this bug is to track the incremental patches needed in
Ubuntu 22.04 for the Broadcom Emulex FC HBA lpfc driver that are
committed to the 5.16 upstream kernel and not part of the 5.15 kernel
that 22.04 is rebased to.

Please integrate the following patches from the 5.16 kernel per James
Smart the lpfc maintainter.

James Smart
Fri, Nov 12, 2:31 PM (4 days ago)
to me, Dick, Justin, Teresa

I would argue to take all of the patches in the following list
(14.0.0.2 & 14.0.0.3 & a mbx cmd failure issue)

-- james


Applied to 5.16/scsi-queue, thanks!

[1/8] lpfc: Revert LOG_TRACE_EVENT back to LOG_INIT prior to 
driver_resource_setup
https://git.kernel.org/mkp/scsi/c/a516074c2026
[2/8] lpfc: Wait for successful restart of SLI3 adapter during host sg_reset
https://git.kernel.org/mkp/scsi/c/d305c253af69
[3/8] lpfc: Correct sysfs reporting of loop support after SFP status change
https://git.kernel.org/mkp/scsi/c/7a1dda943630
[4/8] lpfc: Fix use-after-free in lpfc_unreg_rpi() routine
https://git.kernel.org/mkp/scsi/c/79b20beccea3
[5/8] lpfc: Allow PLOGI retry if previous PLOGI was aborted
https://git.kernel.org/mkp/scsi/c/15af02d8a585
[6/8] lpfc: Fix link down processing to address NULL pointer dereference
https://git.kernel.org/mkp/scsi/c/1854f53ccd88
[7/8] lpfc: Allow fabric node recovery if recovery is in progress before devloss
https://git.kernel.org/mkp/scsi/c/af984c87293b
[8/8] lpfc: Update lpfc version to 14.0.0.3
https://git.kernel.org/mkp/scsi/c/83c3a7beaef7

Applied to 5.16/scsi-queue, thanks!

[1/1] lpfc: Fix mailbox command failure during driver initialization
https://git.kernel.org/mkp/scsi/c/efe1dc571a5b


Applied to 5.16/scsi-queue, thanks!

[01/14] lpfc: Fix list_add corruption in lpfc_drain_txq
https://git.kernel.org/mkp/scsi/c/99154581b05c
[02/14] lpfc: Don't release final kref on Fport node while ABTS outstanding
https://git.kernel.org/mkp/scsi/c/982fc3965d13
[03/14] lpfc: Fix premature rpi release for unsolicited TPLS and LS_RJT
https://git.kernel.org/mkp/scsi/c/20d2279f90ce
[04/14] lpfc: Fix hang on unload due to stuck fport node
https://git.kernel.org/mkp/scsi/c/88f7702984e6
[05/14] lpfc: Fix rediscovery of tape device after issue lip
https://git.kernel.org/mkp/scsi/c/3a874488d2e9
[06/14] lpfc: Don't remove ndlp on PRLI errors in P2P mode
https://git.kernel.org/mkp/scsi/c/a864ee709bc0
[07/14] lpfc: Fix NVME I/O failover to non-optimized path
https://git.kernel.org/mkp/scsi/c/b507357f7917
[08/14] lpfc: Fix FCP I/O flush functionality for TMF routines
https://git.kernel.org/mkp/scsi/c/cd8a36a90bab
[09/14] lpfc: Fix EEH support for NVME I/O
https://git.kernel.org/mkp/scsi/c/25ac2c970be3
[10/14] lpfc: Adjust bytes received vales during cmf timer interval
https://git.kernel.org/mkp/scsi/c/d5ac69b332d8
[11/14] lpfc: Fix I/O block after enabling managed congestion mode
https://git.kernel.org/mkp/scsi/c/3ea998cbf9e7
[12/14] lpfc: Zero CGN stats only during initial driver load and stat reset
https://git.kernel.org/mkp/scsi/c/afd63fa51149
[13/14] lpfc: Improve PBDE checks during SGL processing
https://git.kernel.org/mkp/scsi/c/315b3fd13521
[14/14] lpfc: Update lpfc version to 14.0.0.2
https://git.kernel.org/mkp/scsi/c/0d6b26795bd2

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/195

Title:
  Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.3 for Ubuntu 22.04

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1799550] Re: No way to encrypt at partition level (dual boot)

2021-07-14 Thread Roy Laurie
This is a blocker for me.

I understand, given physical access, how this doesn't fix significant
security problems. Regardless, gov is gov, and I want to move forward
with Ubuntu Server as a platform.

Can we push this up the queue?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1799550

Title:
  No way to encrypt at partition level (dual boot)

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Re: [Bug 1883312] Re: [SRU] NVMe FC Auto-connect is not working for Ubuntu 20.04

2020-08-27 Thread Laurie Barry
Thank you Jeff.

Yeah, at this point I think it sits until you naturally update your
userspace to the latest packages.  We don't have the BW to prioritize doing
anything
special for this one.

*Laurie Barry*
Software Program Manager |  Emulex Connectivity Division
office/soft phone: 978-719-1503 | mobile: 603-930-1771
200 Brickstone Square  |  Andover, MA 01810
laurie.ba...@broadcom.com   |   broadcom.com



On Thu, Aug 27, 2020 at 11:15 AM Jeff Lane <1883...@bugs.launchpad.net>
wrote:

> Hi Laurie,
> This has sat a while, I wanted to check up on it.  In general, we will not
> upgrade userspace packages in a released version of Ubuntu, however, we can
> certainly backport patches to fix bugs.
>
> Alternately, if your customer has an Ubuntu Advantage agreement with us,
> they can file a support case that way and our Sustaining Engineering
> team would take a look and do what is necessary.
>
> I'm happy to continue working on this to push bug fixes, but to do so,
> I'd need to have access to the upstream git tree and a list of patches
> needed to resolve the issue.  From there, I can work on an SRU to the
> version of nvme-cli in Focal.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1883312
>
> Title:
>   [SRU] NVMe FC Auto-connect is not working for Ubuntu 20.04
>
> Status in nvme-cli package in Ubuntu:
>   New
> Status in nvme-cli source package in Focal:
>   New
>
> Bug description:
>   [SUMMARY]
>
>   Auto-connect is not working for Ubuntu 20.04. However manual nvme
>   discover and connect commands works.
>
>   root@ubuntu2004:~# uname -a
>   Linux ubuntu2004 5.4.0-25-generic #29-Ubuntu SMP Fri Apr 17 15:06:57 UTC
> 2020
>   x86_64 x86_64 x86_64 GNU/Linux
>
>   root@ubuntu2004:~# nvme version
>   nvme version 1.9
>
>   root@ubuntu2004:~# cat /sys/module/lpfc/version
>   0:12.6.0.4
>
>   The fix is to update nvme-cli to version 1.10.1 or later.  Groovy
>   currently contains version 1.12-1 so it would seem the easiest would
>   be to update nvme-cli in Focal to the version in Groovy.
>
>
>   [IMPACT]
>
>   Connectivity to NVMe Namespaces are lost after an link bounce or after
>   a server reboot.
>
>   [FIXES]
>
>   Update nvme-cli to 1.10.1
>
>   [TESTING]
>
>   [REGRESSION RISK]
>
>   No
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/nvme-cli/+bug/1883312/+subscriptions
>

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1883312

Title:
  [SRU] NVMe FC Auto-connect is not working for Ubuntu 20.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvme-cli/+bug/1883312/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881821] Re: MAAS does not properly detect max interface speed for interfaces which use multiple phyiscal ports(Cisco UCS B200 M5 blade)

2020-06-22 Thread Laurie Edwards Matthews
Is there a release date for 2.7, or a formal way to request an
escalation for it?   We have an active deploy that we need to turnover
to customer for testing by June 25.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881821

Title:
  MAAS does not properly detect max interface speed for interfaces which
  use multiple phyiscal ports(Cisco UCS B200 M5 blade)

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1881821/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1883312] Re: NVMe FC Auto-connect is not working for Ubuntu 20.04

2020-06-12 Thread laurie barry
We have a large enterprise customer planning to start their validation
of NVMe FC on Ubuntu 20.04 starting in September.

Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1883312

Title:
  NVMe FC Auto-connect is not working for Ubuntu 20.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvme-cli/+bug/1883312/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1883312] [NEW] NVMe FC Auto-connect is not working for Ubuntu 20.04

2020-06-12 Thread laurie barry
Public bug reported:

Jeff,

Please update Ubuntu 20.04 to from nvme-cli 1.9 to nvme-cli 1.10.1.  1.9
autoconnect is not working.

thank you
Laurie
--

Auto-connect is not working for Ubuntu 20.04. However manual nvme discover and
connect commands works.

root@ubuntu2004:~# uname -a
Linux ubuntu2004 5.4.0-25-generic #29-Ubuntu SMP Fri Apr 17 15:06:57 UTC 2020
x86_64 x86_64 x86_64 GNU/Linux

root@ubuntu2004:~# nvme version
nvme version 1.9

root@ubuntu2004:~# cat /sys/module/lpfc/version
0:12.6.0.4

root@ubuntu2004:~# cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/";
SUPPORT_URL="https://help.ubuntu.com/";
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/";
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy";
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal
root@ubuntu2004:~#

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1883312

Title:
  NVMe FC Auto-connect is not working for Ubuntu 20.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1855303] Re: Update Broadcom Emulex lpfc driver in 5.4 to 12.6.0.x from 5.5

2020-03-30 Thread laurie barry
Jeff - is there a date by when we'll see a kernel we can run through our
test group?

thank you and be well
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1855303

Title:
  Update Broadcom Emulex lpfc driver in 5.4 to 12.6.0.x from 5.5

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1858840] Re: Vport creation leads to out of memory and server hung on Ubuntu 18.04.3 (5.0) on Broadcom FC HBAs

2020-02-24 Thread laurie barry
Ignore comment #5, that was intended for a different bug and added in
error.

Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1858840

Title:
  Vport creation leads to out of memory and server hung on Ubuntu
  18.04.3 (5.0) on Broadcom FC HBAs

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1855303] Re: Update Broadcom Emulex lpfc driver in 5.4 to 12.6.0.x from 5.5

2020-02-24 Thread laurie barry
Jeff,

I just realized I updated the wrong bug...here's the list of additional
patches we'll need to include to update 20.04 to the latest upstream for
lpfc.  There's one additional kernel patch we need you to include below
please.

thx
Laurie


Here is the list of additional patch commit ids that would be used to update 
from 12.6.0.2 (end of list in 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1855303) to 12.6.0.3 and 
12.6.0.4 and to add FPIN/mpio support:
scsi: lpfc: Fix incomplete NVME discovery when target
commit 3ec5ec408ca633e17d3483e8b806c9fa447e19cc

scsi: lpfc: Fix: Rework setting of fdmi symbolic node name registration
commit d4e9ddd5ae8f26c521692283c7cbedc7e9881529

scsi: lpfc: Fix missing check for CSF in Write Object Mbox Rsp
commit a0c94c5ef874b214305cca965acc7edc27bb69a6

scsi: lpfc: Fix Fabric hostname registration if system hostname changes
commit 3712967ea7f2d3793ae2a39e9eae2df111d770b5

scsi: lpfc: Fix ras_log via debugfs
commit 25d4132f95c25e6f78a94666a1e067291272888a

scsi: lpfc: Fix disablement of FC-AL on lpe35000 models
commit 265fb8efca11eee1ffe8edd2bc0a9fbf31b6b84e

scsi: lpfc: Fix unmap of dpp bars affecting next driver load
commit b88d705fa037b222ecdd5de867132ae25403fe48

scsi: lpfc: Fix MDS Latency Diagnostics Err-drop rates
commit 78a7872570fbeed44e7362354619b403c6e6de1e

scsi: lpfc: Fix improper flag check for IO type
commit f44ccecf36581a2030313e979127013f9d455d3a

scsi: lpfc: Update lpfc version to 12.6.0.3
commit e627554eedcfac83bb2ba073adf711a13049273a



scsi: lpfc: Fix RQ buffer leakage when no IOCBs available
commit9c75a0dee87b2bad80d381ad9fa8ef90847d3a1d

scsi: lpfc: Fix lpfc_io_buf resource leak in lpfc_get_scsi_buf_s4 error path
commit89cc9dba63c91a6c796dc46342c1d57c82c9b0cd

scsi: lpfc: Fix broken Credit Recovery after driver load
commit692fc8380ca0f9185e75e01a74357d2cf3083743

scsi: lpfc: Fix registration of ELS type support in fdmi
commit0f74f70cb674e3b8712e896863ad85db4d193d46

scsi: lpfc: Fix release of hwq to clear the eq relationship
commit01034e708a353fed29963d084c35d58785a317a6

scsi: lpfc: Fix compiler warning on frame size
commit3cd50eac891db354e945bf9898726e163a19560e

scsi: lpfc: Fix coverity errors in fmdi attribute handling
commit3ad04f4f0ad75ad4e7d886133f673d9fe20aa9c4

scsi: lpfc: Remove handler for obsolete ELS - Read Port Status (RPS)
commit8d9fae72109e9921f52be342007b4c78490ea4fe

scsi: lpfc: Clean up hba max_lun_queue_depth checks
commit20d674a4bf64acf54eadc7215ea32b88a3a7687e

scsi: lpfc: Update lpfc version to 12.6.0.4
commit35817310d9e05e666dbd242750008dad33ed8992

scsi: lpfc: Copyright updates for 12.6.0.4 patches
commitfd6cc30f341fea14bac45bf1c5c9d10702c18a9d

---

This one--> scsi: fc: Update Descriptor definition and add RDF and Link 
Integrity FPINs
commit73ec6d2748dc35db2b32cf3c182a27c4a0837b9b

scsi: lpfc: add RDF registration and Link Integrity FPIN logging
commitdf3fe76658ed47617741819a501e2bd2ae446962

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1855303

Title:
  Update Broadcom Emulex lpfc driver in 5.4 to 12.6.0.x from 5.5

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1858840] Re: Vport creation leads to out of memory and server hung on Ubuntu 18.04.3 (5.0) on Broadcom FC HBAs

2020-02-24 Thread laurie barry
Jeff,

We have a few more patches required to bring out driver up to date with
upstream.  Looks like there's 1 additional kernel patch we'll need you
to integrate before getting us a pointer to a kernel we can then apply
our lpfc driver patches to.  See the additional patches we need to bring
us up to date since we first filed this bug.

thx
Laurie

Here is the list of additional patch commit ids that would be used to
update from 12.6.0.2 (end of list in
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1855303) to
12.6.0.3 and 12.6.0.4 and to add FPIN/mpio support:

scsi: lpfc: Fix incomplete NVME discovery when target
commit 3ec5ec408ca633e17d3483e8b806c9fa447e19cc

scsi: lpfc: Fix: Rework setting of fdmi symbolic node name registration
commit d4e9ddd5ae8f26c521692283c7cbedc7e9881529

scsi: lpfc: Fix missing check for CSF in Write Object Mbox Rsp
commit a0c94c5ef874b214305cca965acc7edc27bb69a6

scsi: lpfc: Fix Fabric hostname registration if system hostname changes
commit 3712967ea7f2d3793ae2a39e9eae2df111d770b5

scsi: lpfc: Fix ras_log via debugfs
commit 25d4132f95c25e6f78a94666a1e067291272888a

scsi: lpfc: Fix disablement of FC-AL on lpe35000 models
commit 265fb8efca11eee1ffe8edd2bc0a9fbf31b6b84e

scsi: lpfc: Fix unmap of dpp bars affecting next driver load
commit b88d705fa037b222ecdd5de867132ae25403fe48

scsi: lpfc: Fix MDS Latency Diagnostics Err-drop rates
commit 78a7872570fbeed44e7362354619b403c6e6de1e

scsi: lpfc: Fix improper flag check for IO type
commit f44ccecf36581a2030313e979127013f9d455d3a

scsi: lpfc: Update lpfc version to 12.6.0.3
commit e627554eedcfac83bb2ba073adf711a13049273a



scsi: lpfc: Fix RQ buffer leakage when no IOCBs available
commit9c75a0dee87b2bad80d381ad9fa8ef90847d3a1d

scsi: lpfc: Fix lpfc_io_buf resource leak in lpfc_get_scsi_buf_s4 error path
commit89cc9dba63c91a6c796dc46342c1d57c82c9b0cd

scsi: lpfc: Fix broken Credit Recovery after driver load
commit692fc8380ca0f9185e75e01a74357d2cf3083743

scsi: lpfc: Fix registration of ELS type support in fdmi
commit0f74f70cb674e3b8712e896863ad85db4d193d46

scsi: lpfc: Fix release of hwq to clear the eq relationship
commit01034e708a353fed29963d084c35d58785a317a6

scsi: lpfc: Fix compiler warning on frame size
commit3cd50eac891db354e945bf9898726e163a19560e

scsi: lpfc: Fix coverity errors in fmdi attribute handling
commit3ad04f4f0ad75ad4e7d886133f673d9fe20aa9c4

scsi: lpfc: Remove handler for obsolete ELS - Read Port Status (RPS)
commit8d9fae72109e9921f52be342007b4c78490ea4fe

scsi: lpfc: Clean up hba max_lun_queue_depth checks
commit20d674a4bf64acf54eadc7215ea32b88a3a7687e

scsi: lpfc: Update lpfc version to 12.6.0.4
commit35817310d9e05e666dbd242750008dad33ed8992

scsi: lpfc: Copyright updates for 12.6.0.4 patches
commitfd6cc30f341fea14bac45bf1c5c9d10702c18a9d

---

This is the one we need you to add --> scsi: fc: Update Descriptor definition 
and add RDF and Link Integrity FPINs
commit73ec6d2748dc35db2b32cf3c182a27c4a0837b9b

scsi: lpfc: add RDF registration and Link Integrity FPIN logging
commitdf3fe76658ed47617741819a501e2bd2ae446962

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1858840

Title:
  Vport creation leads to out of memory and server hung on Ubuntu
  18.04.3 (5.0) on Broadcom FC HBAs

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1858840] [NEW] Vport creation leads to out of memory and server hung on Ubuntu 18.04.3 on Broadcom FC HBAs

2020-01-08 Thread laurie barry
Public bug reported:

Jeff,

We have analyzed this issue and see that there are 3 missing patches
required to fix this problem.  Otherwise vport creation >3 (depending on
the customers configuration) will result in a hang for FC or NVMe/FC
adapters.

Please pull these changes into the next hardware release.

These are the missing commits:
959239d [scsi] scsi: core: avoid pre-allocating big SGL for data
5418f2f [scsi] scsi: core: avoid pre-allocating big SGL for protection 
information
250f285 [nvme] scsi: lib/sg_pool.c: improve APIs for allocating sg pool

Laurie
-
CONFIGURATION DETAILS 
Host OS with Support Pack  - Ubuntu 18.04.3 - HWE ()
Guest/VM OS Details- 
System(s) Under Test   - IBM x3650 M4
Adapter(s) Under Test  - Prism 1-port
IPL Name   - 
Active Profile ID  -
Network Configuration  - 
SAN Configuration  - 
OneCapture file attached   - 


BUG REPRODUCTION DETAILS  
Test Case ID or ATID - 
Reproducibility of Bug - Always
Last Known Working Build   - 
Time to Reproduce Bug  - 5 mins
Steps To Reproduce Bug - 

Create 126 vports on Prism adapter, observe that server goes out of memory and
hung.

root@ubuntu18043:~# free -h
  totalusedfree  shared  buff/cache   available
Mem:15G1.7G 13G1.3M299M 13G
Swap:  2.0G  0B2.0G

root@ubuntu18043:~# free -h
  totalusedfree  shared  buff/cache   available
Mem:15G2.1G 12G1.3M299M 12G
Swap:  2.0G  0B2.0G

root@ubuntu18043:~# free -h
  totalusedfree  shared  buff/cache   available
Mem:15G6.1G8.7G1.5M301M8.7G
Swap:  2.0G  0B2.0G

root@ubuntu18043:~# free -h
  totalusedfree  shared  buff/cache   available
Mem:15G 13G1.4G1.6M303M1.4G
Swap:  2.0G  0B2.0G

root@ubuntu18043:~# free -h
  totalusedfree  shared  buff/cache   available
Mem:15G 14G523M1.7M303M528M
Swap:  2.0G  0B2.0G

root@ubuntu18043:~# free -h
  totalusedfree  shared  buff/cache   available
Mem:15G 14G147M 96K 48M5.0M
Swap:  2.0G 38M2.0G

root@ubuntu18043:~# free -h
  totalusedfree  shared  buff/cache   available
Mem:15G 14G145M 96K 49M3.6M
Swap:  2.0G 38M2.0G

Nov 28 05:37:29 ubuntu18043 kernel: [ 1523.166689] scsi host112: Emulex
LPe36000 32Gb PCIe Fibre Channel Adapter on PCI bus 11 device 00 irq 26 port 0
Logical Link Speed: 8000 Mbps PCI resettable
Nov 28 05:37:29 ubuntu18043 kernel: [ 1523.233464] lpfc :11:00.0:
0:(111):1825 Vport Created.
Nov 28 05:37:29 ubuntu18043 kernel: [ 1523.234071] scsi host1: vport-1:0-110
created via shost1 channel 0
Nov 28 05:37:29 ubuntu18043 kernel: [ 1523.698396] scsi host113: Emulex
LPe36000 32Gb PCIe Fibre Channel Adapter on PCI bus 11 device 00 irq 26 port 0
Logical Link Speed: 8000 Mbps PCI resettable
Nov 28 05:37:30 ubuntu18043 kernel: [ 1523.862582] lpfc :11:00.0:
0:(112):1825 Vport Created.
Nov 28 05:37:30 ubuntu18043 kernel: [ 1523.863142] scsi host1: vport-1:0-111
created via shost1 channel 0
Nov 28 05:37:31 ubuntu18043 kernel: [ 1525.097335] scsi host114: Emulex
LPe36000 32Gb PCIe Fibre Channel Adapter on PCI bus 11 device 00 irq 26 port 0
Logical Link Speed: 8000 Mbps PCI resettable

After creating 111 vports, server ran out of memory.

As server is in hung state, no Crash dump got collected.

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1858840

Title:
  Vport creation leads to out of memory and server hung on Ubuntu
  18.04.3 on Broadcom FC HBAs

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1856340] [NEW] Update 20.0.4 NVMe Core, NVMe FC Transport and nvme-cli for Broadcom Emulex lpfc driver 12.6.0.x dependencies

2019-12-13 Thread laurie barry
Public bug reported:

Jeff,

Here are the kernel and cli updates we discussed in email related to
LaunchPad Bug 1855303 to have a complete Broadcom Emulex FC lpfc
12.6.0.x solution.

Please pull these into Ubuntu 20.04.

Thank you
Laurie

Expected that ubuntu is pulling in kernel v5.4  as a base.  These would
go on top of that.

Additional patches recommended:   (   )
f16583614222 - Sep 27 2019 - nvme-fc: Sync nvme-fc header to FC-NVME-2
53b2b2f59967 - Sep 27 2019 - nvme-fc and nvmet-fc: sync with FC-NVME-2 header 
changes
44fbf3bb1ac3 - Sep 27 2019 - nvme-fc: Set new cmd set indicator in nvme-fc cmnd 
iu
7db394848ece - Sep 27 2019 - nvme-fc: clarify error messages
bcde5f0fc7d3 - Sep 27 2019 - nvme-fc: ensure association_id is cleared 
regardless of a Disconnect LS
48c9e85b2346 - Oct 14 2019 - nvme: resync include/linux/nvme.h with nvmecli
64fab7290dc3 - Oct 28 2019 - nvme: Fix parsing of ANA log page
863fbae929c7 - Nov 14 2019 - nvme_fc: add module to ops template to allow 
module references
c869e494ef8b - Nov 21 2019 - nvme-fc: fix double-free scenarios on hw queues

--
- nvme cli rev 1.9 or later must be installed in their system as well, so that 
auto-connect scripts for systemd are installed.
see https://github.com/linux-nvme/nvme-cli

- nvmetcli rev v0.7 or later should be installed in their system as well
see  http://git.infradead.org/users/hch/nvmetcli.git

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1856340

Title:
  Update 20.0.4 NVMe Core, NVMe FC Transport and nvme-cli for Broadcom
  Emulex lpfc driver 12.6.0.x dependencies

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1855303] Re: Update Broadcom Emulex lpfc driver in Ubuntu 20.0.4 to 12.6.0.x

2019-12-05 Thread laurie barry
There are many many bugs fixed in the proposed update to 19.04.  We are
not intending to supply all the logs for every fix we've already
resolved.

This request was submitted after discussions wiht Jeff Lane.

Marking Confirmed.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1855303

Title:
  Update Broadcom Emulex lpfc driver in Ubuntu 20.0.4 to 12.6.0.x

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1855303] [NEW] Update Broadcom Emulex lpfc driver in Ubuntu 20.0.4 to 12.6.0.x

2019-12-05 Thread laurie barry
Public bug reported:

Jeff,

Here's the list of committed patches on top of your current git tree
that we require for lpfc.  Please let me know what other information you
require.  I'm working with James Smart to obtain the list of additional
patch kernel dependencies needed and will file a separate launchpad bug
for that.

---

Dick Kennedy
Wed, Dec 4, 9:23 AM (1 day ago)
to me

They can skip all the ones that say Merge, they should know that anyway. 
I went all the way back to 12.2.0.3 so that they can see where their tree 
stopped.

eede4970fb6c29f2056d7d016a3764c90e9d8a65 scsi: lpfc: size cpu map by
last cpu id set
4583a4f66b323c6e4d774be2649e83a4e7c7b78c scsi: lpfc: use hdwq assigned
cpu for allocation
3b294c0fb910dc91250abab574e85c9c1957c795 scsi: lpfc: Update lpfc version
to 12.6.0.2
542ddc9b346984cb5bbc2a923d3f3f27ae961ffa scsi: lpfc: revise nvme max
queues to be hdwq count
bc227dde0d8b687aa525d01b0df5556d4d37eca3 scsi: lpfc: Initialize cpu_map
for not present cpus
d480e57809a04a3b9e755c0bdd43e10a9f12 scsi: lpfc: fix inlining of
lpfc_sli4_cleanup_poll_list()
6c6d59e0fe5b86cf273d6d744a6a9768c4ecc756 scsi: lpfc: fix: Coverity:
lpfc_cmpl_els_rsp(): Null pointer dereferences
6f23f8c5c9f1be4eb17c035129c80e49000c18a7 scsi: lpfc: fix: Coverity:
lpfc_get_scsi_buf_s3(): Null pointer dereferences
61951a6d3153b4482404b739be921a7459f8dc12 scsi: lpfc: Fix
lpfc_cpumask_of_node_init()
eea2d396aa57acb3607f79ef04c08c2c5166f3fa scsi: lpfc: Fix a kernel
warning triggered by lpfc_sli4_enable_intr()
765ab6cdac3b681952da0e22184bf6cf1ae41cf8 scsi: lpfc: Fix a kernel
warning triggered by lpfc_get_sgl_per_hdwq()
aff6ab9e7221c1b5d15418419b9797e5badd4aec scsi: lpfc: Update lpfc version
to 12.6.0.1
171f6c41949f6e9d5e09dcac842a10bf8dda8dcc scsi: lpfc: Add enablement of
multiple adapter dumps
dcaa213679387e95a315dca05c57dbb15273703c scsi: lpfc: Change default IRQ
model on AMD architectures
93a4d6f40198dffcca35d9a928c409f9290f1fe0 scsi: lpfc: Add registration
for CPU Offline/Online events
b9da814cd5f5bb93041a6e4dbc9c5149713186ff scsi: lpfc: Clarify FAWNN error
message
69641627c653464db46f3e3d8c438349be055670 scsi: lpfc: Sync with FC-NVMe-2
SLER change to require Conf with SLER
dda5bdf074da3782ff9e785ee50cd2a3f214d498 scsi: lpfc: Fix dynamic fw log
enablement check
2332e6e475b016e2026763f51333f84e2e6c57a3 scsi: lpfc: Fix unexpected
error messages during RSCN handling
6c1e803eac846f886cd35131e6516fc51a8414b9 scsi: lpfc: Fix kernel crash at
lpfc_nvme_info_show during remote port bounce
6bfb1620829825c01e1dcdd63b6a7700352babd9 scsi: lpfc: Fix configuration
of BB credit recovery in service parameters
7cfd5639d99bec0d27af089d0c8c114330e43a72 scsi: lpfc: Fix duplicate
unreg_rpi error in port offline flow
7b10db555257d1248398643a23e10cf36b50d516 scsi: lpfc: Make
lpfc_debugfs_ras_log_data static
c3e5aac3e2f501ad4fcb03fed0e32a6f009faea2 scsi: lpfc: Fix NULL check
before mempool_destroy is not needed
5792a0e81678da41f05bb724ebd20f134604fa15 scsi: lpfc: fix spelling error
in MAGIC_NUMER_xxx
9e2edb41c3d4cab6da0eedcc07ae04758af62ab8 scsi: lpfc: fix build error of
lpfc_debugfs.c for vfree/vmalloc
5314995e370e46ac12d12378544ad4575b6f6672 scsi: lpfc: lpfc_nvmet: Fix Use
plain integer as NULL pointer
2c7fb469024f0da98f4d078fcf570786ec87c384 scsi: lpfc: lpfc_attr: Fix Use
plain integer as NULL pointer
74acec655f560ef721c1e191732af2bcb094b537 scsi: lpfc: Update lpfc version
to 12.6.0.0
b4b3417cf6c8051f9f210cd694e6342fb008795c scsi: lpfc: Add additional
discovery log messages
83c6cb1ae8be6948b5fa43b2450a176dba80688b scsi: lpfc: Add FC-AL support
to lpe32000 models
e7d8595272553c27846946601b72e4c581f9712a scsi: lpfc: Add FA-WWN Async
Event reporting
b1dfa5411ea440f7a5bd65176259ffb3bfbdecf0 scsi: lpfc: Add log macros to
allow print by serverity or verbosity setting
95bfc6d8ad86a76c89f62bb466f740b0fc05a667 scsi: lpfc: Make FW logging
dynamically configurable
8156d378c4cbf8ca19df5d8f0c610ce6923b61e2 scsi: lpfc: Revise interrupt
coalescing for missing scenarios
ea85a20cd54f3b09880f6c08994b059f0d114a11 scsi: lpfc: Remove lock
contention target write path
22770cbabf6bb77a397d9f11d41f97667dd0caa2 scsi: lpfc: Slight fast-path
performance optimizations
f84f8f93f01feb64fdda8dd6c72d1b7dc24ad11d scsi: lpfc: fix coverity error
of dereference after null check
91a52b617cdb8bf6d298892101c061d438b84a19 scsi: lpfc: Fix hardlockup in
lpfc_abort_handler
324e1c402069e8d277d2a2b18ce40bde1265b96a scsi: lpfc: Fix bad ndlp ptr in
xri aborted handling
feff8b3d84d3d9570f893b4d83e5eab6693d6a52 scsi: lpfc: Fix SLI3 hba in
loop mode not discovering devices
27f3efd637ce4859a44a7ca730c72392b4111c26 scsi: lpfc: Fix lockdep errors
in sli_ringtx_put
0a5ce731977da1cc6d8d6d7df01c2e53ebb81796 scsi: lpfc: Fix reporting of
read-only fw error errors
97a9ed3b3ae8eae27a231129c0939151879d5f2b scsi: lpfc: fix lpfc_nvmet_mrq
to be bound by hdw queue count
f7cb0d0945ebc9879aff72cf7b3342fd1040ffaa scsi: lpfc: Make function
lpfc_defer_pt2pt_acc static
5f9d423a725a86505ba42ed

[Bug 1827330] Re: [block layer] please pull below upstream patch to Ubuntu 19.04 kernel

2019-05-21 Thread laurie barry
If you provide us a kernel we can test it here or we can ship HBA's for
your test environment or both.

Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1827330

Title:
  [block layer] please pull below upstream patch to Ubuntu 19.04 kernel

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1808437] Re: Unable to obtain an Emulex LPe35000 series adapter firmware dump in 18.04 - impacts end customer supportability

2019-04-05 Thread laurie barry
Closing as fixed in 19.04 and 18.04.3 HWE.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1808437

Title:
  Unable to obtain an Emulex LPe35000 series adapter firmware dump in
  18.04 - impacts end customer supportability

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1752182] Re: [Feature]Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug fixes

2019-02-14 Thread laurie barry
Verified by Broadcom Emulex.  Thank you
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1752182

Title:
  [Feature]Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support
  and bug fixes

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1808437] Re: Unable to obtain an Emulex LPe35000 series adapter firmware dump in 18.04 - impacts end customer supportability

2019-01-31 Thread laurie barry
Joe Salisbury,

Can you please help us get this critical fix into the next 19.04 update?

Thank you
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1808437

Title:
  Unable to obtain an Emulex LPe35000 series adapter firmware dump in
  18.04 - impacts end customer supportability

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1808437] Re: Unable to obtain an Emulex LPe35000 series adapter firmware dump in 18.04 - impacts end customer supportability

2019-01-31 Thread laurie barry
Also, if possible and more importantly get this into the existing 18.04
since that's an LTS kernel.

thx
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1808437

Title:
  Unable to obtain an Emulex LPe35000 series adapter firmware dump in
  18.04 - impacts end customer supportability

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1808437] [NEW] Unable to obtain an Emulex LPe35000 series adapter firmware dump in 18.04 - impacts end customer supportability

2018-12-13 Thread laurie barry
Public bug reported:

We are unable to obtain a LPe35000 adapter firmware dump in Ubuntu
18.04.  This prevents our debugging customer firmware related issues.
This patch was missed during upstream and inbox integration.

Our testing for months appeared to have succeeded due to invalid test
case.   Test case have been corrected to validate fw dump was correctly
provided.

This fix is very straightforward.

Reference upstream submit:
James Smart 2018-12-10 19:43:42 PST
The patch has been pushed upstream:
https://marc.info/?l=linux-scsi&m=154449943301058&w=2

Commit is pending from the upstream maintainer.

---
 Management support for IF_TYPE=6

 Symptoms: Firmware dump, loopback, etc are not working on Prism

 Cause: The driver has a strict check for SLI_INTF_IF_TYPE_2

 Fix: Extend the management support for SLI_INTF_IF_TYPE_6

 Unit Testing: Ran Onekat and captured firmware dump on Prism

** Affects: linux-aws (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1808437

Title:
  Unable to obtain an Emulex LPe35000 series adapter firmware dump in
  18.04 - impacts end customer supportability

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1783438] Re: Release Upgrader unable to determine upgrade

2018-07-26 Thread Laurie
I do have an NVidia GPU, and am using the drivers from
https://launchpad.net/~graphics-drivers/+archive/ubuntu/ppa. However, I
noticed on a couple of the other similar bugs that have been reported,
this repo can also provide packages that prevent the upgrade from
working.

So, I'm trying to purge that repo and downgrade the packages, but when I
run `sudo add-apt-repository ppa:graphics-drivers/ppa` I get an error
that it cannot find the package list for this repo, and as such it
refuses to remove it and make the necessary changes. I tried adding the
repo again, and then running the same command again to purge it, but
same issue.

I just want to get this sorted out. What do I need to do to get this to
work properly, short of having to wipe my entire machine, do a fresh
install, and spend a week or more restoring my settings and data from
backups?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1783438

Title:
  Release Upgrader unable to determine upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1783438/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1783438] [NEW] Release Upgrader unable to determine upgrade

2018-07-24 Thread Laurie
Public bug reported:

I previously submitted https://bugs.launchpad.net/ubuntu/+source/ubuntu-
release-upgrader/+bug/1782849 and was advised by https://launchpad.net
/~brian-murray that bug was a duplicate of
https://bugs.launchpad.net/bugs/1069133 and that the reason I was
experiencing the issue was because I was using the oibaf PPA that
includes drivers that have higher version numbers than those provided by
the upgrade.

I purged the oibaf PPA from my system and downgraded drivers, however
I'm still experiencing the same problem. The upgrade won't work because
it's unable to determine the upgrade. Can someone please let me know
exactly which repos I need to re-enable and purge so I can get this
update sorted. Thanks in advance.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: ubuntu-release-upgrader-core 1:17.10.11
ProcVersionSignature: Ubuntu 4.13.0-46.51-generic 4.13.16
Uname: Linux 4.13.0-46-generic x86_64
NonfreeKernelModules: talpa_vfshook talpa_pedconnector talpa_pedevice 
talpa_vcdevice talpa_core talpa_linux talpa_syscallhook nvidia_uvm nvidia_drm 
nvidia_modeset nvidia
ApportVersion: 2.20.7-0ubuntu3.9
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: KDE
Date: Tue Jul 24 20:06:26 2018
InstallationDate: Installed on 2017-11-08 (258 days ago)
InstallationMedia: Kubuntu 17.10 "Artful Aardvark" - Release amd64 (20171017.1)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to artful on 2018-07-25 (0 days ago)
VarLogDistupgradeTermlog:

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful artful2bionic dist-upgrade

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1783438

Title:
  Release Upgrader unable to determine upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1783438/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1782849] Re: Release Upgrader unable to determine upgrade 17.10 -> 18.04

2018-07-23 Thread Laurie
Do I need to remove any of my installed packages in order to get this
upgrade to work correctly? If so, which ones do I need to remove, and
will I be able to safely reinstall them after the upgrade? Also, what is
the best way to get a list of packages/repos I currently have installed
as a backup, so that I can more easily reinstall things once the
upgrade's been completed successfully?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1782849

Title:
  Release Upgrader unable to determine upgrade 17.10 -> 18.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1782849/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1782849] [NEW] Release Upgrader unable to determine upgrade 17.10 -> 18.04

2018-07-20 Thread Laurie
Public bug reported:

I tried running the upgrade, and it failed with this error. I saw the
other bug https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-
upgrader/+bug/1767436 that seemed to be a related issue, however I went
back and manually disabled any third-party repos I had setup in the
sources list and tried again, to no avail. I got the same exact error
after disabling those repos.

I was also previously using the
https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers but I used
`ppa-purge` to remove this before attempting the upgrade, as I've heard
that it can cause a broken machine if not removed first.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: ubuntu-release-upgrader-core 1:17.10.11
ProcVersionSignature: Ubuntu 4.13.0-46.51-generic 4.13.16
Uname: Linux 4.13.0-46-generic x86_64
NonfreeKernelModules: talpa_vfshook talpa_pedconnector talpa_pedevice 
talpa_vcdevice talpa_core talpa_linux talpa_syscallhook nvidia_uvm nvidia_drm 
nvidia_modeset nvidia
ApportVersion: 2.20.7-0ubuntu3.9
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: KDE
Date: Fri Jul 20 17:20:23 2018
InstallationDate: Installed on 2017-11-08 (254 days ago)
InstallationMedia: Kubuntu 17.10 "Artful Aardvark" - Release amd64 (20171017.1)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to artful on 2018-07-20 (0 days ago)

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful dist-upgrade

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1782849

Title:
  Release Upgrader unable to determine upgrade 17.10 -> 18.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1782849/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1691817

Title:
  ubuntu 17.04 lpfc fix.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1691817

Title:
  ubuntu 17.04 lpfc fix.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-06-21 Thread laurie barry
Kleber,

Sorry to be obtuse, but where exactly is the download for the latest
update kernel to 18.04?  My test team and I can't seem to locate it.

thank you
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-06-20 Thread laurie barry
Ok thank you for clarifying.  I've asked Vinay to verify it in the
kernel.

Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-06-18 Thread laurie barry
Is Canonical waiting for additional testing from Broadcom Emulex?

Please clarify; I thought we already validated the patch in comment #20?

thx
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-06-05 Thread laurie barry
Most excellent, thank you Vinay.

Joseph - and thank you for your patience.  Please include in your next
errata kernel for 18.04.  Do you have an ETA on when that might release
so that I can inform my team.

thank you again
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-06-04 Thread laurie barry
Yes, I've asked Vinay to test it again.

thank you
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-05-30 Thread laurie barry
I've asked the maintainer to engage asap on this bug.

Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-05-29 Thread laurie barry
Please let us know when there's a revised kernel we can verify.

thx
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-05-25 Thread laurie barry
Joseph,

Please minimally pull in patches 4/6 and 5/6 from the following upstream
submit to address this regression.  Apologies for this ongoing hassle.

The 12.0.0.4 patch set was pushed upstream. The patches 4 and 5 are the minimum 
that should be applied to fix this issue.
[PATCH 4/6] lpfc: Fix 16gb hbas failing cq create.
[PATCH 5/6] lpfc: Fix port initialization failure.

Granted if pulling the 2 patches, we recommend all in the patch set.

The url's for the upstream posting:

[PATCH 0/6] lpfc updates for 12.0.0.4
https://marc.info/?l=linux-scsi&m=152722135315362&w=2

[PATCH 1/6] lpfc: Fix MDS diagnostics failure (Rx < Tx)
https://marc.info/?l=linux-scsi&m=152722135515365&w=2

[PATCH 2/6] lpfc: correct oversubscription of nvme io requests for an adapter
https://marc.info/?l=linux-scsi&m=152722135715367&w=2

[PATCH 3/6] lpfc: Fix crash in blk_mq layer when executing modprobe -r lpfc
https://marc.info/?l=linux-scsi&m=152722135915370&w=2

[PATCH 4/6] lpfc: Fix 16gb hbas failing cq create.
https://marc.info/?l=linux-scsi&m=152722136015371&w=2

[PATCH 5/6] lpfc: Fix port initialization failure.
https://marc.info/?l=linux-scsi&m=152722136315375&w=2

[PATCH 6/6] lpfc: update driver version to 12.0.0.4
https://marc.info/?l=linux-scsi&m=152722136315376&w=2

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-05-23 Thread laurie barry
We apparently have a bug in our patch for this regression and have a fix
in hand that we are verifying internally.  Once we push that fix
upstream and have a commit id, we will update this bug.

thank you
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-05-15 Thread laurie barry
Canonical Team,

Not sure why - but this kernel didn't appear to solve the issue.

Laurie

[reply] [-] Comment 8 Vinay Kumar Laghavarapu 2018-05-08 01:45:19 PDT
Hi Laurie,

We have installed Ubuntu 18.04 OS with latest patches provided in comment7. But
still LPe16002-M6 adapter is not displayed in OS.

OS used : Ubuntu 18.04 LTS (4.15.0-20-generic)

lpfc driver contained :

root@ubuntu18-04:~# cat /sys/module/lpfc/version
0:12.0.0.0

Installed the following .deb packages :

root@ubuntu18-04:~# ls
linux-image-unsigned-4.15.0-20-generic_4.15.0-20.21_lp1768103_amd64.deb
linux-modules-4.15.0-20-generic_4.15.0-20.21_lp1768103_amd64.deb
linux-modules-extra-4.15.0-20-generic_4.15.0-20.21_lp1768103_amd64.deb

root@ubuntu18-04:~# lspci | grep -i emu
04:00.0 Ethernet controller: Emulex Corporation OneConnect NIC (Skyhawk) (rev
10)
04:00.1 Ethernet controller: Emulex Corporation OneConnect NIC (Skyhawk) (rev
10)
06:00.1 Co-processor: Emulex Corporation ServerView iRMC HTI
81:00.0 Fibre Channel: Emulex Corporation Lancer Gen6: LPe32000 Fibre Channel
Host Adapter (rev 01)
81:00.1 Fibre Channel: Emulex Corporation Lancer Gen6: LPe32000 Fibre Channel
Host Adapter (rev 01)
82:00.0 Fibre Channel: Emulex Corporation Lancer-X: LightPulse Fibre Channel
Host Adapter
82:00.1 Fibre Channel: Emulex Corporation Lancer-X: LightPulse Fibre Channel
Host Adapter
83:00.0 Fibre Channel: Emulex Corporation Lancer-X: LightPulse Fibre Channel
Host Adapter (rev 10)
83:00.1 Fibre Channel: Emulex Corporation Lancer-X: LightPulse Fibre Channel
Host Adapter (rev 10)
root@ubuntu18-04:~#

You can access the server, SSH IP : 10.123.175.150 (root/password)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-05-04 Thread laurie barry
Yes, we will test it out.

Thank you
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] Re: Lancer A0 Asic HBA's won't boot with 18.04

2018-05-01 Thread laurie barry
The original reporter didn't provide logs...logs would not help.  Here's
the original text of this issue as reported by NetApp test engineer.

Problem report from NetApp:

We’re testing Ubuntu 18.04 before its upcoming release this month and have
found that the most recent kernel that they have pulled in (4.15.0-15-generic)
contains the lpfc driver 12.0.0.0.  This driver version seems to have lost
support for the LPe16002-M6 adapter but it DOES have support for the
LPe16002B-M6 adapter.


I’m assuming that you guys are major contributors to your own lpfc driver, so
I’m hoping you can shed some light on this one before I have to resort to going
out to the community.


The previous lpfc version, 11.4.0.1, that was in an Ubuntu 18.04 beta, worked
fine on the “non-B” card.


Matt Schulte

HSG QA Engineer

Interoperability

E-Series Linux

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

** Changed in: linux (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1768103] [NEW] Lancer A0 Asic HBA's won't boot with 18.04

2018-04-30 Thread laurie barry
Public bug reported:


We have discovered that an early asic model (A0) of our 16/32GB HBA's doesn't 
boot with the lpfc driver in Ubuntu 18.04.   

After further review and discussion, this has been deemed a low risk
issue since early A0 HBA's were only ever shipped to OEMs for test
purposes.  These cards were never shipped to end customers.   We have
been working to replace those cards whenever we discover them.

We'll leave it up to Canonical to decide whether they want to pull this
in this single patch to an 18.04 subsequent update.

Symptom: Ubuntu 18.04 with lpfc driver 12.0.0.0 they can't see LPe16002-M6 but 
can see LPe16002B-M6
Resolution: new lpfc driver patch update. 

scsi: lpfc: Fix WQ/CQ creation for older asic's.
https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git/commit/?h=4.18/scsi-queue&id=83fae8ca4ae09403bfb99542f1aaa292c06cb111

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1768103

Title:
  Lancer A0 Asic HBA's won't boot with 18.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1752182] Re: [Feature]Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug fixes

2018-03-16 Thread laurie barry
Seth,

Thank you for you note, this patch was updated by the upstream SCSI
maintainer after we submitted it.  We are agree with this modification,
please pull it in.

thank you
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1752182

Title:
  [Feature]Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support
  and bug fixes

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Re: [Bug 1752182] Re: Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug fixes

2018-02-28 Thread Laurie Barry
Excellent!


*Laurie Barry*
Software Program Manager |  Emulex Connectivity Division
office/soft phone: 978-719-1503 | mobile: 603-930-1771
200 Brickstone Square  |  Andover, MA 01810
laurie.ba...@broadcom.com   |   broadcom.com



On Wed, Feb 28, 2018 at 11:37 AM, Jeff Lane 
wrote:

> Moved this to a kernel bug as these are driver patches that go into the
> kernel, not the open-iscsi package.
>
> ** Package changed: open-iscsi (Ubuntu) => linux (Ubuntu)
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1752182
>
> Title:
>   Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug
>   fixes
>
> Status in linux package in Ubuntu:
>   New
>
> Bug description:
>   This is a placeholder bugzilla that will list all commit ids needed
>   for Broadcom Emulex FC 32/64GB new hardware support and all bug fixes
>   available upstream.
>
>   Note the lpfc FC driver commit list will include NVMe patches for ease
>   of maintainability vs. upstream but we ask that you not build NVMe FC
>   since we do not intend to support NVMe FC on 18.04 (4.15 kernel) at
>   this time due to all of the unmet upper layer dependencies.
>
>   Laurie Barry
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/
> 1752182/+subscriptions
>


** Attachment added: "CFF84119-6FF3-4ACC-8991-75BE2B4367D6[2].png"
   
https://bugs.launchpad.net/bugs/1752182/+attachment/5065361/+files/CFF84119-6FF3-4ACC-8991-75BE2B4367D6%5B2%5D.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1752182

Title:
  Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug
  fixes

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1752182] [NEW] Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug fixes

2018-02-27 Thread laurie barry
Public bug reported:

This is a placeholder bugzilla that will list all commit ids needed for
Broadcom Emulex FC 32/64GB new hardware support and all bug fixes
available upstream.

Note the lpfc FC driver commit list will include NVMe patches for ease
of maintainability vs. upstream but we ask that you not build NVMe FC
since we do not intend to support NVMe FC on 18.04 (4.15 kernel) at this
time due to all of the unmet upper layer dependencies.

Laurie Barry

** Affects: open-iscsi (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1752182

Title:
  Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug
  fixes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1752182/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1729883] [NEW] package mysql-server-5.7 (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2017-11-03 Thread Laurie
Public bug reported:

Running 17.10 (Artful) upgraded from 17.04 (Zesty). I was trying to
correct an issue where I was unable to run mysql and was receiving the
following error:

`ERROR 2002 (HY000): Can't connect to local MySQL server through socket
'/tmp/mysql.sock' (2)`

Tried uninstalling and reinstalling, didn't clear the error and now I'm
getting errors about broken packages. Need this fixed, and need to be
able to run mysql. For some reason, MariaDB was a dependency, but now
that just seems to have messed everything up.

ProblemType: Package
DistroRelease: Ubuntu 17.10
Package: mysql-server-5.7 (not installed)
ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
Uname: Linux 4.13.0-16-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.7-0ubuntu3.1
Architecture: amd64
Date: Fri Nov  3 11:11:29 2017
ErrorMessage: subprocess new pre-installation script returned error exit status 
1
InstallationDate: Installed on 2017-07-26 (100 days ago)
InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Release amd64 (20170412)
Python3Details: /usr/bin/python3.6, Python 3.6.3, python3-minimal, 
3.6.3-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.14, python-minimal, 
2.7.14-2ubuntu1
RelatedPackageVersions:
 dpkg 1.18.24ubuntu1
 apt  1.5
SourcePackage: mysql-5.7
Title: package mysql-server-5.7 (not installed) failed to install/upgrade: 
subprocess new pre-installation script returned error exit status 1
UpgradeStatus: Upgraded to artful on 2017-10-20 (14 days ago)
mtime.conffile..etc.apparmor.d.usr.sbin.mysqld: 2017-07-30T08:15:48
mtime.conffile..etc.init.d.mysql: 2017-07-30T08:15:48
mtime.conffile..etc.logrotate.d.mysql-server: 2017-07-30T08:15:48
mtime.conffile..etc.mysql.debian-start: 2017-07-30T08:15:48
mtime.conffile..etc.mysql.mysql.cnf: 2017-11-03T10:55:24.371511

** Affects: mysql-5.7 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package artful

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1729883

Title:
  package mysql-server-5.7 (not installed) failed to install/upgrade:
  subprocess new pre-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.7/+bug/1729883/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1712181] Re: Error installing OBS studio on AMD Ubuntu 17.4

2017-08-22 Thread Laurie
I'm having this same exact issue on my end. Ubuntu Gnome 17.04, AMD
Ryzen 5. Let me know if you need more information from my side.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1712181

Title:
  Error installing OBS studio on AMD Ubuntu 17.4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/obs-studio/+bug/1712181/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1698682] [NEW] package python-lazy-object-proxy 1.2.2-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-06-18 Thread Laurie
Public bug reported:

Trying to install Spyder3 after installing Anaconda

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: python-lazy-object-proxy 1.2.2-1
ProcVersionSignature: Ubuntu 4.10.0-22.24-generic 4.10.15
Uname: Linux 4.10.0-22-generic x86_64
ApportVersion: 2.20.4-0ubuntu4.1
Architecture: amd64
Date: Sun Jun 18 15:36:16 2017
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2017-06-15 (3 days ago)
InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Release amd64 (20170412)
RelatedPackageVersions:
 dpkg 1.18.10ubuntu2
 apt  1.4
SourcePackage: lazy-object-proxy
Title: package python-lazy-object-proxy 1.2.2-1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: lazy-object-proxy (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package zesty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1698682

Title:
  package python-lazy-object-proxy 1.2.2-1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lazy-object-proxy/+bug/1698682/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1698683] [NEW] package python-isort 4.2.5+ds1-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-06-18 Thread Laurie
Public bug reported:

Trying to install Spyder3 after installing Anaconda

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: python-isort 4.2.5+ds1-2
ProcVersionSignature: Ubuntu 4.10.0-22.24-generic 4.10.15
Uname: Linux 4.10.0-22-generic x86_64
ApportVersion: 2.20.4-0ubuntu4.1
Architecture: amd64
Date: Sun Jun 18 15:36:15 2017
Dependencies:
 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2017-06-15 (3 days ago)
InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Release amd64 (20170412)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.10ubuntu2
 apt  1.4
SourcePackage: isort
Title: package python-isort 4.2.5+ds1-2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: isort (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package zesty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1698683

Title:
  package python-isort 4.2.5+ds1-2 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1698681] [NEW] package python-wrapt 1.9.0-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-06-18 Thread Laurie
Public bug reported:

Trying to install Spyder3 after installing Anaconda - 1 of 3

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: python-wrapt 1.9.0-2
ProcVersionSignature: Ubuntu 4.10.0-22.24-generic 4.10.15
Uname: Linux 4.10.0-22-generic x86_64
ApportVersion: 2.20.4-0ubuntu4.1
Architecture: amd64
Date: Sun Jun 18 15:36:14 2017
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2017-06-15 (3 days ago)
InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Release amd64 (20170412)
RelatedPackageVersions:
 dpkg 1.18.10ubuntu2
 apt  1.4
SourcePackage: python-wrapt
Title: package python-wrapt 1.9.0-2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: python-wrapt (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package zesty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1698681

Title:
  package python-wrapt 1.9.0-2 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-wrapt/+bug/1698681/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1691817

Title:
  ubuntu 17.04 lpfc fix.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1688864] [NEW] package python-dnspython 1.15.0-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-05-06 Thread Laurie
Public bug reported:

None of my Python stuff is working correctly, and it is affecting other
applications running as well. I just uninstalled Python 3.6, as it
seemed to be causing errors, however now I have more errors. Need this
fixed, sooner rather than later.

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: python-dnspython 1.15.0-1
ProcVersionSignature: Ubuntu 4.10.0-20.22-generic 4.10.8
Uname: Linux 4.10.0-20-generic x86_64
ApportVersion: 2.20.4-0ubuntu4
Architecture: amd64
Date: Sat May  6 14:18:57 2017
Dependencies:
 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2017-04-24 (11 days ago)
InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Release amd64 (20170412)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.10ubuntu2
 apt  1.4
SourcePackage: dnspython
Title: package python-dnspython 1.15.0-1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: dnspython (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check zesty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1688864

Title:
  package python-dnspython 1.15.0-1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1688270] [NEW] package python-gpgme 0.3-1.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-05-04 Thread Laurie
Public bug reported:

This error occurred when trying to install nautilus-dropbox, as the
standard version of Dropbox stopped working when I upgraded to Ubuntu
Gnome 17.04.

Additionally, I think the issue is related to python3.6 refusing to
install correctly, due to an import error.

I need both Python 3.6 and Dropbox working on this system asap.

Copied the output from terminal:

(general) laurie@laurie-p6823w:~$ sudo apt install nautilus-dropbox
[sudo] password for laurie: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following additional packages will be installed:
  python-gpgme
The following packages will be REMOVED:
  dropbox
The following NEW packages will be installed:
  nautilus-dropbox python-gpgme
0 upgraded, 2 newly installed, 1 to remove and 0 not upgraded.
2 not fully installed or removed.
Need to get 111 kB of archives.
After this operation, 24.6 kB disk space will be freed.
Do you want to continue? [Y/n] y
Get:1 http://us.archive.ubuntu.com/ubuntu zesty/multiverse amd64 
nautilus-dropbox amd64 2015.10.28-1ubuntu1 [86.5 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu zesty/main amd64 python-gpgme amd64 
0.3-1.2 [24.6 kB]
Fetched 111 kB in 0s (588 kB/s)
(Reading database ... 272300 files and directories currently installed.)
Removing dropbox (2015.10.28) ...
Selecting previously unselected package nautilus-dropbox.
(Reading database ... 272275 files and directories currently installed.)
Preparing to unpack .../nautilus-dropbox_2015.10.28-1ubuntu1_amd64.deb ...
Unpacking nautilus-dropbox (2015.10.28-1ubuntu1) ...
Selecting previously unselected package python-gpgme.
Preparing to unpack .../python-gpgme_0.3-1.2_amd64.deb ...
Unpacking python-gpgme (0.3-1.2) ...
Setting up nautilus-dropbox (2015.10.28-1ubuntu1) ...
Please restart all running instances of Nautilus, or you will experience 
problems. i.e. nautilus --quit
Dropbox installation successfully completed! You can start Dropbox from your 
applications menu.
Processing triggers for mime-support (3.60ubuntu1) ...
Setting up python-gpgme (0.3-1.2) ...
Traceback (most recent call last):
  File "/usr/bin/pycompile", line 35, in 
from debpython.version import SUPPORTED, debsorted, vrepr, \
  File "/usr/share/python/debpython/version.py", line 24, in 
from ConfigParser import SafeConfigParser
ImportError: No module named 'ConfigParser'
dpkg: error processing package python-gpgme (--configure):
 subprocess installed post-installation script returned error exit status 1
Processing triggers for desktop-file-utils (0.23-1ubuntu2) ...
Setting up python3.6-minimal (3.6.1-1) ...
Traceback (most recent call last):
  File "/usr/lib/python3.6/py_compile.py", line 6, in 
import importlib._bootstrap_external
  File "/usr/lib/python3.6/importlib/__init__.py", line 57, in 
import types
  File "/usr/lib/python3.6/types.py", line 171, in 
import functools as _functools
  File "/usr/lib/python3.6/functools.py", line 23, in 
from weakref import WeakKeyDictionary
  File "/usr/lib/python3.6/weakref.py", line 12, in 
from _weakref import (
ImportError: cannot import name '_remove_dead_weakref'
dpkg: error processing package python3.6-minimal (--configure):
 subprocess installed post-installation script returned error exit status 1
Processing triggers for man-db (2.7.6.1-2) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
Processing triggers for hicolor-icon-theme (0.15-1) ...
dpkg: dependency problems prevent configuration of python3.6:
 python3.6 depends on python3.6-minimal (= 3.6.1-1); however:
  Package python3.6-minimal is not configured yet.

dpkg: error processing package python3.6 (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup 
error from a previous failure.
  Errors were encountered while processing:
 python-gpgme
 python3.6-minimal
 python3.6
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: python-gpgme 0.3-1.2
ProcVersionSignature: Ubuntu 4.10.0-20.22-generic 4.10.8
Uname: Linux 4.10.0-20-generic x86_64
ApportVersion: 2.20.4-0ubuntu4
AptOrdering:
 dropbox:amd64: Remove
 nautilus-dropbox:amd64: Install
 python-gpgme:amd64: Install
 NULL: ConfigurePending
Architecture: amd64
Date: Thu May  4 09:40:21 2017
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2017-04-24 (9 days ago)
InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Release amd64 (20170412)
RelatedPackageVersions:
 dpkg 1.18.10ubuntu2
 apt  1.4
SourcePackage: pygpgme
Title: package python-gpgme 0.3-1.2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fr

[Bug 1685665] Re: Downloads do not complete

2017-04-27 Thread Laurie
Updated chromium-browser to 58.0.3029.81 - rebooted - downloads are now
working as expected.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1685665

Title:
  Downloads do not complete

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1685665/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1686482] [NEW] package python3.6-minimal 3.6.1-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-04-26 Thread Laurie
Public bug reported:

Just upgraded my system the other day from 16.04.2 LTS to 17.04.

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: python3.6-minimal 3.6.1-1
ProcVersionSignature: Ubuntu 4.10.0-20.22-generic 4.10.8
Uname: Linux 4.10.0-20-generic x86_64
ApportVersion: 2.20.4-0ubuntu4
Architecture: amd64
Date: Wed Apr 26 13:49:00 2017
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2017-04-24 (1 days ago)
InstallationMedia: Ubuntu-GNOME 17.04 "Zesty Zapus" - Release amd64 (20170412)
RelatedPackageVersions:
 dpkg 1.18.10ubuntu2
 apt  1.4
SourcePackage: python3.6
Title: package python3.6-minimal 3.6.1-1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: python3.6 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package zesty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1686482

Title:
  package python3.6-minimal 3.6.1-1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.6/+bug/1686482/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1685665] [NEW] Downloads do not complete

2017-04-23 Thread Laurie
Public bug reported:

File download from website does not show any activity. When closing browser a 
dialog popup reports that downloads are in progress. Cancel browser close 
nothing happens when left for long period.
No files shown in download folder.
 
Same files download using firefox and using previous versions of Chromium on 
Ubuntu 16.10

Ubuntu version 17.04
Running on Dell XPS-12 (Flipscreen and touchpad)
Chromium Version 57.0.2987.98 Built on Ubuntu , running on Ubuntu 17.04 (64-bit)

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1685665

Title:
  Downloads do not complete

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1685665/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1685665] Re: Downloads do not complete

2017-04-23 Thread Laurie
Dell XPS-12 has 8GB memory, and 13GB free disk space

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1685665

Title:
  Downloads do not complete

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1685665/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1676852] Re: package update-notifier-common 3.168.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-03-30 Thread Laurie
I was just checking into where the symlinks are pointing, and at least
according to what I see in `/usr/bin/` the symlink for `python` is
pointing to Python 2.7, and the one for `python3` is pointing to Python
3.5. But this doesn't make sense, as when I run either of those
commands, they both execute Python 3.6.

However, I also found a symlink in `/usr/local/bin` for `python3` and
that link is pointing to Python 3.6. There is no symlink in
`ust/local/bin` for `python`. Should I remove or change this symlink? If
so, how do I go about doing that?

As I said, I tried the `york0` dist first, and removed it, replaced with
the Deadsnakes dist which works, but now we have this issue. The `york0`
one came from
https://blueprints.launchpad.net/~jonathonf/+archive/ubuntu/python-3.6/+sourcepub/7461521
/+listing-archive-extra

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1676852

Title:
  package update-notifier-common 3.168.4 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/1676852/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1676852] Re: package update-notifier-common 3.168.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-03-28 Thread Laurie
I tried installing that york0 version of Python 3.6 first, but when it
didn't work, I removed it and reinstalled from
https://launchpad.net/~fkrull/+archive/ubuntu/deadsnakes.

Judging from the DpkgHistoryLog.txt, it seems like that york0 release
messed things up.

How do I go about fixing the system so that the 'python3' on the path
points to the system Python 3.5? Is it a symlink that needs changing, or
more to it than that? Also, if I do that, will I still be able to use
Python 3.6?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1676852

Title:
  package update-notifier-common 3.168.4 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/1676852/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1676852] [NEW] package update-notifier-common 3.168.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-03-28 Thread Laurie
Public bug reported:

I've been getting this error since installing Python 3.6, and when
flashinstaller tries to update. It keeps complaining of a missing module
called 'debian.deb822'


Where do I get this mythical module, and where should it be installed,
so I can get my system back to normal?

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: update-notifier-common 3.168.4
ProcVersionSignature: Ubuntu 4.4.0-70.91-generic 4.4.49
Uname: Linux 4.4.0-70-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
Date: Tue Mar 28 07:45:00 2017
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2015-08-11 (595 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.20
SourcePackage: update-notifier
Title: package update-notifier-common 3.168.4 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: update-notifier (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check package-from-proposed xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1676852

Title:
  package update-notifier-common 3.168.4 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/1676852/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1675751] [NEW] package update-notifier-common 3.168.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-03-24 Thread Laurie
Public bug reported:

I've been having issues with the package-update-notifier-common
reporting it isn't configured since flashupdateinstaller tried to
upgrade a couple of weeks ago. It's also complaining that there's no
module named 'debian'

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: update-notifier-common 3.168.3
ProcVersionSignature: Ubuntu 4.4.0-70.91-generic 4.4.49
Uname: Linux 4.4.0-70-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
Date: Fri Mar 24 07:56:30 2017
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2015-08-11 (591 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.20
SourcePackage: update-notifier
Title: package update-notifier-common 3.168.3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: update-notifier (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1675751

Title:
  package update-notifier-common 3.168.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/1675751/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1673066] [NEW] package update-notifier-common 3.168.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-03-15 Thread Laurie
Public bug reported:

I was installing updates for adapta theme and Flashplayer installer this
morning when the error occurred. I'm running Ubuntu Gnome 16.04.2 LTS. I
expected the updates to install without incident, however instead, I
received this error.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: update-notifier-common 3.168.3
ProcVersionSignature: Ubuntu 4.4.0-67.88-generic 4.4.49
Uname: Linux 4.4.0-67-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
AptOrdering:
 adapta-gtk-theme: Install
 flashplugin-installer: Install
 adapta-gtk-theme: Configure
 flashplugin-installer: Configure
 NULL: ConfigurePending
Architecture: amd64
Date: Wed Mar 15 08:08:10 2017
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2015-08-11 (582 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.20
SourcePackage: update-notifier
Title: package update-notifier-common 3.168.3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: update-notifier (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1673066

Title:
  package update-notifier-common 3.168.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/1673066/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1645128] [NEW] Sounds stops working after a while

2016-11-27 Thread Laurie
Public bug reported:

After a while, sound stops working for an application and there is only
static noises, other applications playing sound at the same time are
fine. Problem with for example steam games. Tried many things including
removing pulseaudio etc.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: pulseaudio 1:4.0-0ubuntu11.1
ProcVersionSignature: Ubuntu 3.16.0-38.52~14.04.1-generic 3.16.7-ckt10
Uname: Linux 3.16.0-38-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.21
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  laurie 2532 F pulseaudio
CurrentDesktop: X-Cinnamon
Date: Sun Nov 27 18:53:33 2016
InstallationDate: Installed on 2015-09-19 (435 days ago)
InstallationMedia: Linux Mint 17.2 "Rafaela" - Release amd64 20150627
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: pulseaudio
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/25/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 4.6.5
dmi.board.asset.tag: Not Applicable
dmi.board.name: P15xEMx
dmi.board.vendor: CLEVO
dmi.board.version: Not Applicable
dmi.chassis.asset.tag: Not Applicable
dmi.chassis.type: 10
dmi.chassis.vendor: CLEVO
dmi.chassis.version: Not Applicable
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr4.6.5:bd05/25/2012:svnCLEVO:pnP15xEMx:pvrNotApplicable:rvnCLEVO:rnP15xEMx:rvrNotApplicable:cvnCLEVO:ct10:cvrNotApplicable:
dmi.product.name: P15xEMx
dmi.product.version: Not Applicable
dmi.sys.vendor: CLEVO
modified.conffile..etc.pulse.default.pa: [modified]
mtime.conffile..etc.pulse.default.pa: 2016-11-27T18:41:22.595939

** Affects: pulseaudio (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug rafaela third-party-packages

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1645128

Title:
  Sounds stops working after a while

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1642966] Re: package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new pre-removal script returned error exit status 1

2016-11-18 Thread Laurie
Adding my error_log here. The suggested fix also worked for me. Odd
thing is the date/time on the error_log is 10/21/16 even though I got
the error this morning...

** Attachment added: "CUPS error_log"
   
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/1642966/+attachment/4779449/+files/error_log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1642966

Title:
  package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new
  pre-removal script returned error exit status 1

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1637140] Re: package amavisd-new (not installed) failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-10-28 Thread Colin Laurie
Thank you Josh for your time.

Although I am an experienced computer person, I am from the dinosaur 
age. A time when we produced excellent systems which worked almost 
perfectly within a highly restricted environment; I refer specifically 
to IBM mini computers within local businesses.

I was just in the process of attempting to install ClamAv with the 
command line and Synaptic Package Manager. Amavisd-new was a requirement 
of this it would appear but there was a problem as we know.
That's all I know because I find it irritating or impossible to go 
through a whole system process BEFORE I even attempt to install 
something. As a result I really have little idea what I was doing, or 
even why and why it went wrong.

The error reporting was an automatic thing which I applaud, although I 
don't understand why it involves signing in to the remains of Ubuntu 1.

I tell you all of this because I know you and many young people are 
immensely good at the whole Linux environment and I applaud such brilliance.
However I wouldn't go as far as saying that I am jealous! Because there 
comes a time - even for the PC - when people ask themselves "why do I 
have to know all of this information?" "Shouldn't these things sort 
themselves out?"

Also I say this in full knowledge (since I dual boot Win10) of how 
brilliant Ubuntu is in comparison. Still there must be some marketing 
reward for producing something that is even more robust, even more 'run 
it and relax'.

Thank you for your time again, I decided that anti-virus was not 
necessary for Ubuntu since I have no virtual Win10 images.

Colin Laurie


On 28/10/16 15:40, Joshua Powers wrote:
> Thank you for taking the time to report this bug and helping to make
> Ubuntu better.
>
> Since there isn't enough information in your report to differentiate
> between a local configuration problem and a bug in Ubuntu, I'm marking
> this bug as Incomplete. At the minimum it would be good to get the
> output of the above two commands to help diagnose what is breaking. I
> was unable to reproduce this in a 16.04 container with `apt install
> clamav clamtk`. At the very least it would also be good to know what you
> did to get into the state.
>
> If indeed this is a local configuration problem, you can find pointers
> to get help for this sort of problem here:
> http://www.ubuntu.com/support/community
>
> Or if you believe that this is really a bug, then you may find it
> helpful to read "How to report bugs effectively"
> http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
> if you would then provide a more complete description of the problem,
> explain why you believe this is a bug in Ubuntu rather than a problem
> specific to your system, and then change the bug status back to New.
>


** Attachment added: "EmailSignature.png"
   
https://bugs.launchpad.net/bugs/1637140/+attachment/4768925/+files/EmailSignature.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1637140

Title:
  package amavisd-new (not installed) failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/amavisd-new/+bug/1637140/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1637140] [NEW] package amavisd-new (not installed) failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-10-27 Thread Colin Laurie
Public bug reported:

Attempt to install clamav and clamtk on Ubuntu 16.04 failed.
Subsequent attempt to remove clamav etc. left me with failed install of 
amavisd-new.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: amavisd-new (not installed)
ProcVersionSignature: Ubuntu 4.4.0-45.66-generic 4.4.21
Uname: Linux 4.4.0-45-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Thu Oct 27 09:58:51 2016
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2016-10-11 (15 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: amavisd-new
Title: package amavisd-new (not installed) failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: amavisd-new (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1637140

Title:
  package amavisd-new (not installed) failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/amavisd-new/+bug/1637140/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1618256] Re: Error code 1.108067

2016-08-29 Thread Laurie
how do I fix this

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1618256

Title:
  Error code 1.108067

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1618256] Re: Error code 1.108067

2016-08-29 Thread Laurie
This is a view of crash report
Submitted Crash Reports
Report ID   Date Submitted
bp-244cef4e-2ff8-4fc7-80fc-2667b2160827
27/08/1610:39
bp-ff82bf42-b4f8-4f63-b825-278962160804
05/08/1604:52
bp-d628841e-0f63-4ff4-82e8-c6dd32160804
05/08/1604:23
bp-41d560ec-1c9b-4998-a823-ccdc42160730
30/07/1611:52
bp-711fa203-80e0-41cc-b9b5-7eb272160730
30/07/1611:49
bp-de410c2a-0631-4097-81d4-c82472160729
29/07/1610:52
bp-128517fa-12ed-4f4f-acc2-4c8952160729
29/07/1610:29
bp-75fc469d-28b8-4a30-85ca-ff80f2160728
29/07/1604:18
bp-234ce410-b09b-43cd-9d31-020d62160728
29/07/1604:18
bp-68e939c2-8fd7-479d-a0fa-86dc42160728
28/07/1612:49
bp-e6ae49e0-6b7b-4d75-b916-55e632160728
28/07/1612:19
bp-b6914246-d0c3-4d7f-8f66-175702160725
25/07/1610:47
bp-c3f93287-6db6-47d2-b9df-91c292160713
13/07/1611:15
bp-04d5a6c3-b178-4273-a54c-979ce2160713
13/07/1610:22
bp-44894360-0a85-481a-9a90-5637f2160712
12/07/1611:38
bp-cf26beb1-3887-4dbb-84d1-517cf2160712
12/07/1611:35
bp-480add8a-5d4d-463a-bcde-951752160712
12/07/1611:10
bp-9476c688-b305-421c-82a0-487e32160712
12/07/1610:46
bp-a68cdf64-da05-4220-8df3-d8ec02160712
12/07/1610:06
bp-d8678564-bc2b-4db5-91c4-a79c12160711
11/07/1611:01
bp-9c1e22c9-6334-4151-a995-557102160711
11/07/1610:59
bp-d6c942b6-c0ea-4366-bbd7-153bc2160711
11/07/1610:40
bp-70577961-5464-46e0-93c3-36f112160710
11/07/1608:36
bp-e95bcaab-a281-4efa-ad88-6a0102160710
11/07/1608:30
bp-a4d2297d-0dc2-41fe-9ee5-a82122160710
11/07/1608:30
bp-464cf7e5-cfb1-4f41-8a79-40ea92160707
07/07/1611:34
bp-aee93759-7ea7-404f-ae17-7640c2160707
07/07/1611:10
bp-7f3f9275-5da9-43e7-9688-3a1802160705
05/07/1610:14
bp-a616a2c3-266a-44a9-a213-de06d2160704
04/07/1612:18
bp-ba680c4b-b116-47fc-939a-e8d6d2160704
04/07/1610:27
bp-e91299eb-dc85-4b24-a6bf-114a42160627
27/06/1611:52
bp-7e32a346-ee1f-4e55-b776-e41a12160625
25/06/1610:49
bp-995d25dc-033e-4489-8940-27c802160625
25/06/1610:41
bp-81967501-18f6-4a06-883d-0a0482160625
25/06/1610:40
bp-03fd948b-b2e5-4a88-a49b-4037e2160625
25/06/1610:38
bp-6c154532-e777-4725-852b-dfde42160624
25/06/1609:51
bp-6b8d6aa2-0593-4477-86d8-59d442160624
25/06/1604:02
bp-17070c61-39a2-4086-9b73-d79d52160624
25/06/1604:01
bp-ab31f0e8-a351-40c6-a9b7-3cb2b2160624
25/06/1604:01
bp-081291c8-a065-46dc-ac7b-4cab72160624
25/06/1603:58
bp-2868117b-7628-4164-8216-bc9232160624
25/06/1603:47
bp-ba69fb0f-90ec-44fc-8653-c87342160624
25/06/1603:43
bp-5b27473c-57fb-4ae4-bffa-6f6102160624
25/06/1603:34
bp-cfc67733-0b2e-4e7a-bbb9-cea6e2160624
25/06/1603:30
bp-feab4f56-3a0d-414a-8bd9-640562160624
25/06/1603:14
bp-4c7ac8e2-6bb1-446b-899c-6e61d2160624
25/06/1603:08
bp-4fa999d0-9fc6-4540-b8b1-6606d2160624
25/06/1603:08
bp-8600e132-98c6-4381-9629-9a0382160624
25/06/1603:04
bp-af13443a-cb28-4c4d-a671-49c402160623
23/06/1612:29
bp-fe795300-c9ad-41ad-9706-5e4522160623
23/06/1610:51
bp-7b3d0a64-2e32-4574-89f6-b67232160623
23/06/1610:30
bp-6bc31668-399f-4d0a-83ba-23f242160623
23/06/1610:18
bp-a1937a63-84d4-4d08-a7f8-a40132160620
20/06/1611:17
bp-91b11153-f733-4daa-ad91-511342160620
20/06/1611:05
bp-73104a07-a968-493f-b652-b6c032160619
20/06/1609:59
bp-d5bda0dc-0c72-4d9b-96fd-b67fd2160619
19/06/1618:13
bp-ad7b31d4-e978-4199-aef2-564dc2160619
19/06/1610:55
bp-29692787-b559-46a4-88ef-9ecda2160619
19/06/1610:43
bp-471e41ec-01e8-43c6-bb70-3b8502160619
19/06/1610:41
bp-17715522-02aa-4f8a-b547-fd4d52160619
19/06/1610:41
bp-022d48b5-7404-410a-bc6e-1ce522160619
19/06/1610:35
bp-dff93855-7b62-4684-9fbe-08e1d2160616
16/06/1611:56
bp-52257baa-29bb-476b-9d00-27b752160614
15/06/1609:57
bp-7c435216-6bac-4286-be06-3cd692160614
15/06/1609:28
bp-1c335f22-eb64-4025-a6e8-7d4552160614
15/06/1609:26
bp-d40f41ad-848c-463d-9fd2-d309b2160614
15/06/1609:25
bp-2177af0f-d4cc-4963-81db-8a7d52160614
15/06/1609:15
bp-f90370fe-3fd5-4228-aa6e-3334c2160614
15/06/1609:15
bp-33c4af6b-f97b-4474-b205-a9c692160614
15/06/1603:42
bp-93d831c0-3c15-4548-b586-d73d82160614
15/06/1603:41
bp-7ba4ea55-9

[Bug 1618256] [NEW] Error code 1.108067

2016-08-29 Thread Laurie
Public bug reported:

@ every start up

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+13ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
Uname: Linux 4.4.0-31-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Tue Aug 30 09:15:59 2016
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DkmsStatus:
 vboxhost, 5.0.26, 4.4.0-28-generic, x86_64: installed
 vboxhost, 5.0.26, 4.4.0-34-generic, x86_64: installed
 vboxhost, 5.0.26, 4.4.0-36-generic, x86_64: installed
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation 82Q35 Express Integrated Graphics Controller [8086:29b2] 
(rev 02) (prog-if 00 [VGA controller])
   Subsystem: Intel Corporation 82Q35 Express Integrated Graphics Controller 
[8086:4f4a]
   Subsystem: Intel Corporation 82Q35 Express Integrated Graphics Controller 
[8086:4f4a]
InstallationDate: Installed on 2016-06-11 (79 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
MachineType: AnabelleB Argyle M290
ProcEnviron:
 LANGUAGE=en_AU:en
 PATH=(custom, no user)
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-31-generic 
root=/dev/mapper/ubuntu--vg-root ro splash quiet
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/09/2010
dmi.bios.vendor: Intel Corp.
dmi.bios.version: JOQ3510J.86A.1143.2010.1209.0048
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: DQ35JO
dmi.board.vendor: Intel Corporation
dmi.board.version: AAD82085-800
dmi.chassis.type: 3
dmi.modalias: 
dmi:bvnIntelCorp.:bvrJOQ3510J.86A.1143.2010.1209.0048:bd12/09/2010:svnAnabelleB:pnArgyleM290:pvr:rvnIntelCorporation:rnDQ35JO:rvrAAD82085-800:cvn:ct3:cvr:
dmi.product.name: Argyle M290
dmi.sys.vendor: AnabelleB
version.compiz: compiz 1:0.9.12.2+16.04.20160801.3-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.2
version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2.1
version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1build2
xserver.bootTime: Tue Aug 30 09:04:37 2016
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputSleep Button KEYBOARD, id 7
 inputLogitech USB Receiver KEYBOARD, id 8
 inputLogitech USB Receiver KEYBOARD, id 9
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id 625 
 vendor SAM
xserver.version: 2:1.18.3-1ubuntu2.3

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug compiz-0.9 ubuntu xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1618256

Title:
  Error code 1.108067

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1607742] Re: [Ubuntu 16.04 GA]OS does not boot once installed on FCoE LUN in legacy mode

2016-08-22 Thread Laurie Barry
Can we please have an update on this bug?

thank you
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1607742

Title:
   [Ubuntu 16.04 GA]OS does not boot once installed on FCoE LUN in
  legacy mode

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub-installer/+bug/1607742/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1574660] Re: package mysql-server-5.7 5.7.12-0ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-04-26 Thread Laurie
I think there was an issue on my end. Most likely I think it was the 
fact that the upgrade process from 15.10 to 16.04LTS was interrupted by 
my 5 year old daughter who snuck in to the room and pressed some keys on 
the keyboard. The last error I saw on the upgrade was something like 
"Adding system-journal group...group already existsexiting."

I waited a while before touching the system, as I wasn't sure if the 
install was still trying to do something in the background and I didn't 
want to make things worse. A few reboots, and some "sudo apt-get -f 
install" and "sudo apt-get dist-upgrade", and I was able to get through 
the upgrade process, aside from the mySQL issue.

I was able to resolve that by killing the mysqld process and then 
running system updates, which then completed the mySQL install with no 
errors.

L

On 04/25/2016 11:54 AM, Robie Basak wrote:
> Thank you for taking the time to report this bug and helping to make
> Ubuntu better.
>
> It seems that the old mysqld failed to stop, so mysql_upgrade is talking
> to the old server instead of the new one. We didn't encounter this in
> testing, so we think it could be an issue on your system, but we don't
> have enough information in this report to determine that.
>
> Can you see if you can determine why mysqld fails to stop on your
> system? Once you get it properly stopped, I think "sudo apt-get -f
> install" should succeed.
>
> I'll mark this bug as Incomplete for now, as it isn't clear that this is
> a bug as opposed to some kind of misconfiguration on your system. If you
> can figure out how to get an Ubuntu system into this state in a way that
> is clearly a bug ("steps to reproduce"), please provide that and change
> the bug status back to New.
>
> ** Changed in: mysql-5.7 (Ubuntu)
> Status: Confirmed => Incomplete
>

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1574660

Title:
  package mysql-server-5.7 5.7.12-0ubuntu1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.7/+bug/1574660/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1574660] [NEW] package mysql-server-5.7 5.7.12-0ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-04-25 Thread Laurie
Public bug reported:

Happens when trying to install updates

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: mysql-server-5.7 5.7.12-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
Uname: Linux 4.4.0-21-generic x86_64
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
Date: Mon Apr 25 09:44:43 2016
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2015-08-11 (258 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
Logs.var.log.daemon.log:
 
MySQLConf.etc.mysql.conf.d.mysql.cnf: [mysql]
MySQLConf.etc.mysql.conf.d.mysqldump.cnf:
 [mysqldump]
 quick
 quote-names
 max_allowed_packet = 16M
MySQLConf.etc.mysql.mysql.conf.d.mysqld_safe_syslog.cnf:
 [mysqld_safe]
 syslog
MySQLVarLibDirListing: ['ibtmp1', 'mysqld_safe.pid', 'debian-5.7.flag', 
'ib_buffer_pool', 'performance_schema', 'ib_logfile0', 'mysql_upgrade_info', 
'auto.cnf', 'sys', 'mysql', 'ibdata1', 'ib_logfile1', 'debian-5.6.flag']
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-21-generic 
root=UUID=6f8adfdd-0688-4e36-9bfe-030406a94d9a ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1
 apt  1.2.10ubuntu1
SourcePackage: mysql-5.7
Title: package mysql-server-5.7 5.7.12-0ubuntu1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: mysql-5.7 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1574660

Title:
  package mysql-server-5.7 5.7.12-0ubuntu1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.7/+bug/1574660/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1573622] [NEW] package mysql-server-5.6 5.6.30-0ubuntu0.15.10.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-04-22 Thread Laurie
Public bug reported:

This error happened when installing updates.

ProblemType: Package
DistroRelease: Ubuntu 15.10
Package: mysql-server-5.6 5.6.30-0ubuntu0.15.10.1
ProcVersionSignature: Ubuntu 4.2.0-36.41-generic 4.2.8-ckt8
Uname: Linux 4.2.0-36-generic x86_64
ApportVersion: 2.19.1-0ubuntu5
Architecture: amd64
Date: Fri Apr 22 09:51:08 2016
DuplicateSignature: package:mysql-server-5.6:5.6.30-0ubuntu0.15.10.1:subprocess 
installed post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2015-08-11 (255 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
Logs.var.log.daemon.log:
 
MySQLConf.etc.mysql.conf.d.mysql.cnf: [mysql]
MySQLConf.etc.mysql.conf.d.mysqldump.cnf:
 [mysqldump]
 quick
 quote-names
 max_allowed_packet = 16M
MySQLConf.etc.mysql.mysql.conf.d.mysqld.safe.syslog.cnf:
 [mysqld_safe]
 syslog
MySQLVarLibDirListing: ['performance_schema', 'ib_logfile0', 
'mysql_upgrade_info', 'auto.cnf', 'mysql', 'ibdata1', 'ib_logfile1', 
'debian-5.6.flag']
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.2.0-36-generic 
root=UUID=6f8adfdd-0688-4e36-9bfe-030406a94d9a ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.2ubuntu5.1
 apt  1.0.10.2ubuntu2
SourcePackage: mysql-5.6
Title: package mysql-server-5.6 5.6.30-0ubuntu0.15.10.1 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1
UpgradeStatus: Upgraded to wily on 2015-10-27 (177 days ago)

** Affects: mysql-5.6 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package wily

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1573622

Title:
  package mysql-server-5.6 5.6.30-0ubuntu0.15.10.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.6/+bug/1573622/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1446410] Re: ubuntu 14.04 does not call iscsistart to login to iscsi boot target

2016-04-01 Thread Laurie Barry
Brian - who at Canonical can help us understand what's happening with
this bug?  It's not obvious who on your team owns answering this.
Janitor is very generic w/no name associated with it.

thx
Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1446410

Title:
  ubuntu 14.04 does not call iscsistart to login to iscsi boot target

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1446410/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1550453] [NEW] package systemd 225-1ubuntu9.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-02-26 Thread Laurie
Public bug reported:

Happened when running Software updater

ProblemType: Package
DistroRelease: Ubuntu 15.10
Package: systemd 225-1ubuntu9.1
ProcVersionSignature: Ubuntu 4.2.0-31.36-generic 4.2.8-ckt4
Uname: Linux 4.2.0-31-generic x86_64
ApportVersion: 2.19.1-0ubuntu5
Architecture: amd64
Date: Fri Feb 26 13:06:56 2016
DuplicateSignature: package:systemd:225-1ubuntu9.1:subprocess installed 
post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2015-08-11 (199 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: Hewlett-Packard p6823w
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-31-generic 
root=UUID=6f8adfdd-0688-4e36-9bfe-030406a94d9a ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.2ubuntu5.1
 apt  1.0.10.2ubuntu1
SourcePackage: systemd
Title: package systemd 225-1ubuntu9.1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
UpgradeStatus: Upgraded to wily on 2015-10-27 (122 days ago)
dmi.bios.date: 05/04/2011
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 6.07
dmi.board.name: 2AB1
dmi.board.vendor: FOXCONN
dmi.board.version: 1.00
dmi.chassis.asset.tag: 4CE1221CDL
dmi.chassis.type: 3
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr6.07:bd05/04/2011:svnHewlett-Packard:pnp6823w:pvr:rvnFOXCONN:rn2AB1:rvr1.00:cvnHewlett-Packard:ct3:cvr:
dmi.product.name: p6823w
dmi.sys.vendor: Hewlett-Packard

** Affects: systemd (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package package-from-proposed wily

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1550453

Title:
  package systemd 225-1ubuntu9.1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1379777] Re: [Orientation] Allow applications to specify the orientations supported

2015-08-09 Thread Laurie Bradshaw
Seems mir has the necessary support with
mir_surface_set_preferred_orientation, which confusingly doesn't do
anything at the moment, as the shell isn't honouring it.

I'm currently providing orientation support in neverball and tuxracer by
rotating the whole scene and touch input to the user preference, and
locking to an arbitrary orientation using the desktop file parameter to
prevent automatic rotation interfering with the gameplay.

It'd be much better if the mir surface flag was honoured so the panel
and gesture edges would also be rotated in order to maintain consistency
with other applications.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1379777

Title:
  [Orientation] Allow applications to specify the orientations supported

To manage notifications about this bug go to:
https://bugs.launchpad.net/qtmir/+bug/1379777/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1382209] Re: [Enhancement] Add an API to lock surface orientation

2015-08-09 Thread Laurie Bradshaw
I've been trying to integrate with the system rotation instead of doing
it myself for neverball, neverputt and tuxracer.

mir_surface_set_preferred_orientation doesn't seem to do anything on my
bq aquaris, with or without X-Ubuntu-Supported-Orientations in the
desktop file, is this due to missing shell support?

I want to change the orientation according to user preference, but not
have the system auto rotate, as that conflicts with using the
accelerometer to control the game.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1382209

Title:
  [Enhancement] Add an API to lock surface orientation

To manage notifications about this bug go to:
https://bugs.launchpad.net/mir/+bug/1382209/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1462489] Re: Allow apps to keep the screen on

2015-08-01 Thread Laurie Bradshaw
Ah, nevermind, send dbus message, got it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1462489

Title:
  Allow apps to keep the screen on

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1462489/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1462489] Re: Allow apps to keep the screen on

2015-07-30 Thread Laurie Bradshaw
So how would I request the display stays lit without qt?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1462489

Title:
  Allow apps to keep the screen on

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1462489/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1460149] Re: Visible corruption in SDL apps (Neverball, Neverputt) on Nexus 4 / Nexus 7.

2015-07-03 Thread Laurie Bradshaw
Setting the gl red green, blue and depth sizes from client code
(SDL_GL_SetAttribute) doesn't help with the transparency issue on
krillin. Does/should this help with the doubling problem on nexus hw? (I
don't have any to test)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1460149

Title:
  Visible corruption in SDL apps (Neverball, Neverputt) on Nexus 4 /
  Nexus 7.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mir/+bug/1460149/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1460149] Re: Visible corruption in SDL apps (Neverball, Neverputt) on Nexus 4 / Nexus 7.

2015-06-24 Thread Laurie Bradshaw
You can work around alpha issues on krillin by masking the alpha channel
and clearing the color buffer bit before swapping buffers.

I'm not sure if it's a separate issue or a different symptom of the same
issue,  but the workaround doesn't help on nexus devices.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1460149

Title:
  Visible corruption in SDL apps (Neverball, Neverputt) on Nexus 4 /
  Nexus 7.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mir/+bug/1460149/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453058] [NEW] package virtualbox 4.3.26-dfsg-2ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1. Have upgraded to Vivid Vervet now nee

2015-05-08 Thread Laurie
Public bug reported:

Using Synaptic Package Manager
Added  the repository  deb http://download.virtualbox.org/virtualbox/debian 
vivid contrib from Oracle Virtualbox download web page.
Running
Description:Ubuntu 15.04
Release:15.04

Did complete uninstall followed by install of version 4.3.26-dfsg-2ubuntu1 
Virtualbox
fails with error
E: virtualbox: subprocess installed post-installation script returned error 
exit status 1
E: virtualbox-qt: dependency problems - leaving unconfigured
E: virtualbox-dkms: dependency problems - leaving unconfigured

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: virtualbox 4.3.26-dfsg-2ubuntu1
ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
Uname: Linux 3.19.0-16-generic x86_64
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
Date: Fri May  8 10:06:22 2015
DuplicateSignature: package:virtualbox:4.3.26-dfsg-2ubuntu1:subprocess 
installed post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2014-08-07 (273 days ago)
InstallationMedia: Lubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4
SourcePackage: virtualbox
Title: package virtualbox 4.3.26-dfsg-2ubuntu1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to vivid on 2015-05-07 (0 days ago)

** Affects: virtualbox (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package vivid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453058

Title:
  package virtualbox 4.3.26-dfsg-2ubuntu1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1. Have upgraded to Vivid Vervet now need to re-install
  virtualbox. This installation fails

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1061255] Re: GRUB recognizes defunct LDM headers

2012-10-29 Thread Laurie Bradshaw
How safe would it be to save the partition layout (eg sfdisk), zero the start 
of the disk, reapply the partition layout, and grub-install?
At least for simple cases, where no additional volume management is being used?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1061255

Title:
  GRUB recognizes defunct LDM headers

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053793] Re: warning: this LDM has no Embedding Partition; embedding won't be possible

2012-10-14 Thread Laurie Bradshaw
Hello?

This is still happening (14/10/12)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053793

Title:
  warning: this LDM has no Embedding Partition; embedding won't be
  possible

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053793] Re: warning: this LDM has no Embedding Partition; embedding won't be possible

2012-09-20 Thread Laurie Bradshaw
** Attachment added: "first 1MB of /dev/sda"
   https://bugs.launchpad.net/bugs/1053793/+attachment/3326754/+files/first

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053793

Title:
  warning: this LDM has no Embedding Partition; embedding won't be
  possible

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053793] Re: warning: this LDM has no Embedding Partition; embedding won't be possible

2012-09-20 Thread Laurie Bradshaw
** Attachment added: "last 1MB of /dev/sda"
   
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1053793/+attachment/3326755/+files/last

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053793

Title:
  warning: this LDM has no Embedding Partition; embedding won't be
  possible

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1053793] [NEW] warning: this LDM has no Embedding Partition; embedding won't be possible

2012-09-20 Thread Laurie Bradshaw
Public bug reported:

Since grub 2.00-4ubuntu1 I've been getting:

/usr/sbin/grub-bios-setup: warning: this LDM has no Embedding Partition; 
embedding won't be possible.
/usr/sbin/grub-bios-setup: error: embedding is not possible, but this is 
required for RAID and LVM install.

when trying to update grub, which results in an unbootable system, which
I've worked around by downgrading to grub 1.99-22ubuntu2 and running
grub-install /dev/sda

This system is a self-build that has never had windows on it.

$ fdisk -l

Disk /dev/sda: 300.1 GB, 300069052416 bytes
255 heads, 63 sectors/track, 36481 cylinders, total 586072368 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x8f83bc52

   Device Boot Start End Blocks Id System
/dev/sda1 562628430 586067264 11719417+ 82 Linux swap / Solaris
/dev/sda2 * 63 562628429 281314183+ 83 Linux

As suggested, attached are dumps of the first and last megabytes of
/dev/sda

** Affects: grub2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1053793

Title:
  warning: this LDM has no Embedding Partition; embedding won't be
  possible

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1051154] Re: [quantal] warning: your embedding area is unusually small. core.img won't fit in it.

2012-09-15 Thread Laurie Bradshaw
I'm seeing a very similiar issue,  although with no raid setup - just a
single sata disk, standard partition table, nothing complex.

/usr/sbin/grub-bios-setup: warning: this LDM has no Embedding Partition; 
embedding won't be possible.
/usr/sbin/grub-bios-setup: error: embedding is not possible, but this is 
required for RAID and LVM install.

$ fdisk -l

Disk /dev/sda: 300.1 GB, 300069052416 bytes
255 heads, 63 sectors/track, 36481 cylinders, total 586072368 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x8f83bc52

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   562628430   58606726411719417+  82  Linux swap / Solaris
/dev/sda2   *  63   562628429   281314183+  83  Linux

Currently resorting to manually installing grub 1.99-22ubuntu2 every
time I update so the system actually boots.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1051154

Title:
  [quantal] warning: your embedding area is unusually small. core.img
  won't fit in it.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 941874] Re: (fakeraid) root device not activated during boot

2012-08-03 Thread Laurie Kell
Hi

I am encountering the same problems, in that I am trying to install
UBUNTU 12.04 on a Sony vaio VPCZ13C5E. But can't get past busybox.

I used boot/repair to try and fix the problem, the diagnostics and a
dscription of my system are at http://paste.ubuntu.com/1126678/

Any help would be appreciated.

Laurie

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/941874

Title:
  (fakeraid) root device not activated during boot

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 880928] Re: Have printer/ Scanner Epson Stylus sx415 and not being recognised by scan program

2011-10-24 Thread Laurie Montague
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/880928

Title:
  Have printer/ Scanner Epson Stylus sx415 and not being recognised by
  scan program

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/simple-scan/+bug/880928/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 880928] [NEW] Have printer/ Scanner Epson Stylus sx415 and not being recognised by scan program

2011-10-24 Thread Laurie Montague
Public bug reported:

HP worked before and, it prints ok but, will not scan as unrecognised

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: simple-scan 2.32.0-0ubuntu4
ProcVersionSignature: Ubuntu 2.6.35-30.60-generic 2.6.35.13
Uname: Linux 2.6.35-30-generic i686
NonfreeKernelModules: fglrx
Architecture: i386
Date: Mon Oct 24 17:30:48 2011
DriverPackageVersions:
 libsane 1.0.21-2ubuntu2
 libsane-extras N/A
 hplip 3.10.6-1ubuntu10.2
 hpoj N/A
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release i386 (20101007)
MachineType: MSI MS-7592
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-30-generic 
root=UUID=738cca5e-0c34-4f8a-a2ef-7543b19925d3 ro quiet splash
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SimpleScanLog:
 
SourcePackage: simple-scan
dmi.bios.date: 11/01/2010
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: V26.3
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: G41M-P28 (MS-7592)
dmi.board.vendor: MSI
dmi.board.version: 5.0
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: MSI
dmi.chassis.version: 5.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV26.3:bd11/01/2010:svnMSI:pnMS-7592:pvr5.0:rvnMSI:rnG41M-P28(MS-7592):rvr5.0:cvnMSI:ct3:cvr5.0:
dmi.product.name: MS-7592
dmi.product.version: 5.0
dmi.sys.vendor: MSI

** Affects: simple-scan (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 maverick

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/880928

Title:
  Have printer/ Scanner Epson Stylus sx415 and not being recognised by
  scan program

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/simple-scan/+bug/880928/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 849790] Re: I dont get Firefox I keep getting Ubuntu/google, why

2011-09-14 Thread Laurie Hamer
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/849790

Title:
  I dont get Firefox I keep getting Ubuntu/google, why

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 849790] [NEW] I dont get Firefox I keep getting Ubuntu/google, why

2011-09-14 Thread Laurie Hamer
Public bug reported:

Why when I click the firefox icon do I get  the page with google search,
what happened to the firefox start page

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: firefox 3.6.3+nobinonly-0ubuntu4
ProcVersionSignature: Ubuntu 2.6.32-22.36-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
CheckboxSubmission: 2fd58e2fc5fc9b3fa1be6e2a1f0a6439
CheckboxSystem: 2a6f54df59af338184485e85cbcf0d32
Date: Wed Sep 14 01:41:33 2011
FirefoxPackages:
 firefox 3.6.3+nobinonly-0ubuntu4
 firefox-gnome-support 3.6.3+nobinonly-0ubuntu4
 firefox-branding 3.6.3+nobinonly-0ubuntu4
 abroswer N/A
 abrowser-branding N/A
InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5)
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: firefox

** Affects: firefox (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/849790

Title:
  I dont get Firefox I keep getting Ubuntu/google, why

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 807033] Re: after installing extension PDF Import 1.0.4 to Writer I get a 'general input/output error' when I try to load a pdf

2011-07-07 Thread Laurie Bassett
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/807033

Title:
  after installing extension PDF Import 1.0.4 to Writer I get a 'general
  input/output error' when I try to load a pdf

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 807033] [NEW] after installing extension PDF Import 1.0.4 to Writer I get a 'general input/output error' when I try to load a pdf

2011-07-07 Thread Laurie Bassett
Public bug reported:

LibreOffice 3.3.2 
OOO330m19 (Build:202)
tag libreoffice-3.3.2.2, Ubuntu package 1:3.3.2-1ubuntu5

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: libreoffice-core 1:3.3.2-1ubuntu5
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Thu Jul  7 15:52:47 2011
ProcEnviron:
 LANGUAGE=en_GB:en
 PATH=(custom, user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: libreoffice
UpgradeStatus: Upgraded to natty on 2011-06-19 (18 days ago)

** Affects: libreoffice (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug apport-lpi i386 natty running-unity

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/807033

Title:
  after installing extension PDF Import 1.0.4 to Writer I get a 'general
  input/output error' when I try to load a pdf

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 728482] Re: compiz crashed with SIGSEGV in sigc::internal::signal_emit0::emit()

2011-03-03 Thread Laurie VanDine
** Visibility changed to: Public

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/728482

Title:
  compiz crashed with SIGSEGV in sigc::internal::signal_emit0::emit()

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


  1   2   >