[Bug 1839971] Re: bionic/linux-oem-osp1: 5.0.0-1019.21 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1839972
  packages:
lrm: linux-restricted-modules-oem-osp1
main: linux-oem-osp1
meta: linux-meta-oem-osp1
signed: linux-signed-oem-osp1
  phase: Promote to Proposed
  phase-changed: Friday, 16. August 2019 22:25 UTC
  reason:
automated-testing: Ongoing -- testing in progress
certification-testing: Ongoing -- testing in progress
-   promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror 
sync
+   promote-to-proposed: Stalled -- packages are in the wrong component
regression-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
verification-testing: Ongoing -- testing in progress
  variant: debs

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

Title:
  bionic/linux-oem-osp1: 5.0.0-1019.21 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839971/+subscriptions

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

[Bug 1839065] Re: power8 machines need FW update or qemu/libvirt code - cap-cfpc=broken

2019-08-19 Thread Mike Ranweiler
This should be fixed with a firmware update - I'm getting those
together, I assume for all.  I don't know if this was on a garrison or
tuleta, etc, but at least one of those needs an update for this issue.

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

Title:
  power8 machines need FW update or qemu/libvirt code - cap-cfpc=broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-power-systems/+bug/1839065/+subscriptions

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

[Bug 1840619] Missing required logs.

2019-08-19 Thread Ubuntu Kernel Bot
This bug is missing log files that will aid in diagnosing the problem.
While running an Ubuntu kernel (not a mainline or third-party kernel)
please enter the following command in a terminal window:

apport-collect 1840619

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

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

** Tags added: xenial

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

Title:
  skb_warn_bad_offload kernel splat due to CHECKSUM target not
  compatible with GSO skbs

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

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

[Bug 1839985] Re: bionic/linux-aws: 4.15.0-1046.48 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/automated-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/regression-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => In Progress

** Changed in: kernel-sru-workflow/verification-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/automated-testing
   Status: Confirmed => In Progress

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1839983 (xenial/linux-aws-hwe)
  derivatives: bug 1839981 (aws-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840006
  packages:
lrm: linux-restricted-modules-aws
main: linux-aws
meta: linux-meta-aws
- phase: Promote to Proposed
- phase-changed: Monday, 19. August 2019 05:50 UTC
+ phase: Testing
+ phase-changed: Monday, 19. August 2019 08:56 UTC
+ proposed-announcement-sent: true
+ proposed-testing-requested: true
  reason:
-   promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror 
sync
+   automated-testing: Ongoing -- testing in progress
+   regression-testing: Ongoing -- testing in progress
+   security-signoff: Pending -- waiting for signoff
+   verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-aws/aws-kernel: bug 1839981
xenial/linux-aws-hwe: bug 1839983
  variant: debs

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

Title:
  bionic/linux-aws: 4.15.0-1046.48 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839985/+subscriptions

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

[Bug 1840640] [NEW] sync_file_range fails in nspawn containers on arm, ppc

2019-08-19 Thread Steve Dodd
Public bug reported:

ARM has two sync_file_range syscalls, sync_file_range and
sync_file_range2. The former is apparently not used, and glibc calls the
latter whenever a userspace program calls sync_file_range. I'm guessing
systemd-nspawn doesn't know this, because the follow code consistently
fails in an nspawn container on ARM:

#define _GNU_SOURCE
#include 
#include 
#include 
#include 

void main()
{
int f = open("/tmp/syncrange.test",O_CREAT|O_RDWR,0666);
int r=sync_file_range(f, 0, 0, 0);
if (r)
perror("sync_file_range");
close(f);
}

This seems to be causing problems specifically for borg(backup) and
postgres:

https://github.com/borgbackup/borg/issues/4710
https://www.postgresql.org/message-id/flat/CA%2BhUKG%2BydOUT4zjxb6QmJWy8U9WbC-q%2BJWV7wLsEY9Df%3Dmw0Mw%40mail.gmail.com#ac8f14897647dc7eae3c7e7cbed36d93

The solution should be to cherrypick
https://github.com/systemd/systemd/pull/13352, I am currently waiting
for systemd to rebuild on a slow ARM box. Any chance of an SRU?

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: systemd-container 237-3ubuntu10.24
Uname: Linux 4.14.66+ armv7l
NonfreeKernelModules: extcon_usb_gpio
ApportVersion: 2.20.9-0ubuntu7.7
Architecture: armhf
Date: Mon Aug 19 11:10:48 2019
ProcEnviron:
 TERM=screen
 PATH=(custom, no user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: systemd
UpgradeStatus: No upgrade log present (probably fresh install)

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

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


** Tags: apport-bug armhf bionic

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

Title:
  sync_file_range fails in nspawn containers on arm, ppc

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

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

[Bug 1840017] Re: xenial/linux-fips: 4.4.0-1018.23 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840021
  packages:
main: linux-fips
meta: linux-meta-fips
signed: linux-signed-fips
- phase: Ready for Promote to Proposed
- phase-changed: Saturday, 17. August 2019 07:50 UTC
+ phase: Promote to Proposed
+ phase-changed: Monday, 19. August 2019 10:15 UTC
  reason:
-   promote-signing-to-proposed: Pending -- ready for review
+   promote-signing-to-proposed: Ongoing -- review in progress
  variant: debs

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

Title:
  xenial/linux-fips: 4.4.0-1018.23 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840017/+subscriptions

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

[Bug 1840000] Re: xenial/linux-azure-edge: 4.15.0-1056.61 -proposed tracker

2019-08-19 Thread Andy Whitcroft
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru) => Andy 
Whitcroft (apw)

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

Title:
  xenial/linux-azure-edge: 4.15.0-1056.61 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/184/+subscriptions

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

[Bug 1840261] Re: eoan/linux: 5.2.0-13.14 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1840259 (bionic/linux-hwe-edge)
  
  -- swm properties --
  boot-testing-requested: true
  packages:
lrm: linux-restricted-modules
main: linux
meta: linux-meta
signed: linux-signed
  phase: Promote to Proposed
  phase-changed: Friday, 16. August 2019 19:11 UTC
  reason:
-   promote-to-proposed: Pending -- package copied to Proposed 
signed:retry-needed
+   promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror 
sync
  trackers:
bionic/linux-hwe-edge: bug 1840259
  variant: debs

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

Title:
  eoan/linux: 5.2.0-13.14 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840261/+subscriptions

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

[Bug 1840018] Re: trusty/linux-aws: 4.4.0-1051.55 -proposed tracker

2019-08-19 Thread Andy Whitcroft
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru) => Andy 
Whitcroft (apw)

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

Title:
  trusty/linux-aws: 4.4.0-1051.55 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840018/+subscriptions

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

[Bug 1840018] Re: trusty/linux-aws: 4.4.0-1051.55 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840021
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Ready for Promote to Proposed
- phase-changed: Thursday, 15. August 2019 10:54 UTC
+ phase: Promote to Proposed
+ phase-changed: Monday, 19. August 2019 10:35 UTC
  reason:
-   promote-to-proposed: Pending -- ready for review
+   promote-to-proposed: Ongoing -- review in progress
  variant: debs

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

Title:
  trusty/linux-aws: 4.4.0-1051.55 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840018/+subscriptions

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

[Bug 1840002] Re: xenial/linux-azure: 4.15.0-1056.61 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: In Progress => Fix Committed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1840001 (trusty/linux-azure)
  derivatives: bug 183 (azure-kernel), bug 184 (linux-azure-edge)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840006
  packages:
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
  phase: Promote to Proposed
  phase-changed: Monday, 19. August 2019 10:00 UTC
  reason:
-   promote-to-proposed: Ongoing -- review in progress
+   promote-to-proposed: Ongoing -- package copied to Proposed signed:depwait
  trackers:
trusty/linux-azure: bug 1840001
xenial/linux-azure-edge: bug 184
xenial/linux-azure/azure-kernel: bug 183
  variant: debs

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

Title:
  xenial/linux-azure: 4.15.0-1056.61 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840002/+subscriptions

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

[Bug 1840571] Re: ubuntu 18.04.3 startup purple screnn blink and could not start

2019-08-19 Thread Seiichi Nakashima
I use two PCs in this place. both PC are install ubuntu-18,04.2,
and updateed to unutu-18.04.3(5.0.0-25 kernel) by software-updater.
my trouble occured both PCs. PC have amd-cpu.
BIOS are old, but work fine until ubuntu-18.04.2(kernel 4).

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

Title:
  ubuntu 18.04.3 startup purple screnn blink and could not start

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1840571/+subscriptions

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

[Bug 1840000] Re: xenial/linux-azure-edge: 4.15.0-1056.61 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: In Progress => Fix Committed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840002
  packages:
meta: linux-meta-azure-edge
  phase: Promote to Proposed
  phase-changed: Monday, 19. August 2019 10:16 UTC
  reason:
-   promote-to-proposed: Ongoing -- review in progress
+   promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror 
sync
  variant: debs

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

Title:
  xenial/linux-azure-edge: 4.15.0-1056.61 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/184/+subscriptions

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

[Bug 1840001] Re: trusty/linux-azure: 4.15.0-1056.61~14.04.1 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840002
  packages:
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
- phase: Ready for Promote to Proposed
- phase-changed: Friday, 16. August 2019 14:41 UTC
+ phase: Promote to Proposed
+ phase-changed: Monday, 19. August 2019 10:26 UTC
  reason:
-   promote-to-proposed: Pending -- ready for review
+   promote-to-proposed: Ongoing -- review in progress
  variant: debs

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

Title:
  trusty/linux-azure: 4.15.0-1056.61~14.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840001/+subscriptions

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

[Bug 1839997] Re: bionic/linux-oracle: 4.15.0-1022.25 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1839996 (xenial/linux-oracle)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840006
  packages:
lrm: linux-restricted-modules-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
  phase: Promote to Proposed
  phase-changed: Monday, 19. August 2019 08:16 UTC
  reason:
-   promote-to-proposed: Pending -- package copied to Proposed signed:queued
+   promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror 
sync
  trackers:
xenial/linux-oracle: bug 1839996
  variant: debs

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

Title:
  bionic/linux-oracle: 4.15.0-1022.25 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839997/+subscriptions

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

[Bug 1837897] Re: xtables-addons 3.2-1ubuntu2 ADT test failure with linux 5.3.0-0.1

2019-08-19 Thread Paolo Pisati
Patch updated.

** Attachment added: "xtables-addons_3.2-1ubuntu3.diff.gz"
   
https://bugs.launchpad.net/ubuntu/+source/xtables-addons/+bug/1837897/+attachment/5283297/+files/xtables-addons_3.2-1ubuntu3.diff.gz

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

Title:
  xtables-addons 3.2-1ubuntu2 ADT test failure with linux 5.3.0-0.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xtables-addons/+bug/1837897/+subscriptions

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

[Bug 1840020] Re: trusty/linux-lts-xenial: 4.4.0-160.188~14.04.1 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: In Progress => Fix Committed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840021
  packages:
main: linux-lts-xenial
meta: linux-meta-lts-xenial
signed: linux-signed-lts-xenial
  phase: Promote to Proposed
  phase-changed: Monday, 19. August 2019 11:01 UTC
  reason:
-   promote-to-proposed: Ongoing -- review in progress
+   promote-to-proposed: Pending -- package copied to Signing 
signed:retry-needed
  variant: debs

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

Title:
  trusty/linux-lts-xenial: 4.4.0-160.188~14.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840020/+subscriptions

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

[Bug 1840643] Status changed to Confirmed

2019-08-19 Thread Ubuntu Kernel Bot
This change was made by a bot.

** 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/1840643

Title:
  System freezes: BUG: unable to handle kernel paging request at
  9d26523dfaf8

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

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

[Bug 1839951] Re: bionic/linux-aws-edge: 5.0.0-1013.15~18.04.1 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package
   Status: In Progress => Fix Committed

** Changed in: kernel-sru-workflow/prepare-package
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: In Progress => Fix Committed

** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1839953
  packages:
main: linux-aws-edge
meta: linux-meta-aws-edge
- phase: Packaging
- phase-changed: Monday, 19. August 2019 10:15 UTC
+ phase: Holding before Promote to Proposed
+ phase-changed: Monday, 19. August 2019 11:25 UTC
  reason:
-   prepare-package: Pending -- package not yet uploaded
-   prepare-package-meta: Pending -- package not yet uploaded
+   promote-to-proposed: Pending -- builds not complete in ppa 
main:building,meta:queued
  variant: debs

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

Title:
  bionic/linux-aws-edge: 5.0.0-1013.15~18.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839951/+subscriptions

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

[Bug 1840004] Re: xenial/linux-deeplens: -proposed tracker

2019-08-19 Thread Kleber Sacilotto de Souza
** Changed in: kernel-sru-workflow/automated-testing
   Status: New => Invalid

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

Title:
  xenial/linux-deeplens:  -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840004/+subscriptions

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

[Bug 1804865] Re: Lua dynamic libraries isn't enabled

2019-08-19 Thread Andreas Rönnquist
Alright, Installed the package from bionic-proposed in a clean virtual
machine, and tested the package. The fix works.


** Tags removed: verification-needed-bionic
** Tags added: verification-done-bionic

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

Title:
  Lua dynamic libraries isn't enabled

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

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

[Bug 1804865] Re: Lua dynamic libraries isn't enabled

2019-08-19 Thread Andreas Rönnquist
Alright, I should mention versions too: error in 4.0.0-1, and working
fix in 4.0.0-1ubuntu0.1.

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

Title:
  Lua dynamic libraries isn't enabled

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

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

[Bug 1840018] Re: trusty/linux-aws: 4.4.0-1051.55 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/regression-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/verification-testing
   Status: New => Confirmed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840021
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Promote to Proposed
- phase-changed: Monday, 19. August 2019 10:35 UTC
+ phase: Ready for Testing
+ phase-changed: Monday, 19. August 2019 12:26 UTC
+ proposed-announcement-sent: true
+ proposed-testing-requested: true
  reason:
-   promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror 
sync
+   regression-testing: Ongoing -- testing in progress
+   verification-testing: Ongoing -- testing in progress
  variant: debs

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

Title:
  trusty/linux-aws: 4.4.0-1051.55 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840018/+subscriptions

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

[Bug 1840020] Re: trusty/linux-lts-xenial: 4.4.0-160.188~14.04.1 -proposed tracker

2019-08-19 Thread Andy Whitcroft
** Changed in: kernel-sru-workflow/promote-signing-to-proposed
 Assignee: (unassigned) => Andy Whitcroft (apw)

** Changed in: kernel-sru-workflow/promote-signing-to-proposed
   Status: Confirmed => In Progress

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

Title:
  trusty/linux-lts-xenial: 4.4.0-160.188~14.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840020/+subscriptions

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

[Bug 1840658] [NEW] package libc6 2.23-0ubuntu11 failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2019-08-19 Thread Marius Gedminas
Public bug reported:

do-release-upgrade of Ubuntu 16.04 to 18.04 inside an OpenVZ container
fails rather early in the upgrade process with this error.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libc6 2.23-0ubuntu11
Uname: Linux 2.6.32-042stab138.1 x86_64
ApportVersion: 2.20.1-0ubuntu2.19
Architecture: amd64
Date: Mon Aug 19 16:23:07 2019
Dependencies:
 gcc-6-base 6.0.1-0ubuntu1
 libc6 2.23-0ubuntu11
 libgcc1 1:6.0.1-0ubuntu1
Dmesg:
 
ErrorMessage: subprocess new pre-installation script returned error exit status 
1
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.6
 apt  1.2.32
SourcePackage: glibc
Title: package libc6 2.23-0ubuntu11 failed to install/upgrade: subprocess new 
pre-installation script returned error exit status 1
UpgradeStatus: Upgraded to xenial on 2019-08-19 (0 days ago)

** Affects: glibc (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/1840658

Title:
  package libc6 2.23-0ubuntu11 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/glibc/+bug/1840658/+subscriptions

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

[Bug 1839996] Re: xenial/linux-oracle: 4.15.0-1022.25~16.04.1 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1839997
  packages:
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
  phase: Promote to Proposed
  phase-changed: Monday, 19. August 2019 08:46 UTC
  reason:
-   promote-to-proposed: Pending -- package copied to Proposed signed:queued
+   promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror 
sync
  variant: debs

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

Title:
  xenial/linux-oracle: 4.15.0-1022.25~16.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839996/+subscriptions

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

[Bug 1775165] Re: fanotify07 in LTP syscall test generates kernel trace with T/X/X-AWS kernel

2019-08-19 Thread Po-Hsu Lin
** Summary changed:

- fanotify07/fanotify08 in LTP syscall test generates kernel trace with 
T/X/X-AWS kernel
+ fanotify07 in LTP syscall test generates kernel trace with T/X/X-AWS kernel

** Summary changed:

- fanotify07 in LTP syscall test generates kernel trace with T/X/X-AWS kernel
+ fanotify07 in LTP syscall test generates kernel trace with T/X kernel

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

Title:
  fanotify07 in LTP syscall test generates kernel trace with T/X kernel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1775165/+subscriptions

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

[Bug 1840155] Re: new EC2 is unable to resolve local Amazon DNS

2019-08-19 Thread Paride Legovini
Thanks for your report. I can't reproduce this on a newly launched
Bionic EC2 instance (ami-07d0cf3af28718ef8):

ubuntu@ip-172-31-94-19:~$ host ip-172-31-94-19.ec2.internal
ip-172-31-94-19.ec2.internal has address 172.31.94.19

ubuntu@ip-172-31-94-19:~$ nslookup ip-172-31-94-19.ec2.internal
Server: 127.0.0.53
Address:127.0.0.53#53

Non-authoritative answer:
Name:   ip-172-31-94-19.ec2.internal
Address: 172.31.94.19

Could you please include the full steps to reproduce the problem, and
let us know the exact AMI you are launching? I'm marking this report as
Incomplete for the moment, please change the report status back to New
once you provided the additional details. Thanks!

** Changed in: ec2-ami-tools (Ubuntu)
   Status: New => Incomplete

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

Title:
  new EC2 is unable to resolve local Amazon DNS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ec2-ami-tools/+bug/1840155/+subscriptions

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

[Bug 1840020] Re: trusty/linux-lts-xenial: 4.4.0-160.188~14.04.1 -proposed tracker

2019-08-19 Thread Andy Whitcroft
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru) => Andy 
Whitcroft (apw)

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

Title:
  trusty/linux-lts-xenial: 4.4.0-160.188~14.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840020/+subscriptions

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

[Bug 1839995] Re: bionic/linux-ibm-gt: 4.15.0-1032.34 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: New => Confirmed

** Tags added: block-proposed-bionic

** Tags added: block-proposed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840006
  packages:
main: linux-ibm-gt
meta: linux-meta-ibm-gt
- phase: Holding before Promote to Proposed
- phase-changed: Friday, 16. August 2019 07:25 UTC
+ phase: Ready for Promote to Proposed
+ phase-changed: Monday, 19. August 2019 11:01 UTC
  reason:
-   promote-to-proposed: Holding -- another kernel is currently pending in 
Proposed
+   promote-to-proposed: Pending -- ready for review
  variant: debs

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

Title:
  bionic/linux-ibm-gt: 4.15.0-1032.34 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839995/+subscriptions

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

[Bug 1839995] Re: bionic/linux-ibm-gt: 4.15.0-1032.34 -proposed tracker

2019-08-19 Thread Juerg Haefliger
** Changed in: kernel-sru-workflow/automated-testing
   Status: New => Invalid

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

Title:
  bionic/linux-ibm-gt: 4.15.0-1032.34 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839995/+subscriptions

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

[Bug 1839277] Re: bionic/linux-ibm-gt: 4.15.0-1031.33 -proposed tracker

2019-08-19 Thread Juerg Haefliger
*** This bug is a duplicate of bug 1839995 ***
https://bugs.launchpad.net/bugs/1839995

** This bug has been marked a duplicate of bug 1839995
   bionic/linux-ibm-gt: 4.15.0-1032.34 -proposed tracker

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

Title:
  bionic/linux-ibm-gt: 4.15.0-1031.33 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839277/+subscriptions

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

[Bug 1840018] Re: trusty/linux-aws: 4.4.0-1051.55 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: In Progress => Fix Committed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840021
  packages:
main: linux-aws
meta: linux-meta-aws
  phase: Promote to Proposed
  phase-changed: Monday, 19. August 2019 10:35 UTC
  reason:
-   promote-to-proposed: Ongoing -- review in progress
+   promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror 
sync
  variant: debs

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

Title:
  trusty/linux-aws: 4.4.0-1051.55 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840018/+subscriptions

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

[Bug 1840636] Re: E: Sub-process /usr/bin/dpkg returned an error code (1)

2019-08-19 Thread Chris Guiver
Thank you for taking the time to report this issue and helping to make
Ubuntu better.

Examining the information you have given us, this does not appear to be
a bug report so we are closing it and converting it to a question in the
support tracker. We understand the difficulties you are facing, but it
is better to raise problems you are having in the support tracker at
https://answers.launchpad.net/ubuntu if you are uncertain if they are
bugs.

You can also find help with your problem in the support forum of your
local Ubuntu community http://loco.ubuntu.com/ or asking at
https://askubuntu.com or https://ubuntuforums.org.

For help on reporting bugs, see
https://help.ubuntu.com/community/ReportingBugs.

(bug reports are about mostly about fixing problems for future people,
support requests are about fixing your problem, a question fits your
request better)

** Changed in: mariadb-10.3 (Ubuntu)
   Status: New => Invalid

** Converted to question:
   https://answers.launchpad.net/ubuntu/+source/mariadb-10.3/+question/683046

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

Title:
  E: Sub-process /usr/bin/dpkg returned an error code (1)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mariadb-10.3/+bug/1840636/+subscriptions

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

[Bug 1840643] [NEW] System freezes: BUG: unable to handle kernel paging request at ffff9d26523dfaf8

2019-08-19 Thread Bob Andrews
Public bug reported:

The system suddenly freezes.

"journalctl" reports:

Aug 19 12:43:57 $HOSTNAME kernel: BUG: unable to handle kernel paging request 
at 9d26523dfaf8
Aug 19 12:43:57 $HOSTNAME kernel: #PF error: [normal kernel read fault]

Last program that was executed was Firefox (stock version from Xubuntu
19.04 without any additional add-ons), surfing with 9 tabs opened.

"ubuntu-bug linux" has been executed.

Ubuntu 5.0.0-25.26-generic 5.0.18

Description:Ubuntu 19.04
Release:19.04

firefox:
  Installiert:   68.0.2+build1-0ubuntu0.19.04.1
  Installationskandidat: 68.0.2+build1-0ubuntu0.19.04.1
  Versionstabelle:
 *** 68.0.2+build1-0ubuntu0.19.04.1 500
500 http://de.archive.ubuntu.com/ubuntu disco-updates/main amd64 
Packages
500 http://security.ubuntu.com/ubuntu disco-security/main amd64 Packages
100 /var/lib/dpkg/status
 66.0.3+build1-0ubuntu1 500
500 http://de.archive.ubuntu.com/ubuntu disco/main amd64 Packages

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: linux-image-5.0.0-25-generic 5.0.0-25.26
ProcVersionSignature: Ubuntu 5.0.0-25.26-generic 5.0.18
Uname: Linux 5.0.0-25-generic x86_64
ApportVersion: 2.20.10-0ubuntu27.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  bob1641 F pulseaudio
CurrentDesktop: XFCE
Date: Mon Aug 19 12:55:41 2019
InstallationDate: Installed on 2019-08-19 (0 days ago)
InstallationMedia: Xubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
IwConfig:
 enp0s25   no wireless extensions.
 
 lono wireless extensions.
MachineType: Hewlett-Packard HP Compaq 8100 Elite CMT PC
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.0.0-25-generic 
root=/dev/mapper/xubuntu--vg-root ro quiet splash vt.handoff=1
RelatedPackageVersions:
 linux-restricted-modules-5.0.0-25-generic N/A
 linux-backports-modules-5.0.0-25-generic  N/A
 linux-firmware1.178.3
RfKill:
 
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/09/2010
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 786H1 v01.05
dmi.board.asset.tag: CZC1248ZDK
dmi.board.name: 304Bh
dmi.board.vendor: Hewlett-Packard
dmi.chassis.asset.tag: CZC1248ZDK
dmi.chassis.type: 6
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786H1v01.05:bd06/09/2010:svnHewlett-Packard:pnHPCompaq8100EliteCMTPC:pvr:rvnHewlett-Packard:rn304Bh:rvr:cvnHewlett-Packard:ct6:cvr:
dmi.product.family: 103C_53307F
dmi.product.name: HP Compaq 8100 Elite CMT PC
dmi.product.sku: AY031AV
dmi.sys.vendor: Hewlett-Packard

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


** Tags: amd64 apport-bug disco

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

Title:
  System freezes: BUG: unable to handle kernel paging request at
  9d26523dfaf8

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

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

[Bug 1839108] Re: bionic/linux-ibm-gt: 4.15.0-1030.32 -proposed tracker

2019-08-19 Thread Juerg Haefliger
*** This bug is a duplicate of bug 1839995 ***
https://bugs.launchpad.net/bugs/1839995

** This bug is no longer a duplicate of bug 1839277
   bionic/linux-ibm-gt: 4.15.0-1031.33 -proposed tracker
** This bug has been marked a duplicate of bug 1839995
   bionic/linux-ibm-gt: 4.15.0-1032.34 -proposed tracker

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

Title:
  bionic/linux-ibm-gt: 4.15.0-1030.32 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839108/+subscriptions

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

[Bug 1819082] Re: [snap] LibreOffice lacks support for OpenCL

2019-08-19 Thread Marcus Tomlinson
This actually turned out to be an issue in the Debian package as well,
which will be fixed in the 6.3.0 release later this week.

I'll keep this bug open though to track the lack of OpenCL support in
the snap.

** Summary changed:

- [snap] LibreOffice crashes after enabling OpenCL in the settings
+ [snap] LibreOffice lacks support for OpenCL

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

Title:
  [snap] LibreOffice lacks support for OpenCL

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

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

[Bug 1840020] Re: trusty/linux-lts-xenial: 4.4.0-160.188~14.04.1 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840021
  packages:
main: linux-lts-xenial
meta: linux-meta-lts-xenial
signed: linux-signed-lts-xenial
- phase: Ready for Promote to Proposed
- phase-changed: Wednesday, 14. August 2019 22:41 UTC
+ phase: Promote to Proposed
+ phase-changed: Monday, 19. August 2019 11:01 UTC
  reason:
-   promote-to-proposed: Pending -- ready for review
+   promote-to-proposed: Ongoing -- review in progress
  variant: debs

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

Title:
  trusty/linux-lts-xenial: 4.4.0-160.188~14.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840020/+subscriptions

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

[Bug 1839521] Re: Xenial: ZFS deadlock in shrinker path with xattrs

2019-08-19 Thread Mauricio Faria de Oliveira
Verification done for linux on xenial-proposed.

The inodes for file, xattr dir, and xattr child are all evicted at file
removal time, not making it to any disposal list after file removal.

So the window/scenario for the problem to occur is not present anymore.

Log
---

$ uname -rv
4.4.0-160-generic #188-Ubuntu SMP Wed Aug 14 04:21:43 UTC 2019

$ modinfo zfs | head
filename:   /lib/modules/4.4.0-160-generic/kernel/zfs/zfs/zfs.ko
version:0.6.5.6-0ubuntu28
...
srcversion: 99F1D0FED2F291CA7AED0C6

$ sudo apt-get install zfsutils-linux attr

$ sudo ./zfs-mount.sh

$ echo 2 | sudo tee /proc/sys/vm/drop_caches
2

$ sudo ./zfs-kprobes.sh

$ sudo cat /sys/kernel/debug/tracing/trace_pipe &

$ touch /zfs/file
   touch-10656 [001] d...   359.615887: p_zfs_mknode_0: 
(zfs_mknode+0x0/0xe00 [zfs]) flag=0x0 dzp=0x8800b9875940
   touch-10656 [001] d...   359.616184: p_zfs_znode_alloc_0: 
(zfs_znode_alloc+0x0/0x520 [zfs]) obj=0xa
   touch-10656 [001] d...   359.616339: r_zfs_znode_alloc_0: 
(zfs_mknode+0x8a3/0xe00 [zfs] <- zfs_znode_alloc) zpp=0x880036f48440

$ setfattr -n user.debug -v 1 /zfs/file
setfattr-10657 [000] d...   361.507063: p_zfs_mknode_0: 
(zfs_mknode+0x0/0xe00 [zfs]) flag=0x2 dzp=0x880036f48440
setfattr-10657 [000] d...   361.507265: p_zfs_znode_alloc_0: 
(zfs_znode_alloc+0x0/0x520 [zfs]) obj=0xb
setfattr-10657 [000] d...   361.507402: r_zfs_znode_alloc_0: 
(zfs_mknode+0x8a3/0xe00 [zfs] <- zfs_znode_alloc) zpp=0x880139d09980
setfattr-10657 [000] d...   361.507665: p_zfs_zget_0: 
(zfs_zget+0x0/0x230 [zfs]) zsb=0x8800bb12c000 obj=0xa
setfattr-10657 [000] d...   361.507792: r_zfs_zget_0: 
(zfs_zaccess+0x12b/0x220 [zfs] <- zfs_zget)
setfattr-10657 [000] d...   361.507981: p_zfs_zget_0: 
(zfs_zget+0x0/0x230 [zfs]) zsb=0x8800bb12c000 obj=0xa
setfattr-10657 [000] d...   361.508104: r_zfs_zget_0: 
(zfs_zaccess+0x12b/0x220 [zfs] <- zfs_zget)
setfattr-10657 [000] d...   361.508692: p_zfs_zget_0: 
(zfs_zget+0x0/0x230 [zfs]) zsb=0x8800bb12c000 obj=0xa
setfattr-10657 [000] d...   361.508821: r_zfs_zget_0: 
(zfs_zaccess+0x12b/0x220 [zfs] <- zfs_zget)
setfattr-10657 [000] d...   361.509022: p_zfs_mknode_0: 
(zfs_mknode+0x0/0xe00 [zfs]) flag=0x0 dzp=0x880139d09980
setfattr-10657 [000] d...   361.509170: p_zfs_znode_alloc_0: 
(zfs_znode_alloc+0x0/0x520 [zfs]) obj=0xc
setfattr-10657 [000] d...   361.509302: r_zfs_znode_alloc_0: 
(zfs_mknode+0x8a3/0xe00 [zfs] <- zfs_znode_alloc) zpp=0x880139d09100

$ rm /zfs/file
  rm-10658 [001] d...   363.216716: p_zfs_zget_0: 
(zfs_zget+0x0/0x230 [zfs]) zsb=0x8800bb12c000 obj=0xa
  rm-10658 [001] d...   363.216882: r_zfs_zget_0: 
(zfs_dirent_lock+0x56c/0x6c0 [zfs] <- zfs_zget)
  rm-10658 [001] d...   363.217130: p_zfs_zget_0: 
(zfs_zget+0x0/0x230 [zfs]) zsb=0x8800bb12c000 obj=0xb
  rm-10658 [001] d...   363.217271: r_zfs_zget_0: 
(zfs_remove+0x22b/0x4c0 [zfs] <- zfs_zget)
  rm-10658 [001] d...   363.217567: p_zpl_evict_inode_0: 
(zpl_evict_inode+0x0/0x60 [zfs]) inode=0x880036f48650
  rm-10658 [001] d...   363.217715: p_zfs_inactive_0: 
(zfs_inactive+0x0/0x270 [zfs]) inode=0x880036f48650
  rm-10658 [001] d...   363.217835: p_zfs_zinactive_0: 
(zfs_zinactive+0x0/0xe0 [zfs]) znode=0x880036f48440 obj=0xa
  rm-10658 [001] d...   363.217963: p_zfs_rmnode_0: 
(zfs_rmnode+0x0/0x360 [zfs]) znode=0x880036f48440
  rm-10658 [001] d...   363.218102: p_zfs_zget_0: 
(zfs_zget+0x0/0x230 [zfs]) zsb=0x8800bb12c000 obj=0xb
  rm-10658 [001] d...   363.218232: r_zfs_zget_0: 
(zfs_rmnode+0x25b/0x360 [zfs] <- zfs_zget)
  rm-10658 [001] d...   363.218464: p_zfs_iput_async_0: 
(zfs_iput_async+0x0/0x60 [zfs]) inode=0x880139d09b90 obj=0x0
   <...>-10308 [003] d...   363.218496: p_zpl_evict_inode_0: 
(zpl_evict_inode+0x0/0x60 [zfs]) inode=0x880139d09b90
  z_iput-10308 [003] d...   363.218503: p_zfs_inactive_0: 
(zfs_inactive+0x0/0x270 [zfs]) inode=0x880139d09b90
  z_iput-10308 [003] d...   363.218505: p_zfs_zinactive_0: 
(zfs_zinactive+0x0/0xe0 [zfs]) znode=0x880139d09980 obj=0xb
  z_iput-10308 [003] d...   363.218509: p_zfs_rmnode_0: 
(zfs_rmnode+0x0/0x360 [zfs]) znode=0x880139d09980
  z_iput-10308 [003] d...   363.218512: p_zfs_purgedir_0: 
(zfs_purgedir+0x0/0x230 [zfs]) znode=0x880139d09980
  z_iput-10308 [003] d...   363.218560: p_zfs_zget_0: 
(zfs_zget+0x0/0x230 [zfs]) zsb=0x8800bb12c000 obj=0xc
  z_iput-10308 [003] d...   363.218566: r_zfs_zget_0: 
(zfs_purgedir+0xb4/0x230 [zfs] <- zfs_zget)
  z_iput-10308 [003] d...   363.218606: p_zfs_iput_async_0: 
(zfs_iput_async+0x0/0x60 [zfs]) inode=0x880139d09310 obj=0x0
  z_iput-10308 [003] d...   363.218626: r_zfs_purgedir_0: 

[Bug 1840001] Re: trusty/linux-azure: 4.15.0-1056.61~14.04.1 -proposed tracker

2019-08-19 Thread Andy Whitcroft
** Changed in: kernel-sru-workflow/promote-signing-to-proposed
 Assignee: (unassigned) => Andy Whitcroft (apw)

** Changed in: kernel-sru-workflow/promote-signing-to-proposed
   Status: Confirmed => In Progress

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

Title:
  trusty/linux-azure: 4.15.0-1056.61~14.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840001/+subscriptions

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

[Bug 1807709] Re: dbus always crashes at session start (on wayland)

2019-08-19 Thread Thomas SIMON
Would someone be able to indicate how to get a full backtrace &
coredump? That could be useful in getting the reason of the crashes?

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

Title:
  dbus always crashes at session start (on wayland)

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

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

[Bug 1839944] Re: linux-gcp: -proposed tracker

2019-08-19 Thread Stefan Bader
** Tags removed: kernel-sru-cycle-2019.08.12-1

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

Title:
  linux-gcp:  -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839944/+subscriptions

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

[Bug 1840020] Re: trusty/linux-lts-xenial: 4.4.0-160.188~14.04.1 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-signing-to-proposed
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840021
  packages:
main: linux-lts-xenial
meta: linux-meta-lts-xenial
signed: linux-signed-lts-xenial
- phase: Promote to Proposed
- phase-changed: Monday, 19. August 2019 11:01 UTC
+ phase: Ready for Promote to Proposed
+ phase-changed: Monday, 19. August 2019 12:27 UTC
  reason:
-   promote-to-proposed: Pending -- package copied to Signing signed:queued
+   promote-signing-to-proposed: Pending -- ready for review
  variant: debs

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

Title:
  trusty/linux-lts-xenial: 4.4.0-160.188~14.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840020/+subscriptions

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

[Bug 1840004] Re: xenial/linux-deeplens: 4.15.0-1006.6 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New => Invalid

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => Invalid

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1840005
  packages:
main: linux-deeplens
meta: linux-meta-deeplens
- phase: Ready for Packaging
- phase-changed: Wednesday, 14. August 2019 16:06 UTC
+ phase: Packaging
+ phase-changed: Monday, 19. August 2019 12:41 UTC
  reason:
-   prepare-package: Pending -- version not specified
+   prepare-package: Pending -- package not yet uploaded
+   prepare-package-meta: Pending -- package not yet uploaded
  variant: debs

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

Title:
  xenial/linux-deeplens: 4.15.0-1006.6 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840004/+subscriptions

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

[Bug 1840004] Re: xenial/linux-deeplens: 4.15.0-1006.6 -proposed tracker

2019-08-19 Thread Kleber Sacilotto de Souza
** Summary changed:

- xenial/linux-deeplens:  -proposed tracker
+ xenial/linux-deeplens: 4.15.0-1006.6 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Kleber 
Sacilotto de Souza (kleber-souza)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: New => In Progress

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Kleber 
Sacilotto de Souza (kleber-souza)

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

Title:
  xenial/linux-deeplens: 4.15.0-1006.6 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840004/+subscriptions

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

[Bug 1836789] Re: After 19.04 upgrade: tigercron complains: , --ERROR-- [init001e] Don't have required command DIFF.

2019-08-19 Thread Launchpad Bug Tracker
This bug was fixed in the package tiger - 1:3.2.4~rc1-2

---
tiger (1:3.2.4~rc1-2) unstable; urgency=medium

  * debian/config: Remove only files using xarg instead of -exec.
Use rmdir to remove the main directory instead of using find.
(Closes: #931581, #931926)
  * debian/rules: 
   - Fix the code creating symlinks (Closes: #909620)
   - Add symlink for 5 and default (Closes: #928641)
  * config: Add the possibility of having a 'default' definition
and use that one instead of the generic one. This change and 
above symlinks should avoid any errors to users upgrading 
to linux-image or latest version of the kernel in the future
(Closes: #928641) (LP: #1836789)
  * default/config: Fix typo in export call (Closes: #928640) (LP: #1830825)
  * scripts/check_passwd: Include patch based on the one provided by Christoph
Anton Mitterer that includes the output of 'pwck -r' when the message is
reported. (Closes: #512076)
  * scripts/check_group: Include the output of 'grpck -r' when the message  
is reported.
  * scripts/check_accounts: Do not complain about dormant accounts for
accounts that are system accounts
  * debian/control: Improve the explanation of the package and reference
other software for those users that are looking for alternatives.

 -- Javier Fernández-Sanguino Peña   Mon, 19 Aug 2019
00:12:13 +0200

** Changed in: tiger (Ubuntu)
   Status: New => 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/1836789

Title:
  After 19.04 upgrade: tigercron complains:  , --ERROR-- [init001e]
  Don't have required command DIFF.

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

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

[Bug 1830825] Re: /usr/lib/tiger/systems/default/config misspells "export" as "expot"

2019-08-19 Thread Launchpad Bug Tracker
This bug was fixed in the package tiger - 1:3.2.4~rc1-2

---
tiger (1:3.2.4~rc1-2) unstable; urgency=medium

  * debian/config: Remove only files using xarg instead of -exec.
Use rmdir to remove the main directory instead of using find.
(Closes: #931581, #931926)
  * debian/rules: 
   - Fix the code creating symlinks (Closes: #909620)
   - Add symlink for 5 and default (Closes: #928641)
  * config: Add the possibility of having a 'default' definition
and use that one instead of the generic one. This change and 
above symlinks should avoid any errors to users upgrading 
to linux-image or latest version of the kernel in the future
(Closes: #928641) (LP: #1836789)
  * default/config: Fix typo in export call (Closes: #928640) (LP: #1830825)
  * scripts/check_passwd: Include patch based on the one provided by Christoph
Anton Mitterer that includes the output of 'pwck -r' when the message is
reported. (Closes: #512076)
  * scripts/check_group: Include the output of 'grpck -r' when the message  
is reported.
  * scripts/check_accounts: Do not complain about dormant accounts for
accounts that are system accounts
  * debian/control: Improve the explanation of the package and reference
other software for those users that are looking for alternatives.

 -- Javier Fernández-Sanguino Peña   Mon, 19 Aug 2019
00:12:13 +0200

** Changed in: tiger (Ubuntu)
   Status: Confirmed => 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/1830825

Title:
   /usr/lib/tiger/systems/default/config misspells "export" as "expot"

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

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

[Bug 1834113] Re: QEMU touchpad input erratic after wakeup from sleep

2019-08-19 Thread Rafael David Tinoco
Avi,

Something I have realized we missed as a feedback here - or maybe I
missed checking previous comments - is how your mouse is being setup for
the guest. Is it being PS/2 emulated (default) or is it being given as
an USB device (when qemu cmd line has "-usb -device usb-tablet"). Also,
are you using SPICE protocol (perhaps with USB direction option ?).

Are you able to tell which xserver-xorg-input-XX module is being used
inside the guest ? You will probably find that information from Xorg log
files (check if you're using xf86-input-wacom or xserver-xorg-input-
evdev or some other).

Another thing that comes to my mind as well, are you using powersaving
features ? Specifically the I2C bus I'm concerned. Using "powertop", you
are able to change "Runtime PM for I2C Adapter" option under the
Tunables Tab (turning the power mgmt to off). I would like to know if
you are able to reproduce the issue without having power management
enabled for I2C. You can try disabling only I2C and then disabling all
PM options as a second attempt.

>From your host:

Device #1

[2.834320] input: WCOM488E:00 056A:488E Mouse as
/devices/pci:00/:00:15.0/i2c_designware.0/i2c-1/i2c-
WCOM488E:00/0018:056A:488E.0001/input/input12

[3.064686] input: Wacom HID 488E Finger as
/devices/pci:00/:00:15.0/i2c_designware.0/i2c-1/i2c-
WCOM488E:00/0018:056A:488E.0001/input/input17

Device #2

[2.834860] input: SYNA2393:00 06CB:7A13 Mouse as
/devices/pci:00/:00:15.1/i2c_designware.1/i2c-6/i2c-
SYNA2393:00/0018:06CB:7A13.0002/input/input13

[2.834929] input: SYNA2393:00 06CB:7A13 Touchpad as
/devices/pci:00/:00:15.1/i2c_designware.1/i2c-6/i2c-
SYNA2393:00/0018:06CB:7A13.0002/input/input14

Could you describe your input devices ? How many mice, trackpads, pens,
etc, you are using connected to the host ?

Thanks! And sorry for so many questions =).

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

Title:
  QEMU touchpad input erratic after wakeup from sleep

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

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

[Bug 1784655] Re: ACPI Exception

2019-08-19 Thread L'Africain
It affects me with the 5.0 kernel.

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

Title:
  ACPI Exception

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

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

[Bug 1731459] Re: genesys_gl847 scanners produce a black band in scanned images on Ubuntu 17.10+, 18.04 LTS and 18.10 Cosmic cuttlefish

2019-08-19 Thread Ananth P
@gunnarhj I have `CanoScan LiDE 100` scanner with this problem on
18.04.3 LTS (bionic). I tried the above mentioned PPA. It does not solve
the issue.

`libsane-common` version is `1.0.27-1~experimental3ubuntu2.2~ppa`. I see
version `1.0.27-3.2...` for later ubuntu versions which is not available
for bionic.

If the fix is posted in PPA for bionic, I can verify and provide the
status here.

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

Title:
  genesys_gl847 scanners produce a black band in scanned images on
  Ubuntu 17.10+,  18.04 LTS and 18.10 Cosmic cuttlefish

To manage notifications about this bug go to:
https://bugs.launchpad.net/sane-backends/+bug/1731459/+subscriptions

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

[Bug 1804865] Re: Lua dynamic libraries isn't enabled

2019-08-19 Thread Andreas Rönnquist
** Tags added: verification-done

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

Title:
  Lua dynamic libraries isn't enabled

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

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

[Bug 1840652] Re: upgrade amd64-microcode with new microcode for 17h family

2019-08-19 Thread Dimitri John Ledkov
** Summary changed:

- upgrade amd64-microcode with new microcode & better initramfs hook
+ upgrade amd64-microcode with new microcode for 17h family

** Description changed:

- upgrade amd64-microcode with new microcode & better initramfs hook
- 
  [Impact]
  
-  * New microcode is available
- 
-  * It is hard to generate initrd, with all microcodes included because the 
initramfs hook ignores 
-preset defaults. Adjust hook to take preset defaults into account.
+  * New microcode is available
  
  [Test Case]
  
-  * There is no testcase for new microcode, as it is unknown what has
+  * There is no testcase for new microcode, as it is unknown what has
  changed.
- 
-  * Install new package, and check that initrd with default settings (i.e. 
modules=most) has amd64 
-microcode included. And that with modules=dep|list it only does so, if one 
is on AMD cpu.
- 
-  * Install initramfs-tools-ubuntu-core from snap image PPA, the resulting 
initrd should contian 
-both amd64 and intel microcode, despite using modules=list, due to the 
conf.d default settings
-it overrides.
  
  [Regression Potential]
  
-  * New microcode is published without a changelog, thus it is unknown what it 
fixes or regresses, 
-yet it is recommeded to upgrade it. The 17h family microcode has been 
updated, almost doubling in size.
- 
-  * The hook default behaviour is not changed, only integration with
- custom conf.d's is improved.
- 
-  * This both shows the SRU team that the risks have been considered,
-and provides guidance to testers in regression-testing the SRU.
+  * New microcode is published without a changelog, thus it is unknown what it 
fixes or regresses,
+    yet it is recommeded to upgrade it. The 17h family microcode has been 
updated, almost doubling in size.
  
  [Other Info]
-  
-  * 
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/amd-ucode?id=8aa9e3e3886d49b8e1427c1084cbbe567ca2b6ca
+ 
+  * https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-
+ firmware.git/commit/amd-
+ ucode?id=8aa9e3e3886d49b8e1427c1084cbbe567ca2b6ca

** Changed in: amd64-microcode (Ubuntu Disco)
   Status: New => Fix Released

** Changed in: amd64-microcode (Ubuntu Bionic)
   Status: New => Triaged

** Changed in: amd64-microcode (Ubuntu Xenial)
   Status: New => Triaged

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

Title:
  upgrade amd64-microcode with new microcode for 17h family

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/amd64-microcode/+bug/1840652/+subscriptions

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

[Bug 1840670] [NEW] amd64-microcode better initramfs hook

2019-08-19 Thread Dimitri John Ledkov
Public bug reported:

[Impact]

 * It is hard to generate initrd, with all microcodes included because the 
initramfs hook ignores
   preset defaults. Adjust hook to take preset defaults into account.

[Test Case]

 * Install new package, and check that initrd with default settings (i.e. 
modules=most) has amd64
   microcode included. And that with modules=dep|list it only does so, if one 
is on AMD cpu.

 * Install initramfs-tools-ubuntu-core from snap image PPA, the resulting 
initrd should contian
   both amd64 and intel microcode, despite using modules=list, due to the 
conf.d default settings
   it overrides.

[Regression Potential]

 * The hook default behaviour is not changed, only integration with
custom conf.d's is improved.

** Affects: amd64-microcode (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Affects: amd64-microcode (Ubuntu Xenial)
 Importance: Undecided
 Status: New

** Affects: amd64-microcode (Ubuntu Bionic)
 Importance: Undecided
 Status: In Progress

** Affects: amd64-microcode (Ubuntu Disco)
 Importance: Undecided
 Status: In Progress

** Also affects: amd64-microcode (Ubuntu Disco)
   Importance: Undecided
   Status: New

** Also affects: amd64-microcode (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: amd64-microcode (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Changed in: amd64-microcode (Ubuntu)
   Status: New => 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/1840670

Title:
  amd64-microcode better initramfs hook

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/amd64-microcode/+bug/1840670/+subscriptions

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

[Bug 1840665] [NEW] disco/linux-gcp: 5.0.0-1014.14 -proposed tracker

2019-08-19 Thread Stefan Bader
Public bug reported:

This bug will contain status and test results related to a kernel source
(or snap) as stated in the title.

For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

backports: bug 1839959 (bionic/linux-gke-5.0), bug 1840664 (bionic
/linux-gcp)

-- swm properties --
kernel-stable-master-bug: 1839972
packages:
  main: linux-gcp
  meta: linux-meta-gcp
  signed: linux-signed-gcp
phase: Signoff
phase-changed: Monday, 19. August 2019 13:48 UTC
proposed-announcement-sent: true
proposed-testing-requested: true
reason:
  regression-testing: Ongoing -- testing in progress
  security-signoff: Pending -- waiting for signoff
  verification-testing: Ongoing -- testing in progress
trackers:
  bionic/linux-gcp: bug 1840664
  bionic/linux-gke-5.0: bug 1839959
variant: debs

** Affects: kernel-sru-workflow
 Importance: Medium
 Status: In Progress

** Affects: kernel-sru-workflow/automated-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: Fix Released

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Assignee: Canonical Hardware Certification (canonical-hw-cert)
 Status: Invalid

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Khaled El Mously (kmously)
 Status: Fix Released

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Khaled El Mously (kmously)
 Status: Fix Released

** Affects: kernel-sru-workflow/prepare-package-signed
 Importance: Medium
 Assignee: Khaled El Mously (kmously)
 Status: Fix Released

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Andy Whitcroft (apw)
 Status: Fix Released

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: Confirmed

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Steve Beattie (sbeattie)
 Status: In Progress

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: Confirmed

** Affects: linux-gcp (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Affects: linux-gcp (Ubuntu Disco)
 Importance: Medium
 Status: Confirmed


** Tags: block-proposed block-proposed-disco disco kernel-release-tracking-bug 
kernel-release-tracking-bug-live kernel-sru-cycle-2019.08.12-2 
kernel-sru-derivative-of-1839972

** Also affects: kernel-sru-workflow/automated-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Tags added: disco kernel-release-tracking-bug

** Also affects: linux-gcp (Ubuntu Disco)
   Importance: Undecided
   Status: New

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

** Changed in: kernel-sru-workflow/automated-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/automated-testing
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) => Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/certification-testing
   Status: New => Invalid

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: 

[Bug 1840665] Re: disco/linux-gcp: 5.0.0-1014.14 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/automated-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/prepare-package
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: New => Fix Committed

** Tags added: block-proposed-disco

** Tags added: block-proposed

** Changed in: kernel-sru-workflow/regression-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => In Progress

** Changed in: kernel-sru-workflow/verification-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/automated-testing
   Status: Confirmed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/prepare-package
   Status: In Progress => Fix Committed

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Khaled El 
Mously (kmously)

** Changed in: kernel-sru-workflow/prepare-package
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: In Progress => Fix Committed

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Khaled El 
Mously (kmously)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: In Progress => Fix Committed

** Changed in: kernel-sru-workflow/prepare-package-signed
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Khaled El 
Mously (kmously)

** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Fix Committed => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1839959 (bionic/linux-gke-5.0), bug 1840664 (bionic
  /linux-gcp)
  
  -- swm properties --
  kernel-stable-master-bug: 1839972
+ packages:
+   main: linux-gcp
+   meta: linux-meta-gcp
+   signed: linux-signed-gcp
+ phase: Signoff
+ phase-changed: Monday, 19. August 2019 13:48 UTC
+ proposed-announcement-sent: true
+ proposed-testing-requested: true
+ reason:
+   regression-testing: Ongoing -- testing in progress
+   security-signoff: Pending -- waiting for signoff
+   verification-testing: Ongoing -- testing in progress
  variant: debs

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

Title:
  disco/linux-gcp: 5.0.0-1014.14 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840665/+subscriptions

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

[Bug 1840665] Re: disco/linux-gcp: 5.0.0-1014.14 -proposed tracker

2019-08-19 Thread Stefan Bader
** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru) => Andy 
Whitcroft (apw)

** Changed in: kernel-sru-workflow/security-signoff
 Assignee: Canonical Security Team (canonical-security) => Steve Beattie 
(sbeattie)

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

Title:
  disco/linux-gcp: 5.0.0-1014.14 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840665/+subscriptions

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

[Bug 1840665] Re: disco/linux-gcp: 5.0.0-1014.14 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1839959 (bionic/linux-gke-5.0), bug 1840664 (bionic
  /linux-gcp)
  
  -- swm properties --
  kernel-stable-master-bug: 1839972
  packages:
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
  phase: Signoff
  phase-changed: Monday, 19. August 2019 13:48 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
verification-testing: Ongoing -- testing in progress
+ trackers:
+   bionic/linux-gcp: bug 1840664
+   bionic/linux-gke-5.0: bug 1839959
  variant: debs

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

Title:
  disco/linux-gcp: 5.0.0-1014.14 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840665/+subscriptions

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

[Bug 1836913] Re: crash (on ppc64) when restarting numad while huge guest is active

2019-08-19 Thread Andrew Cloke
Marking as "incomplete" while waiting for LP#1839065 to be resolved
(with a f/w update).

** Changed in: ubuntu-power-systems
   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/1836913

Title:
  crash (on ppc64) when restarting numad while huge guest is active

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-power-systems/+bug/1836913/+subscriptions

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

[Bug 1840652] Re: upgrade amd64-microcode with new microcode for 17h family

2019-08-19 Thread Dimitri John Ledkov
** Changed in: amd64-microcode (Ubuntu Bionic)
   Status: Triaged => Fix Committed

** Changed in: amd64-microcode (Ubuntu Bionic)
   Status: Fix Committed => Triaged

** Changed in: amd64-microcode (Ubuntu Bionic)
   Status: Triaged => In Progress

** Changed in: amd64-microcode (Ubuntu Xenial)
   Status: Triaged => In Progress

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

Title:
  upgrade amd64-microcode with new microcode for 17h family

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/amd64-microcode/+bug/1840652/+subscriptions

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

[Bug 1840626] Re: [nvidia] Slowness and sometimes the computer freezes

2019-08-19 Thread Daniel van Vugt
Can you disable the discrete (Nvidia) GPU in your BIOS for a while and
try that? That will help us to identify if the Nvidia driver is related
to the problem.

Also, next time any slowness occurs please run in a Terminal window:

  journalctl -b0 > journal.txt

and then attach the file 'journal.txt' to this bug.

** Tags added: performance

** Changed in: nvidia-graphics-drivers-390 (Ubuntu)
   Status: New => Incomplete

** Changed in: xorg-server (Ubuntu)
   Status: New => Incomplete

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

Title:
  [nvidia] Slowness and sometimes the computer freezes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-390/+bug/1840626/+subscriptions

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

[Bug 1837634] Re: Error during apt dist-ugprade on ubuntu 19.04

2019-08-19 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: dkms (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/1837634

Title:
  Error during apt dist-ugprade on ubuntu 19.04

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

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

[Bug 1840626] Re: Description

2019-08-19 Thread Daniel van Vugt
I wonder if the slowness is related to this from your Xorg log:

[   137.718] randr: falling back to unsynchronized pixmap sharing

** Tags added: nvidia

** Summary changed:

- Description
+ Slowness and sometimes the computer freezes

** Summary changed:

- Slowness and sometimes the computer freezes
+ [nvidia] Slowness and sometimes the computer freezes

** Tags added: hybrid

** Package changed: xorg (Ubuntu) => xorg-server (Ubuntu)

** Also affects: nvidia-graphics-drivers-390 (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/1840626

Title:
  [nvidia] Slowness and sometimes the computer freezes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-390/+bug/1840626/+subscriptions

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

[Bug 1807974] Re: Wireless regularly breaking (ath10k firmware crashed!) after upgrade to Cosmic

2019-08-19 Thread TomaszChmielewski
This also affects Dell Precision 5520 running Ubuntu 19.04.

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

Title:
  Wireless regularly breaking (ath10k firmware crashed!) after upgrade
  to Cosmic

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

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

[Bug 1839996] Re: xenial/linux-oracle: 4.15.0-1022.25~16.04.1 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: In Progress => Fix Committed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1839997
  packages:
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
  phase: Promote to Proposed
  phase-changed: Monday, 19. August 2019 08:46 UTC
  reason:
-   promote-to-proposed: Ongoing -- review in progress
+   promote-to-proposed: Ongoing -- package copied to Proposed signed:depwait
  variant: debs

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

Title:
  xenial/linux-oracle: 4.15.0-1022.25~16.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839996/+subscriptions

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

[Bug 1840005] Re: xenial/linux-hwe: 4.15.0-59.66~16.04.1 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/automated-testing
   Status: In Progress => Incomplete

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1840003 (linux-hwe-edge), bug 1840004 (linux-deeplens)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840006
  packages:
main: linux-hwe
meta: linux-meta-hwe
signed: linux-signed-hwe
  phase: Testing
  phase-changed: Monday, 19. August 2019 07:32 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   automated-testing: Ongoing -- testing in progress
+   automated-testing: Stalled -- testing FAILED
certification-testing: Ongoing -- testing in progress
regression-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
verification-testing: Ongoing -- testing in progress
  trackers:
xenial/linux-deeplens: bug 1840004
xenial/linux-hwe-edge: bug 1840003
  variant: debs

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

Title:
  xenial/linux-hwe: 4.15.0-59.66~16.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840005/+subscriptions

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

[Bug 1840634] [NEW] bionic: GNOME needs update to 3.30

2019-08-19 Thread Wolf
Public bug reported:

With time going on, more an more minor flaws are occuring in GNOME:

* mouse movements often are very laggy
* mouse pointer gets under active windows
* system gets stuck for several system
* control for gnome-search is grayed out, so search can no longer be configured.

It does not make much sense to repair each of these petitesses with
outdated GNOME 3.28 - but if you take the idea of LTS serious, it is
necessary to update GNOME. I won't update to 18.10, because that was a
really bad experience last time - so many apps got dysfunctional.

** Affects: gnome-shell (Ubuntu)
 Importance: Wishlist
 Status: Opinion


** Tags: bionic

** Package changed: nvidia-graphics-drivers-384 (Ubuntu) => gnome-shell
(Ubuntu)

** Description changed:

  With time going on, more an more minor flaws are occuring in GNOME:
  
  * mouse movements often are very laggy
  * mouse pointer gets under active windows
  * system gets stuck for several system
  * control for gnome-search is grayed out, so search can no longer be 
configured.
  
- I does not make much sense to repair each of these pettitesses with
+ It does not make much sense to repair each of these petitesses with
  outdated GNOME 3.28 - but if you take the idea of LTS serious, it is
  necessary to update GNOME. I won't update to 18.10, because that was a
  really bad experience last time - so many apps got dysfunctional.

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

Title:
  bionic: GNOME needs update to 3.30

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1840634/+subscriptions

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

[Bug 1792085] Re: MTP not working/very slow on Bionic

2019-08-19 Thread Behrouz
I did something else today. 
Calibre on Flathub detected both my phone and my Kindle perfectly but Calibre 
on Bionic official repo couldn't do that. Well, official repo is version 3.21 
and Flathub version is 3.46. I don't know if that's the problem. 
Anyone knows what is that mean?

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

Title:
  MTP not working/very slow on Bionic

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

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

[Bug 1840626] Re: [nvidia] Slowness and sometimes the computer freezes

2019-08-19 Thread Rabillon
I can't disable the discrete Nvidia GPU in my BIOS. I don't have menu to swich 
off this GPU on the BIOS. 
I will run your command in a Term next time, 
Thanks.

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

Title:
  [nvidia] Slowness and sometimes the computer freezes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-390/+bug/1840626/+subscriptions

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

[Bug 1804865] Re: Lua dynamic libraries isn't enabled

2019-08-19 Thread Andreas Rönnquist
** Tags removed: verification-needed

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

Title:
  Lua dynamic libraries isn't enabled

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

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

[Bug 1840074] Re: Is it a good idea to draw logos and icons exclusively for !!!$!$%?

2019-08-19 Thread klfyt
*** This bug is a duplicate of bug 1840038 ***
https://bugs.launchpad.net/bugs/1840038

** Description changed:

- 
  I dunno. Are you sure?  :))
- 
- Icon role in any ui is for retarded persons to look at them?  :))

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

Title:
  Is it a good idea to draw logos and icons exclusively for !!!$!$%?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/yaru-theme/+bug/1840074/+subscriptions

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

[Bug 1840652] [NEW] upgrade amd64-microcode with new microcode & better initramfs hook

2019-08-19 Thread Dimitri John Ledkov
Public bug reported:

upgrade amd64-microcode with new microcode & better initramfs hook

[Impact]

 * New microcode is available

 * It is hard to generate initrd, with all microcodes included because the 
initramfs hook ignores 
   preset defaults. Adjust hook to take preset defaults into account.

[Test Case]

 * There is no testcase for new microcode, as it is unknown what has
changed.

 * Install new package, and check that initrd with default settings (i.e. 
modules=most) has amd64 
   microcode included. And that with modules=dep|list it only does so, if one 
is on AMD cpu.

 * Install initramfs-tools-ubuntu-core from snap image PPA, the resulting 
initrd should contian 
   both amd64 and intel microcode, despite using modules=list, due to the 
conf.d default settings
   it overrides.

[Regression Potential]

 * New microcode is published without a changelog, thus it is unknown what it 
fixes or regresses, 
   yet it is recommeded to upgrade it. The 17h family microcode has been 
updated, almost doubling in size.

 * The hook default behaviour is not changed, only integration with
custom conf.d's is improved.

 * This both shows the SRU team that the risks have been considered,
   and provides guidance to testers in regression-testing the SRU.

[Other Info]
 
 * 
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/amd-ucode?id=8aa9e3e3886d49b8e1427c1084cbbe567ca2b6ca

** Affects: amd64-microcode (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Affects: amd64-microcode (Ubuntu Xenial)
 Importance: Undecided
 Status: New

** Affects: amd64-microcode (Ubuntu Bionic)
 Importance: Undecided
 Status: New

** Affects: amd64-microcode (Ubuntu Disco)
 Importance: Undecided
 Status: New

** Also affects: amd64-microcode (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: amd64-microcode (Ubuntu Disco)
   Importance: Undecided
   Status: New

** Also affects: amd64-microcode (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Changed in: amd64-microcode (Ubuntu)
   Status: New => 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/1840652

Title:
  upgrade amd64-microcode with new microcode & better initramfs hook

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/amd64-microcode/+bug/1840652/+subscriptions

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

[Bug 1840650] Missing required logs.

2019-08-19 Thread Ubuntu Kernel Bot
This bug is missing log files that will aid in diagnosing the problem.
While running an Ubuntu kernel (not a mainline or third-party kernel)
please enter the following command in a terminal window:

apport-collect 1840650

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

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

** Tags added: bionic

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

Title:
  System crashes under nfs heavy load

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

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

[Bug 1840658] Re: package libc6 2.23-0ubuntu11 failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2019-08-19 Thread Marius Gedminas
I asked the DC support about Ubuntu 18.04 LTS support and apparently
it's not supported on their OpenVZ offerings.

I suppose this bug can be closed?  Unless you'd prefer to detect the
situation and abort the upgrade, to prevent users from shooting their
feet off?

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

Title:
  package libc6 2.23-0ubuntu11 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/glibc/+bug/1840658/+subscriptions

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

[Bug 1840633] Re: autopkgtests get stuck in Eoan with iptables 1.8.3

2019-08-19 Thread Christian Ehrhardt 
Note from my debug builds:

TDEBUG: check OSError
GNC: Enter get_netfilter_capabilities
GNC: we are root
GNC: chain ufw-caps-testSqLa5Y
GNC: exe /sbin/iptables

That means it is the first action of the test, just running
  /sbin/iptables -N ufw-caps-testSqLa5Y
Nothing else of the python stack was running before as part of the test.

debian/rules just has:
 30 install: build  
 
 31 »···dh_testdir  
 
 32 »···dh_testroot 
 
 33 »···dh_prep 
 
 34 »···dh_installdirs  
 
 35 
 
 36 ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))  
 
 37 »···./run_tests.sh -i $(PYTHON2)
 
 38 »···./run_tests.sh -i $(PYTHON) 
 
 39 »···# the testsuite creates the build/ directory with test values that we   
 
 40 »···# don't want to use 
 
 41 »···make clean  
 
 42 endif

We should actually be able to just run
$ sudo apt build-dep ufw
$ ./debian/rules install

In general this is mostly python, so build almost only consists of
selftests.

But no matter what I do the test either
a) works
b) breaks on the root check like
  File "/home/ubuntu/ufw/tests/unit/test_util.py", line 918, in 
test_get_netfilter_capabilities
ufw.util.get_netfilter_capabilities)
  File "/home/ubuntu/ufw/tests/unit/support.py", line 164, in 
check_for_exception
t.fail('%s not thrown' % str(expectedException))
AssertionError:  not thrown

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

Title:
  autopkgtests get stuck in Eoan with iptables 1.8.3

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

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

[Bug 1840006] Re: bionic/linux: 4.15.0-59.66 -proposed tracker

2019-08-19 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1840002 (xenial/linux-azure), bug 1840005 (xenial/linux-hwe)
- derivatives: bug 1839974 (pc-kernel), bug 1839975 (pc-lowlatency-kernel), bug 
1839977 (linux-raspi2), bug 1839979 (linux-snapdragon), bug 1839980 
(linux-oem), bug 1839985 (linux-aws), bug 1839990 (linux-gcp), bug 1839992 
(linux-gke-4.15), bug 1839993 (linux-kvm), bug 1839995 (linux-ibm-gt), bug 
1839997 (linux-oracle), bug 1839998 (linux-fips)
+ derivatives: bug 1839974 (pc-kernel), bug 1839975 (pc-lowlatency-kernel), bug 
1839977 (linux-raspi2), bug 1839979 (linux-snapdragon), bug 1839980 
(linux-oem), bug 1839985 (linux-aws), bug 1839992 (linux-gke-4.15), bug 1839993 
(linux-kvm), bug 1839995 (linux-ibm-gt), bug 1839997 (linux-oracle), bug 
1839998 (linux-fips)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  packages:
lrm: linux-restricted-modules
main: linux
meta: linux-meta
signed: linux-signed
  phase: Testing
  phase-changed: Thursday, 15. August 2019 15:26 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-testing: Stalled -- testing FAILED
certification-testing: Ongoing -- testing in progress
regression-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-aws: bug 1839985
bionic/linux-fips: bug 1839998
bionic/linux-gcp: bug 1839990
bionic/linux-gke-4.15: bug 1839992
bionic/linux-ibm-gt: bug 1839995
bionic/linux-kvm: bug 1839993
bionic/linux-oem: bug 1839980
bionic/linux-oracle: bug 1839997
bionic/linux-raspi2: bug 1839977
bionic/linux-snapdragon: bug 1839979
bionic/linux/pc-kernel: bug 1839974
bionic/linux/pc-lowlatency-kernel: bug 1839975
xenial/linux-azure: bug 1840002
xenial/linux-hwe: bug 1840005
  variant: debs

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

Title:
  bionic/linux: 4.15.0-59.66 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1840006/+subscriptions

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

[Bug 1839989] Re: xenial/linux-gcp: -proposed tracker

2019-08-19 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1839987 (gcp-kernel), bug 1839988 (gke-kernel)
  
  -- swm properties --
- kernel-stable-master-bug: 1839990
+ kernel-stable-master-bug: 1840664
  packages:
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
  phase: Holding before Packaging
  phase-changed: Tuesday, 13. August 2019 10:52 UTC
  reason:
prepare-package: Holding -- waiting for master bug
  trackers:
xenial/linux-gcp/gcp-kernel: bug 1839987
xenial/linux-gcp/gke-kernel: bug 1839988
  variant: debs

** Tags removed: kernel-sru-backport-of-1839990

** Tags added: kernel-sru-backport-of-1840664

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

Title:
  xenial/linux-gcp:  -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839989/+subscriptions

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

[Bug 1839959] Re: bionic/linux-gke-5.0: 5.0.0-1014.14~18.04.1 -proposed tracker

2019-08-19 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1839958 (gke-kernel)
  
  -- swm properties --
  boot-testing-requested: true
- kernel-stable-master-bug: 1839962
+ kernel-stable-master-bug: 1840665
  packages:
main: linux-gke-5.0
meta: linux-meta-gke-5.0
signed: linux-signed-gke-5.0
  phase: Testing
  phase-changed: Thursday, 15. August 2019 20:20 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-testing: Stalled -- testing FAILED
promote-to-updates: Pending -- Nvidia objects not found -- 
current-driver-5.0.0-1014-gke-d1809-0-amd64
regression-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-gke-5.0/gke-kernel: bug 1839958
  variant: debs

** Tags removed: kernel-sru-backport-of-1839962

** Tags added: kernel-sru-backport-of-1840665

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

Title:
  bionic/linux-gke-5.0: 5.0.0-1014.14~18.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839959/+subscriptions

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

[Bug 1840658] Re: package libc6 2.23-0ubuntu11 failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2019-08-19 Thread Marius Gedminas
Additional information:
- the container is a "VPS" provided by a popular local hosting company 
Interneto Vizija (https://iv.lt)
- they have their own patched 2.6.32-042stab138.1 kernel that I have no 
capability of upgrading
- the upgrade process shows a fancy ncurses warning that libc6 requires a newer 
kernel version (3.2 or later), but provides no option to abort the upgrade at 
that point

Recovering from the failed upgrade appears to be simple:
- change bionic back to xenial in /etc/apt/sources.list
- apt install locales/xenial libc6-dev/xenial libc6-dbg/xenial 
libc-dev-bin/xenial

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

Title:
  package libc6 2.23-0ubuntu11 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/glibc/+bug/1840658/+subscriptions

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

[Bug 1839972] Re: disco/linux: 5.0.0-26.27 -proposed tracker

2019-08-19 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1839969 (bionic/linux-hwe), bug 1839971 (bionic/linux-oem-osp1)
- derivatives: bug 1839949 (linux-raspi2), bug 1839953 (linux-aws), bug 1839962 
(linux-gcp), bug 1839965 (linux-kvm), bug 1839967 (linux-oracle), bug 1839968 
(linux-snapdragon), bug 1840326 (linux-azure)
+ derivatives: bug 1839949 (linux-raspi2), bug 1839953 (linux-aws), bug 1839965 
(linux-kvm), bug 1839967 (linux-oracle), bug 1839968 (linux-snapdragon), bug 
1840326 (linux-azure)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  packages:
lrm: linux-restricted-modules
main: linux
meta: linux-meta
signed: linux-signed
  phase: Testing
  phase-changed: Thursday, 15. August 2019 10:51 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-testing: Stalled -- testing FAILED
certification-testing: Ongoing -- testing in progress
regression-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-hwe: bug 1839969
bionic/linux-oem-osp1: bug 1839971
disco/linux-aws: bug 1839953
disco/linux-azure: bug 1840326
disco/linux-gcp: bug 1839962
disco/linux-kvm: bug 1839965
disco/linux-oracle: bug 1839967
disco/linux-raspi2: bug 1839949
disco/linux-snapdragon: bug 1839968
  variant: debs

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1839969 (bionic/linux-hwe), bug 1839971 (bionic/linux-oem-osp1)
- derivatives: bug 1839949 (linux-raspi2), bug 1839953 (linux-aws), bug 1839965 
(linux-kvm), bug 1839967 (linux-oracle), bug 1839968 (linux-snapdragon), bug 
1840326 (linux-azure)
+ derivatives: bug 1839949 (linux-raspi2), bug 1839953 (linux-aws), bug 1839965 
(linux-kvm), bug 1839967 (linux-oracle), bug 1839968 (linux-snapdragon), bug 
1840326 (linux-azure), bug 1840665 (linux-gcp)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  packages:
lrm: linux-restricted-modules
main: linux
meta: linux-meta
signed: linux-signed
  phase: Testing
  phase-changed: Thursday, 15. August 2019 10:51 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-testing: Stalled -- testing FAILED
certification-testing: Ongoing -- testing in progress
regression-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-hwe: bug 1839969
bionic/linux-oem-osp1: bug 1839971
disco/linux-aws: bug 1839953
disco/linux-azure: bug 1840326
disco/linux-gcp: bug 1839962
disco/linux-kvm: bug 1839965
disco/linux-oracle: bug 1839967
disco/linux-raspi2: bug 1839949
disco/linux-snapdragon: bug 1839968
  variant: debs

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

Title:
  disco/linux: 5.0.0-26.27 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839972/+subscriptions

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

[Bug 1840664] [NEW] linux-gcp: -proposed tracker

2019-08-19 Thread Stefan Bader
Public bug reported:

This bug will contain status and test results related to a kernel source
(or snap) as stated in the title.

For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

backports: bug 1839989 (xenial/linux-gcp)
derivatives: bug 1840662 (gcp-kernel), bug 1840663 (linux-gcp-edge)

-- swm properties --
kernel-stable-master-bug: 1840665
variant: debs

** Affects: kernel-sru-workflow
 Importance: Medium
 Status: In Progress

** Affects: kernel-sru-workflow/automated-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Assignee: Canonical Hardware Certification (canonical-hw-cert)
 Status: Invalid

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-lrm
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-signed
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: linux-gcp (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Affects: linux-gcp (Ubuntu Bionic)
 Importance: Medium
 Status: Confirmed


** Tags: bionic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-backport-of-1840665 kernel-sru-cycle-2019.08.12-2

** Also affects: kernel-sru-workflow/automated-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-lrm
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Tags added: bionic kernel-release-tracking-bug

** Also affects: linux-gcp (Ubuntu Bionic)
   Importance: Undecided
   Status: New

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

** Changed in: kernel-sru-workflow/automated-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/automated-testing
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) => Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/certification-testing
   Status: New => Invalid

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-lrm

[Bug 1840663] [NEW] linux-gcp-edge: -proposed tracker

2019-08-19 Thread Stefan Bader
Public bug reported:

This bug will contain status and test results related to a kernel source
(or snap) as stated in the title.

For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

-- swm properties --
kernel-stable-master-bug: 1840664
variant: debs

** Affects: kernel-sru-workflow
 Importance: Medium
 Status: In Progress

** Affects: kernel-sru-workflow/automated-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Assignee: Canonical Hardware Certification (canonical-hw-cert)
 Status: Invalid

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: linux-gcp-edge (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Affects: linux-gcp-edge (Ubuntu Bionic)
 Importance: Medium
 Status: Confirmed


** Tags: bionic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.08.12-2 kernel-sru-derivative-of-1840664

** Also affects: kernel-sru-workflow/automated-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Tags added: bionic kernel-release-tracking-bug

** Also affects: linux-gcp-edge (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Changed in: linux-gcp-edge (Ubuntu Bionic)
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/automated-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/automated-testing
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) => Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/certification-testing
   Status: New => Invalid

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team 

[Bug 1839990] Re: bionic/linux-gcp: -proposed tracker

2019-08-19 Thread Stefan Bader
*** This bug is a duplicate of bug 1840664 ***
https://bugs.launchpad.net/bugs/1840664

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
-   https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
+   https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1839989 (xenial/linux-gcp)
- derivatives: bug 1839986 (gcp-kernel)
  
  -- swm properties --
  kernel-stable-master-bug: 1840006
  packages:
lrm: linux-restricted-modules-gcp
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
  phase: Ready for Packaging
  phase-changed: Wednesday, 14. August 2019 11:15 UTC
  reason:
prepare-package: Pending -- version not specified
  trackers:
bionic/linux-gcp/gcp-kernel: bug 1839986
xenial/linux-gcp: bug 1839989
  variant: debs

** Tags removed: kernel-sru-derivative-of-1840006

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1839989 (xenial/linux-gcp)
  
  -- swm properties --
- kernel-stable-master-bug: 1840006
  packages:
lrm: linux-restricted-modules-gcp
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
  phase: Ready for Packaging
  phase-changed: Wednesday, 14. August 2019 11:15 UTC
  reason:
prepare-package: Pending -- version not specified
  trackers:
bionic/linux-gcp/gcp-kernel: bug 1839986
xenial/linux-gcp: bug 1839989
  variant: debs

** This bug has been marked a duplicate of bug 1840664
   linux-gcp:  -proposed tracker

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

Title:
  bionic/linux-gcp:  -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839990/+subscriptions

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

[Bug 1840633] Re: autopkgtests get stuck in Eoan with iptables 1.8.3

2019-08-19 Thread Christian Ehrhardt 
Since iptables seems to hang it might be more a bug in there, but I fail
to recreate the case for further analysis no matter what I tried so far
:-/

Adding iptables bug task and subscribing jdstrand in case he has another
idea due to his experience in that area.

** Also affects: iptables (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/1840633

Title:
  autopkgtests get stuck in Eoan with iptables 1.8.3

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

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

[Bug 1840675] [NEW] Expose a button in the Network panel to open nm-connection-editor

2019-08-19 Thread Amr Ibrahim
Public bug reported:

Upstream reverted showing the desktop launcher of nm-connection-editor because 
it's confusing for the average user, its icon is outdated and does not follow 
the current GNOME icon design guidelines.
https://gitlab.gnome.org/GNOME/network-manager-applet/issues/55
https://gitlab.gnome.org/GNOME/network-manager-applet/commit/a0c31ed5

Upstream follow-up bug: Remove runtime dependency on network-manager-applet 
(nm-connection-editor)
https://gitlab.gnome.org/GNOME/gnome-control-center/issues/512

So in the meantime I suggest exposing a button in the Network panel (or
else where it fits) to open nm-connection-editor in order not to lose
the tool's functionally. The name of the button could be Advanced
Network Configuration.

Note: we are already doing the same thing for Region & Language settings
and Printer settings.

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: eoan

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

Title:
  Expose a button in the Network panel to open nm-connection-editor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1840675/+subscriptions

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

[Bug 1840634] Re: bionic: GNOME needs update to 3.30

2019-08-19 Thread Daniel van Vugt
A new version is never guaranteed to fix any given set of bugs. Please
log separate bugs for each of the problems you are experiencing by
running:

  ubuntu-bug gnome-shell


** Tags added: bionic

** Changed in: gnome-shell (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: gnome-shell (Ubuntu)
   Status: New => Opinion

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

Title:
  bionic: GNOME needs update to 3.30

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1840634/+subscriptions

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

[Bug 1839993] Re: bionic/linux-kvm: 4.15.0-1043.43 -proposed tracker

2019-08-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/automated-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Fix Committed => Fix Released

** Changed in: kernel-sru-workflow/regression-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => In Progress

** Changed in: kernel-sru-workflow/verification-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/automated-testing
   Status: Confirmed => In Progress

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1840006
  packages:
main: linux-kvm
meta: linux-meta-kvm
- phase: Promote to Proposed
- phase-changed: Monday, 19. August 2019 07:45 UTC
+ phase: Testing
+ phase-changed: Monday, 19. August 2019 09:45 UTC
+ proposed-announcement-sent: true
+ proposed-testing-requested: true
  reason:
-   promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror 
sync
+   automated-testing: Ongoing -- testing in progress
+   regression-testing: Ongoing -- testing in progress
+   security-signoff: Pending -- waiting for signoff
+   verification-testing: Ongoing -- testing in progress
  variant: debs

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

Title:
  bionic/linux-kvm: 4.15.0-1043.43 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839993/+subscriptions

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

[Bug 1840633] Re: autopkgtests get stuck in Eoan with iptables 1.8.3

2019-08-19 Thread Christian Ehrhardt 
There were a bunch of mentions of that function in bug 1044361 bug 1039729 and 
bug 1062521.
And while the issues back then are in the code since version 34 we might again 
face something that is special about the network environment that is present 
only in the autopkgtest-env for "build-needed" but not in any other build env 
where everything is passing.

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

Title:
  autopkgtests get stuck in Eoan with iptables 1.8.3

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

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

[Bug 1840650] [NEW] System crashes under nfs heavy load

2019-08-19 Thread dmn42
Public bug reported:

Hi all.

We have an NFSv4 server hosted in GCP with relative heavy load (read
over nfs and write over ssh/rsync). After upgrade from 14.04 to 18.04
this server started to crash approx. once a day or two. We have similar
box with same configuration but without nfs load (cold spare) and this
problem does not affect it.

I've tried multiple kernels listed below, this did not help.
linux-image-4.15.0-1026-gcp
linux-image-4.15.0-55-generic
linux-image-4.18.0-1008-gcp
linux-image-4.18.0-1015-gcp
linux-image-4.19.36
linux-image-5.0.0-1011-gcp
linux-image-5.2.5

NFS packages:
ii  libnfsidmap2:amd640.25-5.1  
  amd64NFS idmapping library
ii  nfs-common1:1.3.4-2.1ubuntu5.2  
  amd64NFS support files common to client and server
ii  nfs-kernel-server 1:1.3.4-2.1ubuntu5.2  
  amd64support for NFS kernel server

Crash info:

  KERNEL: /usr/lib/debug/boot/vmlinux-4.15.0-55-generic
DUMPFILE: /var/crash_/201908190304/dump.201908190304  [PARTIAL DUMP]
CPUS: 32
DATE: Mon Aug 19 03:04:28 2019
  UPTIME: 06:05:53
LOAD AVERAGE: 7.56, 6.82, 6.77
   TASKS: 627
NODENAME: storage-gce-be-1.project.domain.net
 RELEASE: 4.15.0-55-generic
 VERSION: #60-Ubuntu SMP Tue Jul 2 18:22:20 UTC 2019
 MACHINE: x86_64  (2300 Mhz)
  MEMORY: 120 GB
   PANIC: "BUG: unable to handle kernel paging request at 9e9119d39b78"
 PID: 112
 COMMAND: "ksoftirqd/17"
TASK: 9e96bfcc8000  [THREAD_INFO: 9e96bfcc8000]
 CPU: 17
   STATE: TASK_RUNNING (PANIC)

A part of crash log:

[86915.179808] WARNING: CPU: 17 PID: 3917 at 
/build/linux-aAn8fZ/linux-4.15.0/lib/radix-tree.c:783 delete_node+0x87/0x1f0
[86915.179810] Modules linked in: tcp_diag inet_diag binfmt_misc 
ip6table_filter ip6_tables iptable_filter sch_fq_codel ib_iser rdma_cm iw_cm 
ib_cm ib_core iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi 
nls_iso8859_1 sb_edac intel_rapl_perf input_leds mac_hid serio_raw pvpanic nfsd 
auth_rpcgss nfs_acl lockd grace sunrpc netconsole ip_tables x_tables autofs4 
btrfs zstd_compress raid10 raid456 async_raid6_recov async_memcpy async_pq 
async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear 
crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc aesni_intel aes_x86_64 
crypto_simd glue_helper cryptd psmouse virtio_net virtio_scsi i2c_piix4
[86915.179859] CPU: 17 PID: 3917 Comm: kworker/u64:3 Not tainted 
4.15.0-55-generic #60-Ubuntu
[86915.179860] Hardware name: Google Google Compute Engine/Google Compute 
Engine, BIOS Google 01/01/2011
[86915.179877] Workqueue: nfsd4_callbacks nfsd4_run_cb_work [nfsd]
[86915.179880] RIP: 0010:delete_node+0x87/0x1f0
[86915.179881] RSP: 0018:b97087e0fd78 EFLAGS: 00010206
[86915.179882] RAX: 9e81839df6d8 RBX: 9e81839df6c0 RCX: 
[86915.179883] RDX:  RSI: 9e9119d39b60 RDI: 9e9119d39b78
[86915.179884] RBP: b97087e0fda0 R08:  R09: 0034
[86915.179884] R10: 9e9119d39b88 R11: 0035 R12: 9e96b6304840
[86915.179885] R13:  R14: 84583630 R15: 
[86915.179887] FS:  () GS:9e96c724() 
knlGS:
[86915.179887] CS:  0010 DS:  ES:  CR0: 80050033
[86915.179888] CR2: 7fdbe3df9ba8 CR3: 0002fba0a006 CR4: 001606e0
[86915.179893] DR0:  DR1:  DR2: 
[86915.179894] DR3:  DR6: fffe0ff0 DR7: 0400
[86915.179895] Call Trace:
[86915.179901]  __radix_tree_delete+0x7f/0xa0
[86915.179903]  radix_tree_delete_item+0x6a/0xc0
[86915.179910]  nfs4_put_stid+0x3d/0x90 [nfsd]
[86915.179915]  nfsd4_cb_recall_release+0x15/0x20 [nfsd]
[86915.179920]  nfsd4_run_cb_work+0xd4/0xf0 [nfsd]
[86915.179924]  process_one_work+0x1de/0x410
[86915.179926]  worker_thread+0x32/0x410
[86915.179928]  kthread+0x121/0x140
[86915.179930]  ? process_one_work+0x410/0x410
[86915.179932]  ? kthread_create_worker_on_cpu+0x70/0x70
[86915.179935]  ret_from_fork+0x35/0x40
[86915.179936] Code: c2 41 8b 04 24 a9 00 00 00 02 75 09 25 ff ff ff 03 41 89 
04 24 49 c7 44 24 08 00 00 00 00 48 8b 46 18 48 39 f8 0f 84 2d 01 00 00 <0f> 0b 
4c 89 f6 e8 2f f3 77 ff 48 85 db 75 ab 41 bf 01 00 00 00 
[86915.179961] ---[ end trace d94747d62f40d46c ]---
[86915.220219] kernel tried to execute NX-protected page - exploit attempt? 
(uid: 0)
[86915.229005] BUG: unable to handle kernel paging request at 9e9119d39b78
[86915.236105] IP: 0x9e9119d39b78
[86915.241016] PGD 2fc143067 P4D 2fc143067 PUD 756c2f063 PMD 801819c000e3 
[86915.249604] Oops: 0011 [#1] SMP PTI
[86915.253220] Modules linked in: tcp_diag inet_diag binfmt_misc 
ip6table_filter ip6_tables iptable_filter sch_fq_codel 

[Bug 1839065] Re: power8 machines need FW update or qemu/libvirt code - cap-cfpc=broken

2019-08-19 Thread Frank Heimes
Hi Michael, a Tuleta system was used in this case (P8, 8247, 22L).

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

Title:
  power8 machines need FW update or qemu/libvirt code - cap-cfpc=broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-power-systems/+bug/1839065/+subscriptions

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

[Bug 1839962] Re: disco/linux-gcp: 5.0.0-1014.14 -proposed tracker

2019-08-19 Thread Stefan Bader
*** This bug is a duplicate of bug 1840665 ***
https://bugs.launchpad.net/bugs/1840665

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
- backports: bug 1839959 (bionic/linux-gke-5.0), bug 1839960 (bionic
- /linux-gcp-edge)
+ backports: bug 1839959 (bionic/linux-gke-5.0)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1839972
  packages:
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
  phase: Signoff
  phase-changed: Monday, 19. August 2019 10:41 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-gcp-edge: bug 1839960
bionic/linux-gke-5.0: bug 1839959
  variant: debs

** Tags removed: kernel-sru-derivative-of-1839972

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1839959 (bionic/linux-gke-5.0)
  
  -- swm properties --
  boot-testing-requested: true
- kernel-stable-master-bug: 1839972
  packages:
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
  phase: Signoff
  phase-changed: Monday, 19. August 2019 10:41 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-gcp-edge: bug 1839960
bionic/linux-gke-5.0: bug 1839959
  variant: debs

** This bug has been marked a duplicate of bug 1840665
   linux-gcp:  -proposed tracker

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

Title:
  disco/linux-gcp: 5.0.0-1014.14 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839962/+subscriptions

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

[Bug 1839960] Re: bionic/linux-gcp-edge: -proposed tracker

2019-08-19 Thread Stefan Bader
*** This bug is a duplicate of bug 1840663 ***
https://bugs.launchpad.net/bugs/1840663

** Tags removed: kernel-sru-backport-of-1839962

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
- kernel-stable-master-bug: 1839962
  packages:
main: linux-gcp-edge
meta: linux-meta-gcp-edge
signed: linux-signed-gcp-edge
  phase: Ready for Packaging
  phase-changed: Wednesday, 14. August 2019 04:55 UTC
  reason:
prepare-package: Pending -- version not specified
  variant: debs

** This bug has been marked a duplicate of bug 1840663
   linux-gcp-edge:  -proposed tracker

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

Title:
  bionic/linux-gcp-edge:  -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1839960/+subscriptions

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

<    1   2   3   4   5