[Kernel-packages] [Bug 1797772] Re: ideapad_laptop disables WiFi/BT radios on Lenovo Y530

2019-07-19 Thread forevertheuni
By the way. I went to linux kernel 5.2.1 ideapad_laptop.c and now
there's no no_hw_rfkill_list. It's the opposite, now it has to be
specified if there is a hw-rfkill. So that new laptops don't get this
problem.

One option is to install a ppa with a recent kernel.

>From the file:
* Some ideapads have a hardware rfkill switch, but most do not have one.
 * Reading VPCCMD_R_RF always results in 0 on models without a hardware rfkill,
 * switch causing ideapad_laptop to wrongly report all radios as hw-blocked.
 * There used to be a long list of DMI ids for models without a hw rfkill
 * switch here, but that resulted in playing whack a mole.
 * More importantly wrongly reporting the wifi radio as hw-blocked, results in
 * non working wifi. Whereas not reporting it hw-blocked, when it actually is
 * hw-blocked results in an empty SSID list, which is a much more benign
 * failure mode.
 * So the default now is the much safer option of assuming there is no
 * hardware rfkill switch. This default also actually matches most hardware,
 * since having a hw rfkill switch is quite rare on modern hardware, so this
 * also leads to a much shorter list.
 */

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1797772

Title:
  ideapad_laptop disables WiFi/BT radios on Lenovo Y530

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I've been working with a user that has a Lenovo Legion Y530-15ICH
  where booting Ubuntu 18.10 (kernel 4.18.0-8) results in the radios
  being disabled by the platform driver "ideapad-laptop".

  Unloading or blacklisting the module solves the issue but disables
  other platform ACPI interfaces:

  $ sudo tee /etc/modprobe.d/ideapad.conf <<< "blacklist ideapad_laptop"

  The system has the most recent firmware:

  [0.00] DMI: LENOVO 81FV/LNVNB161216, BIOS 8JCN44WW 08/13/2018

  The wifi device is:

  00:14.3 Network controller [0280]: Intel Corporation Wireless-AC 9560 
[Jefferson Peak] [8086:a370] (rev 10)
   Subsystem: Intel Corporation Wireless-AC 9560 [Jefferson Peak] [8086:0034]
   Kernel driver in use: iwlwifi

  We investigated the issue extensively and built the module with
  additional logic without solving the issue. It is well-known that some
  Lenovo models do not have a separate hardware radio kill switch (this
  model uses hot-keys Fn + F7 for 'Airplane mode') and need to use a DMI
  match to disable the rfkill logic.

  We used dmidecode to get the correct Version string:

  Handle 0x0001, DMI type 1, 27 bytes
  System Information
   Manufacturer: LENOVO
   Product Name: 81FV
   Version: Lenovo Legion Y530-15ICH
   Serial Number: PF18CD10
   UUID: A44F71C1-5E3D-11E8-9379-8C16458E3F9D
   Wake-up Type: Power Switch
   SKU Number: LENOVO_MT_81FV_BU_idea_FM_Legion Y530-15ICH
   Family: Legion Y530-15ICH

  and added it to no_hw_rfkill_list[]:

  {
  .ident = "Lenovo Legion Y530-15ICH",
  .matches = {
  DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
  DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo Legion Y530-15ICH"),
  },
  },

  However, rfkill was still listing the platform devices "ideapad_wlan"
  and "ideapad_bluetooth":

  0: ideapad_wlan: Wireless LAN
   Soft blocked: no
   Hard blocked: yes
  1: ideapad_bluetooth: Bluetooth
   Soft blocked: yes
   Hard blocked: yes
  3: phy0: Wireless LAN
   Soft blocked: no
   Hard blocked: no
  4: hci0: Bluetooth
   Soft blocked: yes
   Hard blocked: no

  /sys/class/rfkill/rfkill0/hard=1
  /sys/class/rfkill/rfkill0/index=0
  /sys/class/rfkill/rfkill0/name=ideapad_wlan
  /sys/class/rfkill/rfkill0/persistent=1
  /sys/class/rfkill/rfkill0/soft=0
  /sys/class/rfkill/rfkill0/state=2
  /sys/class/rfkill/rfkill0/type=wlan
  /sys/class/rfkill/rfkill0/uevent=RFKILL_NAME=ideapad_wlan RFKILL_TYPE=wlan 
RFKILL_STATE=2
  /sys/class/rfkill/rfkill1/hard=1
  /sys/class/rfkill/rfkill1/index=1
  /sys/class/rfkill/rfkill1/name=ideapad_bluetooth
  /sys/class/rfkill/rfkill1/persistent=1
  /sys/class/rfkill/rfkill1/soft=1
  /sys/class/rfkill/rfkill1/state=2
  /sys/class/rfkill/rfkill1/type=bluetooth
  /sys/class/rfkill/rfkill1/uevent=RFKILL_NAME=ideapad_bluetooth 
RFKILL_TYPE=bluetooth RFKILL_STATE=2
  /sys/class/rfkill/rfkill3/hard=0
  /sys/class/rfkill/rfkill3/index=3
  /sys/class/rfkill/rfkill3/name=phy0
  /sys/class/rfkill/rfkill3/persistent=0
  /sys/class/rfkill/rfkill3/soft=0
  /sys/class/rfkill/rfkill3/state=1
  /sys/class/rfkill/rfkill3/type=wlan
  /sys/class/rfkill/rfkill3/uevent=RFKILL_NAME=phy0 RFKILL_TYPE=wlan 
RFKILL_STATE=1
  /sys/class/rfkill/rfkill4/hard=0
  /sys/class/rfkill/rfkill4/index=4
  /sys/class/rfkill/rfkill4/name=hci0
  /sys/class/rfkill/rfkill4/persistent=0
  /sys/class/rfkill/rfkill4/soft=1
  /sys/class/rfkill/rfkill4/state=0
  /sys/class/rfkill/rfkill4/type=bluetooth
  /sys/class/rfkill/rfkill4/uevent=RFKILL_NAME=hci0 RFKILL_TYPE=bluetooth 
RFKILL_STATE=0

  We then 

[Kernel-packages] [Bug 1837136] Re: ideapad_laptop disables WiFi/BT radios on Lenovo Y540

2019-07-19 Thread forevertheuni
I made a dkms package that fixed the problem for 19.04 (check above).


By the way. I went to linux kernel 5.2.1 ideapad_laptop.c and now there's no 
no_hw_rfkill_list. It's the opposite, now it has to be specified if there is a 
hw-rfkill. So that new laptops don't get this problem.

One option is to install a ppa with a recent kernel.

>From the file:
* Some ideapads have a hardware rfkill switch, but most do not have one.
 * Reading VPCCMD_R_RF always results in 0 on models without a hardware rfkill,
 * switch causing ideapad_laptop to wrongly report all radios as hw-blocked.
 * There used to be a long list of DMI ids for models without a hw rfkill
 * switch here, but that resulted in playing whack a mole.
 * More importantly wrongly reporting the wifi radio as hw-blocked, results in
 * non working wifi. Whereas not reporting it hw-blocked, when it actually is
 * hw-blocked results in an empty SSID list, which is a much more benign
 * failure mode.
 * So the default now is the much safer option of assuming there is no
 * hardware rfkill switch. This default also actually matches most hardware,
 * since having a hw rfkill switch is quite rare on modern hardware, so this
 * also leads to a much shorter list.
 */

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837136

Title:
  ideapad_laptop disables WiFi/BT radios on Lenovo Y540

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have a brand new LeNovo legion Y540 and the ideapad_laptop module
  results in a rfkill.

  If the module is removed/blacklisted, then wifi works, but some ACPI
  functionality is lost (the fans don't spin correctly and the laptop
  doesn't cool properly).

  I will try to compile ideapad_laptop adding the laptop info to
  no_hw_rfkill_list[].

  I only tried in ubuntu 19.10 (although this is a kernel issue)

  rfkill output:
  sudo rfkill 
  ID TYPE  DEVICE SOFT  HARD
   2 bluetooth hci0blocked unblocked
   3 wlan  phy0  unblocked unblocked
   4 wlan  ideapad_wlan  unblocked   blocked
   5 bluetooth ideapad_bluetooth   blocked   blocked


  
  1) Ubuntu 5.0.0-20.21-generic 5.0.8
  (rest of info in attachment)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu27.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  jmamede2484 F pulseaudio
   /dev/snd/controlC0:  jmamede2484 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 19.04
  InstallationDate: Installed on 2019-07-18 (0 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 81SX
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-20-generic 
root=/dev/mapper/lvmmamede-root ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.0.0-20.21-generic 5.0.8
  RelatedPackageVersions:
   linux-restricted-modules-5.0.0-20-generic N/A
   linux-backports-modules-5.0.0-20-generic  N/A
   linux-firmware1.178.3
  Tags:  disco
  Uname: Linux 5.0.0-20-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 05/28/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN28WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y540-15IRH
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN28WW:bd05/28/2019:svnLENOVO:pn81SX:pvrLegionY540-15IRH:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY540-15IRH:
  dmi.product.family: Legion Y540-15IRH
  dmi.product.name: 81SX
  dmi.product.sku: LENOVO_MT_81SX_BU_idea_FM_Legion Y540-15IRH
  dmi.product.version: Legion Y540-15IRH
  dmi.sys.vendor: LENOVO

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1807416] Re: secureboot: Secure boot could not be determined (mode 0)

2019-07-19 Thread Pranav bhattarai
Same here. I wonder Ubuntu team do anyway

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1807416

Title:
  secureboot: Secure boot could not be determined (mode 0)

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hello,

  dmesg:
  [0.00] secureboot: Secure boot could not be determined (mode 0)

  Best regards,
  --
  Cristian Aravena Romero (caravena)

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: linux-image-4.19.0-8-generic 4.19.0-8.9
  ProcVersionSignature: Ubuntu 4.19.0-8.9-generic 4.19.6
  Uname: Linux 4.19.0-8-generic x86_64
  ApportVersion: 2.20.10-0ubuntu14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  caravena   2769 F pulseaudio
   /dev/snd/pcmC0D0p:   caravena   2769 F...m pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Dec  7 12:58:49 2018
  HibernationDevice: RESUME=UUID=efcf081f-0bb0-4907-b78c-1299aa4aee57
  InstallationDate: Installed on 2018-12-02 (4 days ago)
  InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20180725)
  MachineType: HP HP Pavilion x360 Convertible 14-cd0xxx
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.19.0-8-generic 
root=UUID=28bdadba-133c-4f5b-a5c9-b06993ea7ce2 ro rootflags=subvol=@ quiet 
splash vt.handoff=1
  RelatedPackageVersions:
   linux-restricted-modules-4.19.0-8-generic N/A
   linux-backports-modules-4.19.0-8-generic  N/A
   linux-firmware1.176
  SourcePackage: linux
  UpgradeStatus: Upgraded to disco on 2018-12-02 (4 days ago)
  dmi.bios.date: 06/14/2018
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.13
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 8486
  dmi.board.vendor: HP
  dmi.board.version: 72.19
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsyde:bvrF.13:bd06/14/2018:svnHP:pnHPPavilionx360Convertible14-cd0xxx:pvrType1ProductConfigId:rvnHP:rn8486:rvr72.19:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Pavilion
  dmi.product.name: HP Pavilion x360 Convertible 14-cd0xxx
  dmi.product.sku: 3PX63LA#ABM
  dmi.product.version: Type1ProductConfigId
  dmi.sys.vendor: HP

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1830522] Re: Ryzen 3550h lowers its frequency to 400MHz

2019-07-19 Thread Chris
Hi Shiko,

You might want to hold on until kernel 5.3 is released. This apparently
includes more official support for Asus TUF laptops, although I don't if
it'll correct this specific problem.

https://www.phoronix.com/scan.php?page=news_item=Linux-5.3-Platform-x86-Updates

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1830522

Title:
  Ryzen 3550h lowers its frequency to 400MHz

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I've bougt new notebook with ryzen 3550h onboard (Asus fx705dy) and
  noticed one thing: whenever the cpu is fully loaded and the gpu is
  being used the cpu sets its freqeuncy to 400MHz and system works slow
  untill reboot.

  For example:I installed Android Studio. When I open large project in
  it and open youtube video in browser or start emulator system works on
  max frequency for couple of seconds and then lowers cpu frequency to
  400MHz. If I just compile the project it'll work nice until using gpu.

  Another example is I can compile Unreal Engine within 1.5 hours
  without such problems if I just let notebook do it without browsing
  internet.

  I've tried a lot of things like settings cpufreq mode to performance
  (sudo cpufreq-set -r -g performance), disabling c6 state etc.

  The only workaround I found for now is disabling boost for cpu by executing 
  echo 0 > /sys/devices/system/cpu/cpufreq/boost

  Any idea how to work on this system without disabling cpu boost?
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 19.04
  InstallationDate: Installed on 2019-05-09 (18 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  Package: linux (not installed)
  Tags:  disco
  Uname: Linux 5.1.5-050105-generic x86_64
  UnreportableReason: The running kernel is not an Ubuntu kernel
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1833464] Re: Request backports of ceph client commits to bionic kernel

2019-07-19 Thread Connor Kuehl
** Changed in: linux (Ubuntu)
 Assignee: Connor Kuehl (connork) => (unassigned)

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

** Changed in: linux (Ubuntu Bionic)
 Assignee: (unassigned) => Connor Kuehl (connork)

** Changed in: linux (Ubuntu Bionic)
   Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1833464

Title:
  Request backports of ceph client commits to bionic kernel

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Fix Committed
Status in linux source package in Cosmic:
  New
Status in linux source package in Disco:
  New

Bug description:
  Customer has run into a few ceph client related issues, which were root 
caused to be resolved by the following kernel commits: 
  
https://github.com/ceph/ceph-client/commit/f42a774a2123e6b29bb0ca296e166d0f089e9113
 
  
https://github.com/ceph/ceph-client/commit/093ea205acd4b047cf5aacabc0c6ffecf198d2a9
 
  Can you please backport these into bionic?

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834235] Re: Request backport of ceph commits into bionic

2019-07-19 Thread Connor Kuehl
** Changed in: linux (Ubuntu)
   Status: In Progress => Invalid

** Changed in: linux (Ubuntu)
 Assignee: Connor Kuehl (connork) => (unassigned)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834235

Title:
  Request backport of ceph commits into bionic

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

Bug description:
  [Impact]

  Deadlock may occur if iput_final() decides to wait for readahead pages
  while a lock is held.

  In order to resolve this, the following two patches install an
  asynchronous "iput" for the ceph inodes so that a hold-and-wait deadlock
  doesn't occur. A more detailed example is shown in the original patch:
  
https://github.com/ceph/ceph-client/commit/093ea205acd4b047cf5aacabc0c6ffecf198d2a9

  Requested patches:

  3e1d0452edcee ceph: avoid iput_final() while holding mutex or in dispatch 
thread
  1cf89a8dee5e6 ceph: single workqueue for inode related works

  [Test Case]

  These changes were tested by the original requester with positive
  results over a few days in their own environment where they first
  experienced the regression. They have determined they are no longer
  experiencing the regression with this patch set applied to a test
  kernel.

  [Regression Potential]

  Several patches were required in order to cleanly cherry pick the
  requested patches. A large number of changes increases the regression
  potential, however, these pre-requisite patches have been in mainline
  since early 2018 and the blast radius is localized only to ceph.


  Original bug description follows:
  
  Our internal cluster has run into a few ceph client related issues, which 
were root caused to be resolved by the following commits:
  
https://github.com/ceph/ceph-client/commit/f42a774a2123e6b29bb0ca296e166d0f089e9113
  
https://github.com/ceph/ceph-client/commit/093ea205acd4b047cf5aacabc0c6ffecf198d2a9
  Can you please backport these into bionic?

  3e1d0452edcee ceph: avoid iput_final() while holding mutex or in dispatch 
thread
  1cf89a8dee5e6 ceph: single workqueue for inode related works

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837257] Re: Bionic update: upstream stable patchset 2019-07-19

2019-07-19 Thread Kamal Mostafa
** Description changed:

  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 following upstream
     stable patches should be included in the Ubuntu kernel:
  
     upstream stable patchset 2019-07-19
  
- Ported from the following upstream stable releases:
-   v4.19.11,
- v4.14.90, v4.19.12,
- v4.14.91, v4.19.13,
- v4.14.92, v4.19.14
+ Ported from the following upstream stable releases:
+   v4.19.11,
+ v4.14.90, v4.19.12,
+ v4.14.91, v4.19.13,
+ v4.14.92, v4.19.14
  
     from git://git.kernel.org/
+ 
+ pinctrl: sunxi: a83t: Fix IRQ offset typo for PH11
+ userfaultfd: check VM_MAYWRITE was set after verifying the uffd is registered
+ arm64: dma-mapping: Fix FORCE_CONTIGUOUS buffer clearing
+ MMC: OMAP: fix broken MMC on OMAP15XX/OMAP5910/OMAP310
+ mmc: sdhci: fix the timeout check window for clock and reset
+ ARM: mmp/mmp2: fix cpu_is_mmp2() on mmp2-dt
+ dm thin: send event about thin-pool state change _after_ making it
+ dm cache metadata: verify cache has blocks in 
blocks_are_clean_separate_dirty()
+ tracing: Fix memory leak in set_trigger_filter()
+ tracing: Fix memory leak of instance function hash filters
+ powerpc/msi: Fix NULL pointer access in teardown code
+ drm/nouveau/kms: Fix memory leak in nv50_mstm_del()
+ drm/i915/execlists: Apply a full mb before execution for Braswell
+ drm/amdgpu: update SMC firmware image for polaris10 variants
+ x86/build: Fix compiler support check for CONFIG_RETPOLINE
+ locking: Remove smp_read_barrier_depends() from queued_spin_lock_slowpath()
+ locking/qspinlock: Ensure node is initialised before updating prev->next
+ locking/qspinlock: Bound spinning on pending->locked transition in slowpath
+ locking/qspinlock: Merge 'struct __qspinlock' into 'struct qspinlock'
+ locking/qspinlock: Remove unbounded cmpxchg() loop from locking slowpath
+ locking/qspinlock: Remove duplicate clear_pending() function from PV code
+ locking/qspinlock: Kill cmpxchg() loop when claiming lock from head of queue
+ locking/qspinlock: Re-order code
+ locking/qspinlock/x86: Increase _Q_PENDING_LOOPS upper bound
+ locking/qspinlock, x86: Provide liveness guarantee
+ mac80211: don't WARN on bad WMM parameters from buggy APs
+ mac80211: Fix condition validating WMM IE
+ IB/hfi1: Remove race conditions in user_sdma send path
+ locking/qspinlock: Fix build for anonymous union in older GCC compilers
+ mac80211_hwsim: fix module init error paths for netlink
+ Input: hyper-v - fix wakeup from suspend-to-idle
+ scsi: libiscsi: Fix NULL pointer dereference in iscsi_eh_session_reset
+ scsi: vmw_pscsi: Rearrange code to avoid multiple calls to free_irq during 
unload
+ x86/earlyprintk/efi: Fix infinite loop on some screen widths
+ drm/msm: Grab a vblank reference when waiting for commit_done
+ ARC: io.h: Implement reads{x}()/writes{x}()
+ bonding: fix 802.3ad state sent to partner when unbinding slave
+ bpf: Fix verifier log string check for bad alignment.
+ nfs: don't dirty kernel pages read by direct-io
+ SUNRPC: Fix a potential race in xprt_connect()
+ sbus: char: add of_node_put()
+ drivers/sbus/char: add of_node_put()
+ drivers/tty: add missing of_node_put()
+ ide: pmac: add of_node_put()
+ drm/msm: Fix error return checking
+ clk: mvebu: Off by one bugs in cp110_of_clk_get()
+ clk: mmp: Off by one in mmp_clk_add()
+ Input: synaptics - enable SMBus for HP 15-ay000
+ Input: omap-keypad - fix keyboard debounce configuration
+ libata: whitelist all SAMSUNG MZ7KM* solid-state disks
+ mv88e6060: disable hardware level MAC learning
+ net/mlx4_en: Fix build break when CONFIG_INET is off
+ ARM: 8814/1: mm: improve/fix ARM v7_dma_inv_range() unaligned address handling
+ ARM: 8815/1: V7M: align v7m_dma_inv_range() with v7 counterpart
+ ethernet: fman: fix wrong of_node_put() in probe function
+ drm/ast: Fix connector leak during driver unload
+ vhost/vsock: fix reset orphans race with close timeout
+ mlxsw: spectrum_switchdev: Fix VLAN device deletion via ioctl
+ i2c: axxia: properly handle master timeout
+ i2c: scmi: Fix probe error on devices with an empty SMB0001 ACPI device node
+ i2c: uniphier: fix violation of tLOW requirement for Fast-mode
+ i2c: uniphier-f: fix violation of tLOW requirement for Fast-mode
+ nvmet-rdma: fix response use after free
+ rtc: snvs: Add timeouts to avoid kernel lockups
+ bpf, arm: fix emit_ldx_r and emit_mov_i using TMP_REG_1
+ scsi: raid_attrs: fix unused variable warning
+ staging: olpc_dcon: add a missing dependency
+ ARM: dts: qcom-apq8064-arrow-sd-600eval fix 

[Kernel-packages] [Bug 1837257] [NEW] Bionic update: upstream stable patchset 2019-07-19

2019-07-19 Thread Kamal Mostafa
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 following upstream
   stable patches should be included in the Ubuntu kernel:

   upstream stable patchset 2019-07-19

Ported from the following upstream stable releases:
  v4.19.11,
v4.14.90, v4.19.12,
v4.14.91, v4.19.13,
v4.14.92, v4.19.14

   from git://git.kernel.org/

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

** Affects: linux (Ubuntu Bionic)
 Importance: Undecided
 Assignee: Kamal Mostafa (kamalmostafa)
 Status: In Progress


** Tags: kernel-stable-tracking-bug

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

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

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

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

** Changed in: linux (Ubuntu Bionic)
 Assignee: (unassigned) => Kamal Mostafa (kamalmostafa)

** 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 following upstream
+    stable patches should be included in the Ubuntu kernel:
  
- 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 following upstream
-stable patches should be included in the Ubuntu kernel:
+    upstream stable patchset 2019-07-19
  
-upstream stable patchset 2019-07-19
-from git://git.kernel.org/
+ Ported from the following upstream stable releases:
+   v4.19.11,
+ v4.14.90, v4.19.12,
+ v4.14.91, v4.19.13,
+ v4.14.92, v4.19.14
+ 
+    from git://git.kernel.org/

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837257

Title:
  Bionic update: upstream stable patchset 2019-07-19

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Bionic:
  In Progress

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 following upstream
     stable patches should be included in the Ubuntu kernel:

     upstream stable patchset 2019-07-19

  Ported from the following upstream stable releases:
v4.19.11,
  v4.14.90, v4.19.12,
  v4.14.91, v4.19.13,
  v4.14.92, v4.19.14

     from git://git.kernel.org/

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836176] Re: Touchscreen stops working after S3 suspend on Lenovo X1 Yoga 3th

2019-07-19 Thread Alexander Kallenbach
Tested latest mainline kernel but the problem still persists:

Linux yoga 5.2.0-050200rc7-generic #201906300430 SMP Sun Jun 30 04:32:31
UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1836176

Title:
  Touchscreen stops working after S3 suspend on Lenovo X1 Yoga 3th

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  As described above. With the last BIOS-updates Lenovo enabled proper
  S3 deep sleep mode for Linux. Sadly the touchscreen doesn't work after
  resuming. There are a lot of others facing the same problem:

  https://forums.lenovo.com/t5/Other-Linux-Discussions/X1Y3-Touchscreen-
  not-working-after-resume-on-Linux/td-p/4021200/highlight/false

  A workaround described in the Arch-wiki doesn't seem to work on
  Ubuntu:
  
https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_X1_Yoga_(Gen_3)#Fix_touchscreen_after_resume

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: linux-image-5.0.0-20-generic 5.0.0-20.21
  ProcVersionSignature: Ubuntu 5.0.0-20.21-generic 5.0.8
  Uname: Linux 5.0.0-20-generic x86_64
  ApportVersion: 2.20.10-0ubuntu27.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   4186 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Jul 11 11:19:05 2019
  HibernationDevice: RESUME=UUID=1c3b8070-c343-4dbf-8fe2-4112233d7954
  InstallationDate: Installed on 2018-11-30 (222 days ago)
  InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 
(20181017.3)
  MachineType: LENOVO 20LES01W00
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-20-generic 
root=UUID=d887a86a-3729-4962-9692-d9db9d49ed4c ro quiet splash vt.handoff=1
  RelatedPackageVersions:
   linux-restricted-modules-5.0.0-20-generic N/A
   linux-backports-modules-5.0.0-20-generic  N/A
   linux-firmware1.178.2
  SourcePackage: linux
  UpgradeStatus: Upgraded to disco on 2019-04-14 (87 days ago)
  dmi.bios.date: 06/12/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N25ET49W (1.35 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20LES01W00
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 31
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN25ET49W(1.35):bd06/12/2019:svnLENOVO:pn20LES01W00:pvrThinkPadX1Yoga3rd:rvnLENOVO:rn20LES01W00:rvrNotDefined:cvnLENOVO:ct31:cvrNone:
  dmi.product.family: ThinkPad X1 Yoga 3rd
  dmi.product.name: 20LES01W00
  dmi.product.sku: LENOVO_MT_20LE_BU_Think_FM_ThinkPad X1 Yoga 3rd
  dmi.product.version: ThinkPad X1 Yoga 3rd
  dmi.sys.vendor: LENOVO

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1835434] Re: linux-azure: 5.0.0-1012.12 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1835882 (bionic/linux-azure-edge)
  
  -- swm properties --
  kernel-stable-master-bug: 1834902
  phase: Ready for Testing
  phase-changed: Wednesday, 10. July 2019 23:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
+ trackers:
+   bionic:linux-azure-edge: bug 1835882
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-azure in Ubuntu.
https://bugs.launchpad.net/bugs/1835434

Title:
  linux-azure: 5.0.0-1012.12 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Fix Released
Status in Kernel SRU Workflow stakeholder-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-azure package in Ubuntu:
  Invalid
Status in linux-azure source package in Disco:
  Confirmed

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

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

  backports: bug 1835882 (bionic/linux-azure-edge)

  -- swm properties --
  kernel-stable-master-bug: 1834902
  phase: Ready for Testing
  phase-changed: Wednesday, 10. July 2019 23:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  trackers:
bionic:linux-azure-edge: bug 1835882
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1835438] Re: linux-azure: 4.18.0-1025.27 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1835436 (bionic/linux-azure)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834904
  phase: Holding before Promote to Proposed
  phase-changed: Tuesday, 09. July 2019 11:25 UTC
  reason:
promote-to-proposed: Holding -- manual kernel-block/kernel-block-ppa present
+ trackers:
+   bionic:linux-azure: bug 1835436
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-azure in Ubuntu.
https://bugs.launchpad.net/bugs/1835438

Title:
  linux-azure: 4.18.0-1025.27 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  New
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:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure package in Ubuntu:
  Invalid
Status in linux-azure source package in Cosmic:
  Confirmed

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

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

  backports: bug 1835436 (bionic/linux-azure)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834904
  phase: Holding before Promote to Proposed
  phase-changed: Tuesday, 09. July 2019 11:25 UTC
  reason:
promote-to-proposed: Holding -- manual kernel-block/kernel-block-ppa present
  trackers:
bionic:linux-azure: bug 1835436
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836172] Re: linux-oem: 4.15.0-1047.52 -proposed tracker

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

** Tags added: block-proposed-bionic

** Tags added: block-proposed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
+ boot-testing-requested: true
  kernel-stable-master-bug: 1834954
- phase: Holding before Promote to Proposed
- phase-changed: Friday, 19. July 2019 12:09 UTC
+ phase: Ready for Promote to Proposed
+ phase-changed: Friday, 19. July 2019 20:10 UTC
  reason:
-   promote-to-proposed: Ongoing -- builds not complete in ppa 
meta:building,signed:building
+   promote-to-proposed: Pending -- ready for review
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oem in Ubuntu.
https://bugs.launchpad.net/bugs/1836172

Title:
  linux-oem: 4.15.0-1047.52 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  New
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:
  Confirmed
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:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-oem package in Ubuntu:
  Invalid
Status in linux-oem source package in Bionic:
  Confirmed

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

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

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Promote to Proposed
  phase-changed: Friday, 19. July 2019 20:10 UTC
  reason:
promote-to-proposed: Pending -- ready for review
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836876] Re: linux-raspi2: 4.4.0-1116.125 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1836875 (pi2-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Ready for Testing
  phase-changed: Friday, 19. July 2019 09:11 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
+ trackers:
+   xenial:linux-raspi2:pi2-kernel: bug 1836875
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1836876

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

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
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 will contain status and test results related to a kernel
  source (or snap) as stated in the title.

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

  derivatives: bug 1836875 (pi2-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Ready for Testing
  phase-changed: Friday, 19. July 2019 09:11 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  trackers:
xenial:linux-raspi2:pi2-kernel: bug 1836875
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836878] Re: linux-snapdragon: 4.4.0-1120.126 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1836877 (dragonboard-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Testing
  phase-changed: Friday, 19. July 2019 13:30 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
+ trackers:
+   xenial:linux-snapdragon:dragonboard-kernel: bug 1836877
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-snapdragon in Ubuntu.
https://bugs.launchpad.net/bugs/1836878

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

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  In Progress
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
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 will contain status and test results related to a kernel
  source (or snap) as stated in the title.

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

  derivatives: bug 1836877 (dragonboard-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Testing
  phase-changed: Friday, 19. July 2019 13:30 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  trackers:
xenial:linux-snapdragon:dragonboard-kernel: bug 1836877
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834904] Re: linux: 4.18.0-26.27 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1834880 (linux-raspi2), bug 1834883 (linux-aws), bug
  1834899 (linux-gcp), bug 1834901 (linux-kvm), bug 1835438 (linux-azure)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Holding before Release
  phase-changed: Friday, 19. July 2019 12:07 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
promote-to-updates: Holding -- kernel-block/kernel-block-proposed tag 
present
+ trackers:
+   cosmic:linux-aws: bug 1834883
+   cosmic:linux-azure: bug 1835438
+   cosmic:linux-gcp: bug 1834899
+   cosmic:linux-kvm: bug 1834901
+   cosmic:linux-raspi2: bug 1834880
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834904

Title:
  linux: 4.18.0-26.27 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Invalid
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Cosmic:
  Confirmed

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

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

  derivatives: bug 1834880 (linux-raspi2), bug 1834883 (linux-aws), bug
  1834899 (linux-gcp), bug 1834901 (linux-kvm), bug 1835438 (linux-
  azure)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Holding before Release
  phase-changed: Friday, 19. July 2019 12:07 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
promote-to-updates: Holding -- kernel-block/kernel-block-proposed tag 
present
  trackers:
cosmic:linux-aws: bug 1834883
cosmic:linux-azure: bug 1835438
cosmic:linux-gcp: bug 1834899
cosmic:linux-kvm: bug 1834901
cosmic:linux-raspi2: bug 1834880
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1835190] Re: linux: 3.13.0-172.223 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1835189 (precise/linux-lts-trusty)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 19:02 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
+ trackers:
+   precise:linux-lts-trusty: bug 1835189
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1835190

Title:
  linux: 3.13.0-172.223 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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-signing-to-proposed 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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Trusty:
  Confirmed

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

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

  backports: bug 1835189 (precise/linux-lts-trusty)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 19:02 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  trackers:
precise:linux-lts-trusty: bug 1835189
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836880] Re: linux: 4.4.0-156.183 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1836879 (trusty/linux-lts-xenial)
  derivatives: bug 1834908 (linux-aws), bug 1834909 (linux-kvm), bug 1836874 
(pc-kernel), bug 1836876 (linux-raspi2), bug 1836878 (linux-snapdragon), bug 
1837155 (linux-fips)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Testing
  phase-changed: Thursday, 18. July 2019 16:13 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-testing: Stalled -- testing FAILED
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
+ trackers:
+   trusty:linux-lts-xenial: bug 1836879
+   xenial:linux-aws: bug 1834908
+   xenial:linux-fips: bug 1837155
+   xenial:linux-kvm: bug 1834909
+   xenial:linux-raspi2: bug 1836876
+   xenial:linux-snapdragon: bug 1836878
+   xenial:linux:pc-kernel: bug 1836874
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1836880

Title:
  linux: 4.4.0-156.183 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Incomplete
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
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 will contain status and test results related to a kernel
  source (or snap) as stated in the title.

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

  backports: bug 1836879 (trusty/linux-lts-xenial)
  derivatives: bug 1834908 (linux-aws), bug 1834909 (linux-kvm), bug 1836874 
(pc-kernel), bug 1836876 (linux-raspi2), bug 1836878 (linux-snapdragon), bug 
1837155 (linux-fips)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Testing
  phase-changed: Thursday, 18. July 2019 16:13 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-testing: Stalled -- testing FAILED
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  trackers:
trusty:linux-lts-xenial: bug 1836879
xenial:linux-aws: bug 1834908
xenial:linux-fips: bug 1837155
xenial:linux-kvm: bug 1834909
xenial:linux-raspi2: bug 1836876
xenial:linux-snapdragon: bug 1836878
xenial:linux:pc-kernel: bug 1836874
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834902] Re: linux: 5.0.0-21.22 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1835388 (bionic/linux-hwe), bug 1836856 (bionic/linux-oem-osp1)
  derivatives: bug 1834884 (linux-raspi2), bug 1834886 (linux-aws), bug 1834891 
(linux-gcp), bug 1834892 (linux-kvm), bug 1834894 (linux-snapdragon), bug 
1835434 (linux-azure)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Wednesday, 17. July 2019 14:12 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
+ trackers:
+   bionic:linux-hwe: bug 1835388
+   bionic:linux-oem-osp1: bug 1836856
+   disco:linux-aws: bug 1834886
+   disco:linux-azure: bug 1835434
+   disco:linux-gcp: bug 1834891
+   disco:linux-kvm: bug 1834892
+   disco:linux-raspi2: bug 1834884
+   disco:linux-snapdragon: bug 1834894
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834902

Title:
  linux: 5.0.0-21.22 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-lrm 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:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Disco:
  Confirmed

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

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

  backports: bug 1835388 (bionic/linux-hwe), bug 1836856 (bionic/linux-oem-osp1)
  derivatives: bug 1834884 (linux-raspi2), bug 1834886 (linux-aws), bug 1834891 
(linux-gcp), bug 1834892 (linux-kvm), bug 1834894 (linux-snapdragon), bug 
1835434 (linux-azure)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Wednesday, 17. July 2019 14:12 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  trackers:
bionic:linux-hwe: bug 1835388
bionic:linux-oem-osp1: bug 1836856
disco:linux-aws: bug 1834886
disco:linux-azure: bug 1835434
disco:linux-gcp: bug 1834891
disco:linux-kvm: bug 1834892
disco:linux-raspi2: bug 1834884
disco:linux-snapdragon: bug 1834894
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834891] Re: linux-gcp: 5.0.0-1011.11 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1835904 (bionic/linux-gcp-edge), bug 1836202 (bionic
  /linux-gke-5.0)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834902
  phase: Ready for Testing
  phase-changed: Wednesday, 10. July 2019 23:05 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
+ trackers:
+   bionic:linux-gcp-edge: bug 1835904
+   bionic:linux-gke-5.0: bug 1836202
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-gcp in Ubuntu.
https://bugs.launchpad.net/bugs/1834891

Title:
  linux-gcp: 5.0.0-1011.11 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-gcp package in Ubuntu:
  Invalid
Status in linux-gcp source package in Disco:
  Confirmed

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

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

  backports: bug 1835904 (bionic/linux-gcp-edge), bug 1836202 (bionic
  /linux-gke-5.0)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834902
  phase: Ready for Testing
  phase-changed: Wednesday, 10. July 2019 23:05 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  trackers:
bionic:linux-gcp-edge: bug 1835904
bionic:linux-gke-5.0: bug 1836202
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834886] Re: linux-aws: 5.0.0-1011.12 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1835782 (bionic/linux-aws-edge)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834902
  phase: Ready for Testing
  phase-changed: Monday, 15. July 2019 12:35 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
+ trackers:
+   bionic:linux-aws-edge: bug 1835782
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-aws in Ubuntu.
https://bugs.launchpad.net/bugs/1834886

Title:
  linux-aws: 5.0.0-1011.12 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-aws package in Ubuntu:
  Invalid
Status in linux-aws source package in Disco:
  Confirmed

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

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

  backports: bug 1835782 (bionic/linux-aws-edge)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834902
  phase: Ready for Testing
  phase-changed: Monday, 15. July 2019 12:35 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  trackers:
bionic:linux-aws-edge: bug 1835782
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836752] Re: input/mouse: alps trackpoint-only device doesn't work

2019-07-19 Thread Seth Forshee
** Changed in: linux (Ubuntu)
   Status: Incomplete => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1836752

Title:
  input/mouse: alps trackpoint-only device doesn't work

Status in HWE Next:
  New
Status in linux package in Ubuntu:
  Fix Committed
Status in linux-oem-osp1 package in Ubuntu:
  New
Status in linux source package in Bionic:
  New
Status in linux-oem-osp1 source package in Bionic:
  Fix Committed

Bug description:
  [Impact]
  On one of the latest Lenovo laptops, the trackpoint doesn't work, we
  consulted apls guys, they said this trackpoint is different from others,
  it is a trackpoint-only device, so the current alps.c doesn't support it
  well, while the trackpoint.c can drive it well.

  [Fix]
  Check if it is trakcpoint-only device, if it yes, let trackpoint.c
  handle it.

  [Test Case]
  apply this patch and boot with the kernel, the trackpoint can work
  well.

  [Regression Risk]
  Low. the way of detect trackpoint-only alps device is provided by
  alps. so it is pretty safe.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1835001] Re: System does not auto detect disconnection of external monitor

2019-07-19 Thread Seth Forshee
** Changed in: linux (Ubuntu)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oem in Ubuntu.
https://bugs.launchpad.net/bugs/1835001

Title:
  System does not auto detect disconnection of external monitor

Status in linux package in Ubuntu:
  Fix Committed
Status in linux-oem package in Ubuntu:
  New
Status in linux-oem-osp1 package in Ubuntu:
  New
Status in linux source package in Bionic:
  Won't Fix
Status in linux-oem source package in Bionic:
  New
Status in linux-oem-osp1 source package in Bionic:
  Fix Committed

Bug description:
  [Impact]
  System does not auto detect disconnection of external monitor

  Steps to reproduce:
  1. install dell-bto-bionic-beaver-lancel-X84-20190507-42.iso and boot into OS
  2. open "system settings > display settings"
  3. connect laptop to an external HDMI monitor via HDMI port & cable
  4. unplug the HDMI cable
  5. check if "display settings" automatically detects the removal of the 
external monitor

  Expected result:
  display settings should automatically detect the removal of external monitor 
when unplugging the HDMI cable

  Actual result:
  System does not automatically detect the removal of the external monitor when 
HDMI cable is removed.
  Sound setting also list HDMI audio in output tab after removal external 
monitor.

  Failure rate:
  2/10 to 1/10

  [Fix]
  two commits from upstream drm-intel-next-queued branch

  [Test case]
  see "steps to reproduce"

  [Regression potential]
  still possible, but for the distro only Eoan will get it. OEM kernels will 
get tested on systems that get it.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1827790] Re: Dell XPS 13 9380 - Screen brightness flashes

2019-07-19 Thread Thomas SIMON
I have also been trying to see what are the packages difference between
the OEM version and 19.04 since I suspect that Dell might have addressed
this issue in their version. I have a list of all packages that were on
the OEM but that might be tedious. If we contacted Dell directly, would
they be able to help narrow it down / provide packages that they set up
on the OEM?

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1827790

Title:
  Dell XPS 13 9380 - Screen brightness flashes

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hello,

  I have a new 2019 Dell XPS 13 (9380). I ordered the official Ubuntu
  edition from Dell which came with 18.04, but I've since wiped it and
  installed 19.04 from a fresh ISO download. This is the non-touch non-
  4K version (13-inch 1080p).

  Every so often (maybe a couple of times per minute), the screen
  flashes brighter, as if the brightness has been turned up momentarily
  and then back down again.

  I previously had an issue with the brightness / colours changing
  slightly when I opened menus or if the screen content changed
  slightly, but I fixed that by disabling Dynamic Brightness in the
  BIOS. It is definitely a better experience with that turned off.

  However the screen flashing still persists.

  I booted a live image of Fedora 30 now that it has been released, and
  so far I have not seen the screen flashing, so I do not think the
  hardware is faulty.

  I ran apport-bug, so hopefully the collected information has been
  attached.

  Thank you.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: xorg 1:7.7+19ubuntu12
  ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
  Uname: Linux 5.0.0-13-generic x86_64
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sun May  5 15:59:45 2019
  DistUpgraded: Fresh install
  DistroCodename: disco
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation UHD Graphics 620 (Whiskey Lake) [8086:3ea0] (prog-if 00 
[VGA controller])
 Subsystem: Dell UHD Graphics 620 (Whiskey Lake) [1028:08af]
  InstallationDate: Installed on 2019-04-28 (6 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: Dell Inc. XPS 13 9380
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-13-generic 
root=UUID=fcb75d61-4e46-4391-8800-ccef7ff04f70 ro quiet splash vt.handoff=1
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/29/2019
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.3.2
  dmi.board.name: 0KTW76
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.3.2:bd03/29/2019:svnDellInc.:pnXPS139380:pvr:rvnDellInc.:rn0KTW76:rvrA00:cvnDellInc.:ct10:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 13 9380
  dmi.product.sku: 08AF
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.97-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.2-1ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.4-1ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.0.1-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20180925-2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836916] Re: alsa/hdmi: add icelake hdmi audio support for a Dell machine

2019-07-19 Thread Seth Forshee
** Changed in: linux (Ubuntu)
   Status: Incomplete => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1836916

Title:
  alsa/hdmi: add icelake hdmi audio support for a Dell machine

Status in HWE Next:
  New
Status in linux package in Ubuntu:
  Fix Committed
Status in linux-oem-osp1 package in Ubuntu:
  New
Status in linux source package in Bionic:
  Won't Fix
Status in linux-oem-osp1 source package in Bionic:
  Fix Committed
Status in linux source package in Disco:
  New
Status in linux-oem-osp1 source package in Disco:
  Invalid

Bug description:
  [Impact]
  On a Dell icelake platform, the hdmi audio doesn't work at all, when users
  plug hdmi cable, they can't find hdmi audio from gnome-sound-setting.

  [Fix]
  add icl hdmi audio id and related support patch to alsa driver.

  [Test Case]
  after applying the patchset, we plug hdmi cable and the hdmi audio shows up
  in the sound-setting and works well, after unplugging the cable, the hdmi
  audio disappears as expected.

  [Regression Risk]
  Low. this patchset is specific to a icl hdmi audio codec.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1827790] Re: Dell XPS 13 9380 - Screen brightness flashes

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

** Changed in: gnome-settings-daemon (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1827790

Title:
  Dell XPS 13 9380 - Screen brightness flashes

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hello,

  I have a new 2019 Dell XPS 13 (9380). I ordered the official Ubuntu
  edition from Dell which came with 18.04, but I've since wiped it and
  installed 19.04 from a fresh ISO download. This is the non-touch non-
  4K version (13-inch 1080p).

  Every so often (maybe a couple of times per minute), the screen
  flashes brighter, as if the brightness has been turned up momentarily
  and then back down again.

  I previously had an issue with the brightness / colours changing
  slightly when I opened menus or if the screen content changed
  slightly, but I fixed that by disabling Dynamic Brightness in the
  BIOS. It is definitely a better experience with that turned off.

  However the screen flashing still persists.

  I booted a live image of Fedora 30 now that it has been released, and
  so far I have not seen the screen flashing, so I do not think the
  hardware is faulty.

  I ran apport-bug, so hopefully the collected information has been
  attached.

  Thank you.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: xorg 1:7.7+19ubuntu12
  ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
  Uname: Linux 5.0.0-13-generic x86_64
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sun May  5 15:59:45 2019
  DistUpgraded: Fresh install
  DistroCodename: disco
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation UHD Graphics 620 (Whiskey Lake) [8086:3ea0] (prog-if 00 
[VGA controller])
 Subsystem: Dell UHD Graphics 620 (Whiskey Lake) [1028:08af]
  InstallationDate: Installed on 2019-04-28 (6 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: Dell Inc. XPS 13 9380
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-13-generic 
root=UUID=fcb75d61-4e46-4391-8800-ccef7ff04f70 ro quiet splash vt.handoff=1
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/29/2019
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.3.2
  dmi.board.name: 0KTW76
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.3.2:bd03/29/2019:svnDellInc.:pnXPS139380:pvr:rvnDellInc.:rn0KTW76:rvrA00:cvnDellInc.:ct10:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 13 9380
  dmi.product.sku: 08AF
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.97-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.2-1ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.4-1ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.0.1-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20180925-2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836760] Re: ixgbe{vf} - Physical Function gets IRQ when VF checks link state

2019-07-19 Thread Seth Forshee
** Changed in: linux (Ubuntu Eoan)
   Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1836760

Title:
  ixgbe{vf} - Physical Function gets IRQ when VF checks link state

Status in linux package in Ubuntu:
  Fix Committed
Status in linux source package in Xenial:
  In Progress
Status in linux source package in Bionic:
  In Progress
Status in linux source package in Cosmic:
  Won't Fix
Status in linux source package in Disco:
  In Progress
Status in linux source package in Eoan:
  Fix Committed
Status in linux source package in FF-Series:
  Fix Committed

Bug description:
  [Impact]

  * Intel NICs that are SR-IOV capable and are managed by ixgbe driver presents 
a potentially harmful behavior when the ixgbevf-managed VFs (Virtual Functions) 
perform an ethtool link check. The ixgbevf driver issues a mailbox command in 
the ethtool link state handler, which induces one IRQ in the PF (Physical 
Function) per link check.
   
  * This was reported as a sort of "denial-of-service" from a guest; due to 
some link check loop running inside a guest with PCI-PT of a ixgbevf-managed 
VF, the host received a huge amount of IRQs causing soft-lockups.
   
  * The patch proposed in this SRU request fix this behavior by relying in the 
saved link state (obtained in the ixgbevf's watchdog routine) instead of 
issuing a mailbox command to the PF in every link state check request. The 
commit is available on Linus tree: 1e1b0c658d9b ("ixgbevf: Use cached link 
state instead of re-reading the value for ethtool")
  http://git.kernel.org/linus/1e1b0c658d9b

  [Test case]

  Reproducing the behavior is pretty simple; having a machine with an
  Intel NIC managed by ixgbe, proceed with the following steps:

  a) Create one or more VFs
  (echo 1 > /sys/class/net//device/sriov_numvfs)

  b) In a different terminal, monitor the non-TxRx PF IRQs:
  (watch -n1 "cat /proc/interrupts | grep  | grep -v Tx")

  c) Run "ethtool " in a loop

  Without the hereby proposed patch, the PF IRQs will increase.

  [Regression potential]

  The patch scope is restricted to ixgbevf ethtool link-check procedure,
  and was developed by the vendor itself. Being a self-contained patch
  affecting only this driver's ethtool handler, the worst potential
  regression would be a wrong link state report.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1827790] Re: Dell XPS 13 9380 - Screen brightness flashes

2019-07-19 Thread Thomas SIMON
Hello all, I believe that I have this same bug, also after a 19.04 fresh
install. I initially posted on that bug:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1826125 but they
kindly directed me here.

Of note, I am glad you tried wayland as I wanted to try if that made any
difference. I have tried passing different kernel parameters (though not
all combinations) namely:

First try: i915.edp_vswing=2
Second try: i915.fastboot=1 i915.edp_vswing=1 i915.preliminary_hw_support=1 
intel_idle.max_cstate=1 acpi_backlight=vendor acpi.osi=Linux (see 
https://www.reddit.com/r/linuxquestions/comments/ayi4n6/flickering_on_laptops_with_a_4k_screen_and_intel/)
 but that did not seem to make any difference apart from disabling the 
backlight controls

It somewhat feels good to have that identified as a bug.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1827790

Title:
  Dell XPS 13 9380 - Screen brightness flashes

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hello,

  I have a new 2019 Dell XPS 13 (9380). I ordered the official Ubuntu
  edition from Dell which came with 18.04, but I've since wiped it and
  installed 19.04 from a fresh ISO download. This is the non-touch non-
  4K version (13-inch 1080p).

  Every so often (maybe a couple of times per minute), the screen
  flashes brighter, as if the brightness has been turned up momentarily
  and then back down again.

  I previously had an issue with the brightness / colours changing
  slightly when I opened menus or if the screen content changed
  slightly, but I fixed that by disabling Dynamic Brightness in the
  BIOS. It is definitely a better experience with that turned off.

  However the screen flashing still persists.

  I booted a live image of Fedora 30 now that it has been released, and
  so far I have not seen the screen flashing, so I do not think the
  hardware is faulty.

  I ran apport-bug, so hopefully the collected information has been
  attached.

  Thank you.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: xorg 1:7.7+19ubuntu12
  ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
  Uname: Linux 5.0.0-13-generic x86_64
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sun May  5 15:59:45 2019
  DistUpgraded: Fresh install
  DistroCodename: disco
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation UHD Graphics 620 (Whiskey Lake) [8086:3ea0] (prog-if 00 
[VGA controller])
 Subsystem: Dell UHD Graphics 620 (Whiskey Lake) [1028:08af]
  InstallationDate: Installed on 2019-04-28 (6 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: Dell Inc. XPS 13 9380
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-13-generic 
root=UUID=fcb75d61-4e46-4391-8800-ccef7ff04f70 ro quiet splash vt.handoff=1
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/29/2019
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.3.2
  dmi.board.name: 0KTW76
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.3.2:bd03/29/2019:svnDellInc.:pnXPS139380:pvr:rvnDellInc.:rn0KTW76:rvrA00:cvnDellInc.:ct10:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 13 9380
  dmi.product.sku: 08AF
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.97-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.0.2-1ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.4-1ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.0.1-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20180925-2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836836] Re: First click on Goodix touchpad doesn't be recognized after runtime suspended

2019-07-19 Thread Seth Forshee
** Changed in: linux (Ubuntu)
   Status: Incomplete => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1836836

Title:
  First click on Goodix touchpad doesn't be recognized after runtime
  suspended

Status in linux package in Ubuntu:
  Fix Committed
Status in linux-oem-osp1 package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Invalid
Status in linux-oem-osp1 source package in Bionic:
  Fix Committed
Status in linux source package in Disco:
  Confirmed
Status in linux-oem-osp1 source package in Disco:
  Invalid

Bug description:
  [Impact]
  Wake up from runtime suspend, Goodix doesn't report correct Tap event by
  tapping it the first time, so if you double tap the touchpad, the system
  only got one tap.

  [Fix]
  Adding one missing platform which uses Goodix touchpad IC to the i2c
  designware quirk list.

  [Test]
  Verified on the buggy machines.

  [Regression Potential]
  Low, this quirk doesn't hurt anything and do little or none to power 
consumption.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1826125] Re: Dell XPS 13 9380 flickering (Whiskey Lake)

2019-07-19 Thread Thomas SIMON
Many thanks, you are right, I'll post there!

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1826125

Title:
  Dell XPS 13 9380 flickering  (Whiskey Lake)

Status in Linux:
  Incomplete
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  A brand new Dell XPS 13 9380 preinstalled with Ubuntu 18.04 flickers
  to the point of being totally unusable.

  I have upgraded since to 18.10 and 19.04 with no changes. I have tried
  several combinations of the i915 parameters fastboot, enable_rc6 and
  enable_fbc to no avail.

  Examples of flickering are here:
  https://photos.app.goo.gl/1PkL2HrjMBP41aML9
  https://photos.app.goo.gl/CMzmMwrCPH5wh8aw6
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  gdm1430 F pulseaudio
  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-bionic-amd64-20180608-47+italia-whl+X31
  DistroRelease: Ubuntu 19.04
  InstallationDate: Installed on 2019-04-13 (10 days ago)
  InstallationMedia: Ubuntu 18.04 "Bionic" - Build amd64 LIVE Binary 
20180608-09:38
  MachineType: Dell Inc. XPS 13 9380
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-1035-oem 
root=UUID=252898e9-6e96-4705-a709-2db930b7c4c7 ro quiet splash i915.fastboot=1 
i915.enable_rc6=0 vt.handoff=1
  ProcVersionSignature: Ubuntu 4.15.0-1035.40-oem 4.15.18
  PulseList:
   Error: command ['pacmd', 'list'] failed with exit code 1: Home directory not 
accessible: Permission denied
   No PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.15.0-1035-oem N/A
   linux-backports-modules-4.15.0-1035-oem  N/A
   linux-firmware   1.178
  Tags:  disco
  Uname: Linux 4.15.0-1035-oem x86_64
  UpgradeStatus: Upgraded to disco on 2019-04-24 (0 days ago)
  UserGroups:
   
  _MarkForUpload: True
  dmi.bios.date: 02/14/2019
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.2.1
  dmi.board.name: 0KTW76
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.2.1:bd02/14/2019:svnDellInc.:pnXPS139380:pvr:rvnDellInc.:rn0KTW76:rvrA00:cvnDellInc.:ct10:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 13 9380
  dmi.sys.vendor: Dell Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1817321] Re: installer does not support iSCSI iBFT

2019-07-19 Thread Mauricio Faria de Oliveira
The documentation about the feature/parameters has been merged [1]
into Server Guide -> Installation -> Advanced Installaion -> iSCSI [2].

It's not yet published right now, so the HTML might be updated later.

cheers,
Mauricio

[1] https://code.launchpad.net/~mfo/serverguide/ibft/+merge/370264
[2] https://help.ubuntu.com/lts/serverguide/advanced-installation.html#iscsi

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1817321

Title:
  installer does not support iSCSI iBFT

Status in debian-installer package in Ubuntu:
  Fix Released
Status in hw-detect package in Ubuntu:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released
Status in partman-iscsi package in Ubuntu:
  Fix Released
Status in debian-installer source package in Bionic:
  Fix Released
Status in hw-detect source package in Bionic:
  Fix Released
Status in linux source package in Bionic:
  Fix Released
Status in partman-iscsi source package in Bionic:
  Fix Released
Status in debian-installer source package in Cosmic:
  Fix Released
Status in hw-detect source package in Cosmic:
  Fix Released
Status in linux source package in Cosmic:
  Fix Released
Status in partman-iscsi source package in Cosmic:
  Fix Released
Status in debian-installer source package in Disco:
  Fix Released
Status in hw-detect source package in Disco:
  Fix Released
Status in linux source package in Disco:
  Fix Released
Status in partman-iscsi source package in Disco:
  Fix Released
Status in debian-installer source package in Eoan:
  Fix Released
Status in hw-detect source package in Eoan:
  Fix Released
Status in linux source package in Eoan:
  Fix Released
Status in partman-iscsi source package in Eoan:
  Fix Released

Bug description:
  [Impact]

   * It's not possible to access iBFT (iSCSI Boot Firmware Table) information
     (settings for network interface, initiator, and target) in the installer
     because the 'iscsi_ibft' module is not present in udeb packages.

   * Even if it was, the installer does not handle iBFT information at all,
     thus any settings are ignored, and iSCSI-related configuration has to
     be done manually or with workarounds.

   * This impacts user-experience and automatic installation on systems and
     deployments which actually do provide the iBFT feature and information,
     but cannot use it practically.

   * With proper iBFT support in the installer (kernel module in udeb package
     and automatic iSCSI-related configuration) users will be able to rely on
     iBFT to install/deploy Ubuntu on their servers and datacenters.

   * These fixes add the 'iscsi_ibft' kernel module in the scsi-modules udeb,
     and configure network/iSCSI according to iBFT information in disk-detect.

     This is done in disk-detect so that the iSCSI LUNs are detected as disks
     (useful in case of no other disks in the system so the installer doesn't
     complain nor wait too long) and that any partman-related preseed options
     are not required and may be still available for the user.

  [Test Case]

   * linux package / kernel module in udeb:

     $ dpkg-deb -c scsi-modules_*.udeb | grep iscsi_ibft.ko

     Check the module loads in the installer environment.
     See comment with example for disco.

   * d-i/hw-detect/partman-iscsi package:
     See comments 11, 12, 13.

  [Regression Potential]

   * linux package: low, the kernel module is not loaded by default,
     and only checks whether iBFT information is present in firmware,
     then exposes that in sysfs in read-only mode.

   * d-i/hw-detect/partman-iscsi:
     - d-i: kernel version update to include iscsi_ibft module,
    based on kernel released to -updates plus one week
    monitoring bug reports -- it should be OK.
    Tested on amd64/i386/arm64/ppc64el on QEMU, plus amd64
    on baremetal -- see comment 11.
     - hw-detect: low, the changes are enabled by a preseed option.
  see comment 12.
     - partman-iscsi: low, simple changes, plus one fix that has
  been tested in detail, and falls back to
  previous behavior if it fails.
  see comment 13.

  [Other Info]

   * This has been verified both by the developer with a simple iSCSI
     iBFT environment (2 VMs: iSCSI target & initiator with UEFI+iPXE)
     and by an user with system/firmware that supports iBFT for iSCSI.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837073] Re: linux 5.2.0-8.9 disabled backlight on s390x.

2019-07-19 Thread Gianfranco Costamagna
thanks

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837073

Title:
  linux 5.2.0-8.9 disabled backlight on s390x.

Status in ddcci-driver-linux package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Looks like ddcci-driver-linux started to fail on s390x with the switch
  from kernel 5.0.0-21-generic to 5.2.0-8-generic

  http://autopkgtest.ubuntu.com/packages/d/ddcci-driver-linux/eoan/s390x


  According to changelog and diff:
  - [Config] CONFIG_BACKLIGHT_CLASS_DEVICE=n on s390x

  from Seth Forshee.

  According to the build log of ddci backlight

  rm: cannot remove '.tmp_versions/ddcci-backlight.mod': No such file or 
directory
  Makefile:227: = WARNING 
  Makefile:228: 'SUBDIRS' will be removed after Linux 5.3
  Makefile:229: Please use 'M=' or 'KBUILD_EXTMOD' instead
  Makefile:230: ==
  Makefile:227: = WARNING 
  Makefile:228: 'SUBDIRS' will be removed after Linux 5.3
  Makefile:229: Please use 'M=' or 'KBUILD_EXTMOD' instead
  Makefile:230: ==
  ERROR: "devm_backlight_device_register" 
[/var/lib/dkms/ddcci/0.3.2/build/ddcci-backlight/ddcci-backlight.ko] undefined!
  make[3]: *** [scripts/Makefile.modpost:91: __modpost] Error 1
  make[2]: *** [Makefile:1628: modules] Error 2
  make[1]: *** [Makefile:37: ddcci-backlight.ko] Error 2

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837235] Missing required logs.

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

apport-collect 1837235

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

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

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

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

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837235

Title:
  systemd 229-4ubuntu21.22 ADT test failure with linux 4.4.0-156.183
  (storage)

Status in linux package in Ubuntu:
  Incomplete
Status in systemd package in Ubuntu:
  New
Status in linux source package in Xenial:
  Incomplete
Status in systemd source package in Xenial:
  New

Bug description:
  Testing failed on:
  i386: 
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-xenial/xenial/i386/s/systemd/20190719_14_3528c@/log.gz

  The storage testcase is failing on i386. Running the testcase
  manually, it hangs at:

  systemd-229/debian/tests$ sudo ./storage 
  test_luks_by_devname (__main__.CryptsetupTest)
  LUKS device by plain device name, empty ... Please enter passphrase for disk 
testcrypt1! 

  Looking at the storage testcase, on function start_password_agent(),
  it expects the 'disk scsi_debug' string on the systemd ask-password
  file, however the contains:

  Message=Please enter passphrase for disk testcrypt1!

  That doesn't seems to happen on other architectures. On amd64, the
  testcase output is:

  systemd-229/debian/tests$ sudo ./storage 
  test_luks_by_devname (__main__.CryptsetupTest)
  LUKS device by plain device name, empty ... Please enter passphrase for disk 
scsi_debug (testcrypt1)! 
  ok
  [...]

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1785912] Re: Horizontal screen flicker Intel UHD graphics 620 (rev 07) Lenovo Ideapad 720s 13IKB 81BV

2019-07-19 Thread Thomas SIMON
Hello, I have commented on the following:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1826125 which might
be related. As said there, I owe a XPS 13 9380 (with Intel 620) and have
some flickering issues as well (Ubuntu 19.04, fresh install, not the OEM
version)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1785912

Title:
  Horizontal screen flicker Intel UHD graphics 620 (rev 07) Lenovo
  Ideapad 720s 13IKB 81BV

Status in Linux:
  Confirmed
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Horrible screen flicker from login screen and after login.  18.04.1 LTS.
  I have two similar laptops, both Lenovo Ideapad 720s 13IKB,
  model 81A8 - Core i5 7200U - Intel HD Graphics 620 Rev 02 - works fine.
  model 81BV - Core i5 8250U - Intel UHD Graphics 620 Rev 07 - awful screen 
flashing.

  Neither have the problem in Windows (ie hardware fine)

  I installed the standard Ubuntu 18.04 on each of them (same USB Key,
  few weeks apart) but only the 81BV / 8th gen / UHD 620 Rev 07 has the
  problem.

  Flickering visible on video here:
  https://photos.app.goo.gl/HCN73q1nQfgstgVBA

  I've used ubuntu-bug so I believe you have all the details of the
  machine.  The install came straight from your standard 18.04 download.
  Any changes are due to me trying to fix this (not much prev exp of
  kernel params etc)

  Things tried but which didn't work were:
  - enable huc/guc (got it to load - it's now visible in the attached dmesg - 
but didn't help.)
  - enable_rc6=0 (just stopped sleep / resume working)
  - edp_vswing=2

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: xserver-xorg-video-intel 2:2.99.917+git20171229-1
  ProcVersionSignature: Ubuntu 4.15.0-30.32-generic 4.15.18
  Uname: Linux 4.15.0-30-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.2
  Architecture: amd64
  CompositorRunning: None
  Date: Tue Aug  7 23:09:14 2018
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA 
controller])
     Subsystem: Lenovo UHD Graphics 620 [17aa:39af]
  InstallationDate: Installed on 2018-08-06 (1 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 0cf3:e500 Atheros Communications, Inc.
   Bus 001 Device 003: ID 5986:210d Acer, Inc
   Bus 001 Device 002: ID 06cb:0081 Synaptics, Inc.
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: LENOVO 81BV
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-30-generic 
root=UUID=10eb4e00-26e4-4f42-b983-9a603a658f89 ro i915.enable_guc=3 
i915.enable_guc_loading=1
  SourcePackage: xserver-xorg-video-intel
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/02/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 6MCN27WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40709 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 720S-13IKB
  dmi.modalias: 
dmi:bvnLENOVO:bvr6MCN27WW:bd05/02/2018:svnLENOVO:pn81BV:pvrLenovoideapad720S-13IKB:rvnLENOVO:rnLNVNB161216:rvrSDK0J40709WIN:cvnLENOVO:ct10:cvrLenovoideapad720S-13IKB:
  dmi.product.family: ideapad 720S-13IKB
  dmi.product.name: 81BV
  dmi.product.version: Lenovo ideapad 720S-13IKB
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.91-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 18.0.5-0ubuntu0~18.04.1
  version.libgl1-mesa-glx: libgl1-mesa-glx 18.0.5-0ubuntu0~18.04.1
  version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu4
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.0.1-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20171229-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834943] Re: linux-oracle: 4.15.0-1018.20 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834942 (xenial/linux-oracle)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Wednesday, 10. July 2019 23:42 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
+ trackers:
+   xenial:linux-oracle: bug 1834942
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oracle in Ubuntu.
https://bugs.launchpad.net/bugs/1834943

Title:
  linux-oracle: 4.15.0-1018.20 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-oracle package in Ubuntu:
  Invalid
Status in linux-oracle source package in Bionic:
  Confirmed

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

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

  backports: bug 1834942 (xenial/linux-oracle)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Wednesday, 10. July 2019 23:42 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  trackers:
xenial:linux-oracle: bug 1834942
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834950] Re: linux-azure: 4.15.0-1051.56 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834948 (trusty/linux-azure)
  derivatives: bug 1834945 (azure-kernel), bug 1834946 (linux-azure-edge)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Wednesday, 10. July 2019 23:42 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
+ trackers:
+   trusty:linux-azure: bug 1834948
+   xenial:linux-azure-edge: bug 1834946
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-azure in Ubuntu.
https://bugs.launchpad.net/bugs/1834950

Title:
  linux-azure: 4.15.0-1051.56 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Fix Released
Status in Kernel SRU Workflow stakeholder-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-azure package in Ubuntu:
  Invalid
Status in linux-azure source package in Xenial:
  Confirmed

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

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

  backports: bug 1834948 (trusty/linux-azure)
  derivatives: bug 1834945 (azure-kernel), bug 1834946 (linux-azure-edge)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Wednesday, 10. July 2019 23:42 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  trackers:
trusty:linux-azure: bug 1834948
xenial:linux-azure-edge: bug 1834946
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834925] Re: linux-snapdragon: 4.15.0-1058.64 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1834924 (dragonboard-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Testing
  phase-changed: Friday, 19. July 2019 13:30 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
+ trackers:
+   bionic:linux-snapdragon:dragonboard-kernel: bug 1834924
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-snapdragon in Ubuntu.
https://bugs.launchpad.net/bugs/1834925

Title:
  linux-snapdragon: 4.15.0-1058.64 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  In Progress
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-snapdragon package in Ubuntu:
  Invalid
Status in linux-snapdragon source package in Bionic:
  Confirmed

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

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

  derivatives: bug 1834924 (dragonboard-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Testing
  phase-changed: Friday, 19. July 2019 13:30 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  trackers:
bionic:linux-snapdragon:dragonboard-kernel: bug 1834924
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834936] Re: linux-gcp: 4.15.0-1037.39 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834935 (xenial/linux-gcp)
  derivatives: bug 1834931 (gcp-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 18:07 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
+ trackers:
+   xenial:linux-gcp: bug 1834935
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-gcp in Ubuntu.
https://bugs.launchpad.net/bugs/1834936

Title:
  linux-gcp: 4.15.0-1037.39 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-gcp package in Ubuntu:
  Invalid
Status in linux-gcp source package in Bionic:
  Confirmed

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

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

  backports: bug 1834935 (xenial/linux-gcp)
  derivatives: bug 1834931 (gcp-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 18:07 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  trackers:
xenial:linux-gcp: bug 1834935
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834930] Re: linux-aws: 4.15.0-1044.46 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834929 (xenial/linux-aws-hwe)
  derivatives: bug 1834927 (aws-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 00:11 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
+ trackers:
+   xenial:linux-aws-hwe: bug 1834929
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-aws in Ubuntu.
https://bugs.launchpad.net/bugs/1834930

Title:
  linux-aws: 4.15.0-1044.46 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-aws package in Ubuntu:
  Invalid
Status in linux-aws source package in Bionic:
  Confirmed

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

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

  backports: bug 1834929 (xenial/linux-aws-hwe)
  derivatives: bug 1834927 (aws-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 00:11 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  trackers:
xenial:linux-aws-hwe: bug 1834929
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834923] Re: linux-raspi2: 4.15.0-1041.44 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1834922 (pi-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 00:10 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
+ trackers:
+   bionic:linux-raspi2:pi-kernel: bug 1834922
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1834923

Title:
  linux-raspi2: 4.15.0-1041.44 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-raspi2 package in Ubuntu:
  Invalid
Status in linux-raspi2 source package in Bionic:
  Confirmed

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

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

  derivatives: bug 1834922 (pi-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 00:10 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  trackers:
bionic:linux-raspi2:pi-kernel: bug 1834922
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834954] Re: linux: 4.15.0-55.60 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   verification-testing: Ongoing -- testing in progress
+   verification-testing: Ongoing -- testing in progress
  trackers:
-   bionic:linux-aws: bug 1834930
-   bionic:linux-fips: bug 1834944
-   bionic:linux-gcp: bug 1834936
-   bionic:linux-gke-4.15: bug 1834939
-   bionic:linux-ibm-gt: bug 1836925
-   bionic:linux-kvm: bug 1834940
-   bionic:linux-oem: bug 1836172
-   bionic:linux-oracle: bug 1834943
-   bionic:linux-raspi2: bug 1834923
-   bionic:linux-snapdragon: bug 1834925
-   bionic:linux:pc-kernel: bug 1834919
-   xenial:linux-azure: bug 1834950
-   xenial:linux-hwe: bug 1834953
+   bionic:linux-aws: bug 1834930
+   bionic:linux-fips: bug 1834944
+   bionic:linux-gcp: bug 1834936
+   bionic:linux-gke-4.15: bug 1834939
+   bionic:linux-ibm-gt: bug 1836925
+   bionic:linux-kvm: bug 1834940
+   bionic:linux-oem: bug 1836172
+   bionic:linux-oracle: bug 1834943
+   bionic:linux-raspi2: bug 1834923
+   bionic:linux-snapdragon: bug 1834925
+   bionic:linux:pc-kernel: bug 1834919
+   xenial:linux-azure: bug 1834950
+   xenial:linux-hwe: bug 1834953
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834954

Title:
  linux: 4.15.0-55.60 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Confirmed

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

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

  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  trackers:
bionic:linux-aws: bug 1834930
bionic:linux-fips: bug 1834944
bionic:linux-gcp: bug 1834936
bionic:linux-gke-4.15: bug 1834939
bionic:linux-ibm-gt: bug 1836925
bionic:linux-kvm: bug 1834940
bionic:linux-oem: bug 1836172
bionic:linux-oracle: bug 1834943
bionic:linux-raspi2: bug 1834923
bionic:linux-snapdragon: bug 1834925
bionic:linux:pc-kernel: bug 1834919
xenial:linux-azure: bug 1834950
xenial:linux-hwe: bug 1834953
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834954] Re: linux: 4.15.0-55.60 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)
  
  -- swm properties --
  associated-bugs:
bionic:linux-aws: bug 1834930
bionic:linux-fips: bug 1834944
bionic:linux-gcp: bug 1834936
bionic:linux-gke-4.15: bug 1834939
bionic:linux-ibm-gt: bug 1836925
bionic:linux-kvm: bug 1834940
bionic:linux-oem: bug 1836172
bionic:linux-oracle: bug 1834943
bionic:linux-raspi2: bug 1834923
bionic:linux-snapdragon: bug 1834925
bionic:linux:pc-kernel: bug 1834919
xenial:linux-azure: bug 1834950
xenial:linux-hwe: bug 1834953
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
+ trackers:
+   bionic:linux-aws: bug 1834930
+   bionic:linux-fips: bug 1834944
+   bionic:linux-gcp: bug 1834936
+   bionic:linux-gke-4.15: bug 1834939
+   bionic:linux-ibm-gt: bug 1836925
+   bionic:linux-kvm: bug 1834940
+   bionic:linux-oem: bug 1836172
+   bionic:linux-oracle: bug 1834943
+   bionic:linux-raspi2: bug 1834923
+   bionic:linux-snapdragon: bug 1834925
+   bionic:linux:pc-kernel: bug 1834919
+   xenial:linux-azure: bug 1834950
+   xenial:linux-hwe: bug 1834953
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834954

Title:
  linux: 4.15.0-55.60 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Confirmed

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

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

  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  trackers:
bionic:linux-aws: bug 1834930
bionic:linux-fips: bug 1834944
bionic:linux-gcp: bug 1834936
bionic:linux-gke-4.15: bug 1834939
bionic:linux-ibm-gt: bug 1836925
bionic:linux-kvm: bug 1834940
bionic:linux-oem: bug 1836172
bionic:linux-oracle: bug 1834943
bionic:linux-raspi2: bug 1834923
bionic:linux-snapdragon: bug 1834925
bionic:linux:pc-kernel: bug 1834919
xenial:linux-azure: bug 1834950
xenial:linux-hwe: bug 1834953
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834954] Re: linux: 4.15.0-55.60 -proposed tracker

2019-07-19 Thread Andy Whitcroft
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)
  
  -- swm properties --
- associated-bugs:
-   bionic:linux-aws: bug 1834930
-   bionic:linux-fips: bug 1834944
-   bionic:linux-gcp: bug 1834936
-   bionic:linux-gke-4.15: bug 1834939
-   bionic:linux-ibm-gt: bug 1836925
-   bionic:linux-kvm: bug 1834940
-   bionic:linux-oem: bug 1836172
-   bionic:linux-oracle: bug 1834943
-   bionic:linux-raspi2: bug 1834923
-   bionic:linux-snapdragon: bug 1834925
-   bionic:linux:pc-kernel: bug 1834919
-   xenial:linux-azure: bug 1834950
-   xenial:linux-hwe: bug 1834953
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   verification-testing: Ongoing -- testing in progress
+   verification-testing: Ongoing -- testing in progress
  trackers:
-   bionic:linux-aws: bug 1834930
-   bionic:linux-fips: bug 1834944
-   bionic:linux-gcp: bug 1834936
-   bionic:linux-gke-4.15: bug 1834939
-   bionic:linux-ibm-gt: bug 1836925
-   bionic:linux-kvm: bug 1834940
-   bionic:linux-oem: bug 1836172
-   bionic:linux-oracle: bug 1834943
-   bionic:linux-raspi2: bug 1834923
-   bionic:linux-snapdragon: bug 1834925
-   bionic:linux:pc-kernel: bug 1834919
-   xenial:linux-azure: bug 1834950
-   xenial:linux-hwe: bug 1834953
+   bionic:linux-aws: bug 1834930
+   bionic:linux-fips: bug 1834944
+   bionic:linux-gcp: bug 1834936
+   bionic:linux-gke-4.15: bug 1834939
+   bionic:linux-ibm-gt: bug 1836925
+   bionic:linux-kvm: bug 1834940
+   bionic:linux-oem: bug 1836172
+   bionic:linux-oracle: bug 1834943
+   bionic:linux-raspi2: bug 1834923
+   bionic:linux-snapdragon: bug 1834925
+   bionic:linux:pc-kernel: bug 1834919
+   xenial:linux-azure: bug 1834950
+   xenial:linux-hwe: bug 1834953
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834954

Title:
  linux: 4.15.0-55.60 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Confirmed

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

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

  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  trackers:
bionic:linux-aws: bug 1834930
bionic:linux-fips: bug 1834944
bionic:linux-gcp: bug 1834936
bionic:linux-gke-4.15: bug 1834939
bionic:linux-ibm-gt: bug 1836925
bionic:linux-kvm: bug 1834940
bionic:linux-oem: bug 1836172
bionic:linux-oracle: bug 1834943
bionic:linux-raspi2: bug 1834923
bionic:linux-snapdragon: bug 1834925

[Kernel-packages] [Bug 1837235] [NEW] systemd 229-4ubuntu21.22 ADT test failure with linux 4.4.0-156.183 (storage)

2019-07-19 Thread Kleber Sacilotto de Souza
Public bug reported:

Testing failed on:
i386: 
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-xenial/xenial/i386/s/systemd/20190719_14_3528c@/log.gz

The storage testcase is failing on i386. Running the testcase manually,
it hangs at:

systemd-229/debian/tests$ sudo ./storage 
test_luks_by_devname (__main__.CryptsetupTest)
LUKS device by plain device name, empty ... Please enter passphrase for disk 
testcrypt1! 

Looking at the storage testcase, on function start_password_agent(), it
expects the 'disk scsi_debug' string on the systemd ask-password file,
however the contains:

Message=Please enter passphrase for disk testcrypt1!

That doesn't seems to happen on other architectures. On amd64, the
testcase output is:

systemd-229/debian/tests$ sudo ./storage 
test_luks_by_devname (__main__.CryptsetupTest)
LUKS device by plain device name, empty ... Please enter passphrase for disk 
scsi_debug (testcrypt1)! 
ok
[...]

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

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

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

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


** Tags: kernel-adt-failure

** Tags added: kernel-adt-failure

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

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

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

** Summary changed:

- systemd 229-4ubuntu21.22 ADT test failure with linux 4.4.0-156.183
+ systemd 229-4ubuntu21.22 ADT test failure with linux 4.4.0-156.183 (storage)

** Description changed:

  Testing failed on:
- i386: 
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-xenial/xenial/i386/s/systemd/20190719_14_3528c@/log.gz
+ i386: 
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-xenial/xenial/i386/s/systemd/20190719_14_3528c@/log.gz
+ 
+ The storage testcase is failing on i386. Running the testcase manually,
+ it hangs at:
+ 
+ systemd-229/debian/tests$ sudo ./storage 
+ test_luks_by_devname (__main__.CryptsetupTest)
+ LUKS device by plain device name, empty ... Please enter passphrase for disk 
testcrypt1! 
+ 
+ Looking at the storage testcase, on function start_password_agent(), it
+ expects the 'disk scsi_debug' string on the systemd ask-password file,
+ however the contains:
+ 
+ Message=Please enter passphrase for disk testcrypt1!
+ 
+ That doesn't seems to happen on other architectures. On amd64, the
+ testcase output is:
+ 
+ systemd-229/debian/tests$ sudo ./storage 
+ test_luks_by_devname (__main__.CryptsetupTest)
+ LUKS device by plain device name, empty ... Please enter passphrase for disk 
scsi_debug (testcrypt1)! 
+ ok
+ [...]

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837235

Title:
  systemd 229-4ubuntu21.22 ADT test failure with linux 4.4.0-156.183
  (storage)

Status in linux package in Ubuntu:
  New
Status in systemd package in Ubuntu:
  New
Status in linux source package in Xenial:
  New
Status in systemd source package in Xenial:
  New

Bug description:
  Testing failed on:
  i386: 
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-xenial/xenial/i386/s/systemd/20190719_14_3528c@/log.gz

  The storage testcase is failing on i386. Running the testcase
  manually, it hangs at:

  systemd-229/debian/tests$ sudo ./storage 
  test_luks_by_devname (__main__.CryptsetupTest)
  LUKS device by plain device name, empty ... Please enter passphrase for disk 
testcrypt1! 

  Looking at the storage testcase, on function start_password_agent(),
  it expects the 'disk scsi_debug' string on the systemd ask-password
  file, however the contains:

  Message=Please enter passphrase for disk testcrypt1!

  That doesn't seems to happen on other architectures. On amd64, the
  testcase output is:

  systemd-229/debian/tests$ sudo ./storage 
  test_luks_by_devname (__main__.CryptsetupTest)
  LUKS device by plain device name, empty ... Please enter passphrase for disk 
scsi_debug (testcrypt1)! 
  ok
  [...]

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837073] Re: linux 5.2.0-8.9 disabled backlight on s390x.

2019-07-19 Thread Ubuntu Foundations Team Bug Bot
** Tags added: patch

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837073

Title:
  linux 5.2.0-8.9 disabled backlight on s390x.

Status in ddcci-driver-linux package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Looks like ddcci-driver-linux started to fail on s390x with the switch
  from kernel 5.0.0-21-generic to 5.2.0-8-generic

  http://autopkgtest.ubuntu.com/packages/d/ddcci-driver-linux/eoan/s390x


  According to changelog and diff:
  - [Config] CONFIG_BACKLIGHT_CLASS_DEVICE=n on s390x

  from Seth Forshee.

  According to the build log of ddci backlight

  rm: cannot remove '.tmp_versions/ddcci-backlight.mod': No such file or 
directory
  Makefile:227: = WARNING 
  Makefile:228: 'SUBDIRS' will be removed after Linux 5.3
  Makefile:229: Please use 'M=' or 'KBUILD_EXTMOD' instead
  Makefile:230: ==
  Makefile:227: = WARNING 
  Makefile:228: 'SUBDIRS' will be removed after Linux 5.3
  Makefile:229: Please use 'M=' or 'KBUILD_EXTMOD' instead
  Makefile:230: ==
  ERROR: "devm_backlight_device_register" 
[/var/lib/dkms/ddcci/0.3.2/build/ddcci-backlight/ddcci-backlight.ko] undefined!
  make[3]: *** [scripts/Makefile.modpost:91: __modpost] Error 1
  make[2]: *** [Makefile:1628: modules] Error 2
  make[1]: *** [Makefile:37: ddcci-backlight.ko] Error 2

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837209] Re: Splash screen fails to display on recent pi core18 images

2019-07-19 Thread Oliver Grawert
the overlay is needed for mir-kiosk to allow it to work at all
(unaccelerated though)

to have mir-kiosk fully accelerated one needs to use -kms-v3d instead
but this in turn disables all video decoding in the vc4 core. i
originally picked -fkms-v3d for the gadget since it is the least evil
(makes mir semi-work while still allowing to use omxplayer accelerated
(see the omxplayer-pi snap for testing)).

long term it would be really cool if the graphics overlay selection
could be a bit more dynamic (this is indeed orthogonal to this bug
though) without the need to hardcode such stuff on boot or if mir-kiosk
could simply work on top of vc4 without need for the overlay (the mir
team was looking into that but i do not know the current status).

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1837209

Title:
  Splash screen fails to display on recent pi core18 images

Status in Snappy:
  New
Status in linux-raspi2 package in Ubuntu:
  New

Bug description:
  The current core18 image [1] for the raspberry pi fails to display the
  "Core" splash screen on boot. This is because psplash fails to open
  the /dev/fb0 framebuffer device, because it doesn't exist. This
  appears to be due to a lack of supporting kernel modules in the
  initrd.img (fb_sys_fops, drm, vc4, etc.) which were formerly present
  but are missing from the version I'm testing (pi-kernel
  4.15.0-1041.44, snap rev 42).

  Steps to reproduce:

  * Flash the image to a uSD card and boot the pi with it (preferably with a 
serial console attached).
  * Note screen remains black instead of displaying the familiar "Core" text 
under an Ubuntu logo.
  * If serial console is attached, note "Error opening /dev/fb0" in the output 
shortly after u-boot starts the kernel; this is output from psplash failing

  [1] http://cdimage.ubuntu.com/ubuntu-core/18/current/ubuntu-
  core-18-armhf+raspi3.img.xz

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836172] Re: linux-oem: 4.15.0-1047.52 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1834954
  phase: Holding before Promote to Proposed
  phase-changed: Friday, 19. July 2019 12:09 UTC
  reason:
-   promote-to-proposed: Ongoing -- builds not complete in ppa 
main:building,meta:building,signed:building
+   promote-to-proposed: Ongoing -- builds not complete in ppa 
meta:building,signed:building
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oem in Ubuntu.
https://bugs.launchpad.net/bugs/1836172

Title:
  linux-oem: 4.15.0-1047.52 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  New
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:
  New
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:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-oem package in Ubuntu:
  Invalid
Status in linux-oem source package in Bionic:
  Confirmed

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

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

  -- swm properties --
  kernel-stable-master-bug: 1834954
  phase: Holding before Promote to Proposed
  phase-changed: Friday, 19. July 2019 12:09 UTC
  reason:
promote-to-proposed: Ongoing -- builds not complete in ppa 
meta:building,signed:building
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837231] [NEW] UBUNTU: SAUCE: shiftfs: pass correct point down

2019-07-19 Thread Christian Brauner
Public bug reported:

SRU Justification

Impact: shiftfs is currently passing down an unsigned long to
copy_from_user() which expects a void __user * pointer. This will cause
the compiler to complain because of mismatching types and in general is
rather ugly.

Regression Potential: Limited to shiftfs.

Test Case: Compile kernel with patch and see that compiler does not
complain anymore.

Target Kernels: All LTS kernels with shiftfs support.

Patches:
https://github.com/brauner/ubuntu-disco/tree/shiftfs_direct_io

** Affects: linux (Ubuntu)
 Importance: Undecided
 Assignee: Christian Brauner (cbrauner)
 Status: In Progress

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => Christian Brauner (cbrauner)

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837231

Title:
  UBUNTU: SAUCE: shiftfs: pass correct point down

Status in linux package in Ubuntu:
  In Progress

Bug description:
  SRU Justification

  Impact: shiftfs is currently passing down an unsigned long to
  copy_from_user() which expects a void __user * pointer. This will
  cause the compiler to complain because of mismatching types and in
  general is rather ugly.

  Regression Potential: Limited to shiftfs.

  Test Case: Compile kernel with patch and see that compiler does not
  complain anymore.

  Target Kernels: All LTS kernels with shiftfs support.

  Patches:
  https://github.com/brauner/ubuntu-disco/tree/shiftfs_direct_io

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834954] Re: linux: 4.15.0-55.60 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)
  
  -- swm properties --
+ associated-bugs:
+   bionic:linux-aws: bug 1834930
+   bionic:linux-fips: bug 1834944
+   bionic:linux-gcp: bug 1834936
+   bionic:linux-gke-4.15: bug 1834939
+   bionic:linux-ibm-gt: bug 1836925
+   bionic:linux-kvm: bug 1834940
+   bionic:linux-oem: bug 1836172
+   bionic:linux-oracle: bug 1834943
+   bionic:linux-raspi2: bug 1834923
+   bionic:linux-snapdragon: bug 1834925
+   bionic:linux:pc-kernel: bug 1834919
+   xenial:linux-azure: bug 1834950
+   xenial:linux-hwe: bug 1834953
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   verification-testing: Ongoing -- testing in progress
+   verification-testing: Ongoing -- testing in progress
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834954

Title:
  linux: 4.15.0-55.60 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Confirmed

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

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

  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)

  -- swm properties --
  associated-bugs:
bionic:linux-aws: bug 1834930
bionic:linux-fips: bug 1834944
bionic:linux-gcp: bug 1834936
bionic:linux-gke-4.15: bug 1834939
bionic:linux-ibm-gt: bug 1836925
bionic:linux-kvm: bug 1834940
bionic:linux-oem: bug 1836172
bionic:linux-oracle: bug 1834943
bionic:linux-raspi2: bug 1834923
bionic:linux-snapdragon: bug 1834925
bionic:linux:pc-kernel: bug 1834919
xenial:linux-azure: bug 1834950
xenial:linux-hwe: bug 1834953
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834954] Re: linux: 4.15.0-55.60 -proposed tracker

2019-07-19 Thread Andy Whitcroft
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
-   https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
+   https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)
  
  -- swm properties --
- associated-bugs:
-   bionic:linux: bug 1834919
-   bionic:linux-aws: bug 1834930
-   bionic:linux-fips: bug 1834944
-   bionic:linux-gcp: bug 1834936
-   bionic:linux-gke-4.15: bug 1834939
-   bionic:linux-ibm-gt: bug 1836925
-   bionic:linux-kvm: bug 1834940
-   bionic:linux-oem: bug 1836172
-   bionic:linux-oracle: bug 1834943
-   bionic:linux-raspi2: bug 1834923
-   bionic:linux-snapdragon: bug 1834925
-   bionic:linux:pc-kernel: bug 1834919
-   xenial:linux-azure: bug 1834950
-   xenial:linux-hwe: bug 1834953
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   verification-testing: Ongoing -- testing in progress
+   verification-testing: Ongoing -- testing in progress
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834954

Title:
  linux: 4.15.0-55.60 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Confirmed

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

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

  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)

  -- swm properties --
  associated-bugs:
bionic:linux-aws: bug 1834930
bionic:linux-fips: bug 1834944
bionic:linux-gcp: bug 1834936
bionic:linux-gke-4.15: bug 1834939
bionic:linux-ibm-gt: bug 1836925
bionic:linux-kvm: bug 1834940
bionic:linux-oem: bug 1836172
bionic:linux-oracle: bug 1834943
bionic:linux-raspi2: bug 1834923
bionic:linux-snapdragon: bug 1834925
bionic:linux:pc-kernel: bug 1834919
xenial:linux-azure: bug 1834950
xenial:linux-hwe: bug 1834953
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834954] Re: linux: 4.15.0-55.60 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)
  
  -- swm properties --
+ associated-bugs:
+   bionic:linux: bug 1834919
+   bionic:linux-aws: bug 1834930
+   bionic:linux-fips: bug 1834944
+   bionic:linux-gcp: bug 1834936
+   bionic:linux-gke-4.15: bug 1834939
+   bionic:linux-ibm-gt: bug 1836925
+   bionic:linux-kvm: bug 1834940
+   bionic:linux-oem: bug 1836172
+   bionic:linux-oracle: bug 1834943
+   bionic:linux-raspi2: bug 1834923
+   bionic:linux-snapdragon: bug 1834925
+   xenial:linux-azure: bug 1834950
+   xenial:linux-hwe: bug 1834953
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  variant: debs

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)
  
  -- swm properties --
  associated-bugs:
bionic:linux: bug 1834919
bionic:linux-aws: bug 1834930
bionic:linux-fips: bug 1834944
bionic:linux-gcp: bug 1834936
bionic:linux-gke-4.15: bug 1834939
bionic:linux-ibm-gt: bug 1836925
bionic:linux-kvm: bug 1834940
bionic:linux-oem: bug 1836172
bionic:linux-oracle: bug 1834943
bionic:linux-raspi2: bug 1834923
bionic:linux-snapdragon: bug 1834925
+   bionic:linux:pc-kernel: bug 1834919
xenial:linux-azure: bug 1834950
xenial:linux-hwe: bug 1834953
  boot-testing-requested: true
  bugs-spammed: true
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:36 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834954

Title:
  linux: 4.15.0-55.60 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Confirmed

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

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

  backports: bug 1834950 (xenial/linux-azure), bug 1834953 (xenial/linux-hwe)
  derivatives: bug 1834919 (pc-kernel), bug 1834921 (pc-lowlatency-kernel), bug 
1834923 (linux-raspi2), bug 1834925 (linux-snapdragon), bug 1834930 
(linux-aws), bug 1834936 (linux-gcp), bug 1834939 (linux-gke-4.15), bug 1834940 
(linux-kvm), bug 1834943 (linux-oracle), bug 1834944 (linux-fips), bug 1836172 
(linux-oem), bug 1836925 (linux-ibm-gt)

  -- swm properties --
  associated-bugs:
bionic:linux-aws: bug 1834930
bionic:linux-fips: bug 1834944
bionic:linux-gcp: bug 1834936
bionic:linux-gke-4.15: 

[Kernel-packages] [Bug 1826125] Re: Dell XPS 13 9380 flickering (Whiskey Lake)

2019-07-19 Thread Daniel C
Hi Thomas, that sounds very similar to what we are seeing over in bug
1827790.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1826125

Title:
  Dell XPS 13 9380 flickering  (Whiskey Lake)

Status in Linux:
  Incomplete
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  A brand new Dell XPS 13 9380 preinstalled with Ubuntu 18.04 flickers
  to the point of being totally unusable.

  I have upgraded since to 18.10 and 19.04 with no changes. I have tried
  several combinations of the i915 parameters fastboot, enable_rc6 and
  enable_fbc to no avail.

  Examples of flickering are here:
  https://photos.app.goo.gl/1PkL2HrjMBP41aML9
  https://photos.app.goo.gl/CMzmMwrCPH5wh8aw6
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  gdm1430 F pulseaudio
  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-bionic-amd64-20180608-47+italia-whl+X31
  DistroRelease: Ubuntu 19.04
  InstallationDate: Installed on 2019-04-13 (10 days ago)
  InstallationMedia: Ubuntu 18.04 "Bionic" - Build amd64 LIVE Binary 
20180608-09:38
  MachineType: Dell Inc. XPS 13 9380
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-1035-oem 
root=UUID=252898e9-6e96-4705-a709-2db930b7c4c7 ro quiet splash i915.fastboot=1 
i915.enable_rc6=0 vt.handoff=1
  ProcVersionSignature: Ubuntu 4.15.0-1035.40-oem 4.15.18
  PulseList:
   Error: command ['pacmd', 'list'] failed with exit code 1: Home directory not 
accessible: Permission denied
   No PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.15.0-1035-oem N/A
   linux-backports-modules-4.15.0-1035-oem  N/A
   linux-firmware   1.178
  Tags:  disco
  Uname: Linux 4.15.0-1035-oem x86_64
  UpgradeStatus: Upgraded to disco on 2019-04-24 (0 days ago)
  UserGroups:
   
  _MarkForUpload: True
  dmi.bios.date: 02/14/2019
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.2.1
  dmi.board.name: 0KTW76
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.2.1:bd02/14/2019:svnDellInc.:pnXPS139380:pvr:rvnDellInc.:rn0KTW76:rvrA00:cvnDellInc.:ct10:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 13 9380
  dmi.sys.vendor: Dell Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834476] Re: Add nvidia-418 dkms build support to disco

2019-07-19 Thread Seth Forshee
Confirmed that the nvidia-418 lrm packages were built, install fine, and
load as expected when signed module enforcement is in effect. I lack
hardware to test whether the module works as expected with supported
hardware, but that is really beyond the scope of this bug anyway.

Also confirmed the same set of functionality with the nvidia-390 module
to confirm regressions were not introduced there.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-restricted-modules in Ubuntu.
https://bugs.launchpad.net/bugs/1834476

Title:
  Add nvidia-418 dkms build support to disco

Status in linux package in Ubuntu:
  Fix Committed
Status in linux-restricted-modules package in Ubuntu:
  Fix Committed
Status in linux source package in Disco:
  Fix Committed
Status in linux-restricted-modules source package in Disco:
  Fix Committed

Bug description:
  SRU Justification

  Impact: The nvidia-graphics-drivers-418 package landed in disco
  shortly before release and was not included in linux-restricted-
  modules, though it is wanted there.

  Fix: Update the linux and linux-restricted-modules packages to include
  nvidia-graphics-drivers-418.

  Test Case: Confirm that binary packages for nvidia-418 are built and
  function as expected, and confirm that nvidia-390 continue to work as
  before. A test build is available in ppa:sforshee/test-builds.

  Regression Potential: The nvidia-418 packages are new binary packages
  which must be installed by the user, so they cannot cause regressions.
  There is a risk of inadvertent errors affecting the nvidia-390
  packages, however regression testing has turned up no such
  regressions.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834476] Re: Add nvidia-418 dkms build support to disco

2019-07-19 Thread Seth Forshee
** Tags removed: verification-needed-disco
** Tags added: verification-done-disco

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-restricted-modules in Ubuntu.
https://bugs.launchpad.net/bugs/1834476

Title:
  Add nvidia-418 dkms build support to disco

Status in linux package in Ubuntu:
  Fix Committed
Status in linux-restricted-modules package in Ubuntu:
  Fix Committed
Status in linux source package in Disco:
  Fix Committed
Status in linux-restricted-modules source package in Disco:
  Fix Committed

Bug description:
  SRU Justification

  Impact: The nvidia-graphics-drivers-418 package landed in disco
  shortly before release and was not included in linux-restricted-
  modules, though it is wanted there.

  Fix: Update the linux and linux-restricted-modules packages to include
  nvidia-graphics-drivers-418.

  Test Case: Confirm that binary packages for nvidia-418 are built and
  function as expected, and confirm that nvidia-390 continue to work as
  before. A test build is available in ppa:sforshee/test-builds.

  Regression Potential: The nvidia-418 packages are new binary packages
  which must be installed by the user, so they cannot cause regressions.
  There is a risk of inadvertent errors affecting the nvidia-390
  packages, however regression testing has turned up no such
  regressions.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837223] Re: shiftfs: add O_DIRECT support

2019-07-19 Thread Christian Brauner
** Changed in: linux (Ubuntu)
   Status: Confirmed => In Progress

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837223

Title:
  shiftfs: add O_DIRECT support

Status in linux package in Ubuntu:
  In Progress

Bug description:
  SRU Justification

  Impact: Currently shiftfs does not handle O_DIRECT if the underlay
  supports it. This is blocking dqlite - an essential part of LXD - from
  profiting from the performance benefits of O_DIRECT on suitable
  filesystems when used with async io such as aio or io_uring.

  Regression Potential: Limited to shiftfs and virtually none since we
  have not supported this feature before.

  Test Case: Run LXD with dqlite on a kernel that has support for
  shiftfs with O_DIRECT.

  Target Kernels: All LTS kernels with shiftfs support.

  Patches:
  https://github.com/brauner/ubuntu-disco/tree/shiftfs_direct_io

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1826125] Re: Dell XPS 13 9380 flickering (Whiskey Lake)

2019-07-19 Thread Thomas SIMON
Hello, I would like to note that I think that I also have something
related to this bug - although with the normal 1920x1024 panel (on XPS
13 9380) with a fresh Ubuntu 19.04 install (so kernel 5+) - I did not
test the OEM Ubuntu 18.04 LTS.

The screen "flickers" from time to time (perhaps linked to refresh?)
barely noticeable during the day but a lot more often at night with
redshift / gnome night light enabled.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1826125

Title:
  Dell XPS 13 9380 flickering  (Whiskey Lake)

Status in Linux:
  Incomplete
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  A brand new Dell XPS 13 9380 preinstalled with Ubuntu 18.04 flickers
  to the point of being totally unusable.

  I have upgraded since to 18.10 and 19.04 with no changes. I have tried
  several combinations of the i915 parameters fastboot, enable_rc6 and
  enable_fbc to no avail.

  Examples of flickering are here:
  https://photos.app.goo.gl/1PkL2HrjMBP41aML9
  https://photos.app.goo.gl/CMzmMwrCPH5wh8aw6
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  gdm1430 F pulseaudio
  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-bionic-amd64-20180608-47+italia-whl+X31
  DistroRelease: Ubuntu 19.04
  InstallationDate: Installed on 2019-04-13 (10 days ago)
  InstallationMedia: Ubuntu 18.04 "Bionic" - Build amd64 LIVE Binary 
20180608-09:38
  MachineType: Dell Inc. XPS 13 9380
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-1035-oem 
root=UUID=252898e9-6e96-4705-a709-2db930b7c4c7 ro quiet splash i915.fastboot=1 
i915.enable_rc6=0 vt.handoff=1
  ProcVersionSignature: Ubuntu 4.15.0-1035.40-oem 4.15.18
  PulseList:
   Error: command ['pacmd', 'list'] failed with exit code 1: Home directory not 
accessible: Permission denied
   No PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.15.0-1035-oem N/A
   linux-backports-modules-4.15.0-1035-oem  N/A
   linux-firmware   1.178
  Tags:  disco
  Uname: Linux 4.15.0-1035-oem x86_64
  UpgradeStatus: Upgraded to disco on 2019-04-24 (0 days ago)
  UserGroups:
   
  _MarkForUpload: True
  dmi.bios.date: 02/14/2019
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.2.1
  dmi.board.name: 0KTW76
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.2.1:bd02/14/2019:svnDellInc.:pnXPS139380:pvr:rvnDellInc.:rn0KTW76:rvrA00:cvnDellInc.:ct10:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 13 9380
  dmi.sys.vendor: Dell Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1820530] Re: Add arm64 CONFIG_ARCH_MESON=y and related configs Edit

2019-07-19 Thread Paolo Pisati
** Description changed:

+ Impact:
+ 
+ Enable ARCH_MESON for arm64 as we already do in armhf.
+ 
+ Fix:
+ 
+ Apply the attached patches.
+ 
+ How to test:
+ 
+ Boot the patched kernel on a support MESON board.
+ 
+ Regression potential:
+ 
+ Low - the patch is enabling an architecture alreay enabled in upstream
+ defconfig for a while.
+ 
+ --
+ 
+ 
  Hi,
  
  Could CONFIG_ARCH_MESON=y and related configs be enabled like the armhf 
counterpart ?
  This will follow the debian kernel config.
  
  Here is the list of config that should be enabled to have optimal platform 
support:
  CONFIG_ARCH_MESON=y
  CONFIG_MESON_SM=y
  CONFIG_DWMAC_MESON=m
  CONFIG_MESON_GXL_PHY=m
  CONFIG_SERIAL_MESON=y
  CONFIG_SERIAL_MESON_CONSOLE=y
  CONFIG_HW_RANDOM_MESON=m
  CONFIG_I2C_MESON=m
  CONFIG_SPI_MESON_SPICC=m
  CONFIG_SPI_MESON_SPIFC=m
  CONFIG_PINCTRL_MESON=y
  CONFIG_PINCTRL_MESON_GXBB=y
  CONFIG_PINCTRL_MESON_GXL=y
  CONFIG_PINCTRL_MESON_AXG=y
  CONFIG_PINCTRL_MESON_AXG_PMX=y
  CONFIG_PINCTRL_MESON_G12A=y
  CONFIG_MESON_GXBB_WATCHDOG=m
  CONFIG_IR_MESON=m
  CONFIG_VIDEO_MESON_AO_CEC=m
  CONFIG_DRM_MESON=m
  CONFIG_DRM_MESON_DW_HDMI=m
  CONFIG_MMC_MESON_GX=m
  CONFIG_MESON_CANVAS=m
  CONFIG_MESON_GX_SOCINFO=y
  CONFIG_MESON_GX_PM_DOMAINS=y
  CONFIG_MESON_SARADC=m
  CONFIG_PWM_MESON=m
  CONFIG_MESON_IRQ_GPIO=y
  CONFIG_RESET_MESON=m
  CONFIG_PHY_MESON_GXL_USB2=m
  CONFIG_PHY_MESON_GXL_USB3=m

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1820530

Title:
  Add arm64 CONFIG_ARCH_MESON=y and related configs Edit

Status in linux package in Ubuntu:
  Expired

Bug description:
  Impact:

  Enable ARCH_MESON for arm64 as we already do in armhf.

  Fix:

  Apply the attached patches.

  How to test:

  Boot the patched kernel on a support MESON board.

  Regression potential:

  Low - the patch is enabling an architecture alreay enabled in upstream
  defconfig for a while.

  --

  
  Hi,

  Could CONFIG_ARCH_MESON=y and related configs be enabled like the armhf 
counterpart ?
  This will follow the debian kernel config.

  Here is the list of config that should be enabled to have optimal platform 
support:
  CONFIG_ARCH_MESON=y
  CONFIG_MESON_SM=y
  CONFIG_DWMAC_MESON=m
  CONFIG_MESON_GXL_PHY=m
  CONFIG_SERIAL_MESON=y
  CONFIG_SERIAL_MESON_CONSOLE=y
  CONFIG_HW_RANDOM_MESON=m
  CONFIG_I2C_MESON=m
  CONFIG_SPI_MESON_SPICC=m
  CONFIG_SPI_MESON_SPIFC=m
  CONFIG_PINCTRL_MESON=y
  CONFIG_PINCTRL_MESON_GXBB=y
  CONFIG_PINCTRL_MESON_GXL=y
  CONFIG_PINCTRL_MESON_AXG=y
  CONFIG_PINCTRL_MESON_AXG_PMX=y
  CONFIG_PINCTRL_MESON_G12A=y
  CONFIG_MESON_GXBB_WATCHDOG=m
  CONFIG_IR_MESON=m
  CONFIG_VIDEO_MESON_AO_CEC=m
  CONFIG_DRM_MESON=m
  CONFIG_DRM_MESON_DW_HDMI=m
  CONFIG_MMC_MESON_GX=m
  CONFIG_MESON_CANVAS=m
  CONFIG_MESON_GX_SOCINFO=y
  CONFIG_MESON_GX_PM_DOMAINS=y
  CONFIG_MESON_SARADC=m
  CONFIG_PWM_MESON=m
  CONFIG_MESON_IRQ_GPIO=y
  CONFIG_RESET_MESON=m
  CONFIG_PHY_MESON_GXL_USB2=m
  CONFIG_PHY_MESON_GXL_USB3=m

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837209] Re: Splash screen fails to display on recent pi core18 images

2019-07-19 Thread Dave Jones
Tested Oliver's suggestion and indeed it does work if the overlay is
removed but I assume that the overlay is there for a reason.
Furthermore, extracting the psplash binary from the psplash initrd and
running it after boot has concluded (at which point /dev/fb0 exists)
works successfully which suggests there's no issue with the framebuffer
itself, just that the framebuffer doesn't exist (presumably due to the
aforementioned lack of kernel modules in the initrd) at the (very early)
point in the boot where psplash is executed.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1837209

Title:
  Splash screen fails to display on recent pi core18 images

Status in Snappy:
  New
Status in linux-raspi2 package in Ubuntu:
  New

Bug description:
  The current core18 image [1] for the raspberry pi fails to display the
  "Core" splash screen on boot. This is because psplash fails to open
  the /dev/fb0 framebuffer device, because it doesn't exist. This
  appears to be due to a lack of supporting kernel modules in the
  initrd.img (fb_sys_fops, drm, vc4, etc.) which were formerly present
  but are missing from the version I'm testing (pi-kernel
  4.15.0-1041.44, snap rev 42).

  Steps to reproduce:

  * Flash the image to a uSD card and boot the pi with it (preferably with a 
serial console attached).
  * Note screen remains black instead of displaying the familiar "Core" text 
under an Ubuntu logo.
  * If serial console is attached, note "Error opening /dev/fb0" in the output 
shortly after u-boot starts the kernel; this is output from psplash failing

  [1] http://cdimage.ubuntu.com/ubuntu-core/18/current/ubuntu-
  core-18-armhf+raspi3.img.xz

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Kernel-packages] [Bug 1835939] Re: The 18.04 linux kernel hangs and crashes when shutting down a Windows 10 instance running under vmware

2019-07-19 Thread Scott
/There's a surprising number of crashes reported to the error tracker -- 
I wonder if your hardware is entirely stable? Have you run memtest86 or 
memtest86+ recently? Is there anything in your smartctl output that 
would indicate drive problems?/

I've run memtest86+ for 3.5 hours (2+ complete passes) with no errors.
I've run the smartctl long test and two short tests with no errors.

However, due to a power failure during an upgrade, I've had to reinstall
the OS.  So far I haven't had any of the non-system (application)
crashes.  I haven't reinstalled vmware yet but will probably do that
today.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1835939

Title:
  The 18.04 linux kernel hangs and crashes when shutting down a Windows
  10 instance running under vmware

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  This is the second crash and the second time that I have reported this
  problem.  I apologize but I forgot to make a note of the bug number
  and can't seem to find it.

  My whoopsie number is

  
02aff7e0e154c826180cb958966df0a740c15d05305d3d9b6520f8fae51f25680fa7831afada8c542654d752a069fc813fcb29567e21d3c0f9b84d2a0147fdf3b

  I ran the "ubuntu-bug linux" command to send configuration
  information.  If I need to do something else, please let me know.

  VMware Workstation 15.1.0 build-13591040

  I have had the system hand once using Oracle's Virtual Box (i.e.
  exiting from Windows) but there was no crash.

  Let me know what other information I need to give you.

  Thanks.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-54-generic 4.15.0-54.58
  ProcVersionSignature: Ubuntu 4.15.0-54.58-generic 4.15.18
  Uname: Linux 4.15.0-54-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  butler 3213 F pulseaudio
   /dev/snd/controlC1:  butler 3213 F pulseaudio
   /dev/snd/controlC0:  butler 3213 F pulseaudio
  CurrentDesktop: communitheme:ubuntu:GNOME
  Date: Tue Jul  9 14:05:40 2019
  HibernationDevice: RESUME=UUID=81a753c1-bc6b-4040-8aff-c2495d989ba3
  InstallationDate: Installed on 2018-06-16 (387 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  MachineType: ASUSTeK COMPUTER INC. CM6870
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-54-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash crashkernel=512M-:192M 
vt.handoff=1
  RelatedPackageVersions:
   linux-restricted-modules-4.15.0-54-generic N/A
   linux-backports-modules-4.15.0-54-generic  N/A
   linux-firmware 1.173.8
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/25/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0708
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: CM6870
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0708:bd12/25/2012:svnASUSTeKCOMPUTERINC.:pnCM6870:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnCM6870:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: Desktop
  dmi.product.name: CM6870
  dmi.product.version: System Version
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837223] [NEW] shiftfs: add O_DIRECT support

2019-07-19 Thread Christian Brauner
Public bug reported:

SRU Justification

Impact: Currently shiftfs does not handle O_DIRECT if the underlay
supports it. This is blocking dqlite - an essential part of LXD - from
profiting from the performance benefits of O_DIRECT on suitable
filesystems when used with async io such as aio or io_uring.

Regression Potential: Limited to shiftfs and virtually none since we
have not supported this feature before.

Test Case: Run LXD with dqlite on a kernel that has support for shiftfs
with O_DIRECT.

Target Kernels: All LTS kernels with shiftfs support.

Patches:
https://github.com/brauner/ubuntu-disco/tree/shiftfs_direct_io

** Affects: linux (Ubuntu)
 Importance: Undecided
 Assignee: Christian Brauner (cbrauner)
 Status: Confirmed

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

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => Christian Brauner (cbrauner)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837223

Title:
  shiftfs: add O_DIRECT support

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  SRU Justification

  Impact: Currently shiftfs does not handle O_DIRECT if the underlay
  supports it. This is blocking dqlite - an essential part of LXD - from
  profiting from the performance benefits of O_DIRECT on suitable
  filesystems when used with async io such as aio or io_uring.

  Regression Potential: Limited to shiftfs and virtually none since we
  have not supported this feature before.

  Test Case: Run LXD with dqlite on a kernel that has support for
  shiftfs with O_DIRECT.

  Target Kernels: All LTS kernels with shiftfs support.

  Patches:
  https://github.com/brauner/ubuntu-disco/tree/shiftfs_direct_io

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836880] Re: linux: 4.4.0-156.183 -proposed tracker

2019-07-19 Thread Canonical Certification Team
Kernel deb testing completes, no regressions found. Ready for Updates.
Results here: https://trello.com/c/H3F6ISiB/109-xenial-linux-
image-440-156-generic-440-156183

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1836880

Title:
  linux: 4.4.0-156.183 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Incomplete
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
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 will contain status and test results related to a kernel
  source (or snap) as stated in the title.

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

  backports: bug 1836879 (trusty/linux-lts-xenial)
  derivatives: bug 1834908 (linux-aws), bug 1834909 (linux-kvm), bug 1836874 
(pc-kernel), bug 1836876 (linux-raspi2), bug 1836878 (linux-snapdragon), bug 
1837155 (linux-fips)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Testing
  phase-changed: Thursday, 18. July 2019 16:13 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-testing: Stalled -- testing FAILED
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836880] Re: linux: 4.4.0-156.183 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1836879 (trusty/linux-lts-xenial)
  derivatives: bug 1834908 (linux-aws), bug 1834909 (linux-kvm), bug 1836874 
(pc-kernel), bug 1836876 (linux-raspi2), bug 1836878 (linux-snapdragon), bug 
1837155 (linux-fips)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Testing
  phase-changed: Thursday, 18. July 2019 16:13 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-testing: Stalled -- testing FAILED
-   certification-testing: Ongoing -- testing in progress
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1836880

Title:
  linux: 4.4.0-156.183 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Incomplete
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
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 will contain status and test results related to a kernel
  source (or snap) as stated in the title.

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

  backports: bug 1836879 (trusty/linux-lts-xenial)
  derivatives: bug 1834908 (linux-aws), bug 1834909 (linux-kvm), bug 1836874 
(pc-kernel), bug 1836876 (linux-raspi2), bug 1836878 (linux-snapdragon), bug 
1837155 (linux-fips)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Testing
  phase-changed: Thursday, 18. July 2019 16:13 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
automated-testing: Stalled -- testing FAILED
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1725382] Re: unprivileged fuse mounts feature into the upstream kernel

2019-07-19 Thread Christian Brauner
** Changed in: linux (Ubuntu)
   Status: Triaged => Fix Released

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1725382

Title:
  unprivileged fuse mounts feature into the upstream kernel

Status in linux package in Ubuntu:
  Fix Released

Bug description:
  https://github.com/lxc/lxc/issues/1867
  As of issue about Debian 9, Christian Brauner concluded

  "unprivileged fuse mounts is a feature available in the Ubuntu kernel
  only atm. We are actively working on pushing this into the upstream
  kernel though"

  Please, conclude this issue when it's done.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1831846] Re: [raven] fix screen corruption on modprobe

2019-07-19 Thread Kleber Sacilotto de Souza
** Tags removed: verification-needed-disco
** Tags added: verification-done-disco

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1831846

Title:
  [raven] fix screen corruption on modprobe

Status in linux package in Ubuntu:
  Incomplete
Status in linux-oem-osp1 package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Invalid
Status in linux-oem-osp1 source package in Bionic:
  New
Status in linux source package in Disco:
  Fix Committed
Status in linux-oem-osp1 source package in Disco:
  Invalid

Bug description:
  [Impact]
  These patches (or a squashed commit) are needed to fix screen corruption 
during modprobe on raven:

  02122753f1 drm/amdgpu: reserve stollen vram for raven series
  379109351f drm/amdgpu: keep stolen memory on picasso

  [Test case]

  test modprobe on affected hw

  [Regression potential]

  shouldn't be any

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836876] Re: linux-raspi2: 4.4.0-1116.125 -proposed tracker

2019-07-19 Thread Taihsiang Ho
Hardware Certification have begun testing this -proposed kernel.

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

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1836876

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

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
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 will contain status and test results related to a kernel
  source (or snap) as stated in the title.

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

  derivatives: bug 1836875 (pi2-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Ready for Testing
  phase-changed: Friday, 19. July 2019 09:11 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834925] Re: linux-snapdragon: 4.15.0-1058.64 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1834924 (dragonboard-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
- phase: Ready for Testing
- phase-changed: Thursday, 18. July 2019 12:36 UTC
+ phase: Testing
+ phase-changed: Friday, 19. July 2019 13:30 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-snapdragon in Ubuntu.
https://bugs.launchpad.net/bugs/1834925

Title:
  linux-snapdragon: 4.15.0-1058.64 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  In Progress
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-snapdragon package in Ubuntu:
  Invalid
Status in linux-snapdragon source package in Bionic:
  Confirmed

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

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

  derivatives: bug 1834924 (dragonboard-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Testing
  phase-changed: Friday, 19. July 2019 13:30 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836876] Re: linux-raspi2: 4.4.0-1116.125 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1836875 (pi2-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Ready for Testing
  phase-changed: Friday, 19. July 2019 09:11 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1836876

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

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
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 will contain status and test results related to a kernel
  source (or snap) as stated in the title.

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

  derivatives: bug 1836875 (pi2-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Ready for Testing
  phase-changed: Friday, 19. July 2019 09:11 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836876] Re: linux-raspi2: 4.4.0-1116.125 -proposed tracker

2019-07-19 Thread Taihsiang Ho
Hardware Certification have completed testing this -proposed kernel. No
regressions were observed, results are available here:
http://people.canonical.com/~hwcert/sru-
testing/raspi2/4.4.0-1116.125/raspi2-4.4-proposed-published.html

** Tags added: certification-testing-passed

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1836876

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

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
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 will contain status and test results related to a kernel
  source (or snap) as stated in the title.

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

  derivatives: bug 1836875 (pi2-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Ready for Testing
  phase-changed: Friday, 19. July 2019 09:11 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836878] Re: linux-snapdragon: 4.4.0-1120.126 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1836877 (dragonboard-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
- phase: Ready for Testing
- phase-changed: Friday, 19. July 2019 09:11 UTC
+ phase: Testing
+ phase-changed: Friday, 19. July 2019 13:30 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-snapdragon in Ubuntu.
https://bugs.launchpad.net/bugs/1836878

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

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  In Progress
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
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 will contain status and test results related to a kernel
  source (or snap) as stated in the title.

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

  derivatives: bug 1836877 (dragonboard-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Testing
  phase-changed: Friday, 19. July 2019 13:30 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834925] Re: linux-snapdragon: 4.15.0-1058.64 -proposed tracker

2019-07-19 Thread Taihsiang Ho
Hardware Certification have begun testing this -proposed kernel.

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

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-snapdragon in Ubuntu.
https://bugs.launchpad.net/bugs/1834925

Title:
  linux-snapdragon: 4.15.0-1058.64 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  In Progress
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-snapdragon package in Ubuntu:
  Invalid
Status in linux-snapdragon source package in Bionic:
  Confirmed

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

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

  derivatives: bug 1834924 (dragonboard-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Testing
  phase-changed: Friday, 19. July 2019 13:30 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1814473] Missing required logs.

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

apport-collect 1814473

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 Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1814473

Title:
  latest systemd, network-manager, kernel updates killed networking

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Latest network-manager, systemd, kernel-updates killed ethernet
  networking. It is impossible to have an address assigned.

  I can make sure hardware is ok, by booting into SystemRescueCD.
  Ethernet immediately is up and working. As soon as I boot into Ubuntu
  18.10 networking with ethernet stops working at all. Even trying to
  set it up manually using "ip" or "ifconfig" does not help. Modules
  seem loaded, but not functional.

  Unsure if it is kernel, systemd, or network-manager related.

  From network-manager I can activate WLAN. Thus in my humble opinion
  the driver or firmware was killed by installing the latest updates.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: network-manager 1.12.4-1ubuntu1.2
  ProcVersionSignature: Ubuntu 4.18.0-13.14-generic 4.18.17
  Uname: Linux 4.18.0-13-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13.2
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sun Feb  3 21:52:57 2019
  IfupdownConfig:
   # Local loopback
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2011-10-19 (2664 days ago)
  InstallationMedia: Xubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012)
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to cosmic on 2018-11-03 (92 days ago)
  mtime.conffile..etc.init.network-manager.conf: 2013-03-04T17:15:37.443693
  nmcli-nm:
   RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  
WIFI WWAN-HW  WWAN
   running  1.12.4   connected  started  full  enabled enabled  
enabled  enabled  enabled

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836878] Re: linux-snapdragon: 4.4.0-1120.126 -proposed tracker

2019-07-19 Thread Taihsiang Ho
Hardware Certification have begun testing this -proposed kernel.

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

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-snapdragon in Ubuntu.
https://bugs.launchpad.net/bugs/1836878

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

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  In Progress
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
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 will contain status and test results related to a kernel
  source (or snap) as stated in the title.

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

  derivatives: bug 1836877 (dragonboard-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Testing
  phase-changed: Friday, 19. July 2019 13:30 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1826251] Re: package linux-image-3.13.0-32-generic 3.13.0-32.57 failed to install/upgrade: subprocess installed post-installation script returned error exit status 17

2019-07-19 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1826251

Title:
  package linux-image-3.13.0-32-generic 3.13.0-32.57 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 17

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  update-apt-xapian-index is stopped.

  cant open terminal

  cant install software

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-32-generic 3.13.0-32.57
  ProcVersionSignature: Ubuntu 3.13.0-168.218-generic 3.13.11-ckt39
  Uname: Linux 3.13.0-168-generic i686
  ApportVersion: 2.14.1-0ubuntu3.29
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  osu1   1834 F pulseaudio
   /dev/snd/controlC0:  osu1   1834 F pulseaudio
   /dev/snd/controlC1:  osu1   1834 F pulseaudio
  Date: Wed Apr 24 18:22:56 2019
  DuplicateSignature: 
package:linux-image-3.13.0-32-generic:3.13.0-32.57:subprocess installed 
post-installation script returned error exit status 17
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 17
  HibernationDevice: RESUME=UUID=75318375-ce90-4a40-a1e2-a8e8bb70d484
  InstallationDate: Installed on 2019-04-24 (0 days ago)
  InstallationMedia: Ubuntu 12.04.5 LTS "Precise Pangolin" - Release i386 
(20140807.1)
  MachineType: LENOVO 20AUS1VP00
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-168-generic 
root=UUID=88532563-cc0c-47a1-9eb3-f7332c730ddf ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc 2.02~beta2-9ubuntu1.17
  SourcePackage: linux
  Title: package linux-image-3.13.0-32-generic 3.13.0-32.57 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 17
  UpgradeStatus: Upgraded to trusty on 2019-04-24 (0 days ago)
  dmi.bios.date: 09/21/2016
  dmi.bios.vendor: LENOVO
  dmi.bios.version: J4ET87WW(1.87)
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20AUS1VP00
  dmi.board.vendor: LENOVO
  dmi.board.version: NO DPK
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvrJ4ET87WW(1.87):bd09/21/2016:svnLENOVO:pn20AUS1VP00:pvrThinkPadL540:rvnLENOVO:rn20AUS1VP00:rvrNODPK:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 20AUS1VP00
  dmi.product.version: ThinkPad L540
  dmi.sys.vendor: LENOVO

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837155] Re: linux-fips: 4.4.0-1015.20 -proposed tracker

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

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

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

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

** Tags added: block-proposed-xenial

** Tags added: block-proposed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
+ boot-testing-requested: true
  kernel-stable-master-bug: 1836880
- phase: Packaging
- phase-changed: Thursday, 18. July 2019 22:28 UTC
+ phase: Ready for Promote to Proposed
+ phase-changed: Friday, 19. July 2019 13:15 UTC
  reason:
-   prepare-package: Pending -- package tag not yet published
-   prepare-package-meta: Pending -- package tag not yet published
-   prepare-package-signed: Pending -- package tag not yet published
-   promote-to-proposed: Pending -- source package tags missing
+   promote-to-proposed: Pending -- ready for review
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837155

Title:
  linux-fips: 4.4.0-1015.20 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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-signing-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  Confirmed
Status in Kernel SRU Workflow promote-to-security series:
  Invalid
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Xenial:
  Invalid

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

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

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1836880
  phase: Ready for Promote to Proposed
  phase-changed: Friday, 19. July 2019 13:15 UTC
  reason:
promote-to-proposed: Pending -- ready for review
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1814473] Re: latest systemd, network-manager, kernel updates killed networking

2019-07-19 Thread Till Kamppeter
As manual setup of networking also does not work it looks more like a
kernel problem, moving ...

** Package changed: network-manager (Ubuntu) => linux (Ubuntu)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1814473

Title:
  latest systemd, network-manager, kernel updates killed networking

Status in linux package in Ubuntu:
  New

Bug description:
  Latest network-manager, systemd, kernel-updates killed ethernet
  networking. It is impossible to have an address assigned.

  I can make sure hardware is ok, by booting into SystemRescueCD.
  Ethernet immediately is up and working. As soon as I boot into Ubuntu
  18.10 networking with ethernet stops working at all. Even trying to
  set it up manually using "ip" or "ifconfig" does not help. Modules
  seem loaded, but not functional.

  Unsure if it is kernel, systemd, or network-manager related.

  From network-manager I can activate WLAN. Thus in my humble opinion
  the driver or firmware was killed by installing the latest updates.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: network-manager 1.12.4-1ubuntu1.2
  ProcVersionSignature: Ubuntu 4.18.0-13.14-generic 4.18.17
  Uname: Linux 4.18.0-13-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13.2
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sun Feb  3 21:52:57 2019
  IfupdownConfig:
   # Local loopback
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2011-10-19 (2664 days ago)
  InstallationMedia: Xubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012)
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to cosmic on 2018-11-03 (92 days ago)
  mtime.conffile..etc.init.network-manager.conf: 2013-03-04T17:15:37.443693
  nmcli-nm:
   RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  
WIFI WWAN-HW  WWAN
   running  1.12.4   connected  started  full  enabled enabled  
enabled  enabled  enabled

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1814473] [NEW] latest systemd, network-manager, kernel updates killed networking

2019-07-19 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Latest network-manager, systemd, kernel-updates killed ethernet
networking. It is impossible to have an address assigned.

I can make sure hardware is ok, by booting into SystemRescueCD. Ethernet
immediately is up and working. As soon as I boot into Ubuntu 18.10
networking with ethernet stops working at all. Even trying to set it up
manually using "ip" or "ifconfig" does not help. Modules seem loaded,
but not functional.

Unsure if it is kernel, systemd, or network-manager related.

>From network-manager I can activate WLAN. Thus in my humble opinion the
driver or firmware was killed by installing the latest updates.

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: network-manager 1.12.4-1ubuntu1.2
ProcVersionSignature: Ubuntu 4.18.0-13.14-generic 4.18.17
Uname: Linux 4.18.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu13.2
Architecture: amd64
CurrentDesktop: XFCE
Date: Sun Feb  3 21:52:57 2019
IfupdownConfig:
 # Local loopback
 auto lo
 iface lo inet loopback
InstallationDate: Installed on 2011-10-19 (2664 days ago)
InstallationMedia: Xubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012)
NetworkManager.state:
 [main]
 NetworkingEnabled=true
 WirelessEnabled=true
 WWANEnabled=true
SourcePackage: network-manager
UpgradeStatus: Upgraded to cosmic on 2018-11-03 (92 days ago)
mtime.conffile..etc.init.network-manager.conf: 2013-03-04T17:15:37.443693
nmcli-nm:
 RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  WIFI  
   WWAN-HW  WWAN
 running  1.12.4   connected  started  full  enabled enabled  
enabled  enabled  enabled

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


** Tags: amd64 apport-bug cosmic
-- 
latest systemd, network-manager, kernel updates killed networking
https://bugs.launchpad.net/bugs/1814473
You received this bug notification because you are a member of Kernel Packages, 
which is subscribed to linux in Ubuntu.

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834235] Re: Request backport of ceph commits into bionic

2019-07-19 Thread Kleber Sacilotto de Souza
Verified by the customer to fix the issue.

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834235

Title:
  Request backport of ceph commits into bionic

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Bionic:
  Fix Committed

Bug description:
  [Impact]

  Deadlock may occur if iput_final() decides to wait for readahead pages
  while a lock is held.

  In order to resolve this, the following two patches install an
  asynchronous "iput" for the ceph inodes so that a hold-and-wait deadlock
  doesn't occur. A more detailed example is shown in the original patch:
  
https://github.com/ceph/ceph-client/commit/093ea205acd4b047cf5aacabc0c6ffecf198d2a9

  Requested patches:

  3e1d0452edcee ceph: avoid iput_final() while holding mutex or in dispatch 
thread
  1cf89a8dee5e6 ceph: single workqueue for inode related works

  [Test Case]

  These changes were tested by the original requester with positive
  results over a few days in their own environment where they first
  experienced the regression. They have determined they are no longer
  experiencing the regression with this patch set applied to a test
  kernel.

  [Regression Potential]

  Several patches were required in order to cleanly cherry pick the
  requested patches. A large number of changes increases the regression
  potential, however, these pre-requisite patches have been in mainline
  since early 2018 and the blast radius is localized only to ceph.


  Original bug description follows:
  
  Our internal cluster has run into a few ceph client related issues, which 
were root caused to be resolved by the following commits:
  
https://github.com/ceph/ceph-client/commit/f42a774a2123e6b29bb0ca296e166d0f089e9113
  
https://github.com/ceph/ceph-client/commit/093ea205acd4b047cf5aacabc0c6ffecf198d2a9
  Can you please backport these into bionic?

  3e1d0452edcee ceph: avoid iput_final() while holding mutex or in dispatch 
thread
  1cf89a8dee5e6 ceph: single workqueue for inode related works

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837073] Re: linux 5.2.0-8.9 disabled backlight on s390x.

2019-07-19 Thread Paolo Pisati
Source package with fix in:
https://people.canonical.com/~ppisati/lp1837073/

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837073

Title:
  linux 5.2.0-8.9 disabled backlight on s390x.

Status in ddcci-driver-linux package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Looks like ddcci-driver-linux started to fail on s390x with the switch
  from kernel 5.0.0-21-generic to 5.2.0-8-generic

  http://autopkgtest.ubuntu.com/packages/d/ddcci-driver-linux/eoan/s390x


  According to changelog and diff:
  - [Config] CONFIG_BACKLIGHT_CLASS_DEVICE=n on s390x

  from Seth Forshee.

  According to the build log of ddci backlight

  rm: cannot remove '.tmp_versions/ddcci-backlight.mod': No such file or 
directory
  Makefile:227: = WARNING 
  Makefile:228: 'SUBDIRS' will be removed after Linux 5.3
  Makefile:229: Please use 'M=' or 'KBUILD_EXTMOD' instead
  Makefile:230: ==
  Makefile:227: = WARNING 
  Makefile:228: 'SUBDIRS' will be removed after Linux 5.3
  Makefile:229: Please use 'M=' or 'KBUILD_EXTMOD' instead
  Makefile:230: ==
  ERROR: "devm_backlight_device_register" 
[/var/lib/dkms/ddcci/0.3.2/build/ddcci-backlight/ddcci-backlight.ko] undefined!
  make[3]: *** [scripts/Makefile.modpost:91: __modpost] Error 1
  make[2]: *** [Makefile:1628: modules] Error 2
  make[1]: *** [Makefile:37: ddcci-backlight.ko] Error 2

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837073] Re: linux 5.2.0-8.9 disabled backlight on s390x.

2019-07-19 Thread Paolo Pisati
** Attachment added: "dcci-driver-linux_0.3.2-2_0.3.2-2ubuntu1.diff.gz"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1837073/+attachment/5278043/+files/dcci-driver-linux_0.3.2-2_0.3.2-2ubuntu1.diff.gz

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1837073

Title:
  linux 5.2.0-8.9 disabled backlight on s390x.

Status in ddcci-driver-linux package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Looks like ddcci-driver-linux started to fail on s390x with the switch
  from kernel 5.0.0-21-generic to 5.2.0-8-generic

  http://autopkgtest.ubuntu.com/packages/d/ddcci-driver-linux/eoan/s390x


  According to changelog and diff:
  - [Config] CONFIG_BACKLIGHT_CLASS_DEVICE=n on s390x

  from Seth Forshee.

  According to the build log of ddci backlight

  rm: cannot remove '.tmp_versions/ddcci-backlight.mod': No such file or 
directory
  Makefile:227: = WARNING 
  Makefile:228: 'SUBDIRS' will be removed after Linux 5.3
  Makefile:229: Please use 'M=' or 'KBUILD_EXTMOD' instead
  Makefile:230: ==
  Makefile:227: = WARNING 
  Makefile:228: 'SUBDIRS' will be removed after Linux 5.3
  Makefile:229: Please use 'M=' or 'KBUILD_EXTMOD' instead
  Makefile:230: ==
  ERROR: "devm_backlight_device_register" 
[/var/lib/dkms/ddcci/0.3.2/build/ddcci-backlight/ddcci-backlight.ko] undefined!
  make[3]: *** [scripts/Makefile.modpost:91: __modpost] Error 1
  make[2]: *** [Makefile:1628: modules] Error 2
  make[1]: *** [Makefile:37: ddcci-backlight.ko] Error 2

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1837209] Re: Splash screen fails to display on recent pi core18 images

2019-07-19 Thread Łukasz Zemczak
** Also affects: linux-raspi2 (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1837209

Title:
  Splash screen fails to display on recent pi core18 images

Status in Snappy:
  New
Status in linux-raspi2 package in Ubuntu:
  New

Bug description:
  The current core18 image [1] for the raspberry pi fails to display the
  "Core" splash screen on boot. This is because psplash fails to open
  the /dev/fb0 framebuffer device, because it doesn't exist. This
  appears to be due to a lack of supporting kernel modules in the
  initrd.img (fb_sys_fops, drm, vc4, etc.) which were formerly present
  but are missing from the version I'm testing (pi-kernel
  4.15.0-1041.44, snap rev 42).

  Steps to reproduce:

  * Flash the image to a uSD card and boot the pi with it (preferably with a 
serial console attached).
  * Note screen remains black instead of displaying the familiar "Core" text 
under an Ubuntu logo.
  * If serial console is attached, note "Error opening /dev/fb0" in the output 
shortly after u-boot starts the kernel; this is output from psplash failing

  [1] http://cdimage.ubuntu.com/ubuntu-core/18/current/ubuntu-
  core-18-armhf+raspi3.img.xz

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1828935] Re: Add powerpc/alignment_handler test for selftests

2019-07-19 Thread Kleber Sacilotto de Souza
Confirmed this testcase to be compiled and passing:

https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac
/autopkgtest-bionic/bionic/ppc64el/l/linux/20190718_125041_60017@/log.gz

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1828935

Title:
  Add powerpc/alignment_handler test for selftests

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Bionic:
  Fix Committed

Bug description:
  == Justification ==
  There is a powerpc/alignment_handler available in the upstream for PowerPC 
self-testing tool.
  Bring this in to cover more bits in the ubuntu_kernel_selftest test suite.

  == Fix ==
  * 8d191587 (selftests/powerpc: Add alignment handler selftest)
  * ecdf06e1 (selftests/powerpc: Fix to use ucontext_t instead of struct 
ucontext)

  Both of them can be cherry-picked into Bionic kernel.
  The second patch is essential to fix a build error.

  It's already available in Cosmic and onward.

  == Test ==
  Test was successfully built and passed on a Power9 node with Bionic kernel:
  selftests: alignment_handler
  
  test: test_alignment_handler_vsx_206
  tags: git_version:Ubuntu-4.15.0-48.51-2-g705784d93589-dirty
  VSX: 2.06B
Doing lxvd2x:   PASSED
Doing lxvw4x:   PASSED
Doing lxsdx:PASSED
Doing lxvdsx:   PASSED
Doing stxvd2x:  PASSED
Doing stxvw4x:  PASSED
Doing stxsdx:   PASSED
  success: test_alignment_handler_vsx_206
  test: test_alignment_handler_vsx_207
  tags: git_version:Ubuntu-4.15.0-48.51-2-g705784d93589-dirty
  VSX: 2.07B
Doing lxsspx:   PASSED
Doing lxsiwax:  PASSED
Doing lxsiwzx:  PASSED
Doing stxsspx:  PASSED
Doing stxsiwx:  PASSED
  success: test_alignment_handler_vsx_207
  test: test_alignment_handler_vsx_300
  tags: git_version:Ubuntu-4.15.0-48.51-2-g705784d93589-dirty
  VSX: 3.00B
Doing lxsd: PASSED
Doing lxsibzx:  PASSED
Doing lxsihzx:  PASSED
Doing lxssp:PASSED
Doing lxv:  PASSED
Doing lxvb16x:  PASSED
Doing lxvh8x:   PASSED
Doing lxvx: PASSED
Doing lxvwsx:   PASSED
Doing lxvl: PASSED
Doing lxvll:PASSED
Doing stxsd:PASSED
Doing stxsibx:  PASSED
Doing stxsihx:  PASSED
Doing stxssp:   PASSED
Doing stxv: PASSED
Doing stxvb16x: PASSED
Doing stxvh8x:  PASSED
Doing stxvx:PASSED
Doing stxvl:PASSED
Doing stxvll:   PASSED
  success: test_alignment_handler_vsx_300
  test: test_alignment_handler_integer
  tags: git_version:Ubuntu-4.15.0-48.51-2-g705784d93589-dirty
  Integer
Doing lbz:  PASSED
Doing lbzu: PASSED
Doing lbzx: PASSED
Doing lbzux:PASSED
Doing lhz:  PASSED
Doing lhzu: PASSED
Doing lhzx: PASSED
Doing lhzux:PASSED
Doing lha:  PASSED
Doing lhau: PASSED
Doing lhax: PASSED
Doing lhaux:PASSED
Doing lhbrx:PASSED
Doing lwz:  PASSED
Doing lwzu: PASSED
Doing lwzx: PASSED
Doing lwzux:PASSED
Doing lwa:  PASSED
Doing lwax: PASSED
Doing lwaux:PASSED
Doing lwbrx:PASSED
Doing ld:   PASSED
Doing ldu:  PASSED
Doing ldx:  PASSED
Doing ldux: PASSED
Doing ldbrx:PASSED
Doing lmw:  PASSED
Doing stb:  PASSED
Doing stbx: PASSED
Doing stbu: PASSED
Doing stbux:PASSED
Doing sth:  PASSED
Doing sthx: PASSED
Doing sthu: PASSED
Doing sthux:PASSED
Doing sthbrx:   PASSED
Doing stw:  PASSED
Doing stwx: PASSED
Doing stwu: PASSED
Doing stwux:PASSED
Doing stwbrx:   PASSED
Doing std:  PASSED
Doing stdx: PASSED
Doing stdu: PASSED
Doing stdux:PASSED
Doing stdbrx:   PASSED
Doing stmw: PASSED
  success: test_alignment_handler_integer
  test: test_alignment_handler_vmx
  tags: git_version:Ubuntu-4.15.0-48.51-2-g705784d93589-dirty
  VMX
Doing lvx:  PASSED
Doing stvx: PASSED
Doing stvebx:   PASSED
Doing stvehx:   PASSED
Doing stvewx:   PASSED
Doing stvxl:PASSED
  success: test_alignment_handler_vmx
  test: test_alignment_handler_fp
  tags: git_version:Ubuntu-4.15.0-48.51-2-g705784d93589-dirty
  Floating point
Doing lfd:  PASSED
Doing lfdx: PASSED
Doing lfdp: PASSED
Doing lfdpx:

[Kernel-packages] [Bug 1830433] Re: 32-bit x86 kernel 4.15.0-50 crash in vmalloc_sync_all

2019-07-19 Thread Kleber Sacilotto de Souza
** Tags removed: verification-needed-bionic
** Tags added: verification-done-bionic

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1830433

Title:
  32-bit x86 kernel 4.15.0-50 crash in vmalloc_sync_all

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Bionic:
  Fix Committed

Bug description:
  [Impact]

  Commit d653420532d580156c8486686899ea6a9eeb7bf0 in bionic enabled
  kernel page table isolation for x86_32, but also introduced a kernel
  bug (the BUG_ON() condition in vmalloc_sync_one()) that seems to
  happen when vmalloc_sync_all() is called multiple times (e.g., in a
  busy loop).

  The real problem seems to be a race condition with page-table entries'
  initialization that can be fixed applying the upstream commit
  9bc4f28af75a91aea0ae383f50b0a430c4509303 ("x86/mm: Use WRITE_ONCE()
  when setting PTEs").

  [Test Case]

  The bug can be easily triggered by rebooting the system a couple of
  times and loading this module:

  https://launchpadlibrarian.net/428142172/vmalloc-stress-test.c

  [Fix]

  The following upstream fix seems to resolve the problem:

  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=9bc4f28af75a91aea0ae383f50b0a430c4509303

  In addition to that the following other upstream fixes are required
  (all clean cherry picks) to do a cleaner backport of
  9bc4f28af75a91aea0ae383f50b0a430c4509303:

  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=86fa949b050184ffc53688516a6a83ae5f98d08a
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=792adb90fa724ce07c0171cbc96b9215af4b1045
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=5e0fb5df2ee871b841f96f9cb6a7f2784e96aa4e
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=785a19f9d1dd8a4ab2d0633be4656653bd3de1fc
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f967db0b9ed44ec3057a28f3b28efc51df51b835
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ba6f508d0ec4adb09f0a939af6d5e19cdfa8667d
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f77084d96355f5fba8e2c1fb3a51a393b1570de7

  [Regression Potential]

  All upstream fixes, tested on the affected platform, backport changes
  are minimal.

  [Original bug report]

  Hi,

  I'm reproducing a kernel bug in vmalloc_sync_all() with a 32-bit x86
  kernel.

  The problem appears in

  Linux ubuntu 4.15.0-50-generic #54-Ubuntu SMP Mon May 6 18:45:45 UTC
  2019 i686 i686 i686 GNU/Linux

  Kernels 4.15.0-49 and prior work fine.
  The kernel 4.18.0-20-generic works fine.
  This problem has not been experienced with upstream Linux kernels.

  It appears that invoking vmalloc_sync_all() a few times end up
  triggering this issue. This can be triggered by restarting the lttng-
  sessiond service with lttng-modules-dkms installed (sometimes a few
  restarts are needed to trigger the bug). This ends up unloading and
  reloading those modules, which issues a few vmalloc_sync_all() as
  side-effect.

  I'm not reporting this issue with the "ubuntu-bug linux" command
  because it crashes the system on that kernel (system hangs, no console
  output).

  My test system runs within a kvm virtual machine on a 64-bit host.

  lsb release:

  Description:  Ubuntu 18.04.2 LTS
  Release:  18.04

  Information about my kernel:

  linux-image-4.15.0-50-generic:
    Installed: 4.15.0-50.54
    Candidate: 4.15.0-50.54
    Version table:
   *** 4.15.0-50.54 500
  500 http://ca.archive.ubuntu.com/ubuntu bionic-updates/main i386 
Packages
  500 http://security.ubuntu.com/ubuntu bionic-security/main i386 
Packages
  100 /var/lib/dpkg/status

  Information about lttng-modules-dkms:

  lttng-modules-dkms:
    Installed: 2.10.5-1ubuntu1.2
    Candidate: 2.10.5-1ubuntu1.2
    Version table:
   *** 2.10.5-1ubuntu1.2 500
  500 http://ca.archive.ubuntu.com/ubuntu bionic-updates/universe i386 
Packages
  100 /var/lib/dpkg/status
   2.10.5-1ubuntu1 500
  500 http://ca.archive.ubuntu.com/ubuntu bionic/universe i386 Packages

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1833410] Re: idle-page oopses when accessing page frames that are out of range

2019-07-19 Thread Kleber Sacilotto de Souza
** Tags removed: verification-dneeded-bionic
** Tags added: verification-needed-bionic

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1833410

Title:
  idle-page oopses when accessing page frames that are out of range

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Xenial:
  Fix Committed
Status in linux source package in Bionic:
  Fix Committed
Status in linux source package in Cosmic:
  Fix Committed
Status in linux source package in Disco:
  Fix Committed

Bug description:
  == SRU [Xenial][Bionic][Cosmic][Disco] ==

  == Justification ==

  When accessing page frames that are greater than max_pfn using the
  idle-page sysfs interface an oops is triggered that kills the process
  that writes to the sysfs interface.

  == Fix ==

  Upstream fix currently in linux-next:

  https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-
  next.git/commit/mm/page_idle.c?id=d96d6145d9796d5f1eac242538d45559e9a23404

  This fixes the maximum pfn threshold allowed.

  == Test ==

  sudo stress-ng --idle-page 0

  this should trigger the oops in ~50% of the cases due to the way the
  threshold calculation in the kernel was handling the maximum threshold
  based on pfn alignments. 31 of 63 of the times it may be under the
  threshold so no oops occurs.  If it does not, increase or decrease the
  number of available pages in a system to trigger the sweet spot of the
  bug.

  == Regression Potential ==

  Minimal, this touches a sysfs kernel interface that is not used much.
  The fix narrows the scope of touching specific page frames, so the
  page frame scope is reduced by the fix.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834904] Re: linux: 4.18.0-26.27 -proposed tracker

2019-07-19 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/automated-testing
   Status: Incomplete => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1834880 (linux-raspi2), bug 1834883 (linux-aws), bug
  1834899 (linux-gcp), bug 1834901 (linux-kvm), bug 1835438 (linux-azure)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
- phase: Testing
- phase-changed: Friday, 12. July 2019 20:01 UTC
+ phase: Holding before Release
+ phase-changed: Friday, 19. July 2019 12:07 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   automated-testing: Stalled -- testing FAILED
+   promote-to-updates: Holding -- kernel-block/kernel-block-proposed tag 
present
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1834904

Title:
  linux: 4.18.0-26.27 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Invalid
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Cosmic:
  Confirmed

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

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

  derivatives: bug 1834880 (linux-raspi2), bug 1834883 (linux-aws), bug
  1834899 (linux-gcp), bug 1834901 (linux-kvm), bug 1835438 (linux-
  azure)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Holding before Release
  phase-changed: Friday, 19. July 2019 12:07 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
promote-to-updates: Holding -- kernel-block/kernel-block-proposed tag 
present
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836172] Re: linux-oem: 4.15.0-1047.52 -proposed tracker

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

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

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

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1834954
- phase: Packaging
- phase-changed: Friday, 19. July 2019 07:09 UTC
+ phase: Holding before Promote to Proposed
+ phase-changed: Friday, 19. July 2019 12:09 UTC
  reason:
-   prepare-package: Pending -- package not yet uploaded
-   prepare-package-meta: Pending -- package not yet uploaded
-   prepare-package-signed: Pending -- package not yet uploaded
+   promote-to-proposed: Ongoing -- builds not complete in ppa 
main:building,meta:building,signed:building
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oem in Ubuntu.
https://bugs.launchpad.net/bugs/1836172

Title:
  linux-oem: 4.15.0-1047.52 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  New
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:
  New
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:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-oem package in Ubuntu:
  Invalid
Status in linux-oem source package in Bionic:
  Confirmed

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

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

  -- swm properties --
  kernel-stable-master-bug: 1834954
  phase: Holding before Promote to Proposed
  phase-changed: Friday, 19. July 2019 12:09 UTC
  reason:
promote-to-proposed: Ongoing -- builds not complete in ppa 
main:building,meta:building,signed:building
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1828166] Comment bridged from LTC Bugzilla

2019-07-19 Thread bugproxy
--- Comment From tmri...@de.ibm.com 2019-07-19 07:37 EDT---
Thanks for your help.

I have installed
root@s8360046:~/linux-4.15.0/tools/perf# uname -a
Linux s8360046 4.15.0-54-generic #58-Ubuntu SMP Mon Jun 24 10:54:05 UTC 2019 
s390x s390x s390x GNU/Linux
root@s8360046:~/linux-4.15.0/tools/perf#

and download the corresponding linux kernel source tree from 
us.ports/ubuntu.com.
So the linux kernel I am using matches the sources and I built the perf tool.

I can also recreate the issue and I start debugging this issue.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1828166

Title:
  perf top problem on z with Ubuntu 18.04

Status in Ubuntu on IBM z Systems:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Bionic:
  In Progress
Status in linux source package in Cosmic:
  Invalid

Bug description:
  SRU Justification:
  ==

  [Impact]

  * The perf top tool hangs and shows error messages, like 'Not enough
  memory for annotating'

  [Fix]

  * edeb0c90df3581b821a764052d185df985f8b8dc edeb0c9 "perf tools: Stop
  fallbacking to kallsyms for vdso symbols lookup"

  [Test Case]

  * start a benchmark (mem_alloc, but it doesn't really matter what)

  * execute perf top in a second terminal

  * the output of perf top is correct

  * now stop the benchmark

  * and perf top shows an error message, like "Not enough memory for
  annotating '__irf_end' symbol!)"

  * and perf top can't be exited anymore

  [Regression Potential]

  * The regression potential can be considered as low since this happens
  only while using the perf top tool

  * and it is known that the commit (above) fixes the problem

  * and the fix is upstream since 4.19

  [Other Info]

  * current disco and eoan kernels don't show that problem

  * bisecting result points to above commit

  * applies cleanly on cosmic, but has a little conflict on bionic (both 
master-next)
  _

  perf top hangs and shows error messages

  ---uname output---
  Linux weather 4.15.0-46-generic #49-Ubuntu SMP Wed Feb 6 09:32:27 UTC 2019 
s390x s390x s390x GNU/Linux

  ---Steps to Reproduce---
   I start a benchmark (mem_alloc, but it really doesn't matter) and then issue 
perf top in a second terminal, the output from perf top is correct. Now I stop 
the benchmark: perf top shows a error message (Not enough memory for annotating 
'__irf_end' symbol!) and I can't quit from perf top anymore

  Following analyse took place:
  No problem with current kernel .
  Bi-Secting of perf tool took place and following commit was found:

  commit edeb0c90df3581b821a764052d185df985f8b8dc (HEAD, refs/bisect/bad)
  Author: Arnaldo Carvalho de Melo 
  Date:   Tue Oct 16 17:08:29 2018 -0300

  perf tools: Stop fallbacking to kallsyms for vdso symbols lookup

  When you apply this patch the issue is gone, however it is contained
  in these versions:

  git tag --contains  edeb0c90df3581b821
  v4.19
  v4.20
  

  The level I was debugging was kernel 4.15 which does not contain this
  patch.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834940] Re: linux-kvm: 4.15.0-1039.39 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 00:12 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/1834940

Title:
  linux-kvm: 4.15.0-1039.39 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-kvm package in Ubuntu:
  Invalid
Status in linux-kvm source package in Bionic:
  Confirmed

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

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

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 00:12 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834940] Re: linux-kvm: 4.15.0-1039.39 -proposed tracker

2019-07-19 Thread Po-Hsu Lin
4.15.0-1039.39 - kvm
Regression test CMPL, RTB.

Issue to note in amd64:
  ubuntu_bpf - test failed on KVM kernels (bug 1833396)
  ubuntu_kernel_selftests - test_bpf in net (bug 1812189) psock_tpacket in net 
failed (bug 1812176) RTNETLINK in net (bug 1812194) global.get_metadata in 
seccomp (bug 1811057) raw_skew in timer (bug 1811194) user_copy in user 
skipped, ftrace (bug 1812318)
  ubuntu_kvm_unit_tests - apic timeouted (bug 1748103) apic-split timeouted 
(bug 1821390) port80 (bug 1748105) vmx (bug 1821394)
  ubuntu_ltp - test timeouted with 4 hours threshold on jenkins (bug 1837206)
  ubuntu_ltp_syscalls - test timeouted with 4 hours threshold on jenkins (bug 
1837206)
  ubuntu_quota_smoke_test - failed with KVM kernel (bug 1784535)
  ubuntu_sysdig_smoke_test - Unable to insert sysdig_probe module on B-KVM 
kernel (bug 1766565)
  xfstests - failed because no scratch drive

Skipped / blacklisted:
  * libhugetlbfs
  * ubuntu_blktrace_smoke_test
  * ubuntu_ecryptfs
  * ubuntu_fan_smoke_test
  * ubuntu_ftrace_smoke_test
  * ubuntu_lttng_smoke_test
  * ubuntu_seccomp


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

** Changed in: kernel-sru-workflow/regression-testing
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Po-Hsu Lin 
(cypressyew)

** Tags added: regression-testing-passed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/1834940

Title:
  linux-kvm: 4.15.0-1039.39 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-kvm package in Ubuntu:
  Invalid
Status in linux-kvm source package in Bionic:
  Confirmed

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

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

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 00:12 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1835879] Please test proposed package

2019-07-19 Thread Andy Whitcroft
Hello You-Sheng, or anyone else affected,

Accepted linux-firmware into bionic-proposed. The package will build now
and be available at https://launchpad.net/ubuntu/+source/linux-
firmware/1.173.10 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested and change the tag from
verification-needed-bionic to verification-done-bionic. If it does not
fix the bug for you, please add a comment stating that, and change the
tag to verification-failed-bionic. In either case, without details of
your testing we will not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1835879

Title:
  Intel Wireless-AC 9462/9560 not supported on ICL

Status in HWE Next:
  New
Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-oem-osp1 package in Ubuntu:
  Fix Committed
Status in linux-firmware source package in Bionic:
  Fix Committed
Status in linux-oem-osp1 source package in Bionic:
  Fix Committed
Status in linux-firmware source package in Cosmic:
  Won't Fix
Status in linux-oem-osp1 source package in Cosmic:
  Won't Fix
Status in linux-firmware source package in Disco:
  Fix Committed
Status in linux-oem-osp1 source package in Disco:
  Won't Fix

Bug description:
  [Impact]
  Intel Wireless-AC 9560/9462 is not correctly enabled on IceLake
  platforms.

  [Fix]
  Two changes from Intel maintained backport-iwlwifi repository are
  necessary to add device ID/configs to iwlwifi driver.

  [Test]
  Verified on hardware 9462/9560 on IceLake/CometLake platforms.

  [Regression Potential]
  Low. These changes are part of the series to enable 9462/9560 on
  CometLake/IceLake platforms that don't have the support originally.

  = Original Bug Description =

  Intel Wireless-AC 9462/9560 on CML was previously enabled via bug
  1833065, bug 1834415 and bug 1834464. However on ICL, it fails to
  startup with following error messages with kernel v5.2-rc7:

    iwlwifi :00:14.3: loaded firmware version 48.13675109.0 op_mode iwlmvm
    iwlwifi :00:14.3: Detected Intel(R) Wireless-AC 9560, REV=0x338
    iwlwifi :00:14.3: Loaded firmware version: 48.13675109.0
    iwlwifi :00:14.3: SecBoot CPU1 Status: 0x5c97, CPU2 Status: 0x3
    iwlwifi :00:14.3: Failed to start RT ucode: -5
    iwlwifi :00:14.3: Collecting data: trigger 16 fired.
    iwlwifi :00:14.3: Firmware not running - cannot dump error
    iwlwifi :00:14.3: Failed to run INIT ucode: -5

  Also tried backport-iwlwifi out-of-tree driver revision 7858 (HEAD at
  the moment) with no luck.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1835879] Please test proposed package

2019-07-19 Thread Andy Whitcroft
Hello You-Sheng, or anyone else affected,

Accepted linux-firmware into disco-proposed. The package will build now
and be available at https://launchpad.net/ubuntu/+source/linux-
firmware/1.178.4 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested and change the tag from
verification-needed-disco to verification-done-disco. If it does not fix
the bug for you, please add a comment stating that, and change the tag
to verification-failed-disco. In either case, without details of your
testing we will not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1835879

Title:
  Intel Wireless-AC 9462/9560 not supported on ICL

Status in HWE Next:
  New
Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-oem-osp1 package in Ubuntu:
  Fix Committed
Status in linux-firmware source package in Bionic:
  Fix Committed
Status in linux-oem-osp1 source package in Bionic:
  Fix Committed
Status in linux-firmware source package in Cosmic:
  Won't Fix
Status in linux-oem-osp1 source package in Cosmic:
  Won't Fix
Status in linux-firmware source package in Disco:
  Fix Committed
Status in linux-oem-osp1 source package in Disco:
  Won't Fix

Bug description:
  [Impact]
  Intel Wireless-AC 9560/9462 is not correctly enabled on IceLake
  platforms.

  [Fix]
  Two changes from Intel maintained backport-iwlwifi repository are
  necessary to add device ID/configs to iwlwifi driver.

  [Test]
  Verified on hardware 9462/9560 on IceLake/CometLake platforms.

  [Regression Potential]
  Low. These changes are part of the series to enable 9462/9560 on
  CometLake/IceLake platforms that don't have the support originally.

  = Original Bug Description =

  Intel Wireless-AC 9462/9560 on CML was previously enabled via bug
  1833065, bug 1834415 and bug 1834464. However on ICL, it fails to
  startup with following error messages with kernel v5.2-rc7:

    iwlwifi :00:14.3: loaded firmware version 48.13675109.0 op_mode iwlmvm
    iwlwifi :00:14.3: Detected Intel(R) Wireless-AC 9560, REV=0x338
    iwlwifi :00:14.3: Loaded firmware version: 48.13675109.0
    iwlwifi :00:14.3: SecBoot CPU1 Status: 0x5c97, CPU2 Status: 0x3
    iwlwifi :00:14.3: Failed to start RT ucode: -5
    iwlwifi :00:14.3: Collecting data: trigger 16 fired.
    iwlwifi :00:14.3: Firmware not running - cannot dump error
    iwlwifi :00:14.3: Failed to run INIT ucode: -5

  Also tried backport-iwlwifi out-of-tree driver revision 7858 (HEAD at
  the moment) with no luck.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836467] Please test proposed package

2019-07-19 Thread Andy Whitcroft
Hello Warren, or anyone else affected,

Accepted linux-firmware into disco-proposed. The package will build now
and be available at https://launchpad.net/ubuntu/+source/linux-
firmware/1.178.4 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested and change the tag from
verification-needed-disco to verification-done-disco. If it does not fix
the bug for you, please add a comment stating that, and change the tag
to verification-failed-disco. In either case, without details of your
testing we will not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1836467

Title:
  Bluetooth fails with "Bluetooth: hci0: request failed to create LE
  connection: status 0x0c" message with Kernel 4.20 and up [9df0:0034]

Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-firmware source package in Bionic:
  Fix Committed
Status in linux-firmware source package in Cosmic:
  Won't Fix
Status in linux-firmware source package in Disco:
  Fix Committed

Bug description:
  SRU Justification:

  [Impact]
  Bluetooth for Intel Wireless-AC 9560 variant 9df0:0034 still fails to
  pair BT LE HID devices on recent (>= 4.19) kernel.

  [Fix]
  Bluetooth firmware REL0450 or newer is required to fix this issue.

  [Test Case]
  Install new firmware blob to /lib/firmware/intel, shutdown the machine
  completely and wait for a couple minutes to trigger firmware reloading
  at the next boot. Then perform Bluetooth LE HID devices pairing to
  verify if the proposed fw fixes this issue.

  [Regression Risk]
  Low. This affects only sub models of Intel JeffersonPeak Bluetooth chip
  series using these firmware blobs.

  == Original Bug Description ==

  This is similar to https://bugs.launchpad.net/bugs/1829737 - however
  the issue was not fixed by linux-firmware 1.173.8 so I was advised to
  log a new bug.

  I have an ASUS ZenBook 14 - UX433FA - which based on this - 
https://www.notebookcheck.net/ASUS-ZenBook-14-UX433FA-Core-i5-8265U-SSD-FHD-Laptop-Review.403541.0.html
 - I believe has an Intel 9560 chipset (I am not sure how to independently 
verify this).
  With kernels older than 4.20 I can successfully pair my bluetooth mouse 
(Logitech MX Master) - but with newer kernels I get "Bluetooth: hci0: request 
failed to create LE connection: status 0x0c" messages.

  I'm running Linux Mint 19.1

  I tried installing linux-firmware 1.173.8, and it didn't seem to help
  - I also downloaded 1.173.9 proposed from here:
  https://launchpad.net/ubuntu/bionic/amd64/linux-firmware/1.173.9 and
  that also didn't seem to help.

  Both after a cold reboot and a warm reboot I see
  [ 14.724438] Bluetooth: hci0: Firmware revision 0.1 build 201 week 49 2017

  in my dmesg output.

  Bluetooth works just fine with earlier kernels (however other aspects
  of the laptop like suspend don't work as well, which is why I'm trying
  the newer kernel.

  Linux warren-ZenBook 5.1.16-050116-generic #201907031232 SMP Wed Jul 3
  12:35:21 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

  dmesg | egrep -i 'blue|firm'
  [
  [0.180273] Spectre V2 : Enabling Restricted Speculation for firmware calls
  [0.004526] [Firmware Bug]: TSC ADJUST differs within socket(s), fixing 
all errors
  [1.417663] [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin 
(v1.4)
  [   14.641146] iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-9000-pu-b0-jf-b0-46.ucode failed with error -2
  [   14.642377] iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-9000-pu-b0-jf-b0-45.ucode failed with error -2
  [   14.642392] iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-9000-pu-b0-jf-b0-44.ucode failed with error -2
  [   14.652301] iwlwifi :00:14.3: loaded firmware version 43.95eb4e97.0 
op_mode iwlmvm
  [   14.675356] Bluetooth: Core ver 2.22
  [   14.675374] Bluetooth: HCI device and connection manager initialized
  [   14.675377] Bluetooth: HCI socket layer initialized
  [   14.675379] Bluetooth: L2CAP socket layer initialized
  [   14.675382] Bluetooth: SCO socket layer initialized
  [   14.724438] Bluetooth: hci0: Firmware revision 0.1 build 201 week 49 2017
  [   15.207800] Bluetooth: BNEP (Ethernet 

[Kernel-packages] [Bug 1836467] Please test proposed package

2019-07-19 Thread Andy Whitcroft
Hello Warren, or anyone else affected,

Accepted linux-firmware into bionic-proposed. The package will build now
and be available at https://launchpad.net/ubuntu/+source/linux-
firmware/1.173.10 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested and change the tag from
verification-needed-bionic to verification-done-bionic. If it does not
fix the bug for you, please add a comment stating that, and change the
tag to verification-failed-bionic. In either case, without details of
your testing we will not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1836467

Title:
  Bluetooth fails with "Bluetooth: hci0: request failed to create LE
  connection: status 0x0c" message with Kernel 4.20 and up [9df0:0034]

Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-firmware source package in Bionic:
  Fix Committed
Status in linux-firmware source package in Cosmic:
  Won't Fix
Status in linux-firmware source package in Disco:
  Fix Committed

Bug description:
  SRU Justification:

  [Impact]
  Bluetooth for Intel Wireless-AC 9560 variant 9df0:0034 still fails to
  pair BT LE HID devices on recent (>= 4.19) kernel.

  [Fix]
  Bluetooth firmware REL0450 or newer is required to fix this issue.

  [Test Case]
  Install new firmware blob to /lib/firmware/intel, shutdown the machine
  completely and wait for a couple minutes to trigger firmware reloading
  at the next boot. Then perform Bluetooth LE HID devices pairing to
  verify if the proposed fw fixes this issue.

  [Regression Risk]
  Low. This affects only sub models of Intel JeffersonPeak Bluetooth chip
  series using these firmware blobs.

  == Original Bug Description ==

  This is similar to https://bugs.launchpad.net/bugs/1829737 - however
  the issue was not fixed by linux-firmware 1.173.8 so I was advised to
  log a new bug.

  I have an ASUS ZenBook 14 - UX433FA - which based on this - 
https://www.notebookcheck.net/ASUS-ZenBook-14-UX433FA-Core-i5-8265U-SSD-FHD-Laptop-Review.403541.0.html
 - I believe has an Intel 9560 chipset (I am not sure how to independently 
verify this).
  With kernels older than 4.20 I can successfully pair my bluetooth mouse 
(Logitech MX Master) - but with newer kernels I get "Bluetooth: hci0: request 
failed to create LE connection: status 0x0c" messages.

  I'm running Linux Mint 19.1

  I tried installing linux-firmware 1.173.8, and it didn't seem to help
  - I also downloaded 1.173.9 proposed from here:
  https://launchpad.net/ubuntu/bionic/amd64/linux-firmware/1.173.9 and
  that also didn't seem to help.

  Both after a cold reboot and a warm reboot I see
  [ 14.724438] Bluetooth: hci0: Firmware revision 0.1 build 201 week 49 2017

  in my dmesg output.

  Bluetooth works just fine with earlier kernels (however other aspects
  of the laptop like suspend don't work as well, which is why I'm trying
  the newer kernel.

  Linux warren-ZenBook 5.1.16-050116-generic #201907031232 SMP Wed Jul 3
  12:35:21 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

  dmesg | egrep -i 'blue|firm'
  [
  [0.180273] Spectre V2 : Enabling Restricted Speculation for firmware calls
  [0.004526] [Firmware Bug]: TSC ADJUST differs within socket(s), fixing 
all errors
  [1.417663] [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin 
(v1.4)
  [   14.641146] iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-9000-pu-b0-jf-b0-46.ucode failed with error -2
  [   14.642377] iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-9000-pu-b0-jf-b0-45.ucode failed with error -2
  [   14.642392] iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-9000-pu-b0-jf-b0-44.ucode failed with error -2
  [   14.652301] iwlwifi :00:14.3: loaded firmware version 43.95eb4e97.0 
op_mode iwlmvm
  [   14.675356] Bluetooth: Core ver 2.22
  [   14.675374] Bluetooth: HCI device and connection manager initialized
  [   14.675377] Bluetooth: HCI socket layer initialized
  [   14.675379] Bluetooth: L2CAP socket layer initialized
  [   14.675382] Bluetooth: SCO socket layer initialized
  [   14.724438] Bluetooth: hci0: Firmware revision 0.1 build 201 week 49 2017
  [   15.207800] Bluetooth: BNEP (Ethernet 

[Kernel-packages] [Bug 1836983] Please test proposed package

2019-07-19 Thread Andy Whitcroft
Hello AceLan, or anyone else affected,

Accepted linux-firmware into bionic-proposed. The package will build now
and be available at https://launchpad.net/ubuntu/+source/linux-
firmware/1.173.10 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested and change the tag from
verification-needed-bionic to verification-done-bionic. If it does not
fix the bug for you, please add a comment stating that, and change the
tag to verification-failed-bionic. In either case, without details of
your testing we will not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1836983

Title:
  [Intel CyclonePeak] Pairing new BT mouse fails sometimes

Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-firmware source package in Bionic:
  Fix Committed
Status in linux-firmware source package in Disco:
  Fix Committed

Bug description:
  [Impact]
  After update the BT firmware, it requires to pair twice to pair a new device.
  There should be a "SMP: Pairing Request" send from hci0, but it doesn't be 
submitted in the first time.

  [Fix]
  The new firmware fix this issue.

  [Test]
  Verified on Dell platforms with BT Designer Mouse(DF:29:ED:BD:82:95)

  [Regression Potential]
  Low, the firmware is newly added for new Cyclone Peak wifi/bt, and it won't 
affect the devices on the market currently.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836983] Please test proposed package

2019-07-19 Thread Andy Whitcroft
Hello AceLan, or anyone else affected,

Accepted linux-firmware into disco-proposed. The package will build now
and be available at https://launchpad.net/ubuntu/+source/linux-
firmware/1.178.4 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested and change the tag from
verification-needed-disco to verification-done-disco. If it does not fix
the bug for you, please add a comment stating that, and change the tag
to verification-failed-disco. In either case, without details of your
testing we will not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1836983

Title:
  [Intel CyclonePeak] Pairing new BT mouse fails sometimes

Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-firmware source package in Bionic:
  Fix Committed
Status in linux-firmware source package in Disco:
  Fix Committed

Bug description:
  [Impact]
  After update the BT firmware, it requires to pair twice to pair a new device.
  There should be a "SMP: Pairing Request" send from hci0, but it doesn't be 
submitted in the first time.

  [Fix]
  The new firmware fix this issue.

  [Test]
  Verified on Dell platforms with BT Designer Mouse(DF:29:ED:BD:82:95)

  [Regression Potential]
  Low, the firmware is newly added for new Cyclone Peak wifi/bt, and it won't 
affect the devices on the market currently.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1835357] Re: Backport ACPI module-level code functionality

2019-07-19 Thread AceLan Kao
** Changed in: linux-oem (Ubuntu Bionic)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oem in Ubuntu.
https://bugs.launchpad.net/bugs/1835357

Title:
  Backport ACPI module-level code functionality

Status in HWE Next:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux-oem package in Ubuntu:
  New
Status in linux source package in Bionic:
  Incomplete
Status in linux-oem source package in Bionic:
  Fix Committed

Bug description:
  [Impact]
  After S3, DVD-ROM on HP ZBook 17 G5 stops working.

  [Fix]
  In the past we use dmi_match to set acpi_gbl_parse_table_as_term_list,
  so the ACPI core can parse an entire ACPI table as a method.

  Unfotunately this workaround doesn't work for the system in question.

  So fully backport commit 5a8361f7ecce ("ACPICA: Integrate package
  handling with module-level code") and subsequent fix commits, to solve
  the issue.

  [Test]
  After applying the fix, DVD-ROM keeps working after S3.

  [Regression Potential]
  Medium. I've test several systems and I don't see anything break.
  But if we want to be safe, we can merge this into Bionic after we are
  sure there's no regression on OEM-B.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836755] Re: hda/realtek: can't detect external mic on a Dell machine

2019-07-19 Thread AceLan Kao
** Also affects: linux-oem (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: linux-oem (Ubuntu Bionic)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oem in Ubuntu.
https://bugs.launchpad.net/bugs/1836755

Title:
  hda/realtek: can't detect external mic on a Dell machine

Status in HWE Next:
  New
Status in linux package in Ubuntu:
  Fix Committed
Status in linux-oem package in Ubuntu:
  New
Status in linux source package in Bionic:
  Fix Committed
Status in linux-oem source package in Bionic:
  Fix Committed
Status in linux source package in Disco:
  Fix Committed
Status in linux-oem source package in Disco:
  New

Bug description:
  [Impact]
  The external can't be detected when plugging headset in the
  front audio jack.

  [Fix]
  apply the alc891 fixup to set headset-mic and headpphone-mic pins.

  [Test Case]
  apply this patch and boot with the kernel, plug the headset-mic
  and choose headset-mic from popup dialogue, the headset-mic can
  record sound very well.

  [Regression Risk]
  Low. this patch is specific to a dell machine by pin configuration
  definition.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836308] Re: Unhide Nvidia HDA audio controller

2019-07-19 Thread AceLan Kao
** Changed in: linux-oem (Ubuntu Bionic)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oem in Ubuntu.
https://bugs.launchpad.net/bugs/1836308

Title:
  Unhide Nvidia HDA audio controller

Status in HWE Next:
  New
Status in linux package in Ubuntu:
  Fix Committed
Status in linux-oem package in Ubuntu:
  New
Status in linux-oem-osp1 package in Ubuntu:
  New
Status in linux source package in Bionic:
  Confirmed
Status in linux-oem source package in Bionic:
  Fix Committed
Status in linux-oem-osp1 source package in Bionic:
  New
Status in linux source package in Disco:
  Confirmed
Status in linux-oem source package in Disco:
  Invalid
Status in linux-oem-osp1 source package in Disco:
  Invalid

Bug description:
  [Impact]
  Nvidia HDA audio controller comes with Nvidia graphics cannot be found
  by PCI subsystem.

  [Fix]
  Write bit 25 at graphics' config space offset 0x488 to enable the HDA
  controller.

  [Test]
  Nvidia HDA controller is not listed under lspci.
  After applying the fix lspci can find Nvidia HDA controller.

  [Regression Potential]
  Low. This fix doesn't bring any functional change other then exposing
  HDA controller at hardware level.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834923] Re: linux-raspi2: 4.15.0-1041.44 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1834922 (pi-kernel)
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 00:10 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1834923

Title:
  linux-raspi2: 4.15.0-1041.44 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-raspi2 package in Ubuntu:
  Invalid
Status in linux-raspi2 source package in Bionic:
  Confirmed

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

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

  derivatives: bug 1834922 (pi-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 00:10 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836925] Re: linux-ibm-gt: 4.15.0-1028.30 -proposed tracker

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

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:04 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   automated-testing: Ongoing -- testing in progress
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1836925

Title:
  linux-ibm-gt: 4.15.0-1028.30 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Invalid
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:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Confirmed

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

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

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:04 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1836925] Re: linux-ibm-gt: 4.15.0-1028.30 -proposed tracker

2019-07-19 Thread Kleber Sacilotto de Souza
ADT tests are not run for this kernel, marking automated-testing as
'Invalid'.

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1836925

Title:
  linux-ibm-gt: 4.15.0-1028.30 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Invalid
Status in Kernel SRU Workflow certification-testing series:
  Invalid
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:
  Invalid
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:
  Invalid
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Confirmed

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

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

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 18. July 2019 14:04 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
regression-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1834923] Re: linux-raspi2: 4.15.0-1041.44 -proposed tracker

2019-07-19 Thread Taihsiang Ho
Hardware Certification have begun testing this -proposed kernel.

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

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1834923

Title:
  linux-raspi2: 4.15.0-1041.44 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
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:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Confirmed
Status in linux-raspi2 package in Ubuntu:
  Invalid
Status in linux-raspi2 source package in Bionic:
  Confirmed

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

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

  derivatives: bug 1834922 (pi-kernel)

  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1834954
  phase: Ready for Testing
  phase-changed: Thursday, 11. July 2019 00:10 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
certification-testing: Ongoing -- testing in progress
verification-testing: Ongoing -- testing in progress
  variant: debs

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


  1   2   >