[Group.of.nepali.translators] [Bug 1631561] Re: [SRU] volume usage audit print excessive debug log for deleted resources

2017-04-13 Thread Launchpad Bug Tracker
This bug was fixed in the package cinder - 2:9.1.2-0ubuntu2

---
cinder (2:9.1.2-0ubuntu2) yakkety; urgency=medium

  * d/p/log-message-cleanup-for-volume-usage-audit.patch:
Fixes LP: #1631561.

 -- Jorge Niedbalski   Fri, 10 Mar 2017
18:20:41 -0300

** Changed in: cinder (Ubuntu Yakkety)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1631561

Title:
  [SRU] volume usage audit print excessive debug log for deleted
  resources

Status in Cinder:
  Fix Released
Status in Ubuntu Cloud Archive:
  Fix Released
Status in Ubuntu Cloud Archive mitaka series:
  In Progress
Status in Ubuntu Cloud Archive newton series:
  In Progress
Status in cinder package in Ubuntu:
  Fix Released
Status in cinder source package in Xenial:
  Fix Committed
Status in cinder source package in Yakkety:
  Fix Released

Bug description:
  [Impact]

  * Current volume usage audit tool queries all
  volumes/snapshots/backups including those resources have been deleted,
  as a result, every single deleted resource would trigger a few
  debug/exception level messages, which is too much for a running
  production cluster at hour/day period.

  * notify_snapshot_usage() doesn't handles the case when
   when the source volume for the snapshot has been deleted.

  The following exception is raised:

  2017-02-17 20:20:10.067 1921 ERROR cinder 
[req-7e273ce0-1ae8-410e-a814-0f444364c028 - - - - -] Exists snapshot 
notification failed: Volume 2c84e585-9947-4ad9-bd93-2fc3a5cf9a08 could not be 
found.
  2017-02-17 20:20:10.067 1921 ERROR cinder Traceback (most recent call last):
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/cmd/volume_usage_audit.py", line 188, 
in main
  2017-02-17 20:20:10.067 1921 ERROR cinder extra_info)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/volume/utils.py", line 174, in 
notify_about_snapshot_usage
  2017-02-17 20:20:10.067 1921 ERROR cinder usage_info = 
_usage_from_snapshot(snapshot, **extra_usage_info)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/volume/utils.py", line 151, in 
_usage_from_snapshot
  2017-02-17 20:20:10.067 1921 ERROR cinder 'availability_zone': 
snapshot.volume['availability_zone'],
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/oslo_versionedobjects/base.py", line 67, in 
getter
  2017-02-17 20:20:10.067 1921 ERROR cinder self.obj_load_attr(name)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/objects/snapshot.py", line 196, in 
obj_load_attr
  2017-02-17 20:20:10.067 1921 ERROR cinder self.volume_id)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/oslo_versionedobjects/base.py", line 181, in 
wrapper
  2017-02-17 20:20:10.067 1921 ERROR cinder result = fn(cls, context, *args, 
**kwargs)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/objects/base.py", line 166, in 
get_by_id
  2017-02-17 20:20:10.067 1921 ERROR cinder orm_obj = db.get_by_id(context, 
model, id, *args, **kwargs)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/db/api.py", line 1127, in get_by_id
  2017-02-17 20:20:10.067 1921 ERROR cinder return IMPL.get_by_id(context, 
model, id, *args, **kwargs)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/db/sqlalchemy/api.py", line 193, in 
wrapper
  2017-02-17 20:20:10.067 1921 ERROR cinder return f(*args, **kwargs)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/db/sqlalchemy/api.py", line 4451, in 
get_by_id
  2017-02-17 20:20:10.067 1921 ERROR cinder return _GET_METHODS[model](context, 
id, *args, **kwargs)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/db/sqlalchemy/api.py", line 193, in 
wrapper
  2017-02-17 20:20:10.067 1921 ERROR cinder return f(*args, **kwargs)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/db/sqlalchemy/api.py", line 1480, in 
volume_get
  2017-02-17 20:20:10.067 1921 ERROR cinder return _volume_get(context, 
volume_id)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/db/sqlalchemy/api.py", line 193, in 
wrapper
  2017-02-17 20:20:10.067 1921 ERROR cinder return f(*args, **kwargs)
  2017-02-17 20:20:10.067 1921 ERROR cinder File 
"/usr/lib/python2.7/dist-packages/cinder/db/sqlalchemy/api.py", line 1425, in 
_volume_get
  2017-02-17 20:20:10.067 1921 ERROR cinder raise 
exception.VolumeNotFound(volume_id=volume_id)
  2017-02-17 20:20:10.067 1921 ERROR cinder VolumeNotFound: 

[Group.of.nepali.translators] [Bug 1677126] Re: ubuntu_lttng_smoke_test failed on z-hwe: Kernel tracer not available

2017-04-13 Thread Launchpad Bug Tracker
This bug was fixed in the package lttng-modules - 2.8.0-1ubuntu1~16.04.2

---
lttng-modules (2.8.0-1ubuntu1~16.04.2) xenial; urgency=medium

  * Fix builds on HWE 4.10 kernel (LP: #1677126)
Backport the following upstream commits:
 0007-Fix-unregister-cpu-hotplug-notifier-on-buffer-alloc-.patch
 0008-Add-load-unload-messages-to-kernel-log.patch
 0009-Fix-update-scsi-instrumentation-for-4.7-kernels.patch
 0010-btrfs-instrumentation-update-to-4.10-kernel.patch
 0011-timer-instrumentation-adapt-to-ktime_t-without-union.patch
 0012-Adapt-lttng-modules-to-Linux-4.10-cpu-hotplug-state-.patch
 0013-Fix-only-include-linux-cpuhotplug.h-for-kernels-4.10.patch
 0014-Fix-4.10-hotplug-adaptation-backward-compat.patch

 -- Colin Ian King   Wed, 29 Mar 2017 14:05:08
+0100

** Changed in: lttng-modules (Ubuntu Xenial)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1677126

Title:
  ubuntu_lttng_smoke_test failed on z-hwe: Kernel tracer not available

Status in linux-hwe-edge package in Ubuntu:
  In Progress
Status in lttng-modules package in Ubuntu:
  In Progress
Status in linux-hwe-edge source package in Xenial:
  New
Status in lttng-modules source package in Xenial:
  Fix Released

Bug description:
  == SRU REQUEST [Xenial] ==

  We are getting lttng module build failures on the HWE 4.10.0 kernel
  because we are missing the 4.9 and 4.10 compatibility patches to build
  for a 4.10 kernel.

  == Fix ==

  Apply minimal set of upstream patches to enable 4.9 + 4.10 builds:

  769b62a02f62ff8db93f109d9f63a1df6ea9990b
   Fix-unregister-cpu-hotplug-notifier-on-buffer-alloc-.patch

  489de24bfb835022b64c2e71d717eaf333ab3633
   Add-load-unload-messages-to-kernel-log.patch

  3e86016420272ce5ef0139ad52f20c83305f0f15
   Fix-update-scsi-instrumentation-for-4.7-kernels.patch

  f3166f27f5e2d2210cec32d68c277940a7473281
   btrfs-instrumentation-update-to-4.10-kernel.patch

  507143bc5de50c0e5493d63fb5c300fa42326842
   timer-instrumentation-adapt-to-ktime_t-without-union.patch

  1e36732678d7cc650940b4508031acf2f6ffcd1b
   Adapt-lttng-modules-to-Linux-4.10-cpu-hotplug-state-.patch

  da3b99a6386302158785e1f8fd1679c106850d0e
   Fix: only include linux/cpuhotplug.h for kernels >= 4.10

  ce4a2f0c273d4077c6eb9e6e0f28379ddaf61382
   Fix: 4.10 hotplug adaptation backward compat

  == Testing ==

  Without the fix, lttng modules won't install and build on HWE 4.10
  kernels.  With the fix, the lttng modules build and also pass the
  ubuntu kernel team autotest lttng smoke tests.

  Should be tested with xenial 4.4 kernel to ensure backward
  compatibility is not broken on the default Xenial kernels

  == Regression potential ==

  Can potential break lttng.

  -

  Test failed with "Kernel tracer not available"

  root@michael:/home/ubuntu/autotest-client-tests/ubuntu_lttng_smoke_test# 
./ubuntu_lttng_smoke_test.sh
  == lttng smoke test of session create/destroy ==
  Session test-kernel-session created.
  Traces will be written in /tmp/lttng-kernel-trace-12675-session
  PASSED (lttng create)
  Session test-kernel-session destroyed
  PASSED (lttng destroy)

  == lttng smoke test list kernel events ==
  Error: Unable to list kernel events: Kernel tracer not available
  Error: Command error
  FAILED (lttng list --kernel)
  FAILED (lttng list --kernel more output expected)

  == lttng smoke test trace open/close system calls ==
  Session test-kernel-session created.
  Traces will be written in /tmp/lttng-kernel-trace-12675-session
  PASSED (lttng create)
  Error: Event open: Kernel tracer not available (channel channel0, session 
test-kernel-session)
  Error: Event openat: Kernel tracer not available (channel channel0, session 
test-kernel-session)
  Error: Event close: Kernel tracer not available (channel channel0, session 
test-kernel-session)
  FAILED (lttng enable-event)
  Session test-kernel-session destroyed

  == lttng smoke test trace context switches ==
  Session test-kernel-session created.
  Traces will be written in /tmp/lttng-kernel-trace-12675-session
  PASSED (lttng create)
  Error: Event sched_switch: Kernel tracer not available (channel channel0, 
session test-kernel-session)
  FAILED (lttng enable-event)
  Session test-kernel-session destroyed

  Summary: 4 passed, 4 failed

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.10.0-14-generic 4.10.0-14.16~16.04.1
  ProcVersionSignature: Ubuntu 4.10.0-14.16~16.04.1-generic 4.10.3
  Uname: Linux 4.10.0-14-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  Date: Wed Mar 29 06:08:00 2017
  SourcePackage: linux-hwe-edge
  UpgradeStatus: No upgrade log present 

[Group.of.nepali.translators] [Bug 1656801] Re: ntp: changing the default config from server to pool broke the dhcp hook

2017-04-13 Thread Launchpad Bug Tracker
This bug was fixed in the package ntp - 1:4.2.8p4+dfsg-3ubuntu5.4

---
ntp (1:4.2.8p4+dfsg-3ubuntu5.4) xenial; urgency=medium

  * Fix ntp.dhcp to also check for pool and better handle spaces and tabs.
(LP: #1656801)

 -- Phil Roche   Thu, 19 Jan 2017 11:06:04
+

** Changed in: ntp (Ubuntu Xenial)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1656801

Title:
  ntp: changing the default config from server to pool broke the dhcp
  hook

Status in ntp package in Ubuntu:
  Fix Released
Status in ntp source package in Xenial:
  Fix Released
Status in ntp package in Debian:
  Fix Released

Bug description:
  In 1:4.2.8p3+dfsg-1, the default config was changed to
  "Use pool instead of server".  This needs a corresponding
  update to /etc/dhcp/dhclient-exit-hooks.d/ntp, since the
  DHCP specified servers now get added to the default pool
  config instead of replacing them.

  This affects Xenial only as the Yakkety build includes the upstream
  fix (1:4.2.8p7+dfsg-1).

  Original Debian busg https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809344
  & https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=806676

  [Test Case]

  philroche: This surfaced for me initially while testing on GCE. On GCE
  NTP servers are provided via DHCP so the easiest test case is to
  launch an instance on GCE without our workaround configured.

  One such image is "daily-ubuntu-ntpdebug-1604-xenial-v20170331" in
  project "ubuntu-os-cloud-devel"

  To start an instance of this image:

  `gcloud compute instances create daily-ubuntu-
  ntpdebug-1604-xenial-v20170331 --image-project ubuntu-os-cloud-devel
  --image "daily-ubuntu-ntpdebug-1604-xenial-v20170331"`

  Then run `ntpq -p` which should, once ntp is patched, return only one
  entry 'metadata.google' and should not return any of the ubuntu NTP
  pools.

  [Regression Potential]

  As noted in comments #1 and #2, this SRU might surface an issue if the
  user is receiving a broken set of NTP servers.

  And as noted in comment #4, some people might be hackishly using the
  distinction between spaces and tabs in the config file to trick our
  current hook.  Debian has gotten rid of that distinction, so that hack
  will stop working on distro-upgrade anyway.  The fix is *probably*
  going to help more people who unintentionally mixed the two up rather
  than the few that are relying on that bug.  But that bit can be easily
  dropped from the SRU if ya like.

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1674819] Re: [SRU] virtualbox-dkms 5.0.32-dfsg-0ubuntu1.16.04.2: virtualbox kernel module failed to build [error: too few arguments to function ‘get_user_pages_remot

2017-04-13 Thread Launchpad Bug Tracker
This bug was fixed in the package virtualbox-guest-additions-iso -
5.0.36-0ubuntu1.16.04.2

---
virtualbox-guest-additions-iso (5.0.36-0ubuntu1.16.04.2) xenial; urgency=medium

  * Update to the latest minor release for xenial (LP: #1674819)

 -- Gianfranco Costamagna   Wed, 22 Mar 2017
13:33:59 +0100

** Changed in: virtualbox-guest-additions-iso (Ubuntu Xenial)
   Status: Fix Committed => Fix Released

** Changed in: virtualbox-ext-pack (Ubuntu Xenial)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1674819

Title:
  [SRU] virtualbox-dkms 5.0.32-dfsg-0ubuntu1.16.04.2: virtualbox kernel
  module failed to build [error: too few arguments to function
  ‘get_user_pages_remote’]

Status in virtualbox package in Ubuntu:
  Fix Released
Status in virtualbox-ext-pack package in Ubuntu:
  Fix Released
Status in virtualbox-guest-additions-iso package in Ubuntu:
  Fix Released
Status in virtualbox source package in Xenial:
  Fix Released
Status in virtualbox-ext-pack source package in Xenial:
  Fix Released
Status in virtualbox-guest-additions-iso source package in Xenial:
  Fix Released

Bug description:
  [SRU Template]
  * the virtualbox kernel module needs some tweaks for the new hwe kernel up to 
4.11.

  same as lp: #1674819

  [Regression potential]
  This is an upstream release which includes changes beyond compatibility with 
the new kernel.  This is a bugfix-only release, as confirmed by the changelog 
at .  There is some risk of unrelated 
regression which is mitigated by upstream testing that has been done.

  [Test case]
  Verify that virtualbox from proposed works on both the linux kernel and the 
linux-hwe kernel.

  I installed the latest updates (including kernel) in xenial-proposed
  and got this crash report.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: virtualbox-dkms 5.0.32-dfsg-0ubuntu1.16.04.2
  ProcVersionSignature: Ubuntu 4.8.0-34.36~16.04.1-generic 4.8.11
  Uname: Linux 4.8.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  DKMSKernelVersion: 4.10.0-13-generic
  Date: Tue Mar 21 21:48:20 2017
  DuplicateSignature: 
dkms:virtualbox-dkms:5.0.32-dfsg-0ubuntu1.16.04.2:/var/lib/dkms/virtualbox/5.0.32/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.c:1066:18:
 error: too few arguments to function ‘get_user_pages_remote’
  InstallationDate: Installed on 2014-12-02 (839 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  PackageArchitecture: all
  PackageVersion: 5.0.32-dfsg-0ubuntu1.16.04.2
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.20
  SourcePackage: virtualbox
  Title: virtualbox-dkms 5.0.32-dfsg-0ubuntu1.16.04.2: virtualbox kernel module 
failed to build
  UpgradeStatus: No upgrade log present (probably fresh install)

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1674819] Re: [SRU] virtualbox-dkms 5.0.32-dfsg-0ubuntu1.16.04.2: virtualbox kernel module failed to build [error: too few arguments to function ‘get_user_pages_remot

2017-04-13 Thread Launchpad Bug Tracker
This bug was fixed in the package virtualbox - 5.0.36-dfsg-
0ubuntu1.16.04.2

---
virtualbox (5.0.36-dfsg-0ubuntu1.16.04.2) xenial; urgency=medium

  * New upstream release, fixing new kernel build issues (LP: #1674819)
  * debian/patches/changeset_63850.patch:
- fix build regression by backporting upstream commit 63850

 -- Gianfranco Costamagna   Wed, 22 Mar 2017
13:37:31 +0100

** Changed in: virtualbox (Ubuntu Xenial)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1674819

Title:
  [SRU] virtualbox-dkms 5.0.32-dfsg-0ubuntu1.16.04.2: virtualbox kernel
  module failed to build [error: too few arguments to function
  ‘get_user_pages_remote’]

Status in virtualbox package in Ubuntu:
  Fix Released
Status in virtualbox-ext-pack package in Ubuntu:
  Fix Released
Status in virtualbox-guest-additions-iso package in Ubuntu:
  Fix Released
Status in virtualbox source package in Xenial:
  Fix Released
Status in virtualbox-ext-pack source package in Xenial:
  Fix Released
Status in virtualbox-guest-additions-iso source package in Xenial:
  Fix Released

Bug description:
  [SRU Template]
  * the virtualbox kernel module needs some tweaks for the new hwe kernel up to 
4.11.

  same as lp: #1674819

  [Regression potential]
  This is an upstream release which includes changes beyond compatibility with 
the new kernel.  This is a bugfix-only release, as confirmed by the changelog 
at .  There is some risk of unrelated 
regression which is mitigated by upstream testing that has been done.

  [Test case]
  Verify that virtualbox from proposed works on both the linux kernel and the 
linux-hwe kernel.

  I installed the latest updates (including kernel) in xenial-proposed
  and got this crash report.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: virtualbox-dkms 5.0.32-dfsg-0ubuntu1.16.04.2
  ProcVersionSignature: Ubuntu 4.8.0-34.36~16.04.1-generic 4.8.11
  Uname: Linux 4.8.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  DKMSKernelVersion: 4.10.0-13-generic
  Date: Tue Mar 21 21:48:20 2017
  DuplicateSignature: 
dkms:virtualbox-dkms:5.0.32-dfsg-0ubuntu1.16.04.2:/var/lib/dkms/virtualbox/5.0.32/build/vboxdrv/r0drv/linux/memobj-r0drv-linux.c:1066:18:
 error: too few arguments to function ‘get_user_pages_remote’
  InstallationDate: Installed on 2014-12-02 (839 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  PackageArchitecture: all
  PackageVersion: 5.0.32-dfsg-0ubuntu1.16.04.2
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.20
  SourcePackage: virtualbox
  Title: virtualbox-dkms 5.0.32-dfsg-0ubuntu1.16.04.2: virtualbox kernel module 
failed to build
  UpgradeStatus: No upgrade log present (probably fresh install)

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1372284] Re: nagios3 + livestatus: SIGSEGV everyday at midnight

2017-04-13 Thread Launchpad Bug Tracker
This bug was fixed in the package check-mk - 1.2.2p3-1ubuntu0.1

---
check-mk (1.2.2p3-1ubuntu0.1) trusty; urgency=medium

  * Added patch to fix downtime.h's scheduled_downtime_struct (LP:
#1372284)

 -- Haw Loeung   Wed, 05 Apr 2017 09:42:09
-0700

** Changed in: check-mk (Ubuntu Trusty)
   Status: Fix Committed => Fix Released

** Changed in: check-mk (Ubuntu Xenial)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1372284

Title:
  nagios3 + livestatus: SIGSEGV everyday at midnight

Status in check-mk package in Ubuntu:
  Fix Released
Status in check-mk source package in Trusty:
  Fix Released
Status in check-mk source package in Xenial:
  Fix Released
Status in check-mk source package in Yakkety:
  Fix Committed
Status in check-mk source package in Zesty:
  Fix Released
Status in check-mk package in Debian:
  New

Bug description:
  [Impact]

  - Ubuntu  14.04, 16.04, 16.10, and 17.04

  Nagios goes down everyday at midnight with livestatus enabled and
  downtime configured.

  Here are bug reports in other trackers:
  https://bugzilla.redhat.com/show_bug.cgi?id=1083003
  http://tracker.nagios.org/view.php?id=516
  http://tracker.nagios.org/view.php?id=455

  People say this patch helps:
  
http://git.mathias-kettner.de/git/?p=omd.git;a=blob;f=packages/nagios/patches/0007-fix_downtime_struct.dif;h=af0e245b585e78c372a69d10c5e3b47ab64ad510;hb=HEAD

  [Test Case]

  * Enable check-mk-livestatus plugin (add
  broker_module=/usr/lib/check_mk/livestatus.o
  /var/lib/nagios3/livestatus/socket to nagios3/nagios.cfg)

  * Wait for log rotation (or update log_rotation_method in
  nagios3/nagios.cfg to rotate hourly so it happens more often)

  * Without the fix, nagios segfaults, entry in
  /var/log/nagios3/nagios.log as follows:

  | [1486857600] Caught SIGSEGV, shutting down...

  * With the fix, nagios logrotation succeeds and rotated logs present
  in /var/log/nagios3/archives.

  [Regression Potential]

  Nagios will continue to segfault during logrotation.

  [Other Info]

  check-mk ships out a different version of nagios/downtime.h which
  differs from nagios3's downtime.h (defined struct
  scheduled_downtime_struct differs between the two).

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1676380] Re: Update to cups-daemon 2.1.3-4ubuntu0.2 results in maintainer script failures

2017-04-13 Thread Adam Conrad
So, if old prerm is failing on a bad unit, then new prerm is attempted.
New prerm should be written in a way that it skips/ignores the failure.

** Changed in: cups (Ubuntu)
 Assignee: (unassigned) => Dimitri John Ledkov (xnox)

** Changed in: cups (Ubuntu)
   Status: Fix Released => Confirmed

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

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1676380

Title:
  Update to cups-daemon 2.1.3-4ubuntu0.2 results in maintainer script
  failures

Status in cups package in Ubuntu:
  Confirmed
Status in cups source package in Xenial:
  New

Bug description:
  Even though LP: #1642966 states that this is now fixed, the very
  update that was SRU'ed in that bug-report caused this error just now.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: cups-daemon 2.1.3-4
  ProcVersionSignature: Ubuntu 4.10.0-13.15~16.04.2-generic 4.10.1
  Uname: Linux 4.10.0-13-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  CupsErrorLog:

  Date: Mon Mar 27 12:53:31 2017
  ErrorMessage: subprocess new pre-removal script returned error exit status 1
  InstallationDate: Installed on 2017-03-15 (11 days ago)
  InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
  Lpstat: device for iP5200R: usb://Canon/iP5200R?serial=9045C0
  MachineType: Dell Inc. Precision 5520
  Papersize: a4
  PpdFiles: iP5200R: Canon iP5200R series - CUPS+Gutenprint v5.2.11
  ProcCmdline: BOOT_IMAGE=/vmlinuz-4.10.0-13-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash acpi_rev_override vt.handoff=7
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.10.0-13-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash acpi_rev_override vt.handoff=7
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.19
  SourcePackage: cups
  Title: package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new 
pre-removal script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/18/2017
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.1.3
  dmi.board.name: 06X96V
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.1.3:bd01/18/2017:svnDellInc.:pnPrecision5520:pvr:rvnDellInc.:rn06X96V:rvrA00:cvnDellInc.:ct10:cvr:
  dmi.product.name: Precision 5520
  dmi.sys.vendor: Dell Inc.

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1682103] Re: sysfs channel reads of lps22hb pressure sensor are stale

2017-04-13 Thread Stefan Bader
** Also affects: linux (Ubuntu Xenial)
   Importance: Undecided
   Status: New

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

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1682103

Title:
  sysfs channel reads of lps22hb pressure sensor are stale

Status in HWE Next:
  In Progress
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Xenial:
  Fix Committed

Bug description:
  LPS22HB sensor IIO driver supports pressure and temperature channels,
  these are enumerated in sysfs. An attempt to read current values
  using:

  # cat /sys/bus/iio/devices/iio:deviceX/in_pressure_raw
  # cat /sys/bus/iio/devices/iio:deviceX/in_temp_raw

  always gives stale results and are never updated.

  This bug is used for tracking purposes, please do not triage.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1682103/+subscriptions

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1591640] Re: [Feature] KBL: intel_rapl driver support

2017-04-13 Thread Stefan Bader
** Also affects: linux (Ubuntu Xenial)
   Importance: Undecided
   Status: New

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

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1591640

Title:
  [Feature] KBL: intel_rapl driver support

Status in intel:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Xenial:
  Fix Committed

Bug description:
  Updated RAPL support for KBL

  HW: KBL

  upstream schedule: v4.7 kernel

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1639180] Re: no login possible after update to nvidia 304.132

2017-04-13 Thread dino99
** Changed in: nvidia-graphics-drivers-304 (Ubuntu Yakkety)
   Status: Triaged => Fix Released

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1639180

Title:
  no login possible after update to nvidia 304.132

Status in nvidia-graphics-drivers-304 package in Ubuntu:
  Fix Released
Status in nvidia-graphics-drivers-304 source package in Xenial:
  Fix Released
Status in nvidia-graphics-drivers-304 source package in Yakkety:
  Fix Released
Status in nvidia-graphics-drivers-legacy-304xx package in Debian:
  Fix Released

Bug description:
  Ubuntu 16.04 LTS

  NVIDIA driver:
  - nvidia-graphics-drivers-304
  - update to version 304.132

  dpkg.log:
  upgrade nvidia-304-updates:amd64 304.131-0ubuntu3 304.132-0ubuntu0.16.04.2

  - reboot
  - lightdm login screen
  - login
  - a few seconds some flickering
  - and the lightdm login screen appears again

  It is not possible to login. Unity is not loading.

  .xsession-errors:
  X Error of failed request:  BadValue (integer parameter out of range for 
operation)
Major opcode of failed request:  155 (GLX)
Minor opcode of failed request:  3 (X_GLXCreateContext)
Value in failed request:  0x0
Serial number of failed request:  34
Current serial number in output stream:  35

  See also bug 1634802

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1682043] Re: linux-raspi2: 4.4.0-1054.61 -proposed tracker

2017-04-13 Thread Brad Figg
** Changed in: kernel-sru-workflow/automated-testing
   Status: New => Confirmed

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

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

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

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

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

** Description changed:

  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682041
  phase: Uploaded
+ kernel-stable-phase:Promoted to proposed
+ kernel-stable-phase-changed:Thursday, 13. April 2017 12:32 UTC

** Description changed:

  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682041
- phase: Uploaded
- kernel-stable-phase:Promoted to proposed
- kernel-stable-phase-changed:Thursday, 13. April 2017 12:32 UTC
+ phase: Promoted to proposed
+ proposed-announcement-sent: true
+ proposed-testing-requested: true

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1682043

Title:
  linux-raspi2: 4.4.0-1054.61 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Confirmed
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Confirmed
Status in Kernel SRU Workflow upload-to-ppa series:
  New
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-raspi2 package in Ubuntu:
  Invalid
Status in linux-raspi2 source package in Xenial:
  Confirmed

Bug description:
  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682041
  phase: Promoted to proposed
  proposed-announcement-sent: true
  proposed-testing-requested: true

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1682045] Re: linux-snapdragon: 4.4.0-1057.61 -proposed tracker

2017-04-13 Thread Brad Figg
** Changed in: kernel-sru-workflow/automated-testing
   Status: New => Confirmed

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

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

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

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

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

** Description changed:

  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682041
  phase: Uploaded
+ kernel-stable-phase:Promoted to proposed
+ kernel-stable-phase-changed:Thursday, 13. April 2017 12:31 UTC

** Description changed:

  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682041
- phase: Uploaded
- kernel-stable-phase:Promoted to proposed
- kernel-stable-phase-changed:Thursday, 13. April 2017 12:31 UTC
+ phase: Promoted to proposed
+ proposed-announcement-sent: true
+ proposed-testing-requested: true

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1682045

Title:
  linux-snapdragon: 4.4.0-1057.61 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Confirmed
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Confirmed
Status in Kernel SRU Workflow upload-to-ppa series:
  New
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-snapdragon package in Ubuntu:
  Invalid
Status in linux-snapdragon source package in Xenial:
  Confirmed

Bug description:
  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682041
  phase: Promoted to proposed
  proposed-announcement-sent: true
  proposed-testing-requested: true

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1682037] Re: linux-hwe: 4.8.0-48.51~16.04.1 -proposed tracker

2017-04-13 Thread Brad Figg
** Changed in: kernel-sru-workflow/automated-testing
   Status: New => Confirmed

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

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

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

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

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

** Description changed:

  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682034
  phase: Uploaded
+ kernel-stable-phase-changed:Thursday, 13. April 2017 12:04 UTC
+ kernel-stable-phase:Promoted to proposed

** Description changed:

  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682034
- phase: Uploaded
- kernel-stable-phase-changed:Thursday, 13. April 2017 12:04 UTC
- kernel-stable-phase:Promoted to proposed
+ phase: Promoted to proposed
+ proposed-announcement-sent: true
+ proposed-testing-requested: true

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1682037

Title:
  linux-hwe: 4.8.0-48.51~16.04.1 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Confirmed
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Confirmed
Status in Kernel SRU Workflow upload-to-ppa series:
  New
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-hwe package in Ubuntu:
  Invalid
Status in linux-hwe source package in Xenial:
  Confirmed

Bug description:
  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682034
  phase: Promoted to proposed
  proposed-announcement-sent: true
  proposed-testing-requested: true

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1682041] Re: linux: 4.4.0-74.95 -proposed tracker

2017-04-13 Thread Brad Figg
** Changed in: kernel-sru-workflow/automated-testing
   Status: New => Confirmed

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

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

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

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

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

** Description changed:

  This bug is for tracking the  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
  
  backports: 1682042
  derivatives: 1682043,1682045,1682047,1682048
- kernel-stable-phase:Uploaded
- kernel-stable-phase-changed:Wednesday, 12. April 2017 10:01 UTC
- 
  -- swm properties --
  boot-testing-requested: true
  phase: Uploaded
+ kernel-stable-phase-changed:Thursday, 13. April 2017 12:06 UTC
+ kernel-stable-phase:Promoted to proposed

** Description changed:

  This bug is for tracking the  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
  
  backports: 1682042
  derivatives: 1682043,1682045,1682047,1682048
  -- swm properties --
  boot-testing-requested: true
- phase: Uploaded
- kernel-stable-phase-changed:Thursday, 13. April 2017 12:06 UTC
- kernel-stable-phase:Promoted to proposed
+ phase: Promoted to proposed
+ proposed-announcement-sent: true
+ proposed-testing-requested: true

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1682041

Title:
  linux: 4.4.0-74.95 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Confirmed
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  Confirmed
Status in Kernel SRU Workflow upload-to-ppa series:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Xenial:
  Confirmed

Bug description:
  This bug is for tracking the  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

  backports: 1682042
  derivatives: 1682043,1682045,1682047,1682048
  -- swm properties --
  boot-testing-requested: true
  phase: Promoted to proposed
  proposed-announcement-sent: true
  proposed-testing-requested: true

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1682048] Re: linux-gke: 4.4.0-1012.12 -proposed tracker

2017-04-13 Thread Brad Figg
** Changed in: kernel-sru-workflow/automated-testing
   Status: New => Confirmed

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

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

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

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

** Description changed:

  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682041
  phase: Uploaded
+ kernel-stable-phase-changed:Thursday, 13. April 2017 11:31 UTC
+ kernel-stable-phase:Promoted to proposed

** Description changed:

  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682041
- phase: Uploaded
- kernel-stable-phase-changed:Thursday, 13. April 2017 11:31 UTC
- kernel-stable-phase:Promoted to proposed
+ phase: Promoted to proposed
+ proposed-announcement-sent: true
+ proposed-testing-requested: true

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1682048

Title:
  linux-gke: 4.4.0-1012.12 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Confirmed
Status in Kernel SRU Workflow certification-testing series:
  Confirmed
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Confirmed
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow upload-to-ppa series:
  New
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-gke package in Ubuntu:
  Invalid
Status in linux-gke source package in Xenial:
  Confirmed

Bug description:
  This bug is for tracking the  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
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1682041
  phase: Promoted to proposed
  proposed-announcement-sent: true
  proposed-testing-requested: true

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp


[Group.of.nepali.translators] [Bug 1681862] Re: Xenial update to v4.4.60 stable release

2017-04-13 Thread Stefan Bader
** Changed in: linux (Ubuntu Xenial)
   Status: New => Fix Committed

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

-- 
You received this bug notification because you are a member of नेपाली
भाषा समायोजकहरुको समूह, which is subscribed to Xenial.
Matching subscriptions: Ubuntu 16.04 Bugs
https://bugs.launchpad.net/bugs/1681862

Title:
  Xenial update to v4.4.60 stable release

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Xenial:
  Fix Committed

Bug description:
  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.60 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.60 stable release shall be
  applied:

  libceph: force GFP_NOIO for socket allocations
  xen/setup: Don't relocate p2m over existing one
  scsi: mpt3sas: fix hang on ata passthrough commands
  scsi: sg: check length passed to SG_NEXT_CMD_LEN
  scsi: libsas: fix ata xfer length
  ALSA: seq: Fix race during FIFO resize
  ALSA: hda - fix a problem for lineout on a Dell AIO machine
  ASoC: atmel-classd: fix audio clock rate
  ACPI: Fix incompatibility with mcount-based function graph tracing
  ACPI: Do not create a platform_device for IOAPIC/IOxAPIC
  tty/serial: atmel: fix race condition (TX+DMA)
  tty/serial: atmel: fix TX path in atmel_console_write()
  USB: fix linked-list corruption in rh_call_control()
  KVM: x86: clear bus pointer when destroyed
  drm/radeon: Override fpfn for all VRAM placements in radeon_evict_flags
  mm, hugetlb: use pte_present() instead of pmd_present() in follow_huge_pmd()
  MIPS: Lantiq: Fix cascaded IRQ setup
  rtc: s35390a: fix reading out alarm
  rtc: s35390a: make sure all members in the output are set
  rtc: s35390a: implement reset routine as suggested by the reference
  rtc: s35390a: improve irq handling
  KVM: kvm_io_bus_unregister_dev() should never fail
  power: reset: at91-poweroff: timely shutdown LPDDR memories
  blk: improve order of bio handling in generic_make_request()
  blk: Ensure users for current->bio_list can see the full list.
  padata: avoid race in reordering
  Linux 4.4.60

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

___
Mailing list: https://launchpad.net/~group.of.nepali.translators
Post to : group.of.nepali.translators@lists.launchpad.net
Unsubscribe : https://launchpad.net/~group.of.nepali.translators
More help   : https://help.launchpad.net/ListHelp