[Bug 1888001] Re: Focal minimal cloud image: failed to apply kernel variables

2020-07-31 Thread Sultan Alsawaf
This is because CONFIG_BASE_SMALL is set to 1 in the kvm kernels. When
CONFIG_BASE_SMALL=1, the maximum number of PIDs is (PAGE_SIZE * 8),
which comes out to (4096 * 8) = 32768 on amd64. When CONFIG_BASE_SMALL=0
(like in normal kernels), the maximum number of PIDs for amd64 is (4 *
1024 * 1024) = 4194304.

The correct solution here is to fix the systemd unit.

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

Title:
  Focal minimal cloud image: failed to apply kernel variables

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

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

[Bug 1888000] Re: Bionic/Xenial minimal cloud image: failed to apply load kernel module

2020-07-31 Thread Sultan Alsawaf
This is a bug in the open-iscsi package in xenial and bionic. That
package installs this file: /lib/modules-load.d/open-iscsi.conf

Which contains the following:
iscsi_tcp
ib_iser

This causes systemd to always try and load the iscsi_tcp and ib_iser
modules on boot. In eoan, the open-iscsi package doesn't do this;
there's no /lib/modules-load.d/open-iscsi.conf file in the eoan cloud
image. An update to xenial/bionic open-iscsi packages to match the
behavior of eoan's open-iscsi package should resolve this I think.

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

Title:
  Bionic/Xenial minimal cloud image: failed to apply load kernel module

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

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

[Bug 1888551] [NEW] perf vendor events s390: Add new deflate counters for IBM z15

2020-07-22 Thread Sultan Alsawaf
Public bug reported:

SRU Justification:
==

[Impact]

* With perf from Ubuntu 20.04 on IBM z15 hardware, some counters
reported with lscpumf are not usable with 'perf stat -e'.

* 'lscpumf -c' provides a list of available counters, but the following
are not usable: DFLT_ACCESS, DFLT_CYCLES, DFLT_CC, DFLT_CCERROR

* 'perf list' is also not offering these counters.

* On the kernel side this is fixed with the following upstream accepted
commit:

[Fix]

* e7950166e40271c025e0eec348cdf5c63ac734fa "perf vendor events s390: Add
new deflate counters for IBM z15"

[Test Case]

* Requires the fix/patch of the kernel
(d68d5d51dc898895b4e15bea52e5668ca9e76180 "s390/cpum_cf: Add new
extended counters for IBM z15")

* An IBM z15 (or LinuxONE III) system with Ubuntu 20.04 installed in
LPAR is needed where the counters are enabled in the activation profile.

* Use 'perf list' to determine if the counters DFLT_ACCESS, DFLT_CYCLES,
DFLT_CC, DFLT_CCERROR are listed

* Use 'perf stat -e' to enable amd make use of these counters.

[Regression Potential]

* The regression can be considered as low, since:

* it's architecture specific (s390x)

* limited to IBM z15 hardware

* and only additional (s390x) hardware counters are defined and added.

[Other]

* Since these patches are upstream in kernel 5.7 they will automatically
land in groovy.

** Affects: ubuntu-z-systems
 Importance: Undecided
 Status: In Progress

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: In Progress

** Affects: linux (Ubuntu Focal)
 Importance: Undecided
 Status: In Progress

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

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

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

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

Title:
  perf vendor events s390: Add new deflate counters for IBM z15

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1888551/+subscriptions

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

[Bug 1881096] Re: [UBUNTU 20.04] Deflate counters reported by lscpumf are not valid or available with perf

2020-07-17 Thread Sultan Alsawaf
perf tool patch submitted to the mailing list.

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

Title:
  [UBUNTU 20.04] Deflate counters reported by lscpumf are not valid or
  available with perf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1881096/+subscriptions

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

[Bug 1877088] Re: [UBUNTU 20.04] installkernel script does not symlink /boot/initrd.img which is required with the default zipl.conf

2020-07-13 Thread Sultan Alsawaf
The script responsible for updating the /boot/initrd.img symlink is
called `linux-update-symlinks`. If a kernel is installed without that
script being run, the symlink will not be updated.

The only place where `linux-update-symlinks` is run is inside each of
our kernels, in `debian/templates/image.postinst.in`. This means that
when our kernels are built as .deb packages, the appropriate machinery
will be placed inside the .deb to thus update the /boot/initrd.img
symlink.

I checked the change history to `installkernel` and could not find any
point in time in which it ran `linux-update-symlinks`. Furthermore, the
help info inside `linux-update-symlinks` contains the following note:
"This command is intended to be called from the postinst and postrm
maintainer scripts of Linux kernel packages." It looks like `linux-
update-symlinks` was only ever intended to be used in postinst/postrm
hooks for .deb packages (and not called by `installkernel`).

There are a few remedies to this problem I can see, but I'm not sure which is 
the correct solution:
1. Add a call to `linux-update-symlinks` into `installkernel`
or
2. Add a script into /etc/kernel/postinst.d to run `linux-update-symlinks`
or
3. Run `linux-update-symlinks` manually after installing a kernel directly via 
`installkernel`

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

Title:
  [UBUNTU 20.04] installkernel script does not symlink /boot/initrd.img
  which is required with the default zipl.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1877088/+subscriptions

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

[Bug 1884474] Re: package linux-modules-extra-5.4.0-37-generic (not installed) failed to install/upgrade: unable to open '/lib/modules/5.4.0-37-generic/kernel/drivers/nfc/pn544/pn544_mei.ko.dpkg-new':

2020-06-23 Thread Sultan Alsawaf
Does this error happen again if you try to repeat what you were doing?

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

Title:
  package linux-modules-extra-5.4.0-37-generic (not installed) failed to
  install/upgrade: unable to open
  '/lib/modules/5.4.0-37-generic/kernel/drivers/nfc/pn544/pn544_mei.ko
  .dpkg-new': Operation not permitted

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

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

[Bug 1882854] Re: package linux-libc-dev 5.4.0-33.37 failed to install/upgrade: unable to create new file '/var/lib/dpkg/info/linux-libc-dev:amd64.list-new': Operation not permitted

2020-06-23 Thread Sultan Alsawaf
Does this error happen again if you try to repeat what you were doing?

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

Title:
  package linux-libc-dev 5.4.0-33.37 failed to install/upgrade: unable
  to create new file '/var/lib/dpkg/info/linux-libc-dev:amd64.list-new':
  Operation not permitted

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

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

[Bug 1876501] Re: package linux-modules-extra-5.4.0-28-generic (not installed) failed to install/upgrade: unable to open '/lib/modules/5.4.0-28-generic/kernel/virtualbox-guest/vboxguest.ko.dpkg-new':

2020-06-23 Thread Sultan Alsawaf
Does this error happen again if you try to repeat what you were doing?

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

Title:
  package linux-modules-extra-5.4.0-28-generic (not installed) failed to
  install/upgrade: unable to open '/lib/modules/5.4.0-28-generic/kernel
  /virtualbox-guest/vboxguest.ko.dpkg-new': Operation not permitted

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

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

[Bug 1883498] Re: Frequent Panic in ip6_expire_frag_queue->icmpv6_send on 4.4.0-184-generic

2020-06-17 Thread Sultan Alsawaf
It looks like this is fixed upstream with this change:
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit?id=178af2f97dcaea27611f0420ec7b61c1a27d6776

Which is contained in the Ubuntu-4.4.0-185 kernel already. So
Ubuntu-4.4.0-185 should be fixed.

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

Title:
  Frequent Panic in ip6_expire_frag_queue->icmpv6_send on
  4.4.0-184-generic

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

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

[Bug 1878484] Re: kernel panic on i915

2020-06-08 Thread Sultan Alsawaf
Please test this kernel which has a potential fix:
https://kernel.ubuntu.com/~sultan/i915-lp1878484/

Source code is here:
https://git.launchpad.net/~kerneltoast/ubuntu/+source/linux/+git/focal/log/?h=i915-lp1878484

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

Title:
  kernel panic on i915

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

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

[Bug 1877394] Re: Kernel panic due to NULL ringbuffer vaddr dereference in i915

2020-05-19 Thread Sultan Alsawaf
** Tags removed: verification-needed-focal
** Tags added: verification-done-focal

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

Title:
  Kernel panic due to NULL ringbuffer vaddr dereference in i915

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

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

[Bug 1868551] Re: Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4) i915_active_acquire

2020-05-14 Thread Sultan Alsawaf
** Changed in: linux (Ubuntu)
   Status: Fix Committed => Invalid

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

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

Title:
  Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4)
  i915_active_acquire

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

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

[Bug 1877394] Re: Kernel panic due to NULL ringbuffer vaddr dereference in i915

2020-05-14 Thread Sultan Alsawaf
** Changed in: linux (Ubuntu)
   Status: Fix Committed => Invalid

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

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

Title:
  Kernel panic due to NULL ringbuffer vaddr dereference in i915

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

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

[Bug 1877394] Re: Kernel panic due to NULL ringbuffer vaddr dereference in i915

2020-05-14 Thread Sultan Alsawaf
** Description changed:

+ SRU Justification:
+ 
+ [Impact]
+ A sauce fix for a kernel panic in i915 that I frequently experienced was 
fixed by upstream.
+ 
+ [Fix]
+ The sauce patch I made should be dropped in exchange for the proper upstream 
fix.
+ 
+ [Test]
+ I tested the upstream fix and can confirm it fixes the crashes I experienced.
+ 
+ [Regression Potential]
+ Low. The upstream fix for this bug is tiny and we get to remove a nasty sauce 
patch.
+ ---
  This is what the crash looks like:
  BUG: unable to handle page fault for address: 3448
  RIP: 0010:gen8_emit_flush_render+0x163/0x190
  Call Trace:
   execlists_request_alloc+0x25/0x40
   __i915_request_create+0x1f4/0x2c0
   i915_request_create+0x71/0xc0
   i915_gem_do_execbuffer+0xb98/0x1a80
   ? preempt_count_add+0x68/0xa0
   ? _raw_spin_lock+0x13/0x30
   ? _raw_spin_unlock+0x16/0x30
   i915_gem_execbuffer2_ioctl+0x1de/0x3c0
   ? i915_gem_busy_ioctl+0x7f/0x1d0
   ? i915_gem_execbuffer_ioctl+0x2d0/0x2d0
   drm_ioctl_kernel+0xb2/0x100
   drm_ioctl+0x209/0x360
   ? i915_gem_execbuffer_ioctl+0x2d0/0x2d0
   ksys_ioctl+0x87/0xc0
   __x64_sys_ioctl+0x16/0x20
   do_syscall_64+0x4e/0x150
   entry_SYSCALL_64_after_hwframe+0x44/0xa9
  
  This bug was fixed by "UBUNTU: SAUCE: drm/i915: Synchronize active and
  retire callbacks" but there is an upstream fix for it, "drm/i915/gt:
  Make intel_ring_unpin() safe for concurrent pint". Let's replace the
  sauce patch with the upstream fix.
  
  More info here: https://gitlab.freedesktop.org/drm/intel/issues/1599

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

** Changed in: linux (Ubuntu Focal)
   Status: Confirmed => Fix Committed

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

Title:
  Kernel panic due to NULL ringbuffer vaddr dereference in i915

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

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

[Bug 1868551] Re: Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4) i915_active_acquire

2020-05-14 Thread Sultan Alsawaf
** Description changed:

+ SRU Justification:
  
+ [Impact]
+ Users are experiencing a frequent NULL pointer dereference crash in
+ i915_active_acquire when using kms, which is used by default.
+ 
+ [Fix]
+ The fix is a cherry pick from upstream which was supposed to be backported to
+ 5.4 by upstream, but was neglected. The fix has a subsequent Fixes patch to
+ resolve some uninitialized pointer usage.
+ 
+ [Test]
+ Verified by multiple bug reporters.
+ 
+ [Regression Potential]
+ Medium. Although there are a lot of lines added, they're mostly boilerplate, 
and
+ this patch is confirmed by multiple users to fix a crash.
+ ---
  uname -a
  Linux xps 5.4.0-14-generic #17-Ubuntu SMP Thu Feb 6 22:47:59 UTC 2020 x86_64 
x86_64 x86_64 GNU/Linux
  
  lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu Focal Fossa (development branch)
  Release:  20.04
  Codename: focal
  
  [ 2556.956079] BUG: kernel NULL pointer dereference, address: 0040
  [ 2556.956084] #PF: supervisor read access in kernel mode
  [ 2556.956084] #PF: error_code(0x) - not-present page
- [ 2556.956085] PGD 0 P4D 0 
+ [ 2556.956085] PGD 0 P4D 0
  [ 2556.956088] Oops:  [#1] SMP NOPTI
  [ 2556.956090] CPU: 2 PID: 1685 Comm: xfwm4 Not tainted 5.4.0-14-generic 
#17-Ubuntu
  [ 2556.956092] Hardware name: Dell Inc. XPS 13 7390/0G2D0W, BIOS 1.2.0 
10/03/2019
  [ 2556.956161] RIP: 0010:i915_active_acquire+0xe/0x80 [i915]
  [ 2556.956163] Code: 00 48 c7 c6 11 4d 6b c0 e8 af a1 d6 c7 5d c3 66 66 2e 0f 
1f 84 00 00 00 00 00 66 90 0f 1f 44 00 00 55 48 89 e5 41 55 41 54 53 <8b> 47 38 
48 89 fb 85 c0 74 17 8d 50 01 f0 0f b1 53 38 75 f2 45 31
  [ 2556.956164] RSP: 0018:ac17c13279c8 EFLAGS: 00010286
  [ 2556.956165] RAX:  RBX: 983831d3e480 RCX: 

  [ 2556.956166] RDX: 983783475200 RSI: 983831d3e480 RDI: 
0008
  [ 2556.956167] RBP: ac17c13279e0 R08:  R09: 
98382d6b6520
  [ 2556.956168] R10: 6cc0 R11: 983838b4db00 R12: 
983783475200
  [ 2556.956169] R13: 0008 R14: 983783475200 R15: 
98382d6b6400
  [ 2556.956170] FS:  7f9031c28f00() GS:98383e50() 
knlGS:
  [ 2556.956171] CS:  0010 DS:  ES:  CR0: 80050033
  [ 2556.956172] CR2: 0040 CR3: 00046eac6001 CR4: 
003606e0
  [ 2556.956173] Call Trace:
  [ 2556.956199]  i915_active_ref+0x24/0x200 [i915]
  [ 2556.956223]  i915_vma_move_to_active+0x74/0xf0 [i915]
  [ 2556.956245]  eb_submit+0xff/0x440 [i915]
  [ 2556.956267]  i915_gem_do_execbuffer+0x88e/0xc20 [i915]
  [ 2556.956271]  ? sock_def_readable+0x40/0x70
  [ 2556.956274]  ? __kmalloc_node+0x205/0x320
  [ 2556.956294]  i915_gem_execbuffer2_ioctl+0x2c3/0x3d0 [i915]
  [ 2556.956314]  ? i915_gem_execbuffer_ioctl+0x2d0/0x2d0 [i915]
  [ 2556.956330]  drm_ioctl_kernel+0xae/0xf0 [drm]
  [ 2556.956338]  drm_ioctl+0x234/0x3d0 [drm]
  [ 2556.956358]  ? i915_gem_execbuffer_ioctl+0x2d0/0x2d0 [i915]
  [ 2556.956361]  ? vfs_writev+0xc3/0xf0
  [ 2556.956363]  do_vfs_ioctl+0x407/0x670
  [ 2556.956365]  ? fput+0x13/0x15
  [ 2556.956367]  ? __sys_recvmsg+0x88/0xa0
  [ 2556.956369]  ksys_ioctl+0x67/0x90
  [ 2556.956371]  __x64_sys_ioctl+0x1a/0x20
  [ 2556.956373]  do_syscall_64+0x57/0x190
  [ 2556.956376]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
  [ 2556.956377] RIP: 0033:0x7f9032b3f68b
  [ 2556.956379] Code: 0f 1e fa 48 8b 05 05 28 0d 00 64 c7 00 26 00 00 00 48 c7 
c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 
f0 ff ff 73 01 c3 48 8b 0d d5 27 0d 00 f7 d8 64 89 01 48
  [ 2556.956380] RSP: 002b:7ffee39a0078 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 2556.956381] RAX: ffda RBX: 55a8abeb6e48 RCX: 
7f9032b3f68b
  [ 2556.956382] RDX: 7ffee39a0090 RSI: 40406469 RDI: 
000d
  [ 2556.956382] RBP: 7ffee39a0120 R08: 0001 R09: 

  [ 2556.956383] R10: 7ffee39a0140 R11: 0246 R12: 
7f9022a4f460
  [ 2556.956384] R13:  R14: 7ffee39a0090 R15: 
000d
  [ 2556.956385] Modules linked in: ccm rfcomm xt_CHECKSUM xt_MASQUERADE 
xt_conntrack ipt_REJECT nf_reject_ipv4 xt_tcpudp ip6table_mangle ip6table_nat 
typec_displayport iptable_mangle iptable_nat nf_nat nf_conntrack nf_defrag_ipv6 
nf_defrag_ipv4 nf_tables cmac nfnetlink algif_hash ip6table_filter ip6_tables 
iptable_filter algif_skcipher af_alg bpfilter bridge stp llc snd_sof_pci 
snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_intel_hda snd_sof_intel_byt 
snd_sof_intel_ipc snd_sof snd_sof_xtensa_dsp snd_hda_ext_core 
snd_soc_acpi_intel_match snd_soc_acpi snd_hda_codec_hdmi snd_soc_core 
snd_compress ac97_bus snd_pcm_dmaengine bnep snd_hda_codec_realtek 
snd_hda_codec_generic snd_hda_intel snd_intel_nhlt snd_hda_codec snd_hda_core 
snd_hwdep snd_pcm nls_iso8859_1 mei_hdcp intel_rapl_msr snd_seq_midi 
snd_seq_midi

[Bug 1868551] Re: Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4) i915_active_acquire

2020-05-13 Thread Sultan Alsawaf
** Changed in: linux (Ubuntu Focal)
   Status: New => Confirmed

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

Title:
  Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4)
  i915_active_acquire

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

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

[Bug 1877394] Re: Kernel panic due to NULL ringbuffer vaddr dereference in i915

2020-05-13 Thread Sultan Alsawaf
** Changed in: linux (Ubuntu Focal)
   Status: Incomplete => Confirmed

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

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

Title:
  Kernel panic due to NULL ringbuffer vaddr dereference in i915

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

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

[Bug 1877394] Re: Kernel panic due to NULL ringbuffer vaddr dereference in i915

2020-05-07 Thread Sultan Alsawaf
** Description changed:

  This is what the crash looks like:
- BUG: unable to handle page fault for address: 3448
- RIP: 0010:gen8_emit_flush_render+0x163/0x190
- Call Trace:
-  execlists_request_alloc+0x25/0x40
-  __i915_request_create+0x1f4/0x2c0
-  i915_request_create+0x71/0xc0
-  i915_gem_do_execbuffer+0xb98/0x1a80
-  ? preempt_count_add+0x68/0xa0
-  ? _raw_spin_lock+0x13/0x30
-  ? _raw_spin_unlock+0x16/0x30
-  i915_gem_execbuffer2_ioctl+0x1de/0x3c0
-  ? i915_gem_busy_ioctl+0x7f/0x1d0
-  ? i915_gem_execbuffer_ioctl+0x2d0/0x2d0
-  drm_ioctl_kernel+0xb2/0x100
-  drm_ioctl+0x209/0x360
-  ? i915_gem_execbuffer_ioctl+0x2d0/0x2d0
-  ksys_ioctl+0x87/0xc0
-  __x64_sys_ioctl+0x16/0x20
-  do_syscall_64+0x4e/0x150
-  entry_SYSCALL_64_after_hwframe+0x44/0xa9
+ BUG: unable to handle page fault for address: 3448
+ RIP: 0010:gen8_emit_flush_render+0x163/0x190
+ Call Trace:
+  execlists_request_alloc+0x25/0x40
+  __i915_request_create+0x1f4/0x2c0
+  i915_request_create+0x71/0xc0
+  i915_gem_do_execbuffer+0xb98/0x1a80
+  ? preempt_count_add+0x68/0xa0
+  ? _raw_spin_lock+0x13/0x30
+  ? _raw_spin_unlock+0x16/0x30
+  i915_gem_execbuffer2_ioctl+0x1de/0x3c0
+  ? i915_gem_busy_ioctl+0x7f/0x1d0
+  ? i915_gem_execbuffer_ioctl+0x2d0/0x2d0
+  drm_ioctl_kernel+0xb2/0x100
+  drm_ioctl+0x209/0x360
+  ? i915_gem_execbuffer_ioctl+0x2d0/0x2d0
+  ksys_ioctl+0x87/0xc0
+  __x64_sys_ioctl+0x16/0x20
+  do_syscall_64+0x4e/0x150
+  entry_SYSCALL_64_after_hwframe+0x44/0xa9
  
  This bug was fixed by "UBUNTU: SAUCE: drm/i915: Synchronize active and
  retire callbacks" but there is an upstream fix for it, "drm/i915/gt:
  Make intel_ring_unpin() safe for concurrent pint". Let's replace the
  sauce patch with the upstream fix.
+ 
+ More info here: https://gitlab.freedesktop.org/drm/intel/issues/1599

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

Title:
  Kernel panic due to NULL ringbuffer vaddr dereference in i915

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

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

[Bug 1877394] [NEW] Kernel panic due to NULL ringbuffer vaddr dereference in i915

2020-05-07 Thread Sultan Alsawaf
Public bug reported:

This is what the crash looks like:
BUG: unable to handle page fault for address: 3448
RIP: 0010:gen8_emit_flush_render+0x163/0x190
Call Trace:
 execlists_request_alloc+0x25/0x40
 __i915_request_create+0x1f4/0x2c0
 i915_request_create+0x71/0xc0
 i915_gem_do_execbuffer+0xb98/0x1a80
 ? preempt_count_add+0x68/0xa0
 ? _raw_spin_lock+0x13/0x30
 ? _raw_spin_unlock+0x16/0x30
 i915_gem_execbuffer2_ioctl+0x1de/0x3c0
 ? i915_gem_busy_ioctl+0x7f/0x1d0
 ? i915_gem_execbuffer_ioctl+0x2d0/0x2d0
 drm_ioctl_kernel+0xb2/0x100
 drm_ioctl+0x209/0x360
 ? i915_gem_execbuffer_ioctl+0x2d0/0x2d0
 ksys_ioctl+0x87/0xc0
 __x64_sys_ioctl+0x16/0x20
 do_syscall_64+0x4e/0x150
 entry_SYSCALL_64_after_hwframe+0x44/0xa9

This bug was fixed by "UBUNTU: SAUCE: drm/i915: Synchronize active and
retire callbacks" but there is an upstream fix for it, "drm/i915/gt:
Make intel_ring_unpin() safe for concurrent pint". Let's replace the
sauce patch with the upstream fix.

More info here: https://gitlab.freedesktop.org/drm/intel/issues/1599

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

** Affects: linux (Ubuntu Focal)
 Importance: Undecided
 Status: Incomplete

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

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

Title:
  Kernel panic due to NULL ringbuffer vaddr dereference in i915

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

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

[Bug 1873673] Re: Kernel Error IRQ

2020-04-28 Thread Sultan Alsawaf
I think i801_isr needs to be marked with IRQF_NO_THREAD. Please try this
kernel and see if it fixes the problem:
https://kernel.ubuntu.com/~sultan/i801-lp1873673/

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

Title:
  Kernel Error IRQ

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

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

[Bug 1873684] Re: [Lenovo ThinkCentre M93] reboots instead of shutting down

2020-04-28 Thread Sultan Alsawaf
I think another log is needed to debug this. Please do the following:
1. Try to shut down your computer from Ubuntu, so that it reboots.
2. After it reboots, run the following command in a terminal:
   sudo journalctl -b -1 -k > PreviousDmesg.txt
3. Upload PreviousDmesg.txt here.

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

Title:
  [Lenovo ThinkCentre M93] reboots instead of shutting down

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

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

[Bug 1873714] Re: Computer freeze on application change (i915 GPU hang)

2020-04-28 Thread Sultan Alsawaf
** Summary changed:

- Computer freeze on application change / memory allocation
+ Computer freeze on application change (i915 GPU hang)

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

Title:
  Computer freeze on application change (i915 GPU hang)

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

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

[Bug 1868551] Re: Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4) i915_active_acquire

2020-04-28 Thread Sultan Alsawaf
@leozinho29-eu The kernel from comment 34 was just a plain 5.4.0-26
kernel, with nothing added to it (which wasn't intentional). Could you
reproduce the atomic update failure messages with an official Ubuntu
kernel installed, and then create a new launchpad bug for it?

Given that you encountered the atomic update failures with comment 34's
kernel, which was just an unmodified Ubuntu kernel, I don't think the
problem is related to the fix for this bug.

The bisect from your duplicate doesn't make sense, but I think there's a
reasonable explanation for that. This kernel panic is caused by a race,
so any changes to code that could affect the timing of the GPU driver's
code execution, in some indirect way, could either exacerbate or
alleviate the crash.

That said, there is a clear diagnosis for this bug, and it is definitely
fixed by the upstream commit da42104f589d ("drm/i915: Hold reference to
intel_frontbuffer as we track activity").

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

Title:
  Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4)
  i915_active_acquire

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

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

[Bug 1868551] Re: Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4) i915_active_acquire

2020-04-27 Thread Sultan Alsawaf
@leozinho29-eu Please try this kernel:
https://kernel.ubuntu.com/~sultan/i915-lp1868551/

Note that there really is only one package to install. That single
package contains everything.

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

Title:
  Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4)
  i915_active_acquire

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

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

[Bug 1868551] Re: Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4) i915_active_acquire

2020-04-27 Thread Sultan Alsawaf
@leozinho29-eu For some reason, the builder I used to make the kernel in
comment 34 didn't pick up the change that was supposed to fix this bug's
crash... I'll rebuild it on my local machine for you.

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

Title:
  Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4)
  i915_active_acquire

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

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

[Bug 1868551] Re: Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4) i915_active_acquire

2020-04-27 Thread Sultan Alsawaf
@leozinho29-eu Wow, that's really unexpected! I'll take a look. Thanks
for the log and quick reply.

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

Title:
  Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4)
  i915_active_acquire

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

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

[Bug 1868551] Re: Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4) i915_active_acquire

2020-04-27 Thread Sultan Alsawaf
@leozinho29-eu Can you add i915.enable_fbc=0 to the kernel command line
and see if that fixes the "Atomic update failure" messages? If it does,
then we'll know the problem is related to framebuffer compression.

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

Title:
  Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4)
  i915_active_acquire

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

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

[Bug 1868551] Re: Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4) i915_active_acquire

2020-04-24 Thread Sultan Alsawaf
@lordbaco Please install this kernel and see if it still crashes:
https://kernel.ubuntu.com/~sultan/i915-lp1870265/

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

Title:
  Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4)
  i915_active_acquire

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

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

[Bug 1870265] Re: Intel GPU causes BUG: kernel NULL pointer dereference, address: 0000000000000040

2020-04-24 Thread Sultan Alsawaf
*** This bug is a duplicate of bug 1868551 ***
https://bugs.launchpad.net/bugs/1868551

** This bug has been marked a duplicate of bug 1868551
   Intel GPU Hangs : random screen freezing w/ Ubuntu 20.04 (Linux 5.4) 
i915_active_acquire

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

Title:
  Intel GPU causes BUG: kernel NULL pointer dereference, address:
  0040

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

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

[Bug 1870265] Re: Intel GPU causes BUG: kernel NULL pointer dereference, address: 0000000000000040

2020-04-24 Thread Sultan Alsawaf
@leozinho29-eu Please install this kernel and see if it still crashes:
https://kernel.ubuntu.com/~sultan/i915-lp1870265/

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

Title:
  Intel GPU causes BUG: kernel NULL pointer dereference, address:
  0040

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

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

[Bug 1870265] Re: Intel GPU causes BUG: kernel NULL pointer dereference, address: 0000000000000040

2020-04-24 Thread Sultan Alsawaf
This bug is fixed by upstream commit
da42104f589d979bbe402703fd836cec60befae1:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=da42104f589d979bbe402703fd836cec60befae1

It looks like that commit was *supposed* to be backported to 5.4 ("Cc:
 # v5.4+"), but the i915 maintainers didn't do
it, so we'll need to backport it ourselves.

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

Title:
  Intel GPU causes BUG: kernel NULL pointer dereference, address:
  0040

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

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

[Bug 1873800] Re: Include device tree blobs in linux-riscv packages

2020-04-23 Thread Sultan Alsawaf
** Description changed:

  SRU Justification
  
  Impact: linux-riscv is not shipping device tree blobs, which are needed
  to improve hardware support.
  
  Fix: Set do_dtbs=true in the build to start shipping device tree blobs
  in linux-modules package.
  
  Test Case: Confirm that the device tree blobs are installed by linux-
- modules at /lib/firmware//devcie-tree.
+ modules at /lib/firmware//device-tree.
  
  Regression Potential: Minimal. This should only impact parameters used
  by drivers, and the parameters should now better match what is needed by
  the hardware.

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

Title:
  Include device tree blobs in linux-riscv packages

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

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

[Bug 1872001] Re: 5.3.0-46-generic - i915 - frequent GPU hangs / resets rcs0

2020-04-23 Thread Sultan Alsawaf
@eggie Yes, you should actually blacklist the nouveau module. Or
instead, if you don't want your Nvidia card to drain power while you're
using exclusively Intel graphics, run the following commands:

sudo -i
cat << EOF | sudo tee /etc/udev/rules.d/00-pcidevices.rules
ACTION=="add", KERNEL==":01:00.0", SUBSYSTEM=="pci", RUN+="/bin/sh -c 'echo 
1 > /sys/bus/pci/devices/:01:00.0/remove'"
EOF

This adds a permanent rule to eject the Nvidia card from your system so
that it won't use any power. Reboot for it to take effect. On some
laptops this doesn't stop the Nvidia card from draining power, but on
Dell laptops it does. This is what I use on my Precision 5540, which is
essentially the same laptop as yours.

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

Title:
  5.3.0-46-generic - i915 - frequent GPU hangs  / resets rcs0

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

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

[Bug 1872001] Re: 5.3.0-46-generic - i915 - frequent GPU hangs / resets rcs0

2020-04-22 Thread Sultan Alsawaf
@eggie You shouldn't be using nouveau on your hardware; it has almost no
support for the Turing architecture from Nvidia. You should blacklist
nouveau and then reboot. If you want to make use of your Nvidia card,
you'll have to use the binary Nvidia driver sadly.

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

Title:
  5.3.0-46-generic - i915 - frequent GPU hangs  / resets rcs0

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

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

[Bug 1874124] Re: Add hw timestamps to received skbs in peak_canfd

2020-04-22 Thread Sultan Alsawaf
** Description changed:

+ [Impact]
+ 
  In commit 2b1a4547c122dcbe1a876236b44408c7d01c upstream, useful hw
  timestamps were added to received messages in the peak_canfd driver.
  Backport the patch so users of our kernels can make use of the
  timestamps.
+ 
+ [Test case]
+ 
+ Apply the patch and compile.
+ 
+ [Fix]
+ 
+ Cherry pick 2b1a4547c122dcbe1a876236b44408c7d01c into B/E/F.
+ 
+ [Regression potential]
+ 
+ Low. This is a small upstream commit to an uncommonly used device
+ driver.

** Description changed:

  [Impact]
- 
- In commit 2b1a4547c122dcbe1a876236b44408c7d01c upstream, useful hw
- timestamps were added to received messages in the peak_canfd driver.
- Backport the patch so users of our kernels can make use of the
- timestamps.
+ In commit 2b1a4547c122dcbe1a876236b44408c7d01c upstream, useful hw 
timestamps were added to received messages in the peak_canfd driver. Backport 
the patch so users of our kernels can make use of the timestamps.
  
  [Test case]
- 
  Apply the patch and compile.
  
  [Fix]
- 
  Cherry pick 2b1a4547c122dcbe1a876236b44408c7d01c into B/E/F.
  
  [Regression potential]
- 
- Low. This is a small upstream commit to an uncommonly used device
- driver.
+ Low. This is a small upstream commit to an uncommonly used device driver.

** Description changed:

  [Impact]
  In commit 2b1a4547c122dcbe1a876236b44408c7d01c upstream, useful hw 
timestamps were added to received messages in the peak_canfd driver. Backport 
the patch so users of our kernels can make use of the timestamps.
+ 
+ SF 274042.
  
  [Test case]
  Apply the patch and compile.
  
  [Fix]
  Cherry pick 2b1a4547c122dcbe1a876236b44408c7d01c into B/E/F.
  
  [Regression potential]
  Low. This is a small upstream commit to an uncommonly used device driver.

** Description changed:

  [Impact]
- In commit 2b1a4547c122dcbe1a876236b44408c7d01c upstream, useful hw 
timestamps were added to received messages in the peak_canfd driver. Backport 
the patch so users of our kernels can make use of the timestamps.
- 
- SF 274042.
+ SF 274042: In commit 2b1a4547c122dcbe1a876236b44408c7d01c upstream, 
useful hw timestamps were added to received messages in the peak_canfd driver. 
Backport the patch so users of our kernels can make use of the timestamps.
  
  [Test case]
  Apply the patch and compile.
  
  [Fix]
  Cherry pick 2b1a4547c122dcbe1a876236b44408c7d01c into B/E/F.
  
  [Regression potential]
  Low. This is a small upstream commit to an uncommonly used device driver.

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

Title:
  Add hw timestamps to received skbs in peak_canfd

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

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

[Bug 1872001] Re: 5.3.0-46-generic - i915 - frequent GPU hangs / resets rcs0

2020-04-22 Thread Sultan Alsawaf
@jlammrs You can't use that kernel with secure boot because it's
unsigned.

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

Title:
  5.3.0-46-generic - i915 - frequent GPU hangs  / resets rcs0

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

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

[Bug 1874124] [NEW] Add hw timestamps to received skbs in peak_canfd

2020-04-21 Thread Sultan Alsawaf
Public bug reported:

In commit 2b1a4547c122dcbe1a876236b44408c7d01c upstream, useful hw
timestamps were added to received messages in the peak_canfd driver.
Backport the patch so users of our kernels can make use of the
timestamps.

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

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

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

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

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

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

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

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

Title:
  Add hw timestamps to received skbs in peak_canfd

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

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

[Bug 1869924] Re: High power consumption by Intel iGPU on Skylake+

2020-04-17 Thread Sultan Alsawaf
*** This bug is a duplicate of bug 1853044 ***
https://bugs.launchpad.net/bugs/1853044

Duplicate of https://launchpad.net/bugs/1853044

** This bug has been marked a duplicate of bug 1853044
   5.3.0-23-generic causes fans to spin when idle

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

Title:
  High power consumption by Intel iGPU on Skylake+

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

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

[Bug 1869924] Re: High power consumption by Intel iGPU on Skylake+

2020-04-01 Thread Sultan Alsawaf
** Changed in: linux (Ubuntu Focal)
   Status: Incomplete => Confirmed

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

Title:
  High power consumption by Intel iGPU on Skylake+

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

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

[Bug 1870242] Re: Kernel oops in i915 on 5.4.0-18-generic

2020-04-01 Thread Sultan Alsawaf
** Changed in: linux (Ubuntu Focal)
   Status: Incomplete => Confirmed

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

Title:
  Kernel oops in i915 on 5.4.0-18-generic

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

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

[Bug 1870242] Re: Kernel oops in i915 on 5.4.0-18-generic

2020-04-01 Thread Sultan Alsawaf
** Description changed:

  I was running 5.4.0-18-generic and got the following splat doing nothing 
interesting in particular:
  BUG: unable to handle page fault for address: 84abf450
  #PF: supervisor instruction fetch in kernel mode
  #PF: error_code(0x0010) - not-present page
  PGD 4d420e067 P4D 4d420e067 PUD 4d420f063 PMD 0
  Oops: 0010 [#1] SMP
  CPU: 11 PID: 1114 Comm: kworker/11:3 Tainted: P U O  
5.4.0-18-generic #22
  Hardware name: Dell Inc. Precision 5540/0FMYX6, BIOS 1.5.0 12/25/2019
  Workqueue: events __intel_wakeref_put_work [i915]
  RIP: 0010:0x84abf450
  Code: Bad RIP value.
  RSP: 0018:ad7380757cc0 EFLAGS: 00010246
  RAX:  RBX: 89ebc46a6d98 RCX: 
  RDX: 0001 RSI: 0001 RDI: 89ebc46a6d98
  RBP: ad7380757d40 R08: 89ebd88eeb58 R09: 89ebd88eec28
  R10:  R11: ac065868 R12: 89ebc46a6d98
  R13:  R14: 0001 R15: 89ebd00283c0
  FS:  () GS:89ebdc2c() knlGS:
  CS:  0010 DS:  ES:  CR0: 80050033
  CR2: 84abf426 CR3: 0004d420a002 CR4: 003606e0
  DR0:  DR1:  DR2: 
  DR3:  DR6: fffe0ff0 DR7: 0400
  Call Trace:
   ? __flush_work+0x51/0x1d0
   ? wake_up_process+0x15/0x20
   __cancel_work_timer+0x10e/0x190
   ? _cond_resched+0x19/0x30
   ? synchronize_irq+0x3e/0xb0
   cancel_work_sync+0x10/0x20
   gen6_disable_rps_interrupts+0xa0/0xd0 [i915]
   gen6_rps_idle+0x1f/0xf0 [i915]
   __gt_park+0x93/0xa0 [i915]
   intel_wakeref_put_last+0x1f/0x50 [i915]
   __intel_wakeref_put_work+0x37/0x40 [i915]
   process_one_work+0x1eb/0x3b0
   worker_thread+0x4d/0x400
   kthread+0x104/0x140
   ? process_one_work+0x3b0/0x3b0
   ? kthread_park+0x90/0x90
   ret_from_fork+0x1f/0x40
  
  I looked through the differences between 5.4.0-18 and the tip of master-
  next for focal ("UBUNTU: upstream stable to v5.4.29"), and there are no
  new changes to i915 that could've fixed this.
+ 
+ I've filed a bug with Intel, since this doesn't seem to be Ubuntu-
+ specific: https://gitlab.freedesktop.org/drm/intel/issues/1597

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

Title:
  Kernel oops in i915 on 5.4.0-18-generic

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

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

[Bug 1870242] [NEW] Kernel oops in i915 on 5.4.0-18-generic

2020-04-01 Thread Sultan Alsawaf
Public bug reported:

I was running 5.4.0-18-generic and got the following splat doing nothing 
interesting in particular:
BUG: unable to handle page fault for address: 84abf450
#PF: supervisor instruction fetch in kernel mode
#PF: error_code(0x0010) - not-present page
PGD 4d420e067 P4D 4d420e067 PUD 4d420f063 PMD 0
Oops: 0010 [#1] SMP
CPU: 11 PID: 1114 Comm: kworker/11:3 Tainted: P U O  
5.4.0-18-generic #22
Hardware name: Dell Inc. Precision 5540/0FMYX6, BIOS 1.5.0 12/25/2019
Workqueue: events __intel_wakeref_put_work [i915]
RIP: 0010:0x84abf450
Code: Bad RIP value.
RSP: 0018:ad7380757cc0 EFLAGS: 00010246
RAX:  RBX: 89ebc46a6d98 RCX: 
RDX: 0001 RSI: 0001 RDI: 89ebc46a6d98
RBP: ad7380757d40 R08: 89ebd88eeb58 R09: 89ebd88eec28
R10:  R11: ac065868 R12: 89ebc46a6d98
R13:  R14: 0001 R15: 89ebd00283c0
FS:  () GS:89ebdc2c() knlGS:
CS:  0010 DS:  ES:  CR0: 80050033
CR2: 84abf426 CR3: 0004d420a002 CR4: 003606e0
DR0:  DR1:  DR2: 
DR3:  DR6: fffe0ff0 DR7: 0400
Call Trace:
 ? __flush_work+0x51/0x1d0
 ? wake_up_process+0x15/0x20
 __cancel_work_timer+0x10e/0x190
 ? _cond_resched+0x19/0x30
 ? synchronize_irq+0x3e/0xb0
 cancel_work_sync+0x10/0x20
 gen6_disable_rps_interrupts+0xa0/0xd0 [i915]
 gen6_rps_idle+0x1f/0xf0 [i915]
 __gt_park+0x93/0xa0 [i915]
 intel_wakeref_put_last+0x1f/0x50 [i915]
 __intel_wakeref_put_work+0x37/0x40 [i915]
 process_one_work+0x1eb/0x3b0
 worker_thread+0x4d/0x400
 kthread+0x104/0x140
 ? process_one_work+0x3b0/0x3b0
 ? kthread_park+0x90/0x90
 ret_from_fork+0x1f/0x40

I looked through the differences between 5.4.0-18 and the tip of master-
next for focal ("UBUNTU: upstream stable to v5.4.29"), and there are no
new changes to i915 that could've fixed this.

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

** Affects: linux (Ubuntu Focal)
 Importance: Undecided
 Status: Incomplete


** Tags: focal

** Also affects: linux
   Importance: Undecided
   Status: New

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

** No longer affects: linux

** No longer affects: kernel-sru-workflow

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

** Description changed:

  I was running 5.4.0-18-generic and got the following splat doing nothing 
interesting in particular:
  BUG: unable to handle page fault for address: 84abf450
  #PF: supervisor instruction fetch in kernel mode
  #PF: error_code(0x0010) - not-present page
- PGD 4d420e067 P4D 4d420e067 PUD 4d420f063 PMD 0 
+ PGD 4d420e067 P4D 4d420e067 PUD 4d420f063 PMD 0
  Oops: 0010 [#1] SMP
  CPU: 11 PID: 1114 Comm: kworker/11:3 Tainted: P U O  
5.4.0-18-generic #22
  Hardware name: Dell Inc. Precision 5540/0FMYX6, BIOS 1.5.0 12/25/2019
  Workqueue: events __intel_wakeref_put_work [i915]
  RIP: 0010:0x84abf450
  Code: Bad RIP value.
  RSP: 0018:ad7380757cc0 EFLAGS: 00010246
  RAX:  RBX: 89ebc46a6d98 RCX: 
  RDX: 0001 RSI: 0001 RDI: 89ebc46a6d98
  RBP: ad7380757d40 R08: 89ebd88eeb58 R09: 89ebd88eec28
  R10:  R11: ac065868 R12: 89ebc46a6d98
  R13:  R14: 0001 R15: 89ebd00283c0
  FS:  () GS:89ebdc2c() knlGS:
  CS:  0010 DS:  ES:  CR0: 80050033
  CR2: 84abf426 CR3: 0004d420a002 CR4: 003606e0
  DR0:  DR1:  DR2: 
  DR3:  DR6: fffe0ff0 DR7: 0400
  Call Trace:
-  ? __flush_work+0x51/0x1d0
-  ? wake_up_process+0x15/0x20
-  __cancel_work_timer+0x10e/0x190
-  ? _cond_resched+0x19/0x30
-  ? synchronize_irq+0x3e/0xb0
-  cancel_work_sync+0x10/0x20
-  gen6_disable_rps_interrupts+0xa0/0xd0 [i915]
-  gen6_rps_idle+0x1f/0xf0 [i915]
-  __gt_park+0x93/0xa0 [i915]
-  intel_wakeref_put_last+0x1f/0x50 [i915]
-  __intel_wakeref_put_work+0x37/0x40 [i915]
-  process_one_work+0x1eb/0x3b0
-  worker_thread+0x4d/0x400
-  kthread+0x104/0x140
-  ? process_one_work+0x3b0/0x3b0
-  ? kthread_park+0x90/0x90
-  ret_from_fork+0x1f/0x40
+  ? __flush_work+0x51/0x1d0
+  ? wake_up_process+0x15/0x20
+  __cancel_work_timer+0x10e/0x190
+  ? _cond_resched+0x19/0x30
+  ? synchronize_irq+0x3e/0xb0
+  cancel_work_sync+0x10/0x20
+  gen6_disable_rps_interrupts+0xa0/0xd0 [i915]
+  gen6_rps_idle+0x1f/0xf0 [i915]
+  __gt_park+0x93/0xa0 [i915]
+  intel_wakeref_put_last+0x1f/0x50 [i915]
+  __intel_wakeref_put_work+0x37/0x40 [i915]
+  process_one_work+0x1eb/0x3b0
+  worker_thread+0x4d/0x400
+  kthread+0x104/0x140
+  ? process_one_work+0x3b0/0

[Bug 1856492] Re: linux-generic-hwe-18.04=5.3.0.25.94 in bionic-proposed causes a conflict with virtualbox-guest-x11-hwe

2020-04-01 Thread Sultan Alsawaf
The problem is that linux-generic-hwe-18.04 is a signed kernel, and
virtualbox-guest-x11-hwe is a dkms package, so they cannot mix because
you don't have our signing key to make the dkms virtualbox module fit
with our signed kernel. When you try to install virtualbox-guest-x11-hwe
and have our signed kernel installed, apt will remove the signed kernel
and attempt to install the unsigned version instead. This seems like a
sane thing to do, except that it breaks secure boot if you need the
kernel to be signed.

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

Title:
  linux-generic-hwe-18.04=5.3.0.25.94 in bionic-proposed causes a
  conflict with virtualbox-guest-x11-hwe

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

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

[Bug 1869924] [NEW] High power consumption by Intel iGPU on Skylake+

2020-03-31 Thread Sultan Alsawaf
Public bug reported:

There is an outstanding regression in i915 that breaks the RC6 power
state for Intel iGPUs on Skylake and newer. This bug was fixed upstream
in Linux 5.5. I submitted a backport of the fix for 5.4 upstream [1].

My cover letter [2] describes the issue:
The first bug, fixed by "drm/i915/gt: Schedule request retirement when timeline 
idles" upstream, is very high power consumption by i915 hardware due to an old 
commit that broke the RC6 power state for the iGPU on Skylake+. On my laptop, a 
Dell Precision 5540 with an i9-9880H, the idle power consumption of my laptop 
with this commit goes down from 10 W to 2 W, saving a massive 8 W of power. On 
other Skylake+ laptops I tested, this commit reduced idle power consumption by 
at least a few watts. The difference in power consumption can be observed by 
running `powertop` while disconnected from the charger, or by using the 
intel-undervolt tool [1] and running `intel-undervolt measure` which doesn't 
require being disconnected from the charger. The psys measurement from 
intel-undervolt is the one of interest.

Backporting this commit was not trivial due to i915's high rate of
churn, but the backport didn't require changing any code from the
original commit; it only required moving code around and not altering
some #includes.

[1] 
https://lore.kernel.org/stable/20200330033057.2629052-3-sul...@kerneltoast.com/
[2] 
https://lore.kernel.org/stable/20200330033057.2629052-1-sul...@kerneltoast.com/

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

** Affects: linux (Ubuntu Focal)
 Importance: Undecided
 Status: Incomplete

** Also affects: linux
   Importance: Undecided
   Status: New

** No longer affects: lightdm (Ubuntu)

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

** No longer affects: linux

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

** Description changed:

  There is an outstanding regression in i915 that breaks the RC6 power
  state for Intel iGPUs on Skylake and newer. This bug was fixed upstream
  in Linux 5.5. I submitted a backport of the fix for 5.4 upstream [1].
  
  My cover letter [2] describes the issue:
- The first bug, fixed by
- "drm/i915/gt: Schedule request retirement when timeline idles" upstream, is 
very
- high power consumption by i915 hardware due to an old commit that broke the 
RC6
- power state for the iGPU on Skylake+. On my laptop, a Dell Precision 5540 with
- an i9-9880H, the idle power consumption of my laptop with this commit goes 
down
- from 10 W to 2 W, saving a massive 8 W of power. On other Skylake+ laptops I
- tested, this commit reduced idle power consumption by at least a few watts. 
The
- difference in power consumption can be observed by running `powertop` while
- disconnected from the charger, or by using the intel-undervolt tool [1] and
- running `intel-undervolt measure` which doesn't require being disconnected 
from
- the charger. The psys measurement from intel-undervolt is the one of interest.
+ The first bug, fixed by "drm/i915/gt: Schedule request retirement when 
timeline idles" upstream, is very high power consumption by i915 hardware due 
to an old commit that broke the RC6 power state for the iGPU on Skylake+. On my 
laptop, a Dell Precision 5540 with an i9-9880H, the idle power consumption of 
my laptop with this commit goes down from 10 W to 2 W, saving a massive 8 W of 
power. On other Skylake+ laptops I tested, this commit reduced idle power 
consumption by at least a few watts. The difference in power consumption can be 
observed by running `powertop` while disconnected from the charger, or by using 
the intel-undervolt tool [1] and running `intel-undervolt measure` which 
doesn't require being disconnected from the charger. The psys measurement from 
intel-undervolt is the one of interest.
  
- Backporting this commit was not trivial due to i915's high rate of churn, but
- the backport didn't require changing any code from the original commit; it 
only
- required moving code around and not altering some #includes.
- 
+ Backporting this commit was not trivial due to i915's high rate of
+ churn, but the backport didn't require changing any code from the
+ original commit; it only required moving code around and not altering
+ some #includes.
  
  [1] 
https://lore.kernel.org/stable/20200330033057.2629052-3-sul...@kerneltoast.com/
  [2] 
https://lore.kernel.org/stable/20200330033057.2629052-1-sul...@kerneltoast.com/

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

Title:
  High power consumption by Intel iGPU on Skylake+

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

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

[Bug 1861359] Re: swap storms kills interactive use

2020-03-30 Thread Sultan Alsawaf
As a note: https://platform.leolabs.space/visualizations/leo is not a
valid reproducer for this bug, since the lags it causes are from
overloading the GPU, not from stressing memory.

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

Title:
  swap storms kills interactive use

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

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

[Bug 1861359] Re: swap storms kills interactive use

2020-03-27 Thread Sultan Alsawaf
FYI, this bug has nothing to do with the use of swap. It just happens
that the slow writeback incurred by using a swap device backed by non-
volatile memory makes kswapd's bouts of page thrashing last longer,
enough to the point where there's a visual freeze.

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

Title:
  swap storms kills interactive use

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

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

[Bug 1861359] Re: swap storms kills interactive use

2020-03-27 Thread Sultan Alsawaf
This problem is caused by an upstream memory management feature called
watermark boosting. Normally, when a memory allocation fails and falls
back to the page allocator, the page allocator will wake up kswapd to
free up pages in order to make the memory allocation succeed. kswapd
tries to free memory until it reaches a minimum amount of memory for
each memory zone called the high watermark.

What watermark boosting does is try to preemptively fire up kswapd to
free memory when there hasn't been an allocation failure. It does this
by increasing kswapd's high watermark goal and then firing up kswapd.
The reason why this causes freezes is because, with the increased high
watermark goal, kswapd will steal memory from processes that need it in
order to make forward progress. These processes will, in turn, try to
allocate memory again, which will cause kswapd to steal necessary pages
from those processes again, in a positive feedback loop known as page
thrashing. When page thrashing occurs, your system is essentially
livelocked until the necessary forward progress can be made to stop
processes from trying to continuously allocate memory and trigger kswapd
to steal it back.

This problem already occurs with kswapd *without* watermark boosting,
but it's usually only encountered on machines with a small amount of
memory and/or a slow CPU. Watermark boosting just makes the existing
problem worse enough to notice on higher spec'd machines.

To fix the issue in this bug, watermark boosting can be disabled with the 
following:
# echo 0 > /proc/sys/vm/watermark_boost_factor

There's really no harm in doing so, because watermark boosting is an
inherently broken feature...

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

Title:
  swap storms kills interactive use

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

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

[Bug 1866191] Re: Can no longer boot after 19.10 Upgrade

2020-03-10 Thread Sultan Alsawaf
Marking as invalid since, as discussed over IRC, the issue was caused by
performing the upgrade via an unsanctioned method, and a reinstall
resolved the issue.

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

Title:
  Can no longer boot after 19.10 Upgrade

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

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

[Bug 1866191] Re: Can no longer boot after 19.10 Upgrade

2020-03-10 Thread Sultan Alsawaf
** Changed in: ubuntu-release-upgrader (Ubuntu)
   Status: New => Invalid

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

Title:
  Can no longer boot after 19.10 Upgrade

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

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

[Bug 1831566] Re: [realtime app] not possible to redirect drivers/nvme IRQs from realtime cpuset

2020-03-09 Thread Sultan Alsawaf
Sorry for the late action. I made a patch (attached) adding the nitpicks
we discussed above, and a couple others. Please take a look and let me
know what you think. If all is well, I'll submit this all to the mailing
list to be merged.

** Patch added: "0001-nvme-add-nitpicks-for-cq_cpulist-module-parameter.patch"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1831566/+attachment/5334962/+files/0001-nvme-add-nitpicks-for-cq_cpulist-module-parameter.patch

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

Title:
  [realtime app] not possible to redirect drivers/nvme IRQs from
  realtime cpuset

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

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

[Bug 1814231] Re: linux 4.4.0-142.168 ADT test failure (ubuntu_vfat_stress): hung task on i386

2020-03-05 Thread Sultan Alsawaf
Powerpc hung on vfat stress using the 5.3.0-42.34 eoan kernel:
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac
/autopkgtest-eoan/eoan/ppc64el/l/linux/20200229_025412_feca6@/log.gz

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

Title:
  linux 4.4.0-142.168 ADT test failure (ubuntu_vfat_stress): hung task
  on i386

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1814231/+subscriptions

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

[Bug 1865493] Re: eoan/linux-oracle: 5.3.0-1011.12 -proposed tracker

2020-03-02 Thread Sultan Alsawaf
** Summary changed:

- eoan/linux-oracle:  -proposed tracker
+ eoan/linux-oracle: 5.3.0-1011.12 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1865438] Re: eoan/linux-kvm: 5.3.0-1012.13 -proposed tracker

2020-03-02 Thread Sultan Alsawaf
** Summary changed:

- eoan/linux-kvm:  -proposed tracker
+ eoan/linux-kvm: 5.3.0-1012.13 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

Title:
  eoan/linux-kvm: 5.3.0-1012.13 -proposed tracker

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

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

[Bug 1865482] Re: eoan/linux-aws: 5.3.0-1013.14 -proposed tracker

2020-03-02 Thread Sultan Alsawaf
** Summary changed:

- eoan/linux-aws:  -proposed tracker
+ eoan/linux-aws: 5.3.0-1013.14 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

Title:
  eoan/linux-aws: 5.3.0-1013.14 -proposed tracker

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

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

[Bug 1865491] Re: eoan/linux-gcp: 5.3.0-1014.15 -proposed tracker

2020-03-02 Thread Sultan Alsawaf
** Summary changed:

- eoan/linux-gcp:  -proposed tracker
+ eoan/linux-gcp: 5.3.0-1014.15 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1865200] Re: bionic/linux-oem: 4.15.0-1076.86 -proposed tracker

2020-02-28 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-oem:  -proposed tracker
+ bionic/linux-oem: 4.15.0-1076.86 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

Title:
  bionic/linux-oem: 4.15.0-1076.86 -proposed tracker

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

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

[Bug 1865198] Re: xenial/linux-azure: 4.15.0-1074.79 -proposed tracker

2020-02-28 Thread Sultan Alsawaf
** Summary changed:

- xenial/linux-azure:  -proposed tracker
+ xenial/linux-azure: 4.15.0-1074.79 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

Title:
  xenial/linux-azure: 4.15.0-1074.79 -proposed tracker

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

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

[Bug 1865193] Re: bionic/linux-azure: 5.0.0-1034.36 -proposed tracker

2020-02-28 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-azure:  -proposed tracker
+ bionic/linux-azure: 5.0.0-1034.36 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

Title:
  bionic/linux-azure: 5.0.0-1034.36 -proposed tracker

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

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

[Bug 1864730] Re: bionic/linux-oem: 4.15.0-1075.85 -proposed tracker

2020-02-26 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-oem:  -proposed tracker
+ bionic/linux-oem: 4.15.0-1075.85 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

Title:
  bionic/linux-oem: 4.15.0-1075.85 -proposed tracker

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

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

[Bug 1864741] Re: bionic/linux-oracle: 4.15.0-1035.38 -proposed tracker

2020-02-26 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-oracle:  -proposed tracker
+ bionic/linux-oracle: 4.15.0-1035.38 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

Title:
  bionic/linux-oracle: 4.15.0-1035.38 -proposed tracker

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

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

[Bug 1864748] Re: xenial/linux-gcp: 4.15.0-1057.61 -proposed tracker

2020-02-26 Thread Sultan Alsawaf
** Summary changed:

- xenial/linux-gcp:  -proposed tracker
+ xenial/linux-gcp: 4.15.0-1057.61 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1849947] Re: Dell XPS 13 (7390) Display Flickering - 19.10

2020-02-20 Thread Sultan Alsawaf
The patch to disable PSR fixes these glitches on my XPS laptops. Marking
the bug as verified.

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

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

Title:
  Dell XPS 13 (7390) Display Flickering - 19.10

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

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

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

2020-02-20 Thread Sultan Alsawaf
** Summary changed:

- xenial/linux-aws-hwe:  -proposed tracker
+ xenial/linux-aws-hwe: 4.15.0-1061.65~16.04.1 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

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

2020-02-19 Thread Sultan Alsawaf
** Summary changed:

- xenial/linux-aws-hwe:  -proposed tracker
+ xenial/linux-aws-hwe: 4.15.0-1061.63~16.04.1 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

[Bug 1863332] Re: linux-kvm: -proposed tracker

2020-02-19 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-kvm: 4.15.0-1054.54 -proposed tracker
+ linux-kvm:  -proposed tracker

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

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

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

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

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

Title:
  bionic/linux-kvm:  -proposed tracker

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

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

[Bug 1863325] Re: bionic/linux-aws: 4.15.0-1061.63 -proposed tracker

2020-02-18 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-aws:  -proposed tracker
+ bionic/linux-aws: 4.15.0-1061.63 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

Title:
  bionic/linux-aws: 4.15.0-1061.63 -proposed tracker

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

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

[Bug 1863332] Re: bionic/linux-kvm: 4.15.0-1054.54 -proposed tracker

2020-02-18 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-kvm:  -proposed tracker
+ bionic/linux-kvm: 4.15.0-1054.54 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

Title:
  bionic/linux-kvm: 4.15.0-1054.54 -proposed tracker

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

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

[Bug 1863330] Re: bionic/linux-gke-4.15: 4.15.0-1053.56 -proposed tracker

2020-02-18 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-gke-4.15:  -proposed tracker
+ bionic/linux-gke-4.15: 4.15.0-1053.56 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

Title:
  bionic/linux-gke-4.15: 4.15.0-1053.56 -proposed tracker

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

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

[Bug 1849947] Re: Dell XPS 13 (7390) Display Flickering - 19.10

2020-02-06 Thread Sultan Alsawaf
Try running the following command and reboot after:

sudo bash -c "echo 'options i915 enable_psr=0' >
/etc/modprobe.d/i915.conf"

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

Title:
  Dell XPS 13 (7390) Display Flickering - 19.10

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

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

[Bug 1862263] [NEW] test_sysctl in ubuntu_kernel_selftests fails to build on eoan

2020-02-06 Thread Sultan Alsawaf
Public bug reported:

test_sysctl.c:181:4: error: ‘struct sysctl_test’ has no member named ‘seek’
181 |   .seek = 4,
|^~~~

This affects all arches. Kernel 5.3.0-40.32.

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

** Affects: linux (Ubuntu Eoan)
 Importance: Undecided
 Status: Incomplete


** Tags: eoan

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

** Description changed:

-   test_sysctl.c:181:4: error: ‘struct sysctl_test’ has no member named ‘seek’
- 181 |   .seek = 4,
- |^~~~
+ test_sysctl.c:181:4: error: ‘struct sysctl_test’ has no member named ‘seek’
+ 181 |   .seek = 4,
+ |^~~~
  
- This affects all arches.
+ This affects all arches. Kernel 5.3.0-40.32.

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

Title:
  test_sysctl in ubuntu_kernel_selftests fails to build on eoan

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

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

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

2020-02-03 Thread Sultan Alsawaf
** Summary changed:

- xenial/linux-aws-hwe:  -proposed tracker
+ xenial/linux-aws-hwe: 4.15.0-1059.61~16.04.1 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

[Bug 1861160] Re: xenial/linux-gcp: 4.15.0-1053.57 -proposed tracker

2020-02-03 Thread Sultan Alsawaf
** Summary changed:

- xenial/linux-gcp:  -proposed tracker
+ xenial/linux-gcp: 4.15.0-1053.57 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1861164] Re: xenial/linux-hwe: 4.15.0-87.87~16.04.1 -proposed tracker

2020-02-03 Thread Sultan Alsawaf
** Summary changed:

- xenial/linux-hwe:  -proposed tracker
+ xenial/linux-hwe: 4.15.0-87.87~16.04.1 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1861156] Re: xenial/linux-azure: 4.15.0-1068.73 -proposed tracker

2020-02-03 Thread Sultan Alsawaf
** Summary changed:

- xenial/linux-azure:  -proposed tracker
+ xenial/linux-azure: 4.15.0-1068.73 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

Title:
  xenial/linux-azure: 4.15.0-1068.73 -proposed tracker

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

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

[Bug 1861199] Re: eoan/linux-aws: 5.3.0-1011.12 -proposed tracker

2020-02-03 Thread Sultan Alsawaf
** Summary changed:

- eoan/linux-aws:  -proposed tracker
+ eoan/linux-aws: 5.3.0-1011.12 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

[Bug 1861201] Re: eoan/linux-azure: 5.3.0-1011.12 -proposed tracker

2020-02-03 Thread Sultan Alsawaf
** Summary changed:

- eoan/linux-azure:  -proposed tracker
+ eoan/linux-azure: 5.3.0-1011.12 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1861205] Re: eoan/linux-gcp: 5.3.0-1012.13 -proposed tracker

2020-02-03 Thread Sultan Alsawaf
** Summary changed:

- eoan/linux-gcp:  -proposed tracker
+ eoan/linux-gcp: 5.3.0-1012.13 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1861187] Re: bionic/linux-gke-5.0: 5.0.0-1030.31 -proposed tracker

2020-01-30 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-gke-5.0:  -proposed tracker
+ bionic/linux-gke-5.0: 5.0.0-1030.31 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

Title:
  bionic/linux-gke-5.0: 5.0.0-1030.31 -proposed tracker

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

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

[Bug 1861115] Re: xenial/linux-snapdragon: 4.4.0-1133.141 -proposed tracker

2020-01-29 Thread Sultan Alsawaf
** Summary changed:

- xenial/linux-snapdragon:  -proposed tracker
+ xenial/linux-snapdragon: 4.4.0-1133.141 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

[Bug 1830585] Re: cpuset_memory_spread from controllers test suite in LTP failed

2020-01-23 Thread Sultan Alsawaf
** Tags added: sru-20191202

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

Title:
  cpuset_memory_spread from controllers test suite in LTP failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1830585/+subscriptions

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

[Bug 1824228] Re: ept test fails in kvm_unit_tests

2020-01-23 Thread Sultan Alsawaf
** Tags added: sru-20191202

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

Title:
  ept test fails in kvm_unit_tests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1824228/+subscriptions

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

[Bug 1859817] Re: eoan/linux-aws: 5.3.0-1010.11 -proposed tracker

2020-01-23 Thread Sultan Alsawaf
** Tags added: regression-testing-passed

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

Title:
  eoan/linux-aws: 5.3.0-1010.11 -proposed tracker

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

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

[Bug 1845863] Re: vma05 in mm from ubuntu_ltp failed on 5.3 kernel

2020-01-23 Thread Sultan Alsawaf
** Tags added: sru-20191202

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

Title:
  vma05 in mm from ubuntu_ltp failed on 5.3 kernel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1845863/+subscriptions

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

[Bug 1851619] Re: test_blackhole_dev from net in ubuntu_kernel_selftests failed on B-GCP 5.3

2020-01-23 Thread Sultan Alsawaf
** Tags added: sru-20191202

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

Title:
  test_blackhole_dev from net in ubuntu_kernel_selftests failed on B-GCP
  5.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1851619/+subscriptions

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

[Bug 1859693] Re: bionic/linux-hwe: 5.3.0-28.30~18.04.1 -proposed tracker

2020-01-15 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-hwe:  -proposed tracker
+ bionic/linux-hwe: 5.3.0-28.30~18.04.1 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1858534] Re: disco/linux-azure: 5.0.0-1029.31 -proposed tracker

2020-01-13 Thread Sultan Alsawaf
** Summary changed:

- disco/linux-azure:  -proposed tracker
+ disco/linux-azure: 5.0.0-1029.31 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

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

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

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

2020-01-13 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-aws-5.0:  -proposed tracker
+ bionic/linux-aws-5.0: 5.0.0-1024.27~18.04.1 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

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

2020-01-13 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-oracle-5.0:  -proposed tracker
+ bionic/linux-oracle-5.0: 5.0.0-1010.15~18.04.1 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1858531] Re: disco/linux-aws: 5.0.0-1024.27 -proposed tracker

2020-01-10 Thread Sultan Alsawaf
** Summary changed:

- disco/linux-aws:  -proposed tracker
+ disco/linux-aws: 5.0.0-1024.27 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

[Bug 1858539] Re: disco/linux-gcp: 5.0.0-1029.30 -proposed tracker

2020-01-10 Thread Sultan Alsawaf
** Summary changed:

- disco/linux-gcp:  -proposed tracker
+ disco/linux-gcp: 5.0.0-1029.30 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1858543] Re: disco/linux-oracle: 5.0.0-1010.15 -proposed tracker

2020-01-10 Thread Sultan Alsawaf
** Summary changed:

- disco/linux-oracle:  -proposed tracker
+ disco/linux-oracle: 5.0.0-1010.15 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1858942] Re: bionic/linux-hwe: 5.3.0-27.29~18.04.1 -proposed tracker

2020-01-10 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux-hwe:  -proposed tracker
+ bionic/linux-hwe: 5.3.0-27.29~18.04.1 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1858956] Re: bionic/linux: 4.15.0-75.85 -proposed tracker

2020-01-10 Thread Sultan Alsawaf
** Summary changed:

- bionic/linux:  -proposed tracker
+ bionic/linux: 4.15.0-75.85 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

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

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

[Bug 1853485] Re: Bionic kernel panic on Cavium ThunderX CN88XX

2019-12-11 Thread Sultan Alsawaf
This patch fixes this issue: https://git.launchpad.net/~kerneltoast/+git
/bionic-linux/commit/?id=4d161b28e6bd713f53d9097a6c74d3cb201c1363

Note that this issue is a duplicate of
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1855059.

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

Title:
  Bionic kernel panic on Cavium ThunderX CN88XX

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

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

[Bug 1855059] Re: [Regression] 4.15.0-73.82 Can not boot ThunderX

2019-12-11 Thread Sultan Alsawaf
This is the true fix for the issue:
https://git.launchpad.net/~kerneltoast/+git/bionic-
linux/commit/?id=4d161b28e6bd713f53d9097a6c74d3cb201c1363

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

Title:
  [Regression] 4.15.0-73.82 Can not boot ThunderX

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

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

[Bug 1855059] Re: [Regression] 4.15.0-73.82 Can not boot ThunderX

2019-12-09 Thread Sultan Alsawaf
This is caused by commit 07d6360bfefa "arm64: Do not mask out PTE_RDONLY
in pte_same()" (https://git.launchpad.net/~ubuntu-
kernel/ubuntu/+source/linux/+git/bionic/commit/?id=07d6360bfefa4a01ca6b7014f9de2e88da9edba0)

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

Title:
  [Regression] 4.15.0-73.82 Can not boot ThunderX

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

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

[Bug 1854751] Re: eoan/linux-gcp: 5.3.0-1010.11 -proposed tracker

2019-12-04 Thread Sultan Alsawaf
** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Sultan Alsawaf 
(kerneltoast)

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

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

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

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

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

[Bug 1854751] Re: eoan/linux-gcp: 5.3.0-1010.11 -proposed tracker

2019-12-04 Thread Sultan Alsawaf
** Summary changed:

- eoan/linux-gcp:  -proposed tracker
+ eoan/linux-gcp: 5.3.0-1010.11 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

[Bug 1854749] Re: eoan/linux-azure: 5.3.0-1009.10 -proposed tracker

2019-12-04 Thread Sultan Alsawaf
** Summary changed:

- eoan/linux-azure:  -proposed tracker
+ eoan/linux-azure: 5.3.0-1009.10 -proposed tracker

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

Title:
  eoan/linux-azure: 5.3.0-1009.10 -proposed tracker

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

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

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

2019-12-04 Thread Sultan Alsawaf
** Summary changed:

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

** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => In Progress

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

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Status: New => In Progress

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

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

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

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

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

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

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

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

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

  1   2   >