[Bug 1853990] Missing required logs.

2019-12-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 1853990

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

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

** Changed in: linux (Ubuntu Disco)
   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/1853990

Title:
  [roce-1126]RDMA/hns: Fixs hw access invalid dma memory error

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

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

[Bug 1832687] Re: apt-listchanges doesn't work on Ubuntu 19.04

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

** Changed in: apt-listchanges (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/1832687

Title:
  apt-listchanges doesn't work on Ubuntu 19.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt-listchanges/+bug/1832687/+subscriptions

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

[Bug 1853989] Missing required logs.

2019-12-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 1853989

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

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

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

** Changed in: linux (Ubuntu Eoan)
   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/1853989

Title:
  [roce-1126]RDMA/hns: bugfix for slab-out-of-bounds when loading hip08
  driver

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

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

[Bug 1856024] Re: [SRU] Need backport-iwlwifi-dkms in Bionic

2019-12-19 Thread Timo Aaltonen
** Changed in: backport-iwlwifi-dkms (Ubuntu)
   Status: In Progress => 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/1856024

Title:
  [SRU] Need backport-iwlwifi-dkms in Bionic

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

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

[Bug 1853990] Re: [roce-1126]RDMA/hns: Fixs hw access invalid dma memory error

2019-12-19 Thread Ike Panhc
** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

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

** Also affects: linux (Ubuntu Disco)
   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/1853990

Title:
  [roce-1126]RDMA/hns: Fixs hw access invalid dma memory error

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

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

[Bug 1853989] Re: [roce-1126]RDMA/hns: bugfix for slab-out-of-bounds when loading hip08 driver

2019-12-19 Thread Ike Panhc
** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Eoan)
   Importance: Undecided
   Status: New

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

** Also affects: linux (Ubuntu Bionic)
   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/1853989

Title:
  [roce-1126]RDMA/hns: bugfix for slab-out-of-bounds when loading hip08
  driver

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

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

[Bug 1857099] [NEW] strerror_r used as non-portable format

2019-12-19 Thread Luiz Angelo Daros de Luca
Public bug reported:

I got a elfutils-0.178

glibc provides two different signatures for strerror_r. One is GNU-specific and 
it is not portable.
The other is 

   int strerror_r(int errnum, char *buf, size_t buflen);
   /* XSI-compliant */

   char *strerror_r(int errnum, char *buf, size_t buflen);
   /* GNU-specific */

man strerror(3) says:

   The XSI-compliant strerror_r() is preferred for portable
applications.  It returns the error string in the user-supplied buffer
buf of length buflen.

musl implements strerror_r as XSI-compliant version while elfutils uses
GNU-specific variant.

The solution should not simply ignore strerror_r return value as it
would break build when -Werror=unused-result is set.

An alternative is to do something like:
https://github.com/luizluca/openwrt/blob/a79698fefdd9dacb84865c870bf75aee978c005d/package/libs/elfutils/patches/100
-musl-compat.patch#L51

** Affects: elfutils (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/1857099

Title:
  strerror_r used as non-portable format

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

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

[Bug 1313914] Re: Rhythmbox zeitgeist plugin doesn't activate when selected in Rhythmbox plugin preferences

2019-12-19 Thread Khurshid Alam
Zeitgeist plugin has already been merged upstream in
https://gitlab.gnome.org/GNOME/rhythmbox/merge_requests/18

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

Title:
  Rhythmbox zeitgeist plugin doesn't activate when selected in Rhythmbox
  plugin preferences

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

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

[Bug 1501217] Re: Removing squid-deb-proxy-client leaves a stale but active config file, breaking apt

2019-12-19 Thread Bug Watch Updater
** Changed in: squid-deb-proxy (Debian)
   Status: Unknown => 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/1501217

Title:
  Removing squid-deb-proxy-client leaves a stale but active config file,
  breaking apt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid-deb-proxy/+bug/1501217/+subscriptions

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

[Bug 1853366] Re: latest libopenjxf-java incompatible with bionic mediathekview

2019-12-19 Thread Bug Watch Updater
** Changed in: mediathekview (Debian)
   Status: Unknown => 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/1853366

Title:
  latest libopenjxf-java incompatible with bionic mediathekview

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

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

[Bug 1665151] Re: Apache ignores disable TLSv1.0

2019-12-19 Thread Bug Watch Updater
** Changed in: apache2 (Debian)
   Status: Unknown => New

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

Title:
  Apache ignores disable TLSv1.0

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

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

[Bug 917757] Re: cheese crashed with SIGSEGV in cheese_camera_set_device_by_dev_uuid()

2019-12-19 Thread Bug Watch Updater
** Changed in: cheese (Debian)
   Status: Unknown => 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/917757

Title:
  cheese crashed with SIGSEGV in cheese_camera_set_device_by_dev_uuid()

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

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

[Bug 1854147] Re: Xorg repeatedly crashes with SIGABRT

2019-12-19 Thread Daniel van Vugt
Thanks, that is the right log and it shows:

dec 20 03:37:32 RooTBoX whoopsie[3823]: [03:37:32] Parsing
/var/crash/_usr_lib_xorg_Xorg.1000.crash.

dec 20 03:37:32 RooTBoX whoopsie[3823]: [03:37:32] Uploading
/var/crash/_usr_lib_xorg_Xorg.1000.crash.

But no other info about the crash. Maybe the crash was from the boot
before that, so please also try:

  journalctl -b-2 > prevprevboot.txt

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

Title:
  Xorg repeatedly crashes with SIGABRT

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

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

[Bug 1854147] Re: Xorg repeatedly crashes with SIGABRT

2019-12-19 Thread lotuspsychje
journal logs attached

not sure about Xwayland, want me to test some time in wayland if i can
reproduce?

** Attachment added: "prevboot.txt"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1854147/+attachment/5314234/+files/prevboot.txt

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

Title:
  Xorg repeatedly crashes with SIGABRT

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

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

[Bug 1810154] Re: ply_boot_client_process_incoming_replies: Assertion `request_node != NULL' failed

2019-12-19 Thread Steve Langasek
** Tags removed: verification-failed-eoan

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

Title:
  ply_boot_client_process_incoming_replies: Assertion `request_node !=
  NULL' failed

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

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

[Bug 1856749] Re: bionic/linux: 4.15.0-74.84 -proposed tracker

2019-12-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
  bugs-spammed: true
  packages:
lrm: linux-restricted-modules
main: linux
meta: linux-meta
signed: linux-signed
  phase: Testing
  phase-changed: Thursday, 19. December 2019 17:20 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
  trackers:
bionic/linux-aws: bug 1854802
bionic/linux-fips: bug 1854809
bionic/linux-gke-4.15: bug 1854804
bionic/linux-ibm-gt: bug 1854806
bionic/linux-kvm: bug 1854805
bionic/linux-oem: bug 1854797
bionic/linux-oracle: bug 1854808
bionic/linux-raspi2: bug 1854793
bionic/linux-snapdragon: bug 1854796
bionic/linux/pc-kernel: bug 1856747
bionic/linux/pc-lowlatency-kernel: bug 1856748
xenial/linux-azure: bug 1856203
-   xenial/linux-gcp: bug 1854816, bug 1856976
+   xenial/linux-gcp: bug 1856976
xenial/linux-hwe: bug 1856804
  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/1856749

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

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

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

[Bug 1857014] Re: Unable to paste files from Nautilus to the desktop

2019-12-19 Thread Daniel van Vugt
Pasting to the desktop also works for me in 19.10.

Are you trying to paste a file with unusual permissions?

** Changed in: gnome-shell-extension-desktop-icons (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/1857014

Title:
  Unable to paste files from Nautilus to the desktop

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

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

[Bug 1854147] Re: Xorg repeatedly crashes with SIGABRT

2019-12-19 Thread Daniel van Vugt
Thanks again. Unfortunately it seems something strange is happening with
your Xorg crashes and none are retraceable, all saying:

"This problem failed to retrace because there was no crash signature
after retracing."

The only extra information we have from those crashes is:

dec 04 20:24:34 pluto gnome-shell[21047]: Connection to xwayland lost

which suggests it is Xwayland crashing. That reminds me, I think/wonder
if upstream disabled Xwayland crash dumps in this version

** Summary changed:

- Several xorg crashes
+ Xorg repeatedly crashes with SIGABRT

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

Title:
  Xorg repeatedly crashes with SIGABRT

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

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

[Bug 1854147] Re: Xorg repeatedly crashes with SIGABRT

2019-12-19 Thread Daniel van Vugt
I also wonder why the 'Xorg' binary is crashing in the same session as
'Xwayland' problems being logged. Those two should never occur in the
same session.

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

Title:
  Xorg repeatedly crashes with SIGABRT

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

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

[Bug 1856712] Re: spinner theme displays a blank (black) screen at boot on some systems

2019-12-19 Thread Steve Langasek
** Tags added: bot-stop-nagging

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

Title:
  spinner theme displays a blank (black) screen at boot on some systems

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

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

[Bug 1854147] Re: Xorg repeatedly crashes with SIGABRT

2019-12-19 Thread Daniel van Vugt
Next time (and every time) after a crash happens, on the very next boot
please run:

  journalctl -b-1 > prevboot.txt

and then send us the file 'prevboot.txt'.

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

Title:
  Xorg repeatedly crashes with SIGABRT

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

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

[Bug 1856531] Re: Please RM julia arm64 and armhf binaries

2019-12-19 Thread Bug Watch Updater
** Changed in: julia (Debian)
   Status: Unknown => 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/1856531

Title:
  Please RM julia arm64 and armhf binaries

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

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

[Bug 1854567] Re: ZenBook UX461UN (and others), Realtek ALC294, Internal speaker - Sound distorts and then stops working

2019-12-19 Thread Gabriel Cabana
More info that probably applies here (#1857053):

$ aplay -l
 List of PLAYBACK Hardware Devices 
card 0: PCH [HDA Intel PCH], device 0: ALC294 Analog [ALC294 Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 7: HDMI 1 [HDMI 1]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 8: HDMI 2 [HDMI 2]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 9: HDMI 3 [HDMI 3]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 10: HDMI 4 [HDMI 4]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

$ cat /proc/asound/cards
 0 [PCH ]: HDA-Intel - HDA Intel PCH
  HDA Intel PCH at 0xef228000 irq 142

$ hwinfo --sound
17: PCI 1f.3: 0403 Audio device
  [Created at pci.378]
  Unique ID: nS1_.7OVTYSC7G61
  SysFS ID: /devices/pci:00/:00:1f.3
  SysFS BusID: :00:1f.3
  Hardware Class: sound
  Model: "Intel Audio device"
  Vendor: pci 0x8086 "Intel Corporation"
  Device: pci 0x9d71
  SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
  SubDevice: pci 0x1c90
  Revision: 0x21
  Driver: "snd_hda_intel"
  Driver Modules: "snd_hda_intel"
  Memory Range: 0xef228000-0xef22bfff (rw,non-prefetchable)
  Memory Range: 0xef20-0xef20 (rw,non-prefetchable)
  IRQ: 142 (2628 events)
  Module Alias: "pci:v8086d9D71sv1043sd1C90bc04sc03i00"
  Driver Info #0:
Driver Status: snd_hda_intel is active
Driver Activation Cmd: "modprobe snd_hda_intel"
  Driver Info #1:
Driver Status: snd_soc_skl is active
Driver Activation Cmd: "modprobe snd_soc_skl"
  Config Status: cfg=new, avail=yes, need=no, active=unknown

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

Title:
  ZenBook UX461UN (and others), Realtek ALC294, Internal speaker - Sound
  distorts and then stops working

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

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

[Bug 1854147] Re: Several xorg crashes

2019-12-19 Thread lotuspsychje
https://errors.ubuntu.com/user/cb36c5de1ffb50ae482d3229f8a2f70e727b96e656d23cc6d5028382d6e0be0a0d5d0534c9c092db38d15d6e49120078257f2f7842d480f0bb7db5d20caa84db

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

Title:
  Several xorg crashes

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

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

[Bug 1854567] Re: ZenBook UX461UN (and others), Realtek ALC294, Internal speaker - Sound distorts and then stops working

2019-12-19 Thread Gabriel Cabana
Marked my post as duplicate. My UX461UA is also affected (probably the
same sound card configuration).

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

Title:
  ZenBook UX461UN (and others), Realtek ALC294, Internal speaker - Sound
  distorts and then stops working

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

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

[Bug 1857053] Re: [ALC294, ASUS UX461UA] No sound coming out of speakers

2019-12-19 Thread Gabriel Cabana
*** This bug is a duplicate of bug 1854567 ***
https://bugs.launchpad.net/bugs/1854567

If anyone knows the detailed procedure to fix this and can write it
down, I'll do it. I want to get rid of this issue ASAP. No sound from
any source (speakers, earplugs, Bluetooth headphones, microphone) is
really annoying.

** This bug has been marked a duplicate of bug 1854567
   ZenBook UX461UN (and others), Realtek ALC294, Internal speaker - Sound 
distorts and then stops working

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

Title:
  [ALC294, ASUS UX461UA] No sound coming out of speakers

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

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

[Bug 1854567] Re: ZenBook UX461UN (and others), Realtek ALC294, Internal speaker - Sound distorts and then stops working

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

** Changed in: linux-signed-hwe (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/1854567

Title:
  ZenBook UX461UN (and others), Realtek ALC294, Internal speaker - Sound
  distorts and then stops working

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

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

[Bug 1754938] Re: Upload python-meshio/1.11.7-2 to bionic

2019-12-19 Thread Launchpad Bug Tracker
[Expired for python-meshio (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: python-meshio (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Upload python-meshio/1.11.7-2 to bionic

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

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

[Bug 1815318] Re: mate 18.04.1 xserver won't open caja on local machine

2019-12-19 Thread Launchpad Bug Tracker
[Expired for caja (Ubuntu) because there has been no activity for 60
days.]

** Changed in: caja (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  mate 18.04.1 xserver won't open caja on local machine

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1815318/+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 screen blink and could not start with kernel 5.0.0+

2019-12-19 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

-- 
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 screen blink and could not start with
  kernel 5.0.0+

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

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

[Bug 1847903] Re: the package can not be installed due to a missing dependency

2019-12-19 Thread Launchpad Bug Tracker
[Expired for mstch (Ubuntu) because there has been no activity for 60
days.]

** Changed in: mstch (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  the package can not be installed due to a missing dependency

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

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

[Bug 1854147] Re: Several xorg crashes

2019-12-19 Thread Daniel van Vugt
Thanks but that log does not show a crash.

Please try following these instructions for your latest .crash files:
https://wiki.ubuntu.com/Bugs/Responses#Missing_a_crash_report_or_having_a_.crash_attachment

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

Title:
  Several xorg crashes

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

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

[Bug 1855998] Re: package linux-image-5.3.0-24-generic 5.3.0-24.26 failed to install/upgrade: installed linux-image-5.3.0-24-generic package post-installation script subprocess returned error exit sta

2019-12-19 Thread shisui
same problem

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

Title:
  package linux-image-5.3.0-24-generic 5.3.0-24.26 failed to
  install/upgrade: installed linux-image-5.3.0-24-generic package post-
  installation script subprocess returned error exit status 1

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

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

[Bug 1856249] Re: RM removed in debian

2019-12-19 Thread Bug Watch Updater
** Changed in: mididings (Debian)
   Status: Unknown => 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/1856249

Title:
  RM removed in debian

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

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

[Bug 1641290] Re: [04f3:0903] Elan Microelectronics Corp fingerprint reader not recognised

2019-12-19 Thread Gabriel Cabana
Asus Zenbook Flip 14 (UX461UA). Affected by the problem as well. Ubuntu
18.04, kernel 5.0.0-37-generic.

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

Title:
  [04f3:0903] Elan Microelectronics Corp fingerprint reader not
  recognised

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

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

[Bug 1854147] Re: Several xorg crashes

2019-12-19 Thread lotuspsychje
Yes i have currently 3 xorg crashes and 1 gnome-shell one in /var/crash

attached xorg.log

** Attachment added: "Xorg.0.log"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1854147/+attachment/5314183/+files/Xorg.0.log

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

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

Title:
  Several xorg crashes

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

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

[Bug 1853835] Re: [snap] keepassxc browser integration does not work with chromium installed as a snap

2019-12-19 Thread Launchpad Bug Tracker
*** This bug is a duplicate of bug 1741074 ***
https://bugs.launchpad.net/bugs/1741074

Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: chromium-browser (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/1853835

Title:
  [snap] keepassxc browser integration does not work with chromium
  installed as a snap

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

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

[Bug 1847892] Re: large performance regression (~30-40%) in wifi with 19.10 / 5.3 kernel

2019-12-19 Thread arQon
Sorry Kai - I got swamped by real-life issues.

I finally got the time to look into this a few days ago, and when I went
to check on it then in case a kernel update had fixed things already, it
looks like it has (or at least, mostly so) - peaks are back to 80+, so
that's within wifi variance again.

It did show a strange very severe falloff in a couple of tests - down to
40-ish for several seconds during large file transfer, which is new. But
I haven't been able to repeat that anything like enough to be able to
test versions against it.

I'm set up to DO that testing if I can find a good way to repro that, or
for the next time performance goes in the tank. For now though, this is
going to have to sit in the "I'll keep an eye on it, but can't do
anything right now" pile.

Thanks again for all your help.

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

Title:
  large performance regression (~30-40%) in wifi with 19.10 / 5.3 kernel

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

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

[Bug 1855627] Re: projectM 2.1.0+dfsg-4build2 crashes with SIGABRT on first preset change

2019-12-19 Thread Bug Watch Updater
** Changed in: projectm (Debian)
   Status: Unknown => Confirmed

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

Title:
  projectM 2.1.0+dfsg-4build2 crashes with SIGABRT on first preset
  change

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

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

[Bug 1857034] Re: deleted AT SPI D files but unable to restore

2019-12-19 Thread menporul.prabhu
Searching internet for restoring deleted ubuntu system files does not
help.

Does ubuntu has a mechanism wherein it checks the root partition for
missing system files and restores them?

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

Title:
  deleted AT SPI D files but unable to restore

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

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

[Bug 1820768] Re: [SRU] support new cab and new docking firmware upgrade in fwupd 1.2.10

2019-12-19 Thread Yuan-Chen Cheng
Not sure we need Steve or someone else can just help on the version
issue below.

The new fwupdate work perfectly on stock ubuntu even use update-manager.

In oem image, we released packages with version

fwupd: 1.2.5-1~somerville1
fwupd-signed: 1.6+1.2.5-1~somerville1+1.2.5-1ubuntu1
libfwupd2:amd64: 1.2.5-1~somerville1

per compare version in bionic-proposed, both fwupd and libfwupd2 are
fine. However the fwupd-signed in porposed channel is

1.2~ubuntu18.04.1+1.2.10-1ubuntu2~ubuntu18.04.1

My fault not to confirm whether it's a proper version in the first place.
Can we bump up the fwupd-signed in bionic-proposed something that can properly 
upgrade?

Thank you.

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

Title:
  [SRU] support new cab and new docking firmware upgrade in fwupd 1.2.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1820768/+subscriptions

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

[Bug 1856211] Re: bind9utils: drop hardcoded dependency on python3

2019-12-19 Thread Bug Watch Updater
** Changed in: bind9 (Debian)
   Status: Unknown => New

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

Title:
  bind9utils: drop hardcoded dependency on python3

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

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

[Bug 1313914] Re: Rhythmbox zeitgeist plugin doesn't activate when selected in Rhythmbox plugin preferences

2019-12-19 Thread Bug Watch Updater
** Changed in: rhythmbox
   Status: Unknown => 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/1313914

Title:
  Rhythmbox zeitgeist plugin doesn't activate when selected in Rhythmbox
  plugin preferences

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

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

[Bug 1856976] Re: xenial/linux-gcp: 4.15.0-1052.56 -proposed tracker

2019-12-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 --
  kernel-stable-master-bug: 1856749
  packages:
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
- phase: Testing
- phase-changed: Thursday, 19. December 2019 19:13 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:31 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   automated-testing: Ongoing -- testing in progress
-   certification-testing: Ongoing -- testing in progress
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Pending -- waiting for signoff
  trackers:
xenial/linux-gcp/gcp-kernel: bug 1856973
xenial/linux-gcp/gke-kernel: bug 1856974
  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/1856976

Title:
  xenial/linux-gcp: 4.15.0-1052.56 -proposed tracker

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

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

[Bug 1856976] Re: xenial/linux-gcp: 4.15.0-1052.56 -proposed tracker

2019-12-19 Thread Khaled El Mously
Set the status of "certification testing" to "fix released" based on the
prior spin

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

Title:
  xenial/linux-gcp: 4.15.0-1052.56 -proposed tracker

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

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

[Bug 1856976] Re: xenial/linux-gcp: 4.15.0-1052.56 -proposed tracker

2019-12-19 Thread Khaled El Mously
All ADT tests have passed - not sure why status didn't automatically
flip

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

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

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

Title:
  xenial/linux-gcp: 4.15.0-1052.56 -proposed tracker

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

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

[Bug 1854784] Re: disco/linux-snapdragon: 5.0.0-1028.30 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854788
  packages:
main: linux-snapdragon
meta: linux-meta-snapdragon
- phase: Testing
- phase-changed: Wednesday, 04. December 2019 14:36 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:08 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- 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/1854784

Title:
  disco/linux-snapdragon: 5.0.0-1028.30 -proposed tracker

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

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

[Bug 1854767] Re: bionic/linux-aws-5.0: 5.0.0-1023.26~18.04.1 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854768
  packages:
lrm: linux-restricted-modules-aws-5.0
main: linux-aws-5.0
meta: linux-meta-aws-5.0
- phase: Testing
- phase-changed: Thursday, 05. December 2019 14:11 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:12 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- 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/1854767

Title:
  bionic/linux-aws-5.0: 5.0.0-1023.26~18.04.1 -proposed tracker

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

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

[Bug 1854787] Re: bionic/linux-bluefield: 5.0.0-1007.17 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854788
  packages:
main: linux-bluefield
meta: linux-meta-bluefield
  phase: Testing
  phase-changed: Wednesday, 04. December 2019 16:07 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
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/1854787

Title:
  bionic/linux-bluefield: 5.0.0-1007.17 -proposed tracker

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

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

[Bug 1854754] Re: bionic/linux-oracle-5.3: 5.3.0-1008.9~18.04.1 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854755
  packages:
lrm: linux-restricted-modules-oracle-5.3
main: linux-oracle-5.3
meta: linux-meta-oracle-5.3
signed: linux-signed-oracle-5.3
- phase: Testing
- phase-changed: Wednesday, 11. December 2019 11:19 UTC
+ phase: Holding before Promote to Updates
+ phase-changed: Friday, 20. December 2019 02:11 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   verification-testing: Ongoing -- testing in progress
+   promote-to-updates: Holding -- cycle not ready to release
  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/1854754

Title:
  bionic/linux-oracle-5.3: 5.3.0-1008.9~18.04.1 -proposed tracker

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

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

[Bug 1854771] Re: disco/linux-azure: 5.0.0-1028.30 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854788
  packages:
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
- phase: Testing
- phase-changed: Thursday, 05. December 2019 12:52 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:07 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-azure: bug 1854770
  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/1854771

Title:
  disco/linux-azure: 5.0.0-1028.30 -proposed tracker

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

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

[Bug 1854768] Re: disco/linux-aws: 5.0.0-1023.26 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854788
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Testing
- phase-changed: Thursday, 05. December 2019 15:01 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:07 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-aws-5.0: bug 1854767
  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/1854768

Title:
  disco/linux-aws: 5.0.0-1023.26 -proposed tracker

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

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

[Bug 1854781] Re: disco/linux-oracle: 5.0.0-1009.14 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854788
  packages:
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
- phase: Testing
- phase-changed: Wednesday, 04. December 2019 16:06 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:08 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-oracle-5.0: bug 1854779
  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/1854781

Title:
  disco/linux-oracle: 5.0.0-1009.14 -proposed tracker

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

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

[Bug 1854770] Re: bionic/linux-azure: 5.0.0-1028.30~18.04.1 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854771
  packages:
lrm: linux-restricted-modules-azure
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
- phase: Testing
- phase-changed: Friday, 06. December 2019 22:30 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:12 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- stakeholder signoff not verified
security-signoff: Stalled -- waiting for signoff
stakeholder-signoff: Stalled -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-azure/azure-kernel: bug 1854769
  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/1854770

Title:
  bionic/linux-azure: 5.0.0-1028.30~18.04.1 -proposed tracker

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

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

[Bug 1854778] Re: disco/linux-kvm: 5.0.0-1024.26 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854788
  packages:
main: linux-kvm
meta: linux-meta-kvm
- phase: Testing
- phase-changed: Wednesday, 04. December 2019 13:51 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:08 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- 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/1854778

Title:
  disco/linux-kvm: 5.0.0-1024.26 -proposed tracker

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

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

[Bug 1854766] Re: disco/linux-raspi2: 5.0.0-1024.25 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854788
  packages:
main: linux-raspi2
meta: linux-meta-raspi2
- phase: Testing
- phase-changed: Wednesday, 04. December 2019 13:31 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:07 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   certification-testing: Ongoing -- testing in progress
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- 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/1854766

Title:
  disco/linux-raspi2: 5.0.0-1024.25 -proposed tracker

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

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

[Bug 1854755] Re: eoan/linux-oracle: 5.3.0-1008.9 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: '1856807'
  packages:
lrm: linux-restricted-modules-oracle
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
- phase: Testing
- phase-changed: Wednesday, 11. December 2019 11:16 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:10 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-oracle-5.3: bug 1854754
  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/1854755

Title:
  eoan/linux-oracle: 5.3.0-1008.9 -proposed tracker

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

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

[Bug 1854779] Re: bionic/linux-oracle-5.0: 5.0.0-1009.14~18.04.1 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854781
  packages:
lrm: linux-restricted-modules-oracle-5.0
main: linux-oracle-5.0
meta: linux-meta-oracle-5.0
signed: linux-signed-oracle-5.0
- phase: Testing
- phase-changed: Thursday, 05. December 2019 15:04 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:12 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- 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/1854779

Title:
  bionic/linux-oracle-5.0: 5.0.0-1009.14~18.04.1 -proposed tracker

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

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

[Bug 1856522] Re: bionic/linux-oem-osp1: 5.0.0-1033.38 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854788
  packages:
lrm: linux-restricted-modules-oem-osp1
main: linux-oem-osp1
meta: linux-meta-oem-osp1
signed: linux-signed-oem-osp1
  phase: Testing
  phase-changed: Tuesday, 17. December 2019 15:57 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-testing: Ongoing -- testing in progress
certification-testing: Ongoing -- testing in progress
security-signoff: Stalled -- 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/1856522

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

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

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

[Bug 1854788] Re: disco/linux: 5.0.0-38.41 -proposed tracker

2019-12-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
  bugs-spammed: true
  packages:
lrm: linux-restricted-modules
main: linux
meta: linux-meta
signed: linux-signed
- phase: Testing
- phase-changed: Tuesday, 03. December 2019 15:42 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:05 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-bluefield: bug 1854787
bionic/linux-hwe: bug 1854785
bionic/linux-oem-osp1: bug 1856522
disco/linux-aws: bug 1854768
disco/linux-azure: bug 1854771
disco/linux-gcp: bug 1856985
disco/linux-kvm: bug 1854778
disco/linux-oracle: bug 1854781
disco/linux-raspi2: bug 1854766
disco/linux-snapdragon: bug 1854784
unknown/unknown: bug 1854781
  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/1854788

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

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

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

[Bug 1856807] Re: eoan/linux: 5.3.0-26.28 -proposed tracker

2019-12-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
  bugs-spammed: true
  packages:
lrm: linux-restricted-modules
main: linux
meta: linux-meta
signed: linux-signed
- phase: Testing
- phase-changed: Thursday, 19. December 2019 10:56 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:06 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
security-signoff: Pending -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
bionic/linux-hwe: bug 1856849
eoan/linux-gcp: bug 1856988
eoan/linux-oracle: bug 1854755
eoan/linux/pc-kernel: bug 1856805
eoan/linux/pc-lowlatency-kernel: bug 1856806
eoan/linux/unknown: bug 1856806, bug 1856805
  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/1856807

Title:
  eoan/linux: 5.3.0-26.28 -proposed tracker

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

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

[Bug 1856988] Re: eoan/linux-gcp: 5.3.0-1011.12 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1856807
  packages:
lrm: linux-restricted-modules-gcp
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
  phase: Testing
  phase-changed: Thursday, 19. December 2019 18:39 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-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/1856988

Title:
  eoan/linux-gcp: 5.3.0-1011.12 -proposed tracker

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

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

[Bug 1856849] Re: bionic/linux-hwe: 5.3.0-26.28~18.04.1 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1856807
  packages:
lrm: linux-restricted-modules-hwe
main: linux-hwe
meta: linux-meta-hwe
signed: linux-signed-hwe
  phase: Testing
  phase-changed: Thursday, 19. December 2019 16:08 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
  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/1856849

Title:
  bionic/linux-hwe: 5.3.0-26.28~18.04.1 -proposed tracker

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

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

[Bug 1856985] Re: disco/linux-gcp: 5.0.0-1028.29 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854788
  packages:
main: linux-gcp
meta: linux-meta-gcp
signed: linux-signed-gcp
- phase: Testing
- phase-changed: Thursday, 19. December 2019 18:37 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 02:09 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Pending -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
-   bionic/linux-gcp: bug 1856983, bug 1854774
+   bionic/linux-gcp: bug 1856983
  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/1856985

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

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

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

[Bug 1857073] Re: Cavium ThunderX CN88XX Crashes : Internal error Ooops(Possibly IPMI related)

2019-12-19 Thread Sean Feole
2nd record crash by wright

** Attachment added: "wright2.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1857073/+attachment/5314165/+files/wright2.txt

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

Title:
  Cavium ThunderX CN88XX Crashes : Internal error Ooops(Possibly IPMI
  related)

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

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

[Bug 1856807] Re: eoan/linux: 5.3.0-26.28 -proposed tracker

2019-12-19 Thread Khaled El Mously
The following bugs remain unverified on the -proposed kernel:

1845810  [XPS 13 9360, Realtek ALC3246, Black Headphone Out, Front] High noise 
floor
1853843  Kernel build log filled with "/bin/bash: line 5: warning: command 
substitution: ignored null byte in input"
1852070  The alsa hda driver is not loaded due to the missing of PCIID for 
Comet Lake-S [8086:a3f0]
1836858  i915: Display flickers (monitor loses signal briefly) during 
"flickerfree" boot, while showing the BIOS logo on a black background 
1851901  Touchpad doesn't work on Dell Inspiron 7000 2-in-1

It's unlikely that they'll be verified since in most cases the owners
are unavailable/unresponsive.

I think it's acceptable to proceed without specifically verifying these
bugs since they're all low risk.

Setting verification testing to "Fix Released"


** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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/1856807

Title:
  eoan/linux: 5.3.0-26.28 -proposed tracker

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

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

[Bug 1854788] Re: disco/linux: 5.0.0-38.41 -proposed tracker

2019-12-19 Thread Khaled El Mously
The following bugs remain unverified on the -proposed kernel:

1849721  Raydium Touchscreen on ThinkPad L390 does not work
1853791  External microphone can't work on some dell machines with the codec 
alc256 or alc236
1845810  [XPS 13 9360, Realtek ALC3246, Black Headphone Out, Front] High noise 
floor
1852070  The alsa hda driver is not loaded due to the missing of PCIID for 
Comet Lake-S [8086:a3f0]
1654448  Dell XPS 13 9350/9360 headphone audio hiss
1851901  Touchpad doesn't work on Dell Inspiron 7000 2-in-1


It's unlikely that they'll be verified since in most cases the owners are 
unavailable/unresponsive.

I think it's acceptable to proceed without specifically verifying these
bugs since they're all low risk.

Setting verification testing to "Fix Released"

** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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/1854788

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

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

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

[Bug 1857074] [NEW] Cavium ThunderX CN88XX Panic : Unknown reason

2019-12-19 Thread Sean Feole
Public bug reported:

Series: Bionic
Kernel: 4.15.0-74.84 linux-generic
Steps to reproduce:  Install 4.15.0-74.84 Kernel and boot the system.

The following crash was observed while testing the proposed kernel for the 
2019.12.02 SRU Cycle.
This kernel was built to include fixes for the following bugs:

  * [Regression] Bionic kernel 4.15.0-71.80 can not boot on ThunderX
(LP: #1853326)
- Revert "arm64: Use firmware to detect CPUs that are not affected by
  Spectre-v2"
- Revert "arm64: Get rid of __smccc_workaround_1_hvc_*"

  * [Regression] Bionic kernel 4.15.0-71.80 can not boot on ThunderX2 and
Kunpeng920 (LP: #1852723)
- SAUCE: arm64: capabilities: Move setup_boot_cpu_capabilities() call to
  correct place

The following crash appears to be a NEW bug. not related to the prior bugs 
listed above.
This bug DOES NOT APPEAR to be related to LP#1857073.

This is another NEW BUG.

Hostname: Starmie

Probable Cause is unknown at this point and still under investigation.

[  OK  ] Found device WDC_WD5003ABYZ-011FA0 efi.
 Mounting /boot/efi...
[  OK  ] Mounted /boot/efi.
[  OK  ] Reached target Local File Systems.
 Starting AppArmor initialization...
 Starting Tell Plymouth To Write Out Runtime Data...
 Starting ebtables ruleset management...
[   20.942427] kernel BUG at /build/linux-pWET3k/linux-4.15.0/fs/buffer.c:1240!
[   20.951416] Internal error: Oops - BUG: 0 [#1] SMP
[   20.958153] Modules linked in: nls_iso8859_1 thunderx_edac thunderx_zip 
cavium_rng_vf shpchp cavium_rng gpio_keys uio_pdrv_genirq ipmi_ssif uio 
ipmi_devintf ipmi_msghandler sch_fq_codel ib_iser rdma_cm iw_cm ib_cm ib_core 
iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi 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 nicvf 
nicpf ast i2c_algo_bit ttm drm_kms_helper syscopyarea sysfillrect aes_ce_blk 
sysimgblt fb_sys_fops aes_ce_cipher crc32_ce drm crct10dif_ce ghash_ce sha2_ce 
sha256_arm64 sha1_ce ahci thunder_bgx libahci thunder_xcv i2c_thunderx 
mdio_thunder thunderx_mmc mdio_cavium aes_neon_bs aes_neon_blk crypto_simd 
cryptd aes_arm64
[   21.044326] Process systemd (pid: 1, stack limit = 0x5af6f18b)
[   21.053858] CPU: 1 PID: 1 Comm: systemd Not tainted 4.15.0-74-generic 
#84-Ubuntu
[   21.063931] Hardware name: Cavium ThunderX CRB/To be filled by O.E.M., BIOS 
5.11 12/12/2012
[   21.074790] pstate: 20400085 (nzCv daIf +PAN -UAO)
[   21.082096] pc : __find_get_block+0x2e8/0x398
[   21.088917] lr : __getblk_gfp+0x3c/0x2a8
[   21.095379] sp : 099ab7e0
[   21.101062] x29: 099ab7e0 x28: 
[   21.108699] x27:  x26: 
[   21.116265] x25: 0001 x24: 
[   21.123788] x23: 0008 x22: 801f26116c80
[   21.131302] x21: 801f26116c80 x20: 245c
[   21.138808] x19: 1000 x18: a59c3a70
[   21.146300] x17:  x16: 
[   21.153730] x15: 0020 x14: 0012
[   21.161083] x13: 2f7374696e752f64 x12: 0101010101010101
[   21.168397] x11: 7f7f7f7f7f7f7f7f x10: 0972d000
[   21.175689] x9 :  x8 : 801f7ba7e3c0
[   21.183042] x7 : 801f7ba7e3e0 x6 : 
[   21.190667] x5 : 0004 x4 : 0020
[   21.197955] x3 : 0008 x2 : 1000
[   21.205680] x1 : 245c x0 : 0080
[   21.212918] Call trace:
[   21.217257]  __find_get_block+0x2e8/0x398
[   21.223160]  __getblk_gfp+0x3c/0x2a8
[   21.228644]  ext4_getblk+0xcc/0x1b0
[   21.233991]  ext4_bread_batch+0x78/0x1c8
[   21.239726]  ext4_find_entry+0x2d4/0x598
[   21.245416]  ext4_lookup+0xac/0x278
[   21.250612]  lookup_slow+0xac/0x190
[   21.255736]  walk_component+0x228/0x340
[   21.261151]  link_path_walk+0x2f4/0x568
[   21.266499]  path_parentat+0x44/0x88
[   21.271521]  filename_parentat+0xa0/0x170
[   21.276924]  filename_create+0x60/0x168
[   21.282082]  SyS_symlinkat+0x80/0x128
[   21.287013]  el0_svc_naked+0x30/0x34
[   21.291835] Code: 17e7 a90363b7 a9046bb9 f9002bbb (d421)
[   21.299191] ---[ end trace b07cecc329f07f48 ]---
[   21.347488] systemd: 35 output lines suppressed due to ratelimiting
[   21.355094] Kernel panic - not syncing: Attempted to kill init! 
exitcode=0x000b
[   21.355094]
[   21.36] SMP: stopping secondary CPUs
[   21.371817] Kernel Offset: disabled
[   21.376517] CPU features: 0x00901108
[   21.381310] Memory Limit: none
[   21.385617] ---[ end Kernel panic - not syncing: Attempted to kill init! 
exitcode=0x000b
[   21.385617]

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

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

** Description changed:

  Series: Bionic
  Kernel: 4.15.0-74.84 linux-generic
- Steps to reprodu

[Bug 1857073] Re: Cavium ThunderX CN88XX Crashes : Internal error Ooops(Possibly IPMI related)

2019-12-19 Thread Sean Feole
Fill console output for wright

** Attachment added: "wright.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1857073/+attachment/5314164/+files/wright.txt

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

Title:
  Cavium ThunderX CN88XX Crashes : Internal error Ooops(Possibly IPMI
  related)

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

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

[Bug 1854766] Re: disco/linux-raspi2: 5.0.0-1024.25 -proposed tracker

2019-12-19 Thread Khaled El Mously
** Changed in: kernel-sru-workflow/certification-testing
   Status: Confirmed => Invalid

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

Title:
  disco/linux-raspi2: 5.0.0-1024.25 -proposed tracker

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

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

[Bug 1857074] Re: Cavium ThunderX CN88XX Panic : Unknown reason

2019-12-19 Thread Sean Feole
Full console output for starmie

** Attachment added: "starmie.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1857074/+attachment/5314163/+files/starmie.txt

** Also affects: linux (Ubuntu Bionic)
   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/1857074

Title:
  Cavium ThunderX CN88XX Panic : Unknown reason

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

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

[Bug 1857037] Re: Update to 3.34.2 and SRU it

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

** Changed in: yaru-theme (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/1857037

Title:
  Update to 3.34.2 and SRU it

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

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

[Bug 1857037] Re: Update to 3.34.2 and SRU it

2019-12-19 Thread Daniel van Vugt
** Tags added: focal

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

Title:
  Update to 3.34.2 and SRU it

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

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

[Bug 1857014] Re: Unable to paste files from Nautilus to the desktop

2019-12-19 Thread Daniel van Vugt
Curious. It works in Ubuntu 20.04.

** Tags added: eoan

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

Title:
  Unable to paste files from Nautilus to the desktop

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

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

[Bug 1856753] Re: python 2.7.17-1~18.04 causes ImportError in ujson.so

2019-12-19 Thread Peter Kolbus
Using python-ujson is not an option unfortunately as my full use case
also involves a virtualenv.

That said, I’m wondering if this may also cause problems in python-ujson
the next time the deb needs to be built from sources, perhaps in a mass
rebuild?

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

Title:
  python 2.7.17-1~18.04 causes ImportError in ujson.so

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python2.7/+bug/1856753/+subscriptions

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

[Bug 1857073] [NEW] Cavium ThunderX CN88XX Crashes : Internal error Ooops(Possibly IPMI related)

2019-12-19 Thread Sean Feole
Public bug reported:

Series: Bionic 
Kernel: 4.15.0-74.84linux-generic

The following crash was observed while testing the proposed kernel for the 
2019.12.02 SRU Cycle. 
This kernel was built to include fixes for the following bugs:

  * [Regression] Bionic kernel 4.15.0-71.80 can not boot on ThunderX
(LP: #1853326)
- Revert "arm64: Use firmware to detect CPUs that are not affected by
  Spectre-v2"
- Revert "arm64: Get rid of __smccc_workaround_1_hvc_*"

  * [Regression] Bionic kernel 4.15.0-71.80 can not boot on ThunderX2 and
Kunpeng920 (LP: #1852723)
- SAUCE: arm64: capabilities: Move setup_boot_cpu_capabilities() call to
  correct place
The following crash appears to be a NEW bug. not related to the prior bugs 
listed above.

system hostname: wright

Possible Cause: wright's crash possibly is caused by faulty error
handling in the ipmi driver (notice this in its dmesg: [ 52.150201]
ipmi_ssif 0-0012: Unable to get the device id: -5)

[  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[  OK  ] FounBYZ-011FA0 efi.
 Mounting /boot/[  OK  ] Mounted /boot/efi.
[  OK  ] Reached target Local File Systems.
 Starting Set console font and keymap...
 Starting Create Volatile Files and Directories...
 Starting ebtables ruleset management...
 Starting AppArmor initialization...
 Starting Tell Plymouth To Write Out Runtime Data...
[  OK  nsole font and keymap.
[  OK  ] Started Tell Plymouth To Write Out Runtime Data.
[  OK  ] Started Create Volatile Files and Directories.
 Starting Network Time Synchronization...
 Starting Update UTMP about Syst
[  OK  ] Started Update UTMP utdown.
[  OK  ] Started ebtables ruleset management.
[  OK  ] Starnization.
[  OK  ] Reached target System Time Synchronized.
[  OK  ] Started AppArmor initialization.
[   50.689136] cloud-init[1246]: Cloud-init v. 
19.3-41-gc4735dd3-0ubuntu1~18.04.1 running 'init-local' at Thu, 19 Dec 20 50.28 
seconds.
[   50.712486] cloud-init[1246]: 2019-12-19 22:40:37,893 - 
handlers.py[WARNING]: failed posting event: start: init-local/check-cache: 
attempting to read from cache [trust]
[   50.736307] cloud-init[1246]: 2019-12-19 22:40:37,941 - 
handlers.py[WARNING]: failed posting event: finish: init-local/check-cache: 
SUCCESS: restored from cache: DataSourceMAAS 
[http://10.229.32.21:5248/MAAS/metadata/]
[   51.244224] cloud-init[1246]: 2019-12-19 22:40:38,450 - 
handlers.py[WARNING]: failed posting event: finish: init-local: SUCCESS: 
searching for local datasources
[  OK  ] Started Initial cloud-init job (pre-networking).
[  OK  ] Reached target Network (Pre).
 Starting Network Service...
[  OK  ] Started Network Service.
 Starting Wait for Network to be Configured...
 Starting Network Name Resolution...
[   52.150201] ipmi_ssif 0-0012: Unable to get the device id: -5
[   52.300309] Unable to handle kernel read fromvirtual address 0018
[   52.311284] Mem abort info:
[   52.316895]  604
[   52.322622]   Exception class = DABT (current EL), IL = 32 bits
[   52.331061]   SET = 0, FnV = 0
[   52.336639]   EA = 0, S1PTW = 0
[   52.342311] Data abort info:
[   52.347731]   ISV = 0, ISS = 0x0004
[   52.354131]   CM = 0, WnR = 0
[   52.359739] user pgtable: 4k pages, 48-bit VAs, pgd = 44052f71
[   52.368909] [0018] *pgd=
[   52.376522] Internal error: Oops: 9604 [#1] SMP
[   52.384039] Modules linked in: nls_iso8859_1 thunderx_edac thunderx_zip 
cavium_rng_vf shpchp cavium_rng gpio_keys uio_pdrv_genirq uio ipmi_ssif(+) 
ipmi_devintf ipmi_msghandler sch_fq_codel ib_iser rdma_cm iw_cm ib_cm ib_core 
iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi 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 nicvf 
nicpf ast i2c_algo_bit aes_ce_blk ttm aes_ce_cipher crc32_ce drm_kms_helper 
crct10dif_ce ghash_ce syscopyarea sha2_ce sysfillrect sysimgblt sha256_arm64 
fb_sys_fops thunder_bgx sha1_ce drm ahci libahci thunder_xcv i2c_thunderx 
mdio_thunder thunderx_mmc mdio_cavium aes_neon_bs aes_neon_blk crypto_simd 
cryptd aes_arm64
[   52.473094] Process kworker/87:1 (pid: 674, stack limit = 0x4907a88f)
[   52.483503] CPU: 87 PID: 674 Comm: kworker/87:1 Not tainted 
4.15.0-74-generic #84-Ubuntu
[   52.494893] Hardware name: Cavium ThunderX CRB/To be filled by O.E.M., BIOS 
5.11 12/12/2012
[   52.506587] Workqueue: events redo_bmc_reg [ipmi_msghandler]
[   52.515614] pstate: 8045 (Nzcv daif +PAN -UAO)
[   52.523744] pc : smi_send.isra.4+0x80/0x158 [ipmi_msghandler]
[   52.532818] lr : smi_send.isra.4+0x150/0x158 [ipmi_msghandler]
[   52.541937] sp : 1298bb10
[   52.548500] x29: 1298bb10 x28: 0020 
[   52.557000] x27: 0002 x26:  
[   52.565407] x25: 1298bc40 x24: 1298bc38 
[  

[Bug 1856908] Re: Sometimes my Lenovo v310 freezes completely while playing music

2019-12-19 Thread Daniel van Vugt
That apport issue sounds related to bug 1851806

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

Title:
  Sometimes my Lenovo v310 freezes completely while playing music

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

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

[Bug 1854829] Re: xenial/linux-raspi2: 4.4.0-1127.136 -proposed tracker

2019-12-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: 1854835
  packages:
main: linux-raspi2
meta: linux-meta-raspi2
- phase: Testing
- phase-changed: Wednesday, 04. December 2019 15:12 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 01:45 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   certification-testing: Ongoing -- testing in progress
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- waiting for signoff
  trackers:
xenial/linux-raspi2/pi2-kernel: bug 1854828
  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/1854829

Title:
  xenial/linux-raspi2: 4.4.0-1127.136 -proposed tracker

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

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

[Bug 1854831] Re: xenial/linux-snapdragon: 4.4.0-1131.139 -proposed tracker

2019-12-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: 1854835
  packages:
main: linux-snapdragon
meta: linux-meta-snapdragon
- phase: Testing
- phase-changed: Wednesday, 04. December 2019 15:13 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 01:46 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   certification-testing: Ongoing -- testing in progress
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- waiting for signoff
  trackers:
xenial/linux-snapdragon/dragonboard-kernel: bug 1854830
  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/1854831

Title:
  xenial/linux-snapdragon: 4.4.0-1131.139 -proposed tracker

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

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

[Bug 1846090] Re: Asus UX580GD (GDX1505:00 27C6:01F1) Touchpad (LCD) screen support

2019-12-19 Thread Daniel van Vugt
Ariel,

This bug is more about the screen not working. Please open a new bug for
your laptop by running:

  ubuntu-bug libinput

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

Title:
  Asus UX580GD (GDX1505:00 27C6:01F1) Touchpad (LCD) screen support

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

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

[Bug 1846090] Re: Asus UX580GD (GDX1505:00 27C6:01F1) Touchpad (LCD) screen support

2019-12-19 Thread Daniel van Vugt
Ariel,

This bug is more about the screen not working. Please open a new bug for
you laptop by running:

  ubuntu-bug libinput

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

Title:
  Asus UX580GD (GDX1505:00 27C6:01F1) Touchpad (LCD) screen support

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

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

[Bug 1854829] Re: xenial/linux-raspi2: 4.4.0-1127.136 -proposed tracker

2019-12-19 Thread Khaled El Mously
** Changed in: kernel-sru-workflow/certification-testing
   Status: In Progress => Invalid

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

Title:
  xenial/linux-raspi2: 4.4.0-1127.136 -proposed tracker

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

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

[Bug 1854831] Re: xenial/linux-snapdragon: 4.4.0-1131.139 -proposed tracker

2019-12-19 Thread Khaled El Mously
** Changed in: kernel-sru-workflow/certification-testing
   Status: In Progress => Invalid

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

Title:
  xenial/linux-snapdragon: 4.4.0-1131.139 -proposed tracker

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

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

[Bug 1857055] Re: after running several months the screen flickering starts

2019-12-19 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1857054 ***
https://bugs.launchpad.net/bugs/1857054

** This bug has been marked a duplicate of bug 1857054
   after running several months the screen flickering starts

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

Title:
  after running several months the screen flickering starts

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

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

[Bug 1857054] Re: after running several months the screen flickering starts

2019-12-19 Thread Daniel van Vugt
Ubuntu 14.04 reached end of standard support in April 2019:

  https://wiki.ubuntu.com/Releases

If you would like to continue with free support then please update to a
newer Ubuntu version and tell us if the problem still occurs.

If you would like to continue with Ubuntu 14.04 then there is a paid
support option detailed at https://www.ubuntu.com/esm


** Package changed: xorg (Ubuntu) => ubuntu

** Changed in: ubuntu
   Status: New => Won't Fix

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

Title:
  after running several months the screen flickering starts

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

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

[Bug 1575053] Re: Please move the "$HOME/snap" directory to a less obtrusive location

2019-12-19 Thread Yovan
** Also affects: snapd (Fedora)
   Importance: Undecided
   Status: New

** Changed in: snapd (Fedora)
   Status: New => Invalid

** No longer affects: snapd (Fedora)

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

Title:
  Please move the "$HOME/snap" directory to a less obtrusive location

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

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

[Bug 1854832] Re: xenial/linux-fips: 4.4.0-1027.32 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854835
  packages:
main: linux-fips
meta: linux-meta-fips
signed: linux-signed-fips
- phase: Testing
- phase-changed: Thursday, 05. December 2019 17:55 UTC
+ phase: Holding before Promote to Updates
+ phase-changed: Friday, 20. December 2019 01:26 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   verification-testing: Ongoing -- testing in progress
+   promote-to-updates: Holding -- cycle not ready to release
  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/1854832

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

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

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

[Bug 1854833] Re: trusty/linux-aws: 4.4.0-1060.64 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854835
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Testing
- phase-changed: Thursday, 05. December 2019 13:43 UTC
+ phase: Holding before Promote to Updates
+ phase-changed: Friday, 20. December 2019 01:26 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   verification-testing: Ongoing -- testing in progress
+   promote-to-updates: Holding -- cycle not ready to release
  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/1854833

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

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

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

[Bug 1856059] Re: jellyfish: please remove arm64, ppc64el binaries

2019-12-19 Thread Bug Watch Updater
** Changed in: jellyfish (Debian)
   Status: Unknown => 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/1856059

Title:
  jellyfish: please remove arm64, ppc64el binaries

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

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

[Bug 1854831] Re: xenial/linux-snapdragon: 4.4.0-1131.139 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854835
  packages:
main: linux-snapdragon
meta: linux-meta-snapdragon
  phase: Testing
  phase-changed: Wednesday, 04. December 2019 15:13 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
security-signoff: Stalled -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
xenial/linux-snapdragon/dragonboard-kernel: bug 1854830
  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/1854831

Title:
  xenial/linux-snapdragon: 4.4.0-1131.139 -proposed tracker

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

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

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

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854835
  packages:
main: linux-lts-xenial
meta: linux-meta-lts-xenial
signed: linux-signed-lts-xenial
- phase: Testing
- phase-changed: Thursday, 05. December 2019 16:04 UTC
+ phase: Holding before Promote to Updates
+ phase-changed: Friday, 20. December 2019 01:27 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   verification-testing: Ongoing -- testing in progress
+   promote-to-updates: Holding -- cycle not ready to release
  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/1854834

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

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

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

[Bug 1854807] Re: xenial/linux-oracle: 4.15.0-1031.34~16.04.1 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854808
  packages:
main: linux-oracle
meta: linux-meta-oracle
signed: linux-signed-oracle
- phase: Testing
- phase-changed: Thursday, 05. December 2019 22:51 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 01:16 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- 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/1854807

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

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

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

[Bug 1854801] Re: xenial/linux-aws-hwe: 4.15.0-1057.59~16.04.1 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854802
  packages:
main: linux-aws-hwe
meta: linux-meta-aws-hwe
- phase: Testing
- phase-changed: Friday, 06. December 2019 19:11 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 01:16 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- 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/1854801

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

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

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

[Bug 1852581] Re: hwe-edge kernel 5.3.0-23.25 kernel does not boot on Precision 5720 AIO

2019-12-19 Thread Khaled El Mously
Marked as verified based on comments #22 and #14

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

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

Title:
  hwe-edge kernel 5.3.0-23.25 kernel does not boot on Precision 5720 AIO

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

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

[Bug 1854800] Re: bionic/linux-aws-fips: 4.15.0-2006.6 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854802
  packages:
lrm: linux-restricted-modules-aws-fips
main: linux-aws-fips
meta: linux-meta-aws-fips
signed: linux-signed-aws-fips
- phase: Testing
- phase-changed: Wednesday, 11. December 2019 17:26 UTC
+ phase: Holding before Promote to Updates
+ phase-changed: Friday, 20. December 2019 01:15 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   verification-testing: Ongoing -- testing in progress
+   promote-to-updates: Holding -- cycle not ready to release
  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/1854800

Title:
  bionic/linux-aws-fips: 4.15.0-2006.6 -proposed tracker

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

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

[Bug 1856749] Re: bionic/linux: 4.15.0-74.84 -proposed tracker

2019-12-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
  bugs-spammed: true
  packages:
lrm: linux-restricted-modules
main: linux
meta: linux-meta
signed: linux-signed
  phase: Testing
  phase-changed: Thursday, 19. December 2019 17:20 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-aws: bug 1854802
bionic/linux-fips: bug 1854809
bionic/linux-gke-4.15: bug 1854804
bionic/linux-ibm-gt: bug 1854806
bionic/linux-kvm: bug 1854805
bionic/linux-oem: bug 1854797
bionic/linux-oracle: bug 1854808
bionic/linux-raspi2: bug 1854793
bionic/linux-snapdragon: bug 1854796
bionic/linux/pc-kernel: bug 1856747
bionic/linux/pc-lowlatency-kernel: bug 1856748
xenial/linux-azure: bug 1856203
-   xenial/linux-gcp: bug 1856976, bug 1854816
+   xenial/linux-gcp: bug 1854816, bug 1856976
xenial/linux-hwe: bug 1856804
  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/1856749

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

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

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

[Bug 1854824] Re: xenial/linux-aws: 4.4.0-1100.111 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854835
  packages:
main: linux-aws
meta: linux-meta-aws
- phase: Testing
- phase-changed: Wednesday, 04. December 2019 16:11 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 01:24 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
xenial/linux-aws/aws-kernel: bug 1854823
  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/1854824

Title:
  xenial/linux-aws: 4.4.0-1100.111 -proposed tracker

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

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

[Bug 1854826] Re: xenial/linux-kvm: 4.4.0-1064.71 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854835
  packages:
main: linux-kvm
meta: linux-meta-kvm
- phase: Testing
- phase-changed: Wednesday, 04. December 2019 15:12 UTC
+ phase: Signoff
+ phase-changed: Friday, 20. December 2019 01:25 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- security signoff not verified
security-signoff: Stalled -- 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/1854826

Title:
  xenial/linux-kvm: 4.4.0-1064.71 -proposed tracker

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

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

[Bug 1854829] Re: xenial/linux-raspi2: 4.4.0-1127.136 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1854835
  packages:
main: linux-raspi2
meta: linux-meta-raspi2
  phase: Testing
  phase-changed: Wednesday, 04. December 2019 15:12 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
security-signoff: Stalled -- waiting for signoff
-   verification-testing: Ongoing -- testing in progress
  trackers:
xenial/linux-raspi2/pi2-kernel: bug 1854828
  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/1854829

Title:
  xenial/linux-raspi2: 4.4.0-1127.136 -proposed tracker

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

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

[Bug 1856202] Re: trusty/linux-azure: 4.15.0-1066.71~14.04.1 -proposed tracker

2019-12-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/verification-testing
   Status: In Progress => 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: 1856203
  packages:
main: linux-azure
meta: linux-meta-azure
signed: linux-signed-azure
- phase: Testing
- phase-changed: Friday, 13. December 2019 17:56 UTC
+ phase: Ready for Signoff
+ phase-changed: Friday, 20. December 2019 01:16 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
+   promote-to-updates: Holding -- stakeholder signoff not verified
stakeholder-signoff: Stalled -- 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/1856202

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

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

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

  1   2   3   4   5   6   7   8   >