[Bug 1663687] [NEW] [Hyper-V] Bug fixes for storvsc (tagged queuing, error conditions)

2017-02-10 Thread Joshua R. Poulson
Public bug reported:

Patchset:

1/6 Enable tracking of queue depth.

2/6 Remove the artificially imposed restriction on max segment size.

3/6 Enable multi-q support. We will allocate the outgoing channel using
the following policy:

1. We will make every effort to pick a channel that is in the
   same NUMA node that is initiating the I/O
2. The mapping between the guest CPU and the outgoing channel
   is persistent.

4/6 Properly set SRB flags when hosting device supports tagged queuing.
This patch improves the performance on Fiber Channel disks.

5/6 When sense message is present on error, we should pass along to the upper
layer to decide how to deal with the error.
This patch fixes connectivity issues with Fiber Channel devices.

6/6 On I/O errors, the Windows driver doesn't set data_transfer_length
on error conditions other than SRB_STATUS_DATA_OVERRUN.
In these cases we need to set data_transfer_length to 0,
indicating there is no data transferred. On SRB_STATUS_DATA_OVERRUN,
data_transfer_length is set by the Windows driver to the actual data 
transferred.

The new feature (multi-q) in this patchset require boot line parameters
to enable so they are safe to integrate.

K. Y. Srinivasan (3):
  storvsc: Enable tracking of queue depth
  storvsc: Remove the restriction on max segment size
  storvsc: Enable multi-queue support

Long Li (3):
  storvsc: use tagged SRB requests if supported by the device
  storvsc: properly handle SRB_ERROR when sense message is present
  storvsc: properly set residual data length on errors

https://git.kernel.org/cgit/linux/kernel/git/next/linux-
next.git/commit/?id=40630f462824ee24bc00d692865c86c3828094e0

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

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

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

Title:
  [Hyper-V] Bug fixes for storvsc (tagged queuing, error conditions)

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

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


[Bug 1663690] [NEW] [Satellite C655D, Conexant CX20585, Speaker, Internal] Pulseaudio fails to detect card

2017-02-10 Thread rattei
Public bug reported:

no sound from speakers or headphones

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: pulseaudio 1:9.0-2ubuntu2.1
ProcVersionSignature: Ubuntu 4.8.0-37.39-generic 4.8.16
Uname: Linux 4.8.0-37-generic x86_64
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   rattei 2121 F...m pulseaudio
 /dev/snd/controlC0:  rattei 2121 F pulseaudio
CurrentDesktop: Unity
Date: Fri Feb 10 11:53:01 2017
EcryptfsInUse: Yes
InstallationDate: Installed on 2014-11-28 (805 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: pulseaudio
Symptom: audio
Symptom_Card: HDA-Intel - HDA ATI SB
Symptom_Jack: Speaker, Internal
Title: [Satellite C655D, Conexant CX20585, Speaker, Internal] Pulseaudio fails 
to detect card
UpgradeStatus: Upgraded to yakkety on 2016-10-17 (116 days ago)
dmi.bios.date: 12/20/2011
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 1.80
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Portable PC
dmi.board.vendor: TOSHIBA
dmi.board.version: Base Board Version
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: AMD
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr1.80:bd12/20/2011:svnTOSHIBA:pnSatelliteC655D:pvrPSC0YU-03G02C:rvnTOSHIBA:rnPortablePC:rvrBaseBoardVersion:cvnAMD:ct10:cvrNone:
dmi.product.name: Satellite C655D
dmi.product.version: PSC0YU-03G02C
dmi.sys.vendor: TOSHIBA

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


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

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

Title:
  [Satellite C655D, Conexant CX20585, Speaker, Internal] Pulseaudio
  fails to detect card

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

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


[Bug 1663689] [NEW] gettext() does not work on aarch64

2017-02-10 Thread Christoph Müllner
Public bug reported:

Code to reproduce the bug

I was not able to get the proper translation from gettext() on an aarch64
Ubuntu Xenial machine. The same code however works fine on x86_64.

To reproduce the issue one can use the following instructions:

1) Create the following directory structure:
   mkdir -p fi/LC_MESSAGES

2) Create the file fi/LC_MESSAGES/messages.po with the following content:
msgid ""
msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "Basic test"
msgstr "Perustesti"

3) Compile a mo:
   msgfmt -o fi/LC_MESSAGES/messages.mo fi/LC_MESSAGES/messages.po

4) Compile the attached file and run it (no special compiler flags used).
   The code essentially does:
   a. setlocale(LC_ALL, "fi_FI");
   b. bindtextdomain("messages", "./locale");
   c. textdomain("messages");
   d. gettext("Basic test")

On aarch64 this results in "Basic test".
On x86_64 this results in "Perustesti".

FWIW, I was able to reproduce this bug on the following aarch64 Linux
distributions as well:

 * Fedora 25 (see [1])
 * CentOS 7
 * OpenSUSE Leap 42.2

[1] https://bugzilla.redhat.com/show_bug.cgi?id=1418635

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

** Attachment added: "Testcase to trigger the bug"
   
https://bugs.launchpad.net/bugs/1663689/+attachment/4816662/+files/gettext_bug.c

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

Title:
  gettext() does not work on aarch64

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

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


[Bug 1663705] [NEW] package mysql-server (not installed) failed to install/upgrade: problèmes de dépendances - laissé non configuré

2017-02-10 Thread MESTACK Georges-Claude
Public bug reported:

problème d'installation et de suppressions successices

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: mysql-server (not installed)
ProcVersionSignature: Ubuntu 4.4.0-62.83-generic 4.4.40
Uname: Linux 4.4.0-62-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
Date: Fri Feb 10 08:19:56 2017
ErrorMessage: problèmes de dépendances - laissé non configuré
InstallationDate: Installed on 2016-10-31 (102 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.19
SourcePackage: mysql-5.7
Title: package mysql-server (not installed) failed to install/upgrade: 
problèmes de dépendances - laissé non configuré
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package xenial

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

Title:
  package mysql-server (not installed) failed to install/upgrade:
  problèmes de dépendances - laissé non configuré

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

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

[Bug 1663706] [NEW] package openjdk-7-jre-headless:amd64 7u121-2.6.8-1ubuntu0.14.04.1 failed to install/upgrade: package openjdk-7-jre-headless:amd64 is already installed and configured

2017-02-10 Thread Jijou
Public bug reported:

Didn't notice any issue but the big window at Pc launch

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: openjdk-7-jre-headless:amd64 7u121-2.6.8-1ubuntu0.14.04.1
ProcVersionSignature: Ubuntu 4.4.0-59.80~14.04.1-generic 4.4.35
Uname: Linux 4.4.0-59-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.23
AptdaemonVersion: 1.1.1-1ubuntu5.2
Architecture: amd64
Date: Tue Jan 31 13:10:59 2017
DuplicateSignature: 
package:openjdk-7-jre-headless:amd64:7u121-2.6.8-1ubuntu0.14.04.1:package 
openjdk-7-jre-headless:amd64 is already installed and configured
ErrorMessage: package openjdk-7-jre-headless:amd64 is already installed and 
configured
InstallationDate: Installed on 2016-05-21 (265 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.7
 apt  1.0.1ubuntu2.17
SourcePackage: dpkg
Title: package openjdk-7-jre-headless:amd64 7u121-2.6.8-1ubuntu0.14.04.1 failed 
to install/upgrade: package openjdk-7-jre-headless:amd64 is already installed 
and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed amd64 apport-package trusty

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

Title:
  package openjdk-7-jre-headless:amd64 7u121-2.6.8-1ubuntu0.14.04.1
  failed to install/upgrade: package openjdk-7-jre-headless:amd64 is
  already installed and configured

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

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


[Bug 1600599] Re: Thermald is totally broken, or its default configuration is

2017-02-10 Thread Alberto Salvia Novella
** Changed in: thermald (Ubuntu)
   Importance: Undecided => Critical

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

Title:
  Thermald is totally broken, or its default configuration is

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

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


[Bug 1560994] Re: webbrowser-app crashed with SIGABRT in oxide::BrowserProcessMainImpl::~BrowserProcessMainImpl

2017-02-10 Thread Alberto Salvia Novella
** Changed in: qtbase-opensource-src (Ubuntu)
   Importance: Undecided => Medium

** Changed in: qtbase-opensource-src (Ubuntu)
   Importance: Medium => High

** Changed in: webbrowser-app (Ubuntu)
   Importance: Medium => High

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

Title:
  webbrowser-app crashed with SIGABRT in
  oxide::BrowserProcessMainImpl::~BrowserProcessMainImpl

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtbase-opensource-src/+bug/1560994/+subscriptions

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


[Bug 1652091] Re: xargs not contained in initramdisk

2017-02-10 Thread Alberto Salvia Novella
** Changed in: dropbear (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  xargs not contained in initramdisk

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

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


[Bug 1663668] Re: soffice.bin crashed with signal 7

2017-02-10 Thread Apport retracing service
*** This bug is a duplicate of bug 1236337 ***
https://bugs.launchpad.net/bugs/1236337

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1236337, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1663668/+attachment/4816632/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1663668/+attachment/4816634/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1663668/+attachment/4816635/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1663668/+attachment/4816636/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1663668/+attachment/4816637/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1663668/+attachment/4816638/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1663668/+attachment/4816639/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1236337

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  soffice.bin crashed with signal 7

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

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


[Bug 1662186] fozzie (amd64) - tests ran: 1, failed: 0

2017-02-10 Thread Brad Figg
tests ran:   1, failed: 0;
  
http://kernel.ubuntu.com/testing/3.13.0-109.156-generic/fozzie__3.13.0-109.156__2017-02-10_17-03-00/results-index.html

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

Title:
  linux: 3.13.0-109.156 -proposed tracker

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

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


[Bug 1663329] Re: [Sync Request] Sync nagios-nrpe (3.0.1-3) from Debian unstable (main)

2017-02-10 Thread Joshua Powers
** Summary changed:

- Merge from Debian unstable
+ [Sync Request] Sync nagios-nrpe (3.0.1-3) from Debian unstable (main)

** Changed in: nagios-nrpe (Ubuntu)
 Assignee: Joshua Powers (powersj) => (unassigned)

** Changed in: nagios-nrpe (Ubuntu)
   Status: In Progress => Confirmed

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

Title:
  [Sync Request] Sync nagios-nrpe (3.0.1-3) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios-nrpe/+bug/1663329/+subscriptions

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


[Bug 1612835] Re: Please don't depend on jasper

2017-02-10 Thread Tyler Hicks
** Description changed:

  Jasper is being removed from Debian. It would be great if this could be
- done in Ubuntu too before 16.10 is released.
+ done in Ubuntu too before 17.04 is released.
  
  
https://web.archive.org/web/20160402170040/https://release.debian.org/transitions/html
  /jasper-rm.html
  
  # reverse-depends -b src:jasper
  Reverse-Build-Depends
  =
  * digikam   (for libjasper-dev)
  * kde4libs  (for libjasper-dev)
  * kimageformats (for libjasper-dev)
  * kopete(for libjasper-dev)
  
  The last 4 are KDE stuff. Since these packages have already removed
  their jasper dependency in Debian, you should be able to just copy
  what's already been done.
  
  February 2017 Update
  
  Here are the remaining commits from Debian that need to be applied in Ubuntu:
  
  
https://anonscm.debian.org/git/pkg-kde/applications/kde4libs.git/commit/?id=5c373d77d
  
https://anonscm.debian.org/git/pkg-kde/applications/kde4libs.git/commit/?id=efe65d118b
  
  
https://anonscm.debian.org/git/pkg-kde/applications/kopete.git/commit/?id=efad42f0186
  
https://anonscm.debian.org/git/pkg-kde/applications/kopete.git/commit/?id=b12bc0753c7

** Description changed:

- Jasper is being removed from Debian. It would be great if this could be
- done in Ubuntu too before 17.04 is released.
+ Jasper is being removed from Debian. It would be great if jasper's
+ source and all binary packages could be removed in Ubuntu before 17.04
+ is released.
  
  
https://web.archive.org/web/20160402170040/https://release.debian.org/transitions/html
  /jasper-rm.html
  
  # reverse-depends -b src:jasper
  Reverse-Build-Depends
  =
  * digikam   (for libjasper-dev)
  * kde4libs  (for libjasper-dev)
  * kimageformats (for libjasper-dev)
  * kopete(for libjasper-dev)
  
  The last 4 are KDE stuff. Since these packages have already removed
  their jasper dependency in Debian, you should be able to just copy
  what's already been done.
  
  February 2017 Update
  
  Here are the remaining commits from Debian that need to be applied in Ubuntu:
  
  
https://anonscm.debian.org/git/pkg-kde/applications/kde4libs.git/commit/?id=5c373d77d
  
https://anonscm.debian.org/git/pkg-kde/applications/kde4libs.git/commit/?id=efe65d118b
  
  
https://anonscm.debian.org/git/pkg-kde/applications/kopete.git/commit/?id=efad42f0186
  
https://anonscm.debian.org/git/pkg-kde/applications/kopete.git/commit/?id=b12bc0753c7

** Description changed:

  Jasper is being removed from Debian. It would be great if jasper's
  source and all binary packages could be removed in Ubuntu before 17.04
- is released.
+ is released. Jasper has a long security history and shouldn't remain,
+ unmaintained, in universe.
  
  
https://web.archive.org/web/20160402170040/https://release.debian.org/transitions/html
  /jasper-rm.html
  
  # reverse-depends -b src:jasper
  Reverse-Build-Depends
  =
  * digikam   (for libjasper-dev)
  * kde4libs  (for libjasper-dev)
  * kimageformats (for libjasper-dev)
  * kopete(for libjasper-dev)
  
  The last 4 are KDE stuff. Since these packages have already removed
  their jasper dependency in Debian, you should be able to just copy
  what's already been done.
  
  February 2017 Update
  
  Here are the remaining commits from Debian that need to be applied in Ubuntu:
  
  
https://anonscm.debian.org/git/pkg-kde/applications/kde4libs.git/commit/?id=5c373d77d
  
https://anonscm.debian.org/git/pkg-kde/applications/kde4libs.git/commit/?id=efe65d118b
  
  
https://anonscm.debian.org/git/pkg-kde/applications/kopete.git/commit/?id=efad42f0186
  
https://anonscm.debian.org/git/pkg-kde/applications/kopete.git/commit/?id=b12bc0753c7

** Description changed:

- Jasper is being removed from Debian. It would be great if jasper's
+ Jasper has been removed from Debian. It would be great if jasper's
  source and all binary packages could be removed in Ubuntu before 17.04
  is released. Jasper has a long security history and shouldn't remain,
  unmaintained, in universe.
  
  
https://web.archive.org/web/20160402170040/https://release.debian.org/transitions/html
  /jasper-rm.html
+ 
+ As of 2017-02-10, all reverse depends in Zesty have been updated to drop
+ dependencies on jasper:
+ 
+ $ reverse-depends -b src:jasper
+ No reverse dependencies found
+ 
+ 
+ == Original Report ==
  
  # reverse-depends -b src:jasper
  Reverse-Build-Depends
  =
  * digikam   (for libjasper-dev)
  * kde4libs  (for libjasper-dev)
  * kimageformats (for libjasper-dev)
  * kopete(for libjasper-dev)
  
  The last 4 are KDE stuff. Since these 

[Bug 1653361] Re: [Asus E502SA] Suspend/resume triggers random hang

2017-02-10 Thread Janne Heikkinen
I'm not able to debug this issue anymore properly. After running newer
kernels with which the hang didn't anymore happen, I booted 4.9.0 and
was not able to reproduce the hang. So I thought that maybe it's some
register value that gets reset only after removing power completely. I
opened up the computer and removed battery. Did that twice and after
second time I've lost Wifi and Bluetooth. I can use the computer with
Etherner cable and can't reproduce the hang with 4.10.0rc5 so it could
be that it was Wifi or Bluetooth chip causing the issue.

The Wifi/Bluetooth chip is gone both in Linux and in Windows.

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

Title:
  [Asus E502SA] Suspend/resume triggers random hang

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

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


[Bug 1653361] Re: [Asus E502SA] Suspend/resume triggers random hang

2017-02-10 Thread Janne Heikkinen
Also the video streaming stuttering issue is gone not when I'm using
Ethernet so that also makes me think that there was something wrong with
the code trying to resume the WiFi chip.

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

Title:
  [Asus E502SA] Suspend/resume triggers random hang

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

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


[Bug 1649326] Re: EFI stub loader broken in kernel 3.13.0-101-generic (& later in 3.13 series)

2017-02-10 Thread Joseph Salisbury
I built a v3.15.0-0.1 test kernel. The test kernel can be downloaded from:
http://kernel.ubuntu.com/~jsalisbury/lp1649326/v3.15.0-0.1

Can you see if this kernel has the bug?

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

Title:
  EFI stub loader broken in kernel 3.13.0-101-generic (& later in 3.13
  series)

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

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


[Bug 1653361] Re: [Asus E502SA] Suspend/resume triggers random hang

2017-02-10 Thread Janne Heikkinen
> not when I'm using

now when I'm using

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

Title:
  [Asus E502SA] Suspend/resume triggers random hang

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

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


[Bug 1662787] Re: Please merge subversion-1.9.4-1ubuntu (main) from Debian unstable (main)

2017-02-10 Thread Iain Lane
-   dh_installchangelogs -a CHANGES
+   dh_installchangelogs -s CHANGES

I don't think you need to do this change.

You missed the X-Python-Version change in debian/control. Maybe it can
be dropped as everything has python 2.7 now?

Please could you rewrite the changelog as I outlined in bug #1662101?

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

Title:
  Please merge subversion-1.9.4-1ubuntu (main) from Debian unstable
  (main)

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

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


[Bug 1653721] Re: plantage de l'ordi n'importe quand

2017-02-10 Thread Mathieu Trudel-Lapierre
Il n'y a rien ici qui indique que ce soit un problème avec l'installeur
ubiquity. C'était assigné à *linux* parce que c'est sans aucun doute
soit un problème kernel, soit un problème avec un pilote vidéo. Sans
savoir exactement lequel, je crois qu'il s'agit plutôt d'un problème
kernel.

Essayez les étapes proposées au commentaire #13.

dino99; ne changez pas inutilement l'assignation des paquets, SVP. On
pourra réviser lorsqu'il y aura suffisemment d'information.

Si possible, écrivez les détails en anglais afin que d'autres
développeurs puissent comprendre.

Kernel team: this issue is one where the system is randomly freezing,
and appears to include a BayTrail chipset. So far, I've suggested trying
a newer version of Ubuntu to see if it helps, since baytrail support may
have improved in newer releases.

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

Title:
  plantage de l'ordi n'importe quand

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

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

[Bug 1659618] Re: Enable ARM64 support in kexec-tools

2017-02-10 Thread Manoj Iyer
The attached patch has the complete set of patches needed for kexec support on 
ARM64.
  * kexec: Increase the upper limit for RAM segments [LP: #1663400]
  * Enable compressed kernel support for ARM64 [LP: #1661363]
  * Enable ARM64 support [LP: #1659618]

This patch applies cleanly on Xenial kexec-tools. 
https://pastebin.ubuntu.com/23968089/
Testing for lp 1663400 is posted to the SRU request description. Testing 
results for arm64 support yielded the same results as previously. 

Ubuntu 16.04.1 LTS ubuntu ttyAMA2

ubuntu login: [  857.281231] mmc0: Reset 0x1 never completed.
[  860.859581] kexec_core: Starting new kernel
[0.00] arch_timer: Failed to initialize memory-mapped timer, skipping
[1.169613] coresight-tmc ARMHFFF0:00: Byte-cntr-irq not specified
[1.178015] Failed to find cpu0 device node
[1.452042] mmc0: Reset 0x1 never completed.
[1.555603] mmc0: Reset 0x1 never completed.
[1.659871] mmc0: Reset 0x1 never completed.
[1.665249] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
[1.673240] hub 4-0:1.0: config failed, hub doesn't have any ports! (err -19)
[1.680657] hub 6-0:1.0: config failed, hub doesn't have any ports! (err -19)
[1.687974] hub 8-0:1.0: config failed, hub doesn't have any ports! (err -19)

** Patch added: "[XENIAL V2] kexec arm64 support patch"
   
https://bugs.launchpad.net/ubuntu/+source/kexec-tools/+bug/1659618/+attachment/4816668/+files/V2-kexec-xenial-arm64-support.patch

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

Title:
  Enable ARM64 support in kexec-tools

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

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


[Bug 1653721] Re: plantage de l'ordi n'importe quand

2017-02-10 Thread Mathieu Trudel-Lapierre
Setting back to 'linux', and leaving as Incomplete until we get a
response from the original submitter.

** Package changed: ubiquity (Ubuntu) => linux (Ubuntu)

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

Title:
  plantage de l'ordi n'importe quand

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

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


[Bug 1663414] Re: problem with wireless Network adapter after upgrading to 4.4.0-59

2017-02-10 Thread Joseph Salisbury
Would it be possible for you to test the latest upstream stable kernel?
Refer to https://wiki.ubuntu.com/KernelMainlineBuilds . Please test the
latest v4.4 stable kernel[0].

If this bug is fixed in the mainline kernel, please add the following
tag 'kernel-fixed-upstream'.

If the mainline kernel does not fix this bug, please add the tag:
'kernel-bug-exists-upstream'.

If you are unable to test the mainline kernel, for example it will not boot, 
please add the tag: 'kernel-unable-to-test-upstream'.
Once testing of the upstream kernel is complete, please mark this bug as 
"Confirmed".


Thanks in advance.

[0] http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.48

** Changed in: linux (Ubuntu)
   Importance: Undecided => High

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

** Changed in: linux (Ubuntu Xenial)
   Importance: Undecided => High

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

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

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

** Tags added: kernel-da-key

** Tags added: performing-bisect

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

Title:
  problem with wireless Network adapter after upgrading to 4.4.0-59

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

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


[Bug 1663291] Re: fwts-efi-runtime-dkms 14.03.01-0ubuntu4: fwts-efi-runtime-dkms kernel module failed to build

2017-02-10 Thread Joseph Salisbury
*** This bug is a duplicate of bug 1663558 ***
https://bugs.launchpad.net/bugs/1663558

This looks like a duplicate of bug 1663558

** Changed in: linux (Ubuntu)
   Importance: Undecided => Critical

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

** This bug has been marked a duplicate of bug 1663558
   linux headers packages empty

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

Title:
  fwts-efi-runtime-dkms 14.03.01-0ubuntu4: fwts-efi-runtime-dkms kernel
  module failed to build

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

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


[Bug 1663263] Re: lshw run on Hyper-V VM hangs system

2017-02-10 Thread Joseph Salisbury
Would it be possible for you to test the latest upstream stable kernel?
Refer to https://wiki.ubuntu.com/KernelMainlineBuilds . Please test the
latest v4.4 stable kernel[0].

If this bug is fixed in the mainline kernel, please add the following
tag 'kernel-fixed-upstream'.

If the mainline kernel does not fix this bug, please add the tag:
'kernel-bug-exists-upstream'.

If you are unable to test the mainline kernel, for example it will not boot, 
please add the tag: 'kernel-unable-to-test-upstream'.
Once testing of the upstream kernel is complete, please mark this bug as 
"Confirmed".


Thanks in advance.

[0] http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.48


** Changed in: linux (Ubuntu)
   Importance: Undecided => Medium

** Changed in: linux (Ubuntu)
   Importance: Medium => High

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

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

** Changed in: linux (Ubuntu Xenial)
   Importance: Undecided => High

** Tags added: kernel-da-key kernel-hyper-v

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

Title:
  lshw run on Hyper-V VM hangs system

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

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


[Bug 1663020] Re: When I suspend the computer and try to wake it, the keyboard's backlight goes on and the power light turns on, but the screen stays black. I have to hard reset the computer to get it

2017-02-10 Thread Joseph Salisbury
Did this issue start happening after an update/upgrade?  Was there a
prior kernel version where you were not having this particular problem?

Would it be possible for you to test the latest upstream kernel? Refer
to https://wiki.ubuntu.com/KernelMainlineBuilds . Please test the latest
v4.10 kernel[0].

If this bug is fixed in the mainline kernel, please add the following
tag 'kernel-fixed-upstream'.

If the mainline kernel does not fix this bug, please add the tag:
'kernel-bug-exists-upstream'.

Once testing of the upstream kernel is complete, please mark this bug as
"Confirmed".


Thanks in advance.

[0] http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.10-rc7


** Changed in: linux (Ubuntu)
   Importance: Undecided => Medium

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

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

Title:
  When I suspend the computer and try to wake it, the keyboard's
  backlight goes on and the power light turns on, but the screen stays
  black.  I have to hard reset the computer to get it to work again.

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

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


[Bug 1663265] Re: hibernation does not work probably due to ata subsystem failure (16.10 server)

2017-02-10 Thread Joseph Salisbury
Did this issue start happening after an update/upgrade?  Was there a
prior kernel version where you were not having this particular problem?

Would it be possible for you to test the latest upstream kernel? Refer
to https://wiki.ubuntu.com/KernelMainlineBuilds . Please test the latest
v4.10 kernel[0].

If this bug is fixed in the mainline kernel, please add the following
tag 'kernel-fixed-upstream'.

If the mainline kernel does not fix this bug, please add the tag:
'kernel-bug-exists-upstream'.

Once testing of the upstream kernel is complete, please mark this bug as
"Confirmed".


Thanks in advance.

[0] http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.10-rc7

** Changed in: linux (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  hibernation does not work probably due to ata subsystem failure (16.10
  server)

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

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


[Bug 1641393] Re: 'Elan Touchpad' not detected in Ubuntu 16.04.1 Gigabyte P57K-965-603S Fresh install

2017-02-10 Thread Joseph Salisbury
Did this issue start happening after an update/upgrade?  Was there a
prior kernel version where you were not having this particular problem?

Would it be possible for you to test the latest upstream kernel? Refer
to https://wiki.ubuntu.com/KernelMainlineBuilds . Please test the latest
v4.10 kernel[0].

If this bug is fixed in the mainline kernel, please add the following
tag 'kernel-fixed-upstream'.

If the mainline kernel does not fix this bug, please add the tag:
'kernel-bug-exists-upstream'.

Once testing of the upstream kernel is complete, please mark this bug as
"Confirmed".


Thanks in advance.

[0] http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.10-rc7


** Changed in: linux (Ubuntu)
   Importance: Undecided => Medium

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

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

Title:
  'Elan Touchpad' not detected in Ubuntu 16.04.1 Gigabyte P57K-965-603S
  Fresh install

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

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


[Bug 1246364] Re: update-notifier does not show a tray icon in xubuntu

2017-02-10 Thread Eduardo Larroya
Hi Forest!
I was using the patched version from your PPA (Ubuntu Xenial/Mate Desktop) and 
worked really well! :)

Since some time ago, the update-notifier is back to the old "ugly"
behaviour, and despite showing the icon, it launches the update
window... :S

I see that a recent system update installed a new version (3.168.3), and
surpassed your version (3.168.2). Do you plan to add the update to your
patched version?

thanks!

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

Title:
  update-notifier does not show a tray icon in xubuntu

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

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


[Bug 1246981] Re: Bluetooth mouse fails to re-connect after sleep.

2017-02-10 Thread Jason Hunter
what does it mean that "This bug report was converted into a question:
question #260266"

does it mean it's no longer a bug?

why does it say unassigned? isn't it supposed to be assigned to the
bluetooth group?

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

Title:
  Bluetooth mouse fails to re-connect after sleep.

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

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


[Bug 1663666] [NEW] max-format is not a positive integer assertion installing unity8-session snap

2017-02-10 Thread Sergio Cazzolato
Public bug reported:

I get this assertion when I run the command unity8-snap-install in my zesty vm. 
This happens with the today's zesty daily image.

sudo snap install unity8-session --edge --devmode
error: cannot perform the following tasks:
- Fetch and check assertions for snap "unity8-session" (439) (Get 
https://assertions.ubuntu.com/v1/assertions/snap-revision/rjPkjvvl9AezpBRMi_cxP6yLUf7hychxwsOg7CT68Ygr9JnccHmvCfymWqUEZGTt?max-format=0:
 dial tcp: lookup assertions.ubuntu.com: no such host)

** Affects: unity8 (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/1663666

Title:
  max-format is not a positive integer assertion installing
  unity8-session snap

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

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


[Bug 1658469] Re: mod_http2 is not available under Apache 2.4.23 / Ubuntu 17.04 xenial

2017-02-10 Thread Nish Aravamudan
apache2 is now stuck in proposed. This is becuase nghttp2 (src package)
is in universe, and so is libnghttp2-14 which apache2 depends on when
enabling http2. We would need a MIR to promote nghttp2 and given where
we are in the cycle, that seems unlikely to be approved. Additionally,
regardless of Debian, upstream apache still considers it experimental:
https://httpd.apache.org/docs/2.4/mod/mod_http2.html.

Given all that, I'm much more comfortable aiming for HTTP2 support in
17.10, as anticipatory of 18.04 and will pursue the MIR and needed first
thing in that cycle.

** Changed in: apache2 (Ubuntu)
   Status: Fix Committed => Triaged

** Changed in: apache2 (Ubuntu)
   Importance: High => Low

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

Title:
  mod_http2 is not available under Apache 2.4.23 / Ubuntu 17.04 xenial

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

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


[Bug 1661590] Re: GNOME Software only supports running one application from a snap

2017-02-10 Thread John Lenton
I should point out that there isn't a clear 1:1 mapping between desktop
files and apps, and that some of the things mentioned here would impose
this.

FWIW IMHO if gnome software needs to choose one app from a snap to run
because of its own limitations it should choose the default app, the one
that has the same name as the snap.

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

Title:
  GNOME Software only supports running one application from a snap

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

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


[Bug 1625846] Re: Xmir -rootless: Firefox menus pop up then close right away

2017-02-10 Thread Christopher Townsend
Yeah, this is going to become more of an issue since we are enabling
rootless by default for Libertine apps.

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

Title:
  Xmir -rootless: Firefox menus pop up then close right away

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

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


[Bug 1663580] Re: Ubuntu 16.04 upgrade:system unable to shutdown or restart. system making lots of noise from cpu fan after boot. NMI watchdog: BUG: soft lockup - CPU#5 stuck for 23s! [plymouthd:305]

2017-02-10 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1663580/+editstatus and add the
package name in the text box next to the word Package.

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: bot-comment

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

Title:
  Ubuntu 16.04 upgrade:system unable to shutdown or restart. system
  making lots of noise from cpu fan after boot.  NMI watchdog: BUG: soft
  lockup - CPU#5 stuck for 23s! [plymouthd:305]  error during upgrade,
  unable to clear orphaned inodes.

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

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


[Bug 1663662] [NEW] linux-lts-xenial: 4.4.0-63.84~14.04.2 -proposed tracker

2017-02-10 Thread Thadeu Lima de Souza Cascardo
Public bug reported:

This bug is for tracking the 4.4.0-63.84~14.04.2 upload package. This
bug will contain status and testing results related to that upload.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


** Tags: block-proposed-trusty kernel-release-tracking-bug trusty

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

** Tags added: block-proposed-trusty

** Tags added: trusty

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

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

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

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

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

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

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

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

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

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

** Also affects: kernel-sru-workflow/upload-to-ppa
   Importance: Undecided
   Status: New

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

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

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

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

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

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

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

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

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

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

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

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

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

** Changed in: 

Re: [Bug 1663060] Re: Add a title field to snap metadata

2017-02-10 Thread Mark Shuttleworth
I think Robert is using 'name' in the 'primary key' sense, and 'title'
in the 'display name' sense.

Mark

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

Title:
  Add a title field to snap metadata

To manage notifications about this bug go to:
https://bugs.launchpad.net/developer-portal/+bug/1663060/+subscriptions

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


[Bug 1295267] Re: Windows change Monitor/Desktop after screen lock

2017-02-10 Thread David Klasinc
So, I was digging more into this and it appears not to be a hardware
problem. People are reporting similar issues and how monitor is
sometimes working and sometimes not.

Anyway, I also found a workaround for this. When I set my monitor to
30Hz refresh rate this problem disappears.

I have a Dell P271Q and in the settings menu there's a 'Display' option.
Setting MST to Primary will lock the refresh rate to 30Hz and it will
also put the monitor into 'Multi Stream Transport' mode.

Having my screen on 30Hz is a downside, but frankly I didn't notice the
difference.

Still, this is just a workaround.

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

Title:
  Windows change Monitor/Desktop after screen lock

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

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


[Bug 1663329] Re: [Sync Request] Sync nagios-nrpe (3.0.1-3) from Debian unstable (main)

2017-02-10 Thread Joshua Powers
** Description changed:

- Need to grab the latest from Debian
+ Please sync nagios-nrpe (3.0.1-3) from Debian unstable (main)
+ 
+ The Ubuntu package no longer has any required changes, all three current 
deltas were dropped:
+ * Two changes were related to enabling hardening to debian/rules. This was 
merged into Ubuntu [1]
+ * The third change is an extra erroneously added git diff file named 'xxx'. 
This file is not necessary and should be removed/overridden. 
+ 
+ The package from Debian was successfully built in a ppa [2]. My attempt
+ at a merge verified that the build hardening is enabled [3] and only
+ remaining changes were the change log and control file.
+ 
+ [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=728218
+ [2] https://launchpad.net/~powersj/+archive/ubuntu/nagios-nrpe-1663329
+ [3] 
https://code.launchpad.net/~powersj/ubuntu/+source/nagios-nrpe/+git/nagios-nrpe/+merge/316979
+ 
+ 
+ nagios-nrpe (3.0.1-3) unstable; urgency=medium
+ 
+   * Add reload command to systemd service file.
+   * Make missing EnvironmentFile non-fatal in systemd service.
+ 
+  -- Bas Couwenberg   Sat, 24 Dec 2016 10:24:09
+ +0100
+ 
+ nagios-nrpe (3.0.1-2) unstable; urgency=medium
+ 
+   * Add systemd service file and tmpfiles.d configuration.
+ (closes: #665422)
+   * Update nrpe manpage to include new options.
+ 
+  -- Bas Couwenberg   Fri, 23 Dec 2016 23:15:19
+ +0100
+ 
+ nagios-nrpe (3.0.1-1) unstable; urgency=medium
+ 
+   * Update check_nrpe.cfg to remove command with arguments.
+ (LP: #975918)
+   * Disable SSL support by default, requires configuration.
+ It also doesn't work well with old check_nrpe versions.
+   * Move from experimental to unstable.
+ 
+  -- Bas Couwenberg   Fri, 09 Dec 2016 00:15:29
+ +0100
+ 
+ nagios-nrpe (3.0.1-1~exp1) experimental; urgency=medium
+ 
+   [ Alexander Wirt ]
+   * Sync uploaders with reality.
+ (closes: #773441)
+ 
+   [ Bas Couwenberg ]
+   * New upstream release.
+ - Reworked SSL/TLS. See the README.SSL.md file for full info.
+ (closes: #547092)
+   * Add myself to Uploaders.
+   * Add Vcs-* fields to control file.
+ (closes: #755507)
+   * Change nagios-plugins dependencies to monitoring-plugins.
+   * Switch from dpatch to source format 3.0 (quilt).
+ (closes: #756410)
+   * Drop obsolete patch: 04_weird_output.dpatch.
+   * Restructure control file with cme.
+   * Reorder (build) dependencies.
+   * Add Homepage field to control file.
+   * Update copyright file using copyright-format 1.0.
+   * Add gbp.conf to use pristine-tar by default.
+   * Update build dependency to use openssl 1.0.
+   * Enable all hardening buildflags.
+ (closes: #728218)
+   * Enable parallel builds.
+   * Suggest xinetd | inetd.
+ (closes: #662247)
+   * Include PDF & ODT documentation in docs.
+ (closes: #662249)
+   * Update watch file to handle common issues.
+   * Add upstream metadata.
+   * Merge nrpe.cfg patches into single patch.
+ (closes: #660583)
+   * Use configure option to set custom PID directory instead of patch.
+   * Drop 09_noremove_pid.patch, fixed upstream. Refresh remaining patches.
+   * Add patch to use pre-generated dh.h for reproducible builds.
+   * Override dh_auto_build to build all targets.
+   * Use dh-autoreconf instead of autotools-dev.
+   * Use exit status 0 in init script when inetd is configured.
+ (closes: #775924)
+   * Include README.SSL.md in docs.
+   * Bump Standards-Version to 3.9.8, changes:
+ Vcs-* fields, copyright-format 1.0.
+ 
+   [ Benjamin Drung ]
+   * Use dh_auto_configure to enable default hardening flags.
+ (closes: #843805)
+   * Fix copyright-refers-to-symlink-license.
+ (closes: #756414)
+ 
+   [ Chris Lamb ]
+   * Make the build reproducible.
+ (closes: #834857)
+ 
+  -- Bas Couwenberg   Sun, 04 Dec 2016 18:36:54
+ +0100

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

Title:
  [Sync Request] Sync nagios-nrpe (3.0.1-3) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios-nrpe/+bug/1663329/+subscriptions

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


[Bug 1625318] Re: Ubuntu 16.10 KVM SRIOV: if enable sriov while ping flood is running ping will stop working

2017-02-10 Thread bugproxy
--- Comment From cls...@us.ibm.com 2017-02-10 12:43 EDT---
I tried kernel 4.8.0-38-generic #41-Ubuntu SMP Wed Feb 8 14:26:14 UTC 2017 
ppc64le ppc64le ppc64le GNU/Linux
and I can not recreate the issue.

** Tags removed: verification-needed-xenial verification-needed-yakkety
** Tags added: verification-done-xenial verification-done-yakkety

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

Title:
  Ubuntu 16.10 KVM SRIOV: if enable sriov while ping flood is running
  ping will stop working

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

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


[Bug 1656979] Re: No support for DHE ciphers (TLS)

2017-02-10 Thread Nish Aravamudan
Hello, I'm a bit confused. As you noted, Xenial (and on) have 2.4.42 as
the base, but the fix you mention is in 2.4.39. So is it not fixed
upstream? Or is this a result of the GnuTLS build?

** Changed in: openldap (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/1656979

Title:
  No support for DHE ciphers (TLS)

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

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


[Bug 1654416] Re: Requesting 2.4.44 build which includes fix for ITS#8185

2017-02-10 Thread Nish Aravamudan
I'm merging openldap 2.4.44+dfsg-3 today, I hope. Any concerns you have,
Ryan?

** Changed in: openldap (Ubuntu)
   Status: New => In Progress

** Changed in: openldap (Ubuntu)
 Assignee: (unassigned) => Nish Aravamudan (nacc)

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

Title:
  Requesting 2.4.44 build which includes fix for ITS#8185

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

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


[Bug 1634572] Re: APCUPSD does not send killpower command to UPS (only happens on Ubuntu 16.04)

2017-02-10 Thread Alek_A
If you don't stop/kill apcupsd BEFORE you kill power, you should be
prepared that sometimes killpower would not work, because of apcupsd
already accessing the UPS to obtain its state.

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

Title:
  APCUPSD does not send killpower command to UPS (only happens on Ubuntu
  16.04)

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

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


[Bug 1628289] Re: snapd should depend on squashfuse (for use in containers)

2017-02-10 Thread Stéphane Graber
Yeah, a recommend would be absolutely fine here and wouldn't cause "apt
upgrade" to hold snapd, if I recall correctly, that's in fact what I
first requested.

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

Title:
  snapd should depend on squashfuse (for use in containers)

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

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


[Bug 1663702] [NEW] Please merge with Debian unstable 2.4.44+dfsg-3

2017-02-10 Thread Nish Aravamudan
Public bug reported:

to be completed

** Affects: openldap (Ubuntu)
 Importance: Undecided
 Assignee: Nish Aravamudan (nacc)
 Status: In Progress

** Changed in: openldap (Ubuntu)
   Status: New => In Progress

** Changed in: openldap (Ubuntu)
 Assignee: (unassigned) => Nish Aravamudan (nacc)

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

Title:
  Please merge with Debian unstable 2.4.44+dfsg-3

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

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


[Bug 1600164] Re: Mysql server take 10 minutes to stop without message after time drift

2017-02-10 Thread Clemens Fuchslocher
I also have this problem with Ubuntu 16.04.2 LTS:

| $ lsb_release --all
| No LSB modules are available.
| Distributor ID: Ubuntu
| Description:Ubuntu 16.04.2 LTS
| Release:16.04
| Codename:   xenial
|
| $ dmidecode -s system-product-name
| VirtualBox

After a reboot the activation time of MySQL is one hour ahead.

1. If I wait one hour after reboot, I can shutdown MySQL instantly:

| $ systemctl status mysql.service
| ...
|Active: active (running) since Fri 2017-02-10 18:20:08 CET; 59min left
| ...
|
| $ date
| Fri Feb 10 17:20:54 CET 2017
|
| $ sleep 60m
|
| $ date
| Fri Feb 10 18:21:02 CET 2017
|
| $ systemctl status mysql.service
| ...
|   Active: active (running) since Fri 2017-02-10 18:20:08 CET; 57s ago
| ...
|
| $ time systemctl stop mysql.service
|
| real0m4.928s
| user0m0.028s
| sys 0m0.008s


2. If I try it earlier, the shutdown fails after 10 minutes and MySQL gets 
killed by systemd with SIGKILL.

3. If I increase the systemd timeout of MySQL to two hours, then the
shutdown successfully ends after one hour. The attached
error-20170210.log contains this case and also the time jump:

| 2017-02-10T15:22:26.962776Z 0 [Note] /usr/sbin/mysqld: ready for connections.
| ...
| 2017-02-10T14:23:52.465978Z 0 [Note] Giving 0 client threads a chance to die 
gracefully

4. As suggested, I tried to start MySQL after the ntp.service, but it
didn't helped:

| $ apt-get install ntp
|
| $ grep ^After /lib/systemd/system/mysql.service
| After=ntp.service
|
| $ systemctl show mysql.service | grep ^After
| After=ntp.service basic.target system.slice systemd-journald.socket 
sysinit.target

5. I also tried to start MySQL after the systemd-timesyncd.service, but
it also didn't helped:

| $ cat 
/lib/systemd/system/systemd-timesyncd.service.d/disable-with-time-daemon.conf 
| ...
| ConditionFileIsExecutable=!/usr/sbin/ntpd
| ...
|
| $ dpkg --purge ntp
|
| $ grep ^After /lib/systemd/system/mysql.service
| After=systemd-timesyncd.service
|
| $ systemctl show mysql.service | grep ^After
| After=systemd-timesyncd.service system.slice basic.target 
systemd-journald.socket sysinit.target

6. Is there anything else I can try or do?

7. Maybe the importance of this issue should be raised, because killing
MySQL during its shutdown with SIGKILL feels a bit risky.

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

Title:
  Mysql server take 10 minutes to stop without message after time drift

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

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


[Bug 1600164] Re: Mysql server take 10 minutes to stop without message after time drift

2017-02-10 Thread Clemens Fuchslocher
** Attachment added: "error-20170210.log"
   
https://bugs.launchpad.net/ubuntu/+source/mysql-5.7/+bug/1600164/+attachment/4816680/+files/error-20170210.log

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

Title:
  Mysql server take 10 minutes to stop without message after time drift

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

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


[Bug 1663375] Re: Dell installer crashing

2017-02-10 Thread nathan
** Changed in: grub-installer (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/1663375

Title:
  Dell installer crashing

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

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


[Bug 1649931] Re: systemd-networkd needs to ensure DNS is up before network-online.target

2017-02-10 Thread Scott Moser
** Changed in: systemd (Ubuntu Xenial)
   Status: Fix Committed => Confirmed

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

Title:
  systemd-networkd needs to ensure DNS is up before network-
  online.target

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

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


[Bug 1661232] Re: linux: 4.8.0-38.41 -proposed tracker

2017-02-10 Thread Brad Figg
tests ran:  64, failed: 64;
  
http://kernel.ubuntu.com/testing/4.8.0-38.41-generic/gonzo__4.8.0-38.41__2017-02-10_13-02-00/results-index.html

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

Title:
  linux: 4.8.0-38.41 -proposed tracker

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

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


[Bug 1663657] [NEW] Xenial update to v4.4.48 stable release

2017-02-10 Thread Tim Gardner
Public bug reported:

SRU Justification

Impact:
   The upstream process for stable tree updates is quite similar
   in scope to the Ubuntu SRU process, e.g., each patch has to
   demonstrably fix a bug, and each patch is vetted by upstream
   by originating either directly from a mainline/stable Linux tree or
   a minimally backported form of that patch. The v4.4.48 upstream stable
   patch set is now available. It should be included in the Ubuntu
   kernel as well.

   git://git.kernel.org/

TEST CASE: TBD

   The following patches from the v4.4.48 stable release shall be
applied:

PCI/ASPM: Handle PCI-to-PCIe bridges as roots of PCIe hierarchies
ext4: validate s_first_meta_bg at mount time
drm/nouveau/disp/gt215: Fix HDA ELD handling (thus, HDMI audio) on gt215
drm/nouveau/nv1a,nv1f/disp: fix memory clock rate retrieval
crypto: api - Clear CRYPTO_ALG_DEAD bit before registering an alg
crypto: arm64/aes-blk - honour iv_out requirement in CBC and CTR modes
perf/core: Fix PERF_RECORD_MMAP2 prot/flags for anonymous memory
ata: sata_mv:- Handle return value of devm_ioremap.
libata: apply MAX_SEC_1024 to all CX1-JB*-HP devices
powerpc/eeh: Fix wrong flag passed to eeh_unfreeze_pe()
powerpc: Add missing error check to prom_find_boot_cpu()
NFSD: Fix a null reference case in find_or_create_lock_stateid()
svcrpc: fix oops in absence of krb5 module
zswap: disable changing params if init fails
cifs: initialize file_info_lock
mm/memory_hotplug.c: check start_pfn in test_pages_in_a_zone()
mm, fs: check for fatal signals in do_generic_file_read()
can: bcm: fix hrtimer/tasklet termination in bcm op removal
mmc: sdhci: Ignore unexpected CARD_INT interrupts
percpu-refcount: fix reference leak during percpu-atomic transition
HID: wacom: Fix poor prox handling in 'wacom_pl_irq'
KVM: x86: do not save guest-unsupported XSAVE state
USB: serial: qcserial: add Dell DW5570 QDL
USB: serial: pl2303: add ATEN device ID
USB: Add quirk for WORLDE easykey.25 MIDI keyboard
usb: gadget: f_fs: Assorted buffer overflow checks.
USB: serial: option: add device ID for HP lt2523 (Novatel E371)
x86/irq: Make irq activate operations symmetric
base/memory, hotplug: fix a kernel oops in show_valid_zones()
Linux 4.4.48

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

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


** Tags: kernel-stable-tracking-bug

** Tags added: kernel-stable-tracking-bug

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

** Description changed:

+ SRU Justification
  
- SRU Justification
+ Impact:
+    The upstream process for stable tree updates is quite similar
+    in scope to the Ubuntu SRU process, e.g., each patch has to
+    demonstrably fix a bug, and each patch is vetted by upstream
+    by originating either directly from a mainline/stable Linux tree or
+    a minimally backported form of that patch. The v4.4.48 upstream stable
+    patch set is now available. It should be included in the Ubuntu
+    kernel as well.
  
- Impact:
-The upstream process for stable tree updates is quite similar
-in scope to the Ubuntu SRU process, e.g., each patch has to
-demonstrably fix a bug, and each patch is vetted by upstream
-by originating either directly from a mainline/stable Linux tree or
-a minimally backported form of that patch. The v4.4.48 upstream stable
-patch set is now available. It should be included in the Ubuntu
-kernel as well.
+    git://git.kernel.org/
  
-git://git.kernel.org/
+ TEST CASE: TBD
  
- TEST CASE: TBD
+    The following patches from the v4.4.48 stable release shall be
+ applied:
  
-The following patches from the v4.4.48 stable release shall be
- applied:
+ PCI/ASPM: Handle PCI-to-PCIe bridges as roots of PCIe hierarchies
+ ext4: validate s_first_meta_bg at mount time
+ drm/nouveau/disp/gt215: Fix HDA ELD handling (thus, HDMI audio) on gt215
+ drm/nouveau/nv1a,nv1f/disp: fix memory clock rate retrieval
+ crypto: api - Clear CRYPTO_ALG_DEAD bit before registering an alg
+ crypto: arm64/aes-blk - honour iv_out requirement in CBC and CTR modes
+ perf/core: Fix PERF_RECORD_MMAP2 prot/flags for anonymous memory
+ ata: sata_mv:- Handle return value of devm_ioremap.
+ libata: apply MAX_SEC_1024 to all CX1-JB*-HP devices
+ powerpc/eeh: Fix wrong flag passed to eeh_unfreeze_pe()
+ powerpc: Add missing error check to prom_find_boot_cpu()
+ NFSD: Fix a null reference case in find_or_create_lock_stateid()
+ svcrpc: fix oops in absence of krb5 module
+ zswap: disable changing params if init fails
+ cifs: initialize file_info_lock
+ mm/memory_hotplug.c: check start_pfn in test_pages_in_a_zone()
+ mm, fs: check for fatal signals in do_generic_file_read()
+ can: bcm: fix hrtimer/tasklet termination in bcm op removal
+ mmc: sdhci: Ignore unexpected 

[Bug 1663659] [NEW] indicator-applet-complete crashes on resume/thaw

2017-02-10 Thread cement_head
Public bug reported:

Network fails to restart upon thaw from hibernate and/or resume from
suspend:

Therefore, I am using this workaround:



sudo -i nano /etc/polkit-1/localauthority/50-local.d/enable-
hibernate.pkla

Put these contents on that file

[Re-enable hibernate by default in upower]
Identity=unix-user:*
Action=org.freedesktop.upower.hibernate
ResultActive=yes

[Re-enable hibernate by default in logind]
Identity=unix-user:*
Action=org.freedesktop.login1.hibernate;org.freedesktop.login1.handle-hibernate-key;org.freedesktop.login1;org.freedesktop.login1.hibernate-multiple-sessions;org.freedesktop.login1.hibernate-ignore-inhibit
ResultActive=yes



Network works again upon thaw/resume, however, nm-applet is missing from
upper panel.

Using the following command, restores this:

$ killall nm-applet; nohup nm-applet &

It appears that indicator-applet-complete doesn't re-insert the nm-
applet when the network manager is restarted upon thaw/resume.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: indicator-applet-complete 12.10.2+15.04.20141127.2-0ubuntu1
ProcVersionSignature: Ubuntu 4.8.0-34.36~16.04.1-generic 4.8.11
Uname: Linux 4.8.0-34-generic x86_64
NonfreeKernelModules: zfs zunicode zcommon znvpair zavl
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Feb 10 10:16:36 2017
InstallationDate: Installed on 2016-04-28 (287 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: indicator-applet
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: indicator-applet (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  indicator-applet-complete crashes on resume/thaw

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-applet/+bug/1663659/+subscriptions

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


[Bug 1505409] Re: gnome-shell crashed with signal 5 in _XIOError()

2017-02-10 Thread Tommy S-Andreassen
I installed the Topicons plus extension yesterday. Since it recommended
that Dropbox was moved to user systemd to avoid crash of the tray, I did
just that. Since then gnome-shell has not crashed. It used to crash on
every new login/boot.

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

Title:
  gnome-shell crashed with signal 5 in _XIOError()

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

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


[Bug 1662589] Re: Touchpad not working correctly after kernel upgrade

2017-02-10 Thread Joseph Salisbury
I built a 4.4.0-55 kernel. It can be downloaded from:
http://kernel.ubuntu.com/~jsalisbury/lp1662589/

Can you give this kernel a test.

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

Title:
  Touchpad not working correctly after kernel upgrade

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

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


[Bug 1663662] Re: linux-lts-xenial: 4.4.0-63.84~14.04.2 -proposed tracker

2017-02-10 Thread Brad Figg
** Changed in: kernel-sru-workflow/prepare-package
   Status: New => Confirmed

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

** Description changed:

  This bug is for tracking the 4.4.0-63.84~14.04.2 upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
+ 
+ kernel-stable-phase:Packaging
+ kernel-stable-phase-changed:Friday, 10. February 2017 16:46 UTC

** Description changed:

  This bug is for tracking the 4.4.0-63.84~14.04.2 upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  kernel-stable-phase:Packaging
  kernel-stable-phase-changed:Friday, 10. February 2017 16:46 UTC
+ 
+ -- swm properties --
+ derivative-trackers-created: true
+ phase: Packaging

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

Title:
  linux-lts-xenial: 4.4.0-63.84~14.04.2 -proposed tracker

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

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


[Bug 1663674] Re: Firefox menus don't work with Xmir -rootless

2017-02-10 Thread Christopher Townsend
*** This bug is a duplicate of bug 1625846 ***
https://bugs.launchpad.net/bugs/1625846

** This bug has been marked a duplicate of bug 1625846
   Xmir -rootless: Firefox menus pop up then close right away

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

Title:
  Firefox menus don't work with Xmir -rootless

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

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


[Bug 1560942] Re: Support swap

2017-02-10 Thread Oliver Grawert
setting the snappy task back to in-progress.

i kept it open for the work on the configure hook which is not done yet.
the ubuntu-core-config change and core_support interface work are just 
infrastructure. 
the actual final implementation still needs to happen in the hook script.

** Changed in: snappy
   Status: Fix Committed => In Progress

** Changed in: snappy
 Assignee: (unassigned) => Oliver Grawert (ogra)

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

Title:
  Support swap

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

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


[Bug 1662186] fozzie (i386) - tests ran: 1, failed: 0

2017-02-10 Thread Brad Figg
tests ran:   1, failed: 0;
  
http://kernel.ubuntu.com/testing/3.13.0-109.156-generic/fozzie__3.13.0-109.156__2017-02-10_17-28-00/results-index.html

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

Title:
  linux: 3.13.0-109.156 -proposed tracker

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

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


[Bug 1662186] pepe (amd64) - tests ran: 10, failed: 0

2017-02-10 Thread Brad Figg
tests ran:  10, failed: 0;
  
http://kernel.ubuntu.com/testing/3.13.0-109.156-generic/pepe__3.13.0-109.156__2017-02-10_16-46-00/results-index.html

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

Title:
  linux: 3.13.0-109.156 -proposed tracker

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

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


[Bug 1650934] Re: dimmed labels no effect

2017-02-10 Thread Iain Lane
sweet, I didn't see this - lucky!

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

Title:
  dimmed labels no effect

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

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


[Bug 1656605] Re: No server console display after Grub screen until fully booted and pressing Ctrl-Alt-F1/8

2017-02-10 Thread Joseph Salisbury
I built a 3.15.0-0.1 kernel. The test kernel can be downloaded from:
http://kernel.ubuntu.com/~jsalisbury/lp1656605/

Can you give this kernel a test?

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

Title:
  No server console display after Grub screen until fully booted and
  pressing Ctrl-Alt-F1/8

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

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


[Bug 1663680] [NEW] Merge etckeeper from Debian unstable

2017-02-10 Thread Joshua Powers
Public bug reported:

Track merging from Debian unstable

** Affects: etckeeper (Ubuntu)
 Importance: Medium
 Assignee: Joshua Powers (powersj)
 Status: In Progress

** Summary changed:

- Merge from Debian unstable
+ Merge etckeeper from Debian unstable

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

Title:
  Merge etckeeper from Debian unstable

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

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


[Bug 1663682] [NEW] Merge dlm from Debian unstable

2017-02-10 Thread Joshua Powers
Public bug reported:

Track merging from Debian unstable

** Affects: dlm (Ubuntu)
 Importance: Medium
 Assignee: Joshua Powers (powersj)
 Status: In Progress

** Summary changed:

- Merge from Debian unstable
+ Merge dlm from Debian unstable

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

Title:
  Merge dlm from Debian unstable

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

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


[Bug 1663682] Re: Merge dlm from Debian unstable

2017-02-10 Thread Joshua Powers
Merge proposal:
https://code.launchpad.net/~powersj/ubuntu/+source/dlm/+git/dlm/+merge/316655

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

Title:
  Merge dlm from Debian unstable

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

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


[Bug 1663680] Re: Merge etckeeper from Debian unstable

2017-02-10 Thread Joshua Powers
Merge proposal:
https://code.launchpad.net/~powersj/ubuntu/+source/etckeeper/+git/etckeeper/+merge/316724

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

Title:
  Merge etckeeper from Debian unstable

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

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


[Bug 1600599] Re: Thermald is totally broken, or its default configuration is

2017-02-10 Thread m...@papersolve.com
But since you asked for some logs here is one more post with some I thought 
would be good:
- turbostat_high_load_without_thermald
- turbostat_high_load_with_thermald
- thermald_debug_high_load

The load was created with "stress-ng -matrix 0 -t 1m" and thunderbird, and 
"turbostat --debug sleep 10" was executed halfway into the 1m stress-ng run.  

** Attachment added: "logs.zip"
   
https://bugs.launchpad.net/ubuntu/+source/thermald/+bug/1600599/+attachment/4816650/+files/logs.zip

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

Title:
  Thermald is totally broken, or its default configuration is

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

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


[Bug 1663722] Re: mount called with mount -o ''

2017-02-10 Thread Scott Moser
** Also affects: cloud-utils (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: cloud-utils
   Status: New => Confirmed

** Changed in: cloud-utils
   Status: Confirmed => Fix Committed

** Changed in: cloud-utils (Ubuntu)
   Status: New => Confirmed

** Changed in: cloud-utils
   Importance: Undecided => Medium

** Changed in: cloud-utils (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  mount called with mount -o ''

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-utils/+bug/1663722/+subscriptions

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


[Bug 1663552] Re: Denial of Service: mysql-server going berserk when contacted by unauthorized client

2017-02-10 Thread Seth Arnold
Thanks for the bug Hadmut; I'm marking this public so that
administrators can more quickly learn that using tcpwrappers for access
control has the potential for trouble with mysqld, and can switch to
iptables or other firewalling as appropriate.

** Information type changed from Private Security to Public Security

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

Title:
  Denial of Service: mysql-server going berserk when contacted by
  unauthorized client

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

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


[Bug 1631745] Re: Ubuntu Budgie - panel crashed with SIGSEGV in g_slice_alloc()

2017-02-10 Thread fossfreedom
Please find enc a patch that resolves this bug.

AndyRock via IRC #ubuntu-devel 10/02/17 suggested this fix.  I have
slightly altered this so that the the remove ptr line is within the
weak-ptr if clause otherwise the weak-ptr function would crash where the
ptr does not actually exist.

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

Title:
  Ubuntu Budgie - panel crashed with SIGSEGV in g_slice_alloc()

To manage notifications about this bug go to:
https://bugs.launchpad.net/budgie-desktop/+bug/1631745/+subscriptions

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


[Bug 1662186] fozzie (i386) - tests ran: 19, failed: 1

2017-02-10 Thread Brad Figg
tests ran:  19, failed: 1;
  
http://kernel.ubuntu.com/testing/3.13.0-109.156-generic/fozzie__3.13.0-109.156__2017-02-10_20-15-00/results-index.html

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

Title:
  linux: 3.13.0-109.156 -proposed tracker

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

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


[Bug 1631745] Re: Ubuntu Budgie - panel crashed with SIGSEGV in g_slice_alloc()

2017-02-10 Thread Andrea Azzarone
LGTM.

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

Title:
  Ubuntu Budgie - panel crashed with SIGSEGV in g_slice_alloc()

To manage notifications about this bug go to:
https://bugs.launchpad.net/budgie-desktop/+bug/1631745/+subscriptions

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


[Bug 1663662] Re: linux-lts-xenial: 4.4.0-63.84~14.04.2 -proposed tracker

2017-02-10 Thread Andy Whitcroft
** Also affects: linux-lts-xenial (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: linux-lts-xenial (Ubuntu Trusty)
   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/1663662

Title:
  linux-lts-xenial: 4.4.0-63.84~14.04.2 -proposed tracker

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

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


[Bug 1663636] Re: linux-lts-trusty: 3.13.0-109.156~precise2 -proposed tracker

2017-02-10 Thread Andy Whitcroft
** Also affects: linux-lts-trusty (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Changed in: linux-lts-trusty (Ubuntu Precise)
   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/1663636

Title:
  linux-lts-trusty: 3.13.0-109.156~precise2 -proposed tracker

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

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


[Bug 1663762] Re: package overlay-scrollbar-gtk2:amd64 0.2.17.1+16.04.20151117-0ubuntu1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempti

2017-02-10 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package overlay-scrollbar-gtk2:amd64 0.2.17.1+16.04.20151117-0ubuntu1
  failed to install/upgrade: package is in a very bad inconsistent
  state; you should  reinstall it before attempting configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/overlay-scrollbar/+bug/1663762/+subscriptions

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


[Bug 1609866] Re: Need logrotation

2017-02-10 Thread Chad Smith
** Changed in: landscape
Milestone: 17.01 => 17.02

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

Title:
  Need logrotation

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

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


[Bug 1370572] Re: Unknown libmtp error when copying content from internal storage to SD card using MTP

2017-02-10 Thread Bib
Neither mtpfs nor jmtpfs are useful, nor help (uninstalled).

[228663.430977] usb 3-2: new high-speed USB device number 47 using xhci_hcd
[228663.450770] usb 3-2: New USB device found, idVendor=22b8, idProduct=710e
[228663.450781] usb 3-2: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[228663.450786] usb 3-2: Product: XT890
[228663.450791] usb 3-2: Manufacturer: Motorola
[228663.450795] usb 3-2: SerialNumber: Medfield2BE00F30
[231590.515653] usb 3-2: USB disconnect, device number 47
[240467.466285] [drm:intel_dp_start_link_train] *ERROR* too many full retries, 
give up
[241716.808139] usb 3-2: new high-speed USB device number 48 using xhci_hcd
[241716.828029] usb 3-2: New USB device found, idVendor=22b8, idProduct=710e
[241716.828075] usb 3-2: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[241716.828095] usb 3-2: Product: XT890
[241716.828101] usb 3-2: Manufacturer: Motorola
[241716.828107] usb 3-2: SerialNumber: Medfield2BE00F30
[244687.571791] usb 3-2: usbfs: process 27218 (events) did not claim interface 
0 before use
[244690.796493] usb 3-2: USB disconnect, device number 48
[249139.690112] [drm:intel_dp_start_link_train] *ERROR* too many full retries, 
give up
[250458.573693] [drm:intel_dp_start_link_train] *ERROR* too many full retries, 
give up
[250842.719857] usb 3-2: new high-speed USB device number 49 using xhci_hcd
[250842.739777] usb 3-2: New USB device found, idVendor=22b8, idProduct=710e
[250842.739788] usb 3-2: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[250842.739794] usb 3-2: Product: XT890
[250842.739798] usb 3-2: Manufacturer: Motorola
[250842.739803] usb 3-2: SerialNumber: Medfield2BE00F30


It seems I can copy/move files, but not folders :

Erreur lors de la copie du fichier dans « 
mtp://[usb:003,049]/M%C3%A9moire%20de%20stockage%20interne/Music ».
This error was when I copied and empty folder. Although speaking of file 
instead of a dir.
There may be or not an error : the french string is /Mémoire de stockage 
interne/Music.
Although copy succeeds when catching files without a parent directory.

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

Title:
  Unknown libmtp error when copying content from internal storage to SD
  card using MTP

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

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

[Bug 1663580] Missing required logs.

2017-02-10 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
>From a terminal window please run:

apport-collect 1663580

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

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

Title:
  Ubuntu 16.04 upgrade:system unable to shutdown or restart. system
  making lots of noise from cpu fan after boot.  NMI watchdog: BUG: soft
  lockup - CPU#5 stuck for 23s! [plymouthd:305]  error during upgrade,
  unable to clear orphaned inodes.

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

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


[Bug 1663754] Re: Please merge from Debian

2017-02-10 Thread Unit 193
Sure thing, can do.

** Patch added: "deluge_minimal.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/deluge/+bug/1663754/+attachment/4816804/+files/deluge_minimal.debdiff

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

Title:
  Please merge from Debian

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

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


[Bug 1622686] Re: double header in 16.10

2017-02-10 Thread Mathieu Trudel-Lapierre
Since it's reportedly fixed just by modifying the icon theme in SRUs,
let's not introduce changes to ubiquity now.

For yakkety; this is Won't Fix: we're not doing point-releases, so even
if it was available, it would not benefit many installs (given that
ubiquity would need to be on the ISO for the changes to apply to direct
installs (rather than live)).

For xenial, I'm applying the changes to the bzr branch for the next
ubiquity upload.

** Changed in: ubiquity (Ubuntu Yakkety)
   Status: New => Won't Fix

** Changed in: ubiquity (Ubuntu Xenial)
   Status: New => In Progress

** Changed in: ubiquity (Ubuntu Xenial)
 Assignee: (unassigned) => Mathieu Trudel-Lapierre (cyphermox)

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

Title:
  double header in 16.10

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

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


[Bug 1663754] Re: Please merge from Debian

2017-02-10 Thread Nish Aravamudan
Updated the changelog to be zesty (sponsor-patch doesn't seem to like
devel, even though I understand it to be valid) and I sponsored the
patch. Thanks!

** Changed in: deluge (Ubuntu)
   Status: New => Fix Committed

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

Title:
  Please merge from Debian

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

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


[Bug 1663760] Re: dpkg: error processing archive /var/cache/apt/archives/obs-studio_0.16.2.1-544~yakkety_amd64.deb (--unpack): trying to overwrite '/usr/share/obs/libobs/bicubic_scale.effect', which i

2017-02-10 Thread Videonauth
Ok. after a reboot it suddenly worked. No bug.

** Description changed:

  Today after a fresh system installation of Ubuntu 16.10 i tried to
  reinstall OBS-Studio and was greeted with the following error:
  
  What I did:
  sudo add-apt-repository ppa:obsproject/obs-studio
  sudo apt update
  sudo apt install ffmpeg
  sudo apt install obs-studio obs-plugins
  
  The result:
  Reading package lists... Done
- Building dependency tree   
+ Building dependency tree
  Reading state information... Done
  The following NEW packages will be installed:
-   obs-plugins obs-studio
+   obs-plugins obs-studio
  0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/2.971 kB of archives.
  After this operation, 8.630 kB of additional disk space will be used.
  Selecting previously unselected package obs-plugins:amd64.
  (Reading database ... 205356 files and directories currently installed.)
  Preparing to unpack .../0-obs-plugins_0.14.2+dfsg1-3_amd64.deb ...
  Unpacking obs-plugins:amd64 (0.14.2+dfsg1-3) ...
  Preparing to unpack .../1-obs-studio_0.16.2.1-544~yakkety_amd64.deb ...
  Unpacking obs-studio (0.16.2.1-544~yakkety) ...
  dpkg: error processing archive 
/tmp/apt-dpkg-install-jPcQhX/1-obs-studio_0.16.2.1-544~yakkety_amd64.deb 
(--unpack):
-  trying to overwrite '/usr/share/obs/libobs/bicubic_scale.effect', which is 
also in package libobs0:amd64 0.14.2+dfsg1-3
+  trying to overwrite '/usr/share/obs/libobs/bicubic_scale.effect', which is 
also in package libobs0:amd64 0.14.2+dfsg1-3
  dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
  Errors were encountered while processing:
-  /tmp/apt-dpkg-install-jPcQhX/1-obs-studio_0.16.2.1-544~yakkety_amd64.deb
+  /tmp/apt-dpkg-install-jPcQhX/1-obs-studio_0.16.2.1-544~yakkety_amd64.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

** Changed in: obs-studio (Ubuntu)
   Status: New => Invalid

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

Title:
  dpkg: error processing archive /var/cache/apt/archives/obs-
  studio_0.16.2.1-544~yakkety_amd64.deb (--unpack):  trying to overwrite
  '/usr/share/obs/libobs/bicubic_scale.effect', which is also in package
  libobs0:amd64 0.14.2+dfsg1-3

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

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

[Bug 1663763] [NEW] Firefox menu bar cannot be enabled

2017-02-10 Thread Nico Orrù
Public bug reported:

On Xubuntu/desktop 16.10
- Menu bar appears on indicator
- Menu bar cannot be enabled in customize

This is a deal breaker. One of the main reasons why I use Firefox rather
than Chrome on Linux is the menu bar.

Should I use Chrome instead?

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: firefox 51.0.1+build2-0ubuntu0.16.10.2
ProcVersionSignature: Ubuntu 4.8.0-37.39-lowlatency 4.8.16
Uname: Linux 4.8.0-37-lowlatency x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  nico   2150 F pulseaudio
BuildID: 20170201174907
Channel: Unavailable
CurrentDesktop: XFCE
Date: Fri Feb 10 22:34:03 2017
Extensions: extensions.sqlite corrupt or missing
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
IncompatibleExtensions: Unavailable (corrupt or non-existant compatibility.ini 
or extensions.sqlite)
InstallationDate: Installed on 2016-10-20 (113 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
IpRoute:
 default via 10.1.0.1 dev wifi0  proto static  metric 600 
 10.1.0.0/16 dev wifi0  proto kernel  scope link  src 10.1.8.81  metric 600 
 169.254.0.0/16 dev wifi0  scope link  metric 1000
Locales: extensions.sqlite corrupt or missing
Plugins:
 Google Talk Plugin Video Renderer - /opt/google/talkplugin/libnpo1d.so 
(google-talkplugin)
 Google Talk Plugin - /opt/google/talkplugin/libnpgoogletalk.so 
(google-talkplugin)
 Shockwave Flash - /usr/lib/flashplugin-installer/libflashplayer.so
PrefSources:
 prefs.js
 
[Profile]/extensions/{3d7eb24f-2740-49df-8937-200b1cc08f8a}/defaults/preferences/flashblock.js
 [Profile]/extensions/foxypr...@eric.h.jung/defaults/preferences/prefs.js
Profiles: Profile0 (Default) - LastVersion=51.0.1/20170201174907 (In use)
RelatedPackageVersions: google-talkplugin 5.41.0.0-1
RunningIncompatibleAddons: False
SourcePackage: firefox
Themes: extensions.sqlite corrupt or missing
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/02/2016
dmi.bios.vendor: LENOVO
dmi.bios.version: N1FET43W (1.17 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20FBCTO1WW
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40697 WIN
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnLENOVO:bvrN1FET43W(1.17):bd08/02/2016:svnLENOVO:pn20FBCTO1WW:pvrThinkPadX1Carbon4th:rvnLENOVO:rn20FBCTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
dmi.product.name: 20FBCTO1WW
dmi.product.version: ThinkPad X1 Carbon 4th
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug yakkety

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

Title:
  Firefox menu bar cannot be enabled

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

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


[Bug 1656605] Re: No server console display after Grub screen until fully booted and pressing Ctrl-Alt-F1/8

2017-02-10 Thread Joseph Salisbury
There was never a 3.14 based Ubuntu kernel released, so we may be at the
two bisectable versions.

Can you confirm 3.13.0-9.29 is goood:
https://launchpad.net/~canonical-kernel-team/+archive/ubuntu/ppa/+build/5589423

If 3.13.0-9.29 is good, I can bisect between 3.13.0-9.29 and 3.15.0-0.1
and start building test kernels.

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

Title:
  No server console display after Grub screen until fully booted and
  pressing Ctrl-Alt-F1/8

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

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


[Bug 1654067] Re: Ubuntu 16.10 KVM: Running out of memory if trying to bringup guest with more than 64VFs.

2017-02-10 Thread bugproxy
--- Comment From cls...@us.ibm.com 2017-02-10 15:41 EDT---
I tried kernel 4.8.0-38-generic #41-Ubuntu SMP Wed Feb 8 14:26:14 UTC 2017 
ppc64le ppc64le ppc64le GNU/Linux
and I can not recreate the issue.

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

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

Title:
  Ubuntu 16.10 KVM: Running out of memory if trying to bringup guest
  with more than 64VFs.

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

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


[Bug 1663687] Re: [Hyper-V] Bug fixes for storvsc (tagged queuing, error conditions)

2017-02-10 Thread Joseph Salisbury
** Tags added: kernel-da-key kernel-hyper-v

** Changed in: linux (Ubuntu)
   Importance: Undecided => Medium

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

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

Title:
  [Hyper-V] Bug fixes for storvsc (tagged queuing, error conditions)

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

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


[Bug 1663760] [NEW] dpkg: error processing archive /var/cache/apt/archives/obs-studio_0.16.2.1-544~yakkety_amd64.deb (--unpack): trying to overwrite '/usr/share/obs/libobs/bicubic_scale.effect', which

2017-02-10 Thread Videonauth
Public bug reported:

Today after a fresh system installation of Ubuntu 16.10 i tried to
reinstall OBS-Studio and was greeted with the following error:

What I did:
sudo add-apt-repository ppa:obsproject/obs-studio
sudo apt update
sudo apt install ffmpeg
sudo apt install obs-studio obs-plugins

The result:
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following NEW packages will be installed:
  obs-plugins obs-studio
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/2.971 kB of archives.
After this operation, 8.630 kB of additional disk space will be used.
Selecting previously unselected package obs-plugins:amd64.
(Reading database ... 205356 files and directories currently installed.)
Preparing to unpack .../0-obs-plugins_0.14.2+dfsg1-3_amd64.deb ...
Unpacking obs-plugins:amd64 (0.14.2+dfsg1-3) ...
Preparing to unpack .../1-obs-studio_0.16.2.1-544~yakkety_amd64.deb ...
Unpacking obs-studio (0.16.2.1-544~yakkety) ...
dpkg: error processing archive 
/tmp/apt-dpkg-install-jPcQhX/1-obs-studio_0.16.2.1-544~yakkety_amd64.deb 
(--unpack):
 trying to overwrite '/usr/share/obs/libobs/bicubic_scale.effect', which is 
also in package libobs0:amd64 0.14.2+dfsg1-3
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /tmp/apt-dpkg-install-jPcQhX/1-obs-studio_0.16.2.1-544~yakkety_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

** Affects: obs-studio (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/1663760

Title:
  dpkg: error processing archive /var/cache/apt/archives/obs-
  studio_0.16.2.1-544~yakkety_amd64.deb (--unpack):  trying to overwrite
  '/usr/share/obs/libobs/bicubic_scale.effect', which is also in package
  libobs0:amd64 0.14.2+dfsg1-3

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

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


[Bug 1633649] Re: spl-dkms 0.6.5.6-0ubuntu4: spl kernel module failed to build

2017-02-10 Thread scotte
A clarification - this sort of issue will only occur when using the ZFS
dkms packages - zfs-dkms and spl-dkms. When using ubuntu kernel builds,
such as linux-image-4.8.0-34-generic, binary drivers are already
available in the linux-image-extra-4.8.0-34-generic.

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

Title:
  spl-dkms 0.6.5.6-0ubuntu4: spl kernel module failed to build

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

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


[Bug 1531958] Re: mosh doesnt allow cryptfs-mount-home

2017-02-10 Thread Bug Watch Updater
** Changed in: mosh
   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/1531958

Title:
  mosh doesnt allow cryptfs-mount-home

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

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


[Bug 1598300] Re: CUPS web interface stops responding after a while

2017-02-10 Thread Iiro Laiho
launchpad-groovix: Weird. This "feature" shouldn't be active at all when
printer sharing is enabled. Did you look the cups log to make sure that
it really is the same problem?

And yes, this is a serious issue, but if you read the earlier messages,
you see that the fix will cause the bug 1642966 that will result the
breakage of some systems. This really should have been fixed before the
release of 16.04 xenial (or the patch that caused this maybe shouldn't
have been written in first place since it AFAIK solved a thing that was
not really a problem), but it's now too late to do anything to the fact
that it was not and it's now difficult to fix it since breakage of
systems that have a LTS release installed should be avoided.

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

Title:
  CUPS web interface stops responding after a while

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

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


[Bug 1663762] [NEW] package overlay-scrollbar-gtk2:amd64 0.2.17.1+16.04.20151117-0ubuntu1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attemp

2017-02-10 Thread Pat
Public bug reported:

Running Kodi and the video froze but the audio continued. Could not do
anything with Kodi or the OS.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: overlay-scrollbar-gtk2:amd64 0.2.17.1+16.04.20151117-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-62.83-generic 4.4.40
Uname: Linux 4.4.0-62-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
Date: Sun Feb  5 13:32:55 2017
DuplicateSignature:
 package:overlay-scrollbar-gtk2:amd64:0.2.17.1+16.04.20151117-0ubuntu1
 Processing triggers for mime-support (3.59ubuntu1) ...
 dpkg: error processing package overlay-scrollbar-gtk2:amd64 (--configure):
  package is in a very bad inconsistent state; you should
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
InstallationDate: Installed on 2016-10-17 (116 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.18
SourcePackage: overlay-scrollbar
Title: package overlay-scrollbar-gtk2:amd64 0.2.17.1+16.04.20151117-0ubuntu1 
failed to install/upgrade: package is in a very bad inconsistent state; you 
should  reinstall it before attempting configuration
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: overlay-scrollbar (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

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

Title:
  package overlay-scrollbar-gtk2:amd64 0.2.17.1+16.04.20151117-0ubuntu1
  failed to install/upgrade: package is in a very bad inconsistent
  state; you should  reinstall it before attempting configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/overlay-scrollbar/+bug/1663762/+subscriptions

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


[Bug 1550210] Re: Desktop file does not open ImageMagick from the menu

2017-02-10 Thread Nish Aravamudan
It looks like, though, it was not fixed until
imagemagick/8:6.9.7.4+dfsg-1 in Debian and we're currently merged to
8:6.9.7.0+dfsg-2. Given how long we've been waiting to get even that
version though, let me check on how things look next week and see if we
can just re-merge to updated release from Debian before Feature Freeze.
Thanks!

** Changed in: imagemagick (Ubuntu)
 Assignee: (unassigned) => Nish Aravamudan (nacc)

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

Title:
  Desktop file does not open ImageMagick from the menu

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

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


[Bug 1657795] Re: gnocchi-common package misses the logrotate config

2017-02-10 Thread Chuck Short
This will be fixed in the next upload.

** Changed in: gnocchi (Ubuntu)
   Status: New => Fix Committed

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

Title:
  gnocchi-common package misses the logrotate config

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

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


[Bug 1663735] Re: ds-identify finding by fslabel does not work right

2017-02-10 Thread Scott Moser
** Summary changed:

- ds-identify finding by fslable does not work right
+ ds-identify finding by fslabel does not work right

** Changed in: cloud-init
   Status: New => Confirmed

** Changed in: cloud-init
   Importance: Undecided => Medium

** Changed in: cloud-init
   Status: Confirmed => Fix Committed

** Changed in: cloud-init
   Importance: Medium => High

** Also affects: cloud-init (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: cloud-init (Ubuntu)
   Status: New => Confirmed

** Changed in: cloud-init (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  ds-identify finding by fslabel does not work right

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1663735/+subscriptions

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


[Bug 1654116] Re: Attempts to write leadership settings when not the leader during relation-changed hooks

2017-02-10 Thread Chad Smith
** Changed in: landscape
Milestone: 17.01 => 17.02

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

Title:
  Attempts to write leadership settings when not the leader during
  relation-changed hooks

To manage notifications about this bug go to:
https://bugs.launchpad.net/autopilot-log-analyser/+bug/1654116/+subscriptions

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


[Bug 1663744] [NEW] Freezes, if you tune to a channel that does not have broadcast.

2017-02-10 Thread Jarno Suni
Public bug reported:

MythTV Frontend becomes unresponsive, if you switch to a channel that
does not have broadcast.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: mythtv-frontend 2:0.28.0+fixes.20160413.15cf421-0ubuntu2
ProcVersionSignature: Ubuntu 4.4.0-59.80-generic 4.4.35
Uname: Linux 4.4.0-59-generic x86_64
NonfreeKernelModules: nvidia_uvm wl nvidia
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
CurrentDesktop: XFCE
Date: Fri Feb 10 22:33:56 2017
EcryptfsInUse: Yes
InstallationDate: Installed on 2017-01-05 (36 days ago)
InstallationMedia: Xubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
Installed_mythtv_dbg: 0.0
MythTVDirectoryPermissions:
 total 8
 drwxrwsr-x 2 mythtv mythtv 4096 tammi  6 00:19 bare-client
 drwxr-xr-x 2 root   root   4096 huhti 19  2016 videos
SourcePackage: mythtv
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

Title:
  Freezes, if you tune to a channel that does not have broadcast.

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

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


[Bug 1663723] Re: zesty cloud-init doesn't know about ds=nocloud-net; seedfrom=

2017-02-10 Thread Launchpad Bug Tracker
This bug was fixed in the package cloud-init -
0.7.9-25-g65529b6-0ubuntu1

---
cloud-init (0.7.9-25-g65529b6-0ubuntu1) zesty; urgency=medium

  * New upstream snapshot.
- ds-identify: fix checking for filesystem label (LP: #1663735)
- ds-identify: read ds=nocloud properly (LP: #1663723)

 -- Scott Moser   Fri, 10 Feb 2017 15:25:17 -0500

** Changed in: cloud-init (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  zesty cloud-init doesn't know about ds=nocloud-net;seedfrom=

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

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


[Bug 1663747] [NEW] unity_inspector_get_unity_running improperly returns true on KDE 5.6

2017-02-10 Thread Thomas Anderson
Public bug reported:

Chromium uses unity_inspector_get_unity_running to determine if 
close/minimize/maximize buttons are hidden when in a maximized state.
https://cs.chromium.org/chromium/src/chrome/browser/ui/libgtkui/unity_service.cc?rcl=0ddb4374a9221dba28e9ea8a1edaacb32dcc0861=124

libunity checks if the com.canonical.Unity Dbus service is created and
uses that as the return value for unity_inspector_get_unity_running.
(see src/unity-inspector.vala)

KDE Plasma 5.6 supports the unity launcher API and creates a
com.canonical.Unity service.  Even though unity is certainly not
running, UnityInspector thinks it is.

Chromium bug report:
https://bugs.chromium.org/p/chromium/issues/detail?id=594490

KDE bug report:
https://bugs.kde.org/show_bug.cgi?id=360403

** Affects: libunity (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/1663747

Title:
  unity_inspector_get_unity_running improperly returns true on KDE 5.6

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

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


[Bug 1631745] Re: Ubuntu Budgie - panel crashed with SIGSEGV in g_slice_alloc()

2017-02-10 Thread fossfreedom
** Patch added: "gnome-menus_3.13.3-6ubuntu5.diff"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-menus/+bug/1631745/+attachment/4816798/+files/gnome-menus_3.13.3-6ubuntu5.diff

** Patch removed: "gnome-menus_3.13.3-6ubuntu5.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-menus/+bug/1631745/+attachment/4807713/+files/gnome-menus_3.13.3-6ubuntu5.debdiff

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

Title:
  Ubuntu Budgie - panel crashed with SIGSEGV in g_slice_alloc()

To manage notifications about this bug go to:
https://bugs.launchpad.net/budgie-desktop/+bug/1631745/+subscriptions

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


[Bug 1663735] Re: ds-identify finding by fslabel does not work right

2017-02-10 Thread Launchpad Bug Tracker
This bug was fixed in the package cloud-init -
0.7.9-25-g65529b6-0ubuntu1

---
cloud-init (0.7.9-25-g65529b6-0ubuntu1) zesty; urgency=medium

  * New upstream snapshot.
- ds-identify: fix checking for filesystem label (LP: #1663735)
- ds-identify: read ds=nocloud properly (LP: #1663723)

 -- Scott Moser   Fri, 10 Feb 2017 15:25:17 -0500

** Changed in: cloud-init (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  ds-identify finding by fslabel does not work right

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1663735/+subscriptions

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


[Bug 1663749] [NEW] Backport "libdpkg: Only preallocate disk size for files bigger than 16 KiB".

2017-02-10 Thread Vinson Lee
Public bug reported:

Please backport upstream dpkg patch "libdpkg: Only preallocate disk size
for files bigger than 16 KiB" to xenial, yakkety, and zesty versions of
dpkg.

dpkg 1.17.11 commit "dpkg: Try to preallocate the disk size for
extracted files" causes installs of packages with many small files to be
slow.
https://anonscm.debian.org/git/dpkg/dpkg.git/commit/?id=87b0b20b86407baf1deb4e91b3fd839e01228ac8

This was fixed in dpkg 1.18.15 with "libdpkg: Only preallocate disk size
for files bigger than 16 KiB".
https://anonscm.debian.org/git/dpkg/dpkg.git/commit/?id=a971ad91437af8880cad4703695dcf12ee45959b

trusty dpkg is based off 1.17.5 and is not affected. xenial dpkg based
off 1.18.4, yakkety dpkg based off 1.18.10, and zesty dpkg based off
1.18.10 need the fix.

** Affects: dpkg (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/1663749

Title:
  Backport "libdpkg: Only preallocate disk size for files bigger than 16
  KiB".

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

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


[Bug 1663537] Re: window manager crashes on loading

2017-02-10 Thread Sofía
The issue was caused by gdk-pixbuf being unable to recognize the file
format of the theme image files (or of any image file).

This seems to have been caused by the creation of a
/usr/local/share/applications directory and files in it with incorrect
permissions by the Makefile of Anki 2.0.41

when run with sudo and an inappropriate umask (0027).

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

Title:
  window manager crashes on loading

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

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


[Bug 1662551] Comment bridged from LTC Bugzilla

2017-02-10 Thread bugproxy
--- Comment From b...@us.ibm.com 2017-02-10 16:13 EDT---
commit b22bc27868e8c11fe3f00937a341b44f80b50364 upstream.

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

Title:
  ibmvscsis: Add SGL LIMIT

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1662551/+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   >