[Group.of.nepali.translators] [Bug 1856682] Re: [UBUNTU 20.04] GCC Miscompilation in vectorized code

2020-04-25 Thread Bug Watch Updater
** Changed in: gcc
   Status: New => 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/1856682

Title:
  [UBUNTU 20.04] GCC Miscompilation in vectorized code

Status in gcc:
  Fix Released
Status in Ubuntu on IBM z Systems:
  Triaged
Status in gcc-5 package in Ubuntu:
  Invalid
Status in gcc-6 package in Ubuntu:
  Invalid
Status in gcc-7 package in Ubuntu:
  New
Status in gcc-8 package in Ubuntu:
  New
Status in gcc-9 package in Ubuntu:
  Fix Released
Status in gcc-5 source package in Xenial:
  New
Status in gcc-6 source package in Xenial:
  Invalid
Status in gcc-7 source package in Xenial:
  Invalid
Status in gcc-8 source package in Xenial:
  Invalid
Status in gcc-9 source package in Xenial:
  Invalid
Status in gcc-5 source package in Bionic:
  New
Status in gcc-6 source package in Bionic:
  New
Status in gcc-7 source package in Bionic:
  New
Status in gcc-8 source package in Bionic:
  New
Status in gcc-9 source package in Bionic:
  Invalid
Status in gcc-5 source package in Disco:
  Invalid
Status in gcc-6 source package in Disco:
  New
Status in gcc-7 source package in Disco:
  New
Status in gcc-8 source package in Disco:
  New
Status in gcc-9 source package in Disco:
  New
Status in gcc-5 source package in Eoan:
  Invalid
Status in gcc-6 source package in Eoan:
  Invalid
Status in gcc-7 source package in Eoan:
  New
Status in gcc-8 source package in Eoan:
  New
Status in gcc-9 source package in Eoan:
  New
Status in gcc-5 source package in Focal:
  Invalid
Status in gcc-6 source package in Focal:
  Invalid
Status in gcc-7 source package in Focal:
  New
Status in gcc-8 source package in Focal:
  New
Status in gcc-9 source package in Focal:
  Fix Released

Bug description:
  Miscompilation in autovectorized code.
   
  ---Steps to Reproduce---
   See GCC BZ: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92950

  The following testcase abort when being compiled with -O3 -march=z13
  on IBM Z:

  struct a {
int b;
char c;
  };
  struct a d = {1, 16};
  struct a *e = 

  int f = 0;

  int main() {
struct a g = {0, 0 };
f = 0;

for (; f <= 1; f++) {
  g = d;
  *e = g;
}

if (d.c != 16)
  __builtin_abort();
  }

  The movv1qi pattern emits halfword load instructions instead of character
  loads.

  All GCC versions since GCC 5 are affected.
  Patches for GCC 8, 9, and 10 have been committed to the gcc.gnu.org branches.
   
  Userspace tool common name: gcc  
  The userspace tool has the following bit modes: 64 
  Userspace rpm: various Ubuntu gcc packages

  
  Package need to updated within LP

To manage notifications about this bug go to:
https://bugs.launchpad.net/gcc/+bug/1856682/+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 1875092] [NEW] support v5.4 syscalls

2020-04-25 Thread Dimitri John Ledkov
Public bug reported:

[Impact]

 * update libssecomp syscalls, for example current seccomp on xenial and
up, cannot correctly filter calls for focal armhf chroots on v5.4
kernels, due to new syscalls usage.

[Test Case]

 * Boot v5.4 kernel
 * Use seccomp to try to resolve new syscall numbers

 * Rebuild snapd snap against bileto ppa with this change
 * Test that this rebuild snapd snap, can correctly launch confined python 
armhf interpreter on arm64 v5.4 kernel (i.e. uc20 raspi arm64 beta image)

[Regression Potential]

 * The issue only impacts when one is running on a newer / hwe kernel,
and tries to seccomp filter newer binaries that use new syscalls. No
changes are made to any existing syscalls or apis.

[Other Info]
 
 * Bileto PPA with this change is being prepared with this change.

** Affects: libseccomp (Ubuntu)
 Importance: Undecided
 Status: Fix Released

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

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

** Affects: libseccomp (Ubuntu Eoan)
 Importance: Undecided
 Status: New

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

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

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

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

Title:
  support v5.4 syscalls

Status in libseccomp package in Ubuntu:
  Fix Released
Status in libseccomp source package in Xenial:
  New
Status in libseccomp source package in Bionic:
  New
Status in libseccomp source package in Eoan:
  New

Bug description:
  [Impact]

   * update libssecomp syscalls, for example current seccomp on xenial
  and up, cannot correctly filter calls for focal armhf chroots on v5.4
  kernels, due to new syscalls usage.

  [Test Case]

   * Boot v5.4 kernel
   * Use seccomp to try to resolve new syscall numbers

   * Rebuild snapd snap against bileto ppa with this change
   * Test that this rebuild snapd snap, can correctly launch confined python 
armhf interpreter on arm64 v5.4 kernel (i.e. uc20 raspi arm64 beta image)

  [Regression Potential]

   * The issue only impacts when one is running on a newer / hwe kernel,
  and tries to seccomp filter newer binaries that use new syscalls. No
  changes are made to any existing syscalls or apis.

  [Other Info]
   
   * Bileto PPA with this change is being prepared with this change.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libseccomp/+bug/1875092/+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 1874843] Re: [SRU] Add Groovy to distro-info-data

2020-04-25 Thread Launchpad Bug Tracker
This bug was fixed in the package distro-info-data - 0.44ubuntu1

---
distro-info-data (0.44ubuntu1) groovy; urgency=medium

  * Merge from Debian unstable (LP: #1874843). Remaining changes:
- Add in eol-server and eol-esm dates for all Ubuntu LTS releases.

distro-info-data (0.44) unstable; urgency=medium

  * Add Ubuntu 20.10, Groovy Gorilla.
  * Add a guessed EOL date for Debian Stretch.
  * Bump Standards-Version to 4.5.0, no changes needed.

 -- Stefano Rivera   Fri, 24 Apr 2020 08:47:09
-0700

** Changed in: distro-info-data (Ubuntu Groovy)
   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/1874843

Title:
  [SRU] Add Groovy to distro-info-data

Status in distro-info-data package in Ubuntu:
  Fix Released
Status in distro-info-data source package in Trusty:
  New
Status in distro-info-data source package in Xenial:
  Fix Released
Status in distro-info-data source package in Bionic:
  Fix Released
Status in distro-info-data source package in Eoan:
  Fix Released
Status in distro-info-data source package in Focal:
  Fix Released
Status in distro-info-data source package in Groovy:
  Fix Released

Bug description:
  G has a name. distro-info needs an update.

  SRU Test:
  1. ubuntu-distro-info -d

  If you get a DistroDataOutdated exception or similar error, you have old data.
  If you see 'groovy', we're happy.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/distro-info-data/+bug/1874843/+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