[Kernel-packages] [Bug 1819413] Re: [ICL] S0ix Enabling

2019-06-12 Thread AceLan Kao
** Changed in: linux-oem-osp1 (Ubuntu Bionic)
   Status: In Progress => Incomplete

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

Title:
  [ICL] S0ix Enabling

Status in intel:
  Incomplete
Status in linux package in Ubuntu:
  Triaged
Status in linux-oem-osp1 package in Ubuntu:
  New
Status in linux-oem-osp1 source package in Bionic:
  Incomplete

Bug description:
  Description:

  S0ix-states represent the residency in the Intel® SoC idle standby power 
states.
  The S0ix states shut off part of the SoC when they are not in use. The S0ix
  states are triggered when specific conditions within the SoC have been 
achieved,
  for example: certain components are in low power states. The SoC consumes the
  least amount of power in the deepest (for example, S0i3) state.

  S0ix is triggered by two paths:
  (1) by system PM, e.g "suspend-to-idle" triggered by pressing the power button
  on Android device or command manually triggered on any Linux based distros;

  (2) by runtime PM, i.e no system activities with display off.

  S0ix should simply work in theory with trigger path (1) if we have the device
  drivers ready. On GLK, we require the below PCI device drivers with system PM
  support. ACPI device requirements are WIP.

   I2C designware PCI driver
   USB XHCI PCI ID
   Intel trace Hub[NPK) PCI ID
   SPI BXT PCI ID
   SCSI UFS BXT PCI host ID
   Graphics
   Audio
   PWM
   HSUART
   Security engine

  S0ix with trigger path (2) require work as defined below.
   All the above device drivers need to support runtime PM (already defined in 
the same LCK above)
   PCI root port to support runtime PM

  Both paths will require intel_idle driver support for S0ix support.

  238f9c11351f8af8534ae0318b4d9acc77b09ee8

  8aba056a4ea6da18186025a335a96b2f071e69d3

  6769fdbe27d782dfee5e459e25b44baacc7c8459

  cfb55af9add9c19806300fdb31f4cd25e67c6d1a

  4a5861f714293767980e4948c9a7c9e5e09c9b94

  2a13096ac7da07a1bfc9d91fc4a982020e7ded2b

  cd89e92b7399a69512b8d855a2dd145c47399bf8

  d6827015e671cd17871c9b7a0fabe06c044f7470

  0e68eeea9894feeba2edf7ec63e4551b87f39621

  e50af8332785355de3cb40d9f5e8c45dbfc86f53

  Target Kernel: 5.1
  Target Release: 19.10

  SRU Justification
  [Impact]
  Requires patches to make new INTEL CPU IceLake support s0ix
  [Fix]
  The patch list is provided by Intel
     238f9c11351f platform/x86: intel_pmc_core: Quirk to ignore XTAL
  shutdown
     8aba056a4ea6 platform/x86: intel_pmc_core: Add Package cstates residency 
info
     6769fdbe27d7 platform/x86: intel_pmc_core: Add ICL platform support
     cfb55af9add9 platform/x86: intel_pmc_core: Convert to INTEL_CPU_FAM6 macro
     4a5861f71429 platform/x86: intel_pmc_core: Avoid a u32 overflow
     2a13096ac7da platform/x86: intel_pmc_core: Include Reserved IP for LTR
     cd89e92b7399 platform/x86: intel_pmc_core: Fix file permissions for 
ltr_show
     d6827015e671 platform/x86: intel_pmc_core: Fix PCH IP name
     0e68eeea9894 platform/x86: intel_pmc_core: Fix PCH IP sts reading
     e50af8332785 platform/x86: intel_pmc_core: Handle CFL regmap properly

  Below commit fix 238f9c11351f ("platform/x86: intel_pmc_core: Quirk to ignore 
XTAL shutdown")
     9ae11e237d95 platform/x86: intel_pmc_core: Mark local function static

  [Test]
  Verified on Intel ICL-Y SDP with fwts s2idle test 30 times, the system is 
still working.

  [Regression Risk]
  Low. Those patches are all small changes, and most of them are adding IDs, 
should be safe to include them.

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

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


[Kernel-packages] [Bug 1812176] Re: psock_tpacket from the net test in ubuntu_kernel_selftests fail on KVM kernels

2019-06-12 Thread Po-Hsu Lin
After discussed with Kamal, we're not going to enable this for the KVM
kernel.

This test should be skipped if KALLSYMS was not enabled.

Patch sent to upstream:
https://lore.kernel.org/linux-kselftest/20190612064752.6701-1-po-hsu@canonical.com/T/#u

** Tags added: cosmic disco xenial

** Tags added: ubuntu-kernel-selftests

** Summary changed:

- psock_tpacket from the net test in ubuntu_kernel_selftests fail on KVM kernels
+ psock_tpacket from the net test in ubuntu_kernel_selftests failed on KVM 
kernels

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

Title:
  psock_tpacket from the net test in ubuntu_kernel_selftests failed on
  KVM kernels

Status in ubuntu-kernel-tests:
  New
Status in linux-kvm package in Ubuntu:
  New
Status in linux-kvm source package in Xenial:
  New
Status in linux-kvm source package in Bionic:
  New
Status in linux-kvm source package in Cosmic:
  New

Bug description:
  The psock_tpacket in the net test from ubuntu_kernel_selftests failed with 
B-KVM
  $ sudo ./psock_tpacket 
  test: TPACKET_V1 with PACKET_RX_RING open: No such file or directory

  Look into the code, it seems that this file not found error is caused
  by the attempt to access /proc/kallsyms in test_kernel_bit_width():

  static int test_kernel_bit_width(void)
  {
char in[512], *ptr;
int num = 0, fd;
ssize_t ret;

fd = open("/proc/kallsyms", O_RDONLY);
if (fd == -1) {
perror("open");
exit(1);
}

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-1028-kvm 4.15.0-1028.28
  ProcVersionSignature: User Name 4.15.0-1028.28-kvm 4.15.18
  Uname: Linux 4.15.0-1028-kvm x86_64
  ApportVersion: 2.20.9-0ubuntu7.5
  Architecture: amd64
  Date: Thu Jan 17 08:05:47 2019
  SourcePackage: linux-kvm
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Kernel-packages] [Bug 1830011] Re: cve-2017-17053 from cve test suite in LTP failed

2019-06-12 Thread Po-Hsu Lin
It's confirmed that this is caused by the block_dev test from
kernel_misc, suggestion from upstream is to run this test separately.

A test shows this can be fix if we move the kernel_misc test to the end.

** Changed in: ubuntu-kernel-tests
 Assignee: (unassigned) => Po-Hsu Lin (cypressyew)

** Changed in: ubuntu-kernel-tests
   Status: New => In Progress

** No longer affects: linux (Ubuntu)

** No longer affects: linux (Ubuntu Cosmic)

** Tags added: ubuntu-ltp-syscalls

** Tags removed: ubuntu-ltp-syscalls
** Tags added: ubuntu-ltp

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

Title:
  cve-2017-17053 from cve test suite in LTP failed

Status in ubuntu-kernel-tests:
  Fix Released

Bug description:
  This CVE (2017-17053)[1] has been fixed in our kernels

  However the cve-2017-17053 test in CVE test suite from LTP will complain that:
   tag=cve-2017-17053 stime=1558483177
   cmdline="cve-2017-17053"
   contacts=""
   analysis=exit
   <<>> 
   tst_test.c:1096: INFO: Timeout per run is 0h 05m 00s
   tst_taint.c:88: BROK: Kernel is already tainted: 14849

   Summary:
   passed 0
   failed 0
   skipped 0
   warnings 0
   <<>>

  This is because there are some other tests failed before this one, and
  taints the kernel.


  [1] https://people.canonical.com/~ubuntu-
  security/cve/2017/CVE-2017-17053.html

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: linux-image-4.18.0-20-generic 4.18.0-20.21
  ProcVersionSignature: User Name 4.18.0-20.21-generic 4.18.20
  Uname: Linux 4.18.0-20-generic x86_64
  AlsaDevices:
   total 0
   crw-rw 1 root audio 116,  1 May 22 09:45 seq
   crw-rw 1 root audio 116, 33 May 22 09:45 timer
  AplayDevices: Error: [Errno 2] No such file or directory: 'aplay': 'aplay'
  ApportVersion: 2.20.10-0ubuntu13.3
  Architecture: amd64
  ArecordDevices: Error: [Errno 2] No such file or directory: 'arecord': 
'arecord'
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  Date: Wed May 22 09:49:10 2019
  IwConfig: Error: [Errno 2] No such file or directory: 'iwconfig': 'iwconfig'
  Lsusb: Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: QEMU Standard PC (i440FX + PIIX, 1996)
  PciMultimedia:
   
  ProcFB: 0 cirrusdrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-20-generic 
root=UUID=2a4b0342-a2dd-4feb-b3e2-9644ca1c4a60 ro
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-20-generic N/A
   linux-backports-modules-4.18.0-20-generic  N/A
   linux-firmware 1.175.4
  RfKill: Error: [Errno 2] No such file or directory: 'rfkill': 'rfkill'
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/01/2014
  dmi.bios.vendor: SeaBIOS
  dmi.bios.version: Ubuntu-1.8.2-1ubuntu1
  dmi.chassis.type: 1
  dmi.chassis.vendor: QEMU
  dmi.chassis.version: pc-i440fx-xenial
  dmi.modalias: 
dmi:bvnSeaBIOS:bvrUbuntu-1.8.2-1ubuntu1:bd04/01/2014:svnQEMU:pnStandardPC(i440FX+PIIX,1996):pvrpc-i440fx-xenial:cvnQEMU:ct1:cvrpc-i440fx-xenial:
  dmi.product.name: Standard PC (i440FX + PIIX, 1996)
  dmi.product.version: pc-i440fx-xenial
  dmi.sys.vendor: QEMU

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

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


[Kernel-packages] [Bug 1823725] Re: packet: reset network header if packet shorter than ll reserved space

2019-06-12 Thread Nicolas Dichtel
This bug is still there, valid packets may be dropped with variable
length protocols like IP tunnels for example. Any actions expected on my
side?

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

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

Title:
  packet: reset network header if packet shorter than ll reserved space

Status in linux package in Ubuntu:
  New

Bug description:
  After backport of linux upstream commit 9ed988cd5915 ("packet:
  validate variable length ll headers")
  (https://kernel.ubuntu.com/git/ubuntu/ubuntu-
  bionic.git/commit/?id=c6026847a0a1) the following upstream patch is
  missing :

  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=9ed988cd5915

  9ed988cd5915 ("packet: validate variable length ll headers")

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

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


[Kernel-packages] [Bug 1832384] Re: Unable to unmount apparently unused filesystem

2019-06-12 Thread Colin Ian King
I had a quick look at there are quite a few differences between the
Delphix ZFS git repo and the upstream ZFS git repo. Github states: "This
branch is 376 commits ahead of zfsonlinux:master.".

So:

1. Does this issue occur with stock ZFS rather than Delphix ZFS?

2. With the activity you are performing to trigger the bug it does seem
like there is a race condition occurring on mnt_count so this does look
like a kernel bug.  One way to quickly sanity check this is with a
coarse bisect using some pre-build ubuntu kernels based on the mainline
kernels.

The wiki page https://wiki.ubuntu.com/Kernel/MainlineBuilds details our
mainline builds, you can select a mainline kernel from:
https://kernel.ubuntu.com/~kernel-ppa/mainline/?C=N;O=D - install it,
run the tests and see if the problem is fixed or still persists.  I
suggest trying a recent (say 5.1) kernel build, and if that works,
bisect on that between 4.15 and 5.1 etc until you find the earliest fix
point.

If the problem still occurs with a 5.1 kernel, then we need to start
digging a bit deeper. But I think it is definitely worth trying a recent
kernel first as the fix may be already be in an upstream kernel.

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

Title:
  Unable to unmount apparently unused filesystem

Status in linux package in Ubuntu:
  In Progress

Bug description:
  We periodically see an issue where unmounting a ZFS filesystem fails
  with EBUSY, even though there appears to be no one using it.

  # cat /proc/self/mounts | grep 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive
  domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive zfs 
rw,nosuid,nodev,noexec,relatime,xattr,noacl 0 0

  'lsof' and 'fuser' show no processes using any of the files in the
  problematic filesystem:

  # ls -l 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive/
  total 221
  -rw-r- 1 500 500  52736 May 22 11:01 1_19_1008904362.dbf
  -rw-r- 1 500 500 541696 May 22 11:03 1_20_1008904362.dbf
  # fuser 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive/1_20_1008904362.dbf
  # fuser 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive/1_19_1008904362.dbf
  # fuser 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive/
  # lsof | grep 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive
  #

  The filesystem was shared over NFS, but has since been unshared:

  # showmount -e | grep 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive
  #

  Since no one appears to be using the filesystem, our expectation is
  that it should be possible to unmount the filesystem. However,
  attempts to unmount the filesystem fail with EBUSY:

  # zfs destroy 
domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive
  umount: 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive: target 
is busy.
  cannot unmount 
'/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive': 
umount failed
  # umount 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive
  umount: 
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive: target 
is busy.

  
  Using bpftrace, we can see that the unmount is failing in 
'propagate_mount_busy()' in the kernel. Using a live kernel debugger, we can 
look at the 'mount' struct for this particular mount and see that the 
'mnt_count' refcount summed across all CPUs is 2. For filesystems that are 
eligible for unmounting, the refcount is 1.

  The only way to work around this issue that we have found is to
  reboot, at which point the filesystem can be unmounted and destroyed.

  
  So far, we have only been able to reproduce this using a workload driven by 
our application. The application mananges ZFS filesystems in groups, and the 
lifecycle of each group looks something like

  - Create and mount a group of filesystems, 1 parent and 4 children:
  /domain0/group-38/oracle_db_container-202/oracle_timeflow-16370
  
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/datafile
  
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/external
  
/domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/archive
  /domain0/group-38/oracle_db_container-202/oracle_timeflow-16370/temp
  - Share all 5 filesystems over NFS
  - A client mounts all 5 shares using NFSv3
  - For a few hours, the client does NFS operations on the filesystems and 
the server occasionally takes ZFS snapshots of them
  - Unshare filesystems
  - Unmount filesystems
  - Delete filesystems

  These 

[Kernel-packages] [Bug 1824690] Re: proc_thermal flooding dmesg

2019-06-12 Thread Giovanni Caligaris
Hi @coling-king,

I don't have my laptop with me this week but I will try it in the coming
days and will let you know.

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

Title:
  proc_thermal flooding dmesg

Status in linux package in Ubuntu:
  Incomplete
Status in thermald package in Ubuntu:
  Incomplete

Bug description:
  [   11.520358] proc_thermal :00:00.1: Unsupported event [0x91]
  [   16.532358] proc_thermal :00:00.1: Unsupported event [0x91]
  [   21.572719] proc_thermal :00:00.1: Unsupported event [0x91]
  [   26.580855] proc_thermal :00:00.1: Unsupported event [0x91]
  [   31.588851] proc_thermal :00:00.1: Unsupported event [0x91]
  [   36.592827] proc_thermal :00:00.1: Unsupported event [0x91]
  [   41.572682] random: crng init done
  [   41.572690] random: 7 urandom warning(s) missed due to ratelimiting

  Kernel 4.18.0-18-generic
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 18.04.2 LTS
  Release:  18.04
  Codename: bionic
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.6
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  juno   1175 F pulseaudio
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 18.04
  InstallationDate: Installed on 2019-04-15 (0 days ago)
  InstallationMedia: Xubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 8087:0025 Intel Corp. 
   Bus 001 Device 003: ID 04f2:b59e Chicony Electronics Co., Ltd 
   Bus 001 Device 002: ID 1ea7:0064  
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Notebook N24_25GU
  Package: thermald 1.7.0-5ubuntu2
  PackageArchitecture: amd64
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-18-generic 
root=UUID=a23ca3ac-6284-45ce-9aa8-6670879910e7 ro quiet splash acpi_osi= 
acpi_os_name=Linux vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-18.19~18.04.1-generic 4.18.20
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-18-generic N/A
   linux-backports-modules-4.18.0-18-generic  N/A
   linux-firmware 1.173.5
  Tags:  bionic
  Uname: Linux 4.18.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 05/18/2018
  dmi.bios.vendor: INSYDE Corp.
  dmi.bios.version: 1.07.06
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: N24_25GU
  dmi.board.vendor: Notebook
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnINSYDECorp.:bvr1.07.06:bd05/18/2018:svnNotebook:pnN24_25GU:pvrNotApplicable:rvnNotebook:rnN24_25GU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.family: Not Applicable
  dmi.product.name: N24_25GU
  dmi.product.sku: Not Applicable
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1824690] Re: proc_thermal flooding dmesg

2019-06-12 Thread Colin Ian King
Great, thank you!

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

Title:
  proc_thermal flooding dmesg

Status in linux package in Ubuntu:
  Incomplete
Status in thermald package in Ubuntu:
  Incomplete

Bug description:
  [   11.520358] proc_thermal :00:00.1: Unsupported event [0x91]
  [   16.532358] proc_thermal :00:00.1: Unsupported event [0x91]
  [   21.572719] proc_thermal :00:00.1: Unsupported event [0x91]
  [   26.580855] proc_thermal :00:00.1: Unsupported event [0x91]
  [   31.588851] proc_thermal :00:00.1: Unsupported event [0x91]
  [   36.592827] proc_thermal :00:00.1: Unsupported event [0x91]
  [   41.572682] random: crng init done
  [   41.572690] random: 7 urandom warning(s) missed due to ratelimiting

  Kernel 4.18.0-18-generic
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 18.04.2 LTS
  Release:  18.04
  Codename: bionic
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.6
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  juno   1175 F pulseaudio
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 18.04
  InstallationDate: Installed on 2019-04-15 (0 days ago)
  InstallationMedia: Xubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 8087:0025 Intel Corp. 
   Bus 001 Device 003: ID 04f2:b59e Chicony Electronics Co., Ltd 
   Bus 001 Device 002: ID 1ea7:0064  
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Notebook N24_25GU
  Package: thermald 1.7.0-5ubuntu2
  PackageArchitecture: amd64
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-18-generic 
root=UUID=a23ca3ac-6284-45ce-9aa8-6670879910e7 ro quiet splash acpi_osi= 
acpi_os_name=Linux vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-18.19~18.04.1-generic 4.18.20
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-18-generic N/A
   linux-backports-modules-4.18.0-18-generic  N/A
   linux-firmware 1.173.5
  Tags:  bionic
  Uname: Linux 4.18.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 05/18/2018
  dmi.bios.vendor: INSYDE Corp.
  dmi.bios.version: 1.07.06
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: N24_25GU
  dmi.board.vendor: Notebook
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnINSYDECorp.:bvr1.07.06:bd05/18/2018:svnNotebook:pnN24_25GU:pvrNotApplicable:rvnNotebook:rnN24_25GU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.family: Not Applicable
  dmi.product.name: N24_25GU
  dmi.product.sku: Not Applicable
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1832465] [NEW] linux: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

-- swm properties --
variant: debs

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

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

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

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux (Ubuntu Disco)
 Importance: Medium
 Status: New


** Tags: disco kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.05.13-6

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

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

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

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

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

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

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

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

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

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

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

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

** Tags added: disco

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

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

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

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

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

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

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

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

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

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

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

[Kernel-packages] [Bug 1832468] Re: linux-oem: 4.15.0-1042.47 -proposed tracker

2019-06-12 Thread AceLan Kao
** Summary changed:

- linux-oem:  -proposed tracker
+ linux-oem: 4.15.0-1042.47 -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) => AceLan Kao 
(acelankao)

** 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) => AceLan Kao 
(acelankao)

** 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) => AceLan Kao 
(acelankao)

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

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

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

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

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

  -- swm properties --
  kernel-stable-master-bug: 1829219
  phase: Ready for Packaging
  phase-changed: Wednesday, 12. June 2019 09:06 UTC
  reason:
prepare-package: Pending -- version not specified
  variant: debs

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

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


[Kernel-packages] [Bug 1832468] Re: linux-oem: -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
+ kernel-stable-master-bug: 1832469
  variant: debs

** Tags added: kernel-sru-derivative-of-1832469

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

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

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
-   https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
+   https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
- kernel-stable-master-bug: 1832469
+ kernel-stable-master-bug: 1829219
  variant: debs

** Tags removed: kernel-sru-derivative-of-1832469
** Tags added: kernel-sru-derivative-of-1829219

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

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

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

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

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

  -- swm properties --
  kernel-stable-master-bug: 1829219
  phase: Ready for Packaging
  phase-changed: Wednesday, 12. June 2019 09:06 UTC
  reason:
prepare-package: Pending -- version not specified
  variant: debs

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

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


[Kernel-packages] [Bug 1832469] [NEW] linux: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

-- swm properties --
variant: debs

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

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

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

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

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

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

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

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

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

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

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

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

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

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


** Tags: bionic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.05.13-6

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

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

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

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

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

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

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

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

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

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

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

** Tags added: bionic

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

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

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: 

[Kernel-packages] [Bug 1832468] Re: linux-oem: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package
   Status: New => Confirmed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1829219
+ phase: Ready for Packaging
+ phase-changed: Wednesday, 12. June 2019 09:06 UTC
+ reason:
+   prepare-package: Pending -- version not specified
  variant: debs

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

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

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

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

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

  -- swm properties --
  kernel-stable-master-bug: 1829219
  phase: Ready for Packaging
  phase-changed: Wednesday, 12. June 2019 09:06 UTC
  reason:
prepare-package: Pending -- version not specified
  variant: debs

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

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


[Kernel-packages] [Bug 1829173] Re: linux: 5.0.0-16.17 -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
- backports: bug 1829171 (bionic/linux-hwe-edge), bug 1830840 
(bionic/linux-oem-osp1)
+ backports: bug 1829171 (bionic/linux-hwe-edge)
  derivatives: bug 1829164 (linux-raspi2), bug 1829165 (linux-aws), bug 1829166 
(linux-azure), bug 1829168 (linux-gcp), bug 1829169 (linux-kvm), bug 1829170 
(linux-snapdragon)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Security
  phase-changed: Wednesday, 05. June 2019 13:00 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true

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

Title:
  linux: 5.0.0-16.17 -proposed tracker

Status in Kernel SRU Workflow:
  Fix Released
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-lrm series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Fix Released
Status in Kernel SRU Workflow promote-to-updates series:
  Fix Released
Status in Kernel SRU Workflow regression-testing series:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Disco:
  Fix Released

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

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

  backports: bug 1829171 (bionic/linux-hwe-edge), bug 1832464 
(bionic/linux-oem-osp1)
  derivatives: bug 1829164 (linux-raspi2), bug 1829165 (linux-aws), bug 1829166 
(linux-azure), bug 1829168 (linux-gcp), bug 1829169 (linux-kvm), bug 1829170 
(linux-snapdragon)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Security
  phase-changed: Wednesday, 05. June 2019 13:00 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true

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

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


[Kernel-packages] [Bug 1808056] Re: vmlinuz is very large in arm64 -raspi2

2019-06-12 Thread Dave Jones
I've put together an update for flash-kernel that handles booting an
uncompressed image (to support existing arm64 installs), a self-
compressed image (to support existing armhf installs), and a gzip'd
image (to support the proposed format). It assumes the kernel is called
"vmlinuz" in all cases (because that's currently the case, and I presume
will continue to be the case in future).

Just finishing up testing today, but I've already confirmed it works on
pi2, pi3, and pi3+ with all (supported) kernel cases - just cm3 and cm3+
to go. The update also switches the pi2 case to using the same boot-
script as all the rest. I'll ping Lukasz for a review when everything's
confirmed as working.

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

Title:
  vmlinuz is very large in arm64 -raspi2

Status in flash-kernel package in Ubuntu:
  Confirmed
Status in linux-raspi2 package in Ubuntu:
  Triaged

Bug description:
  The debs are close to the same size:

  mwhudson@ringil:~/Downloads$ ls -l 
linux-image-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb 
  -rw-rw-r-- 1 mwhudson mwhudson 5398652 Dec 12 10:42 
linux-image-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb
  mwhudson@ringil:~/Downloads$ ls -l 
linux-image-4.15.0-1030-raspi2_4.15.0-1030.32_armhf.deb 
  -rw-rw-r-- 1 mwhudson mwhudson 6640960 Dec 12 10:42 
linux-image-4.15.0-1030-raspi2_4.15.0-1030.32_armhf.deb

  But the vmlinuz on arm64 is several times larger:

  $ dpkg-deb -c linux-image-4.15.0-1030-raspi2_4.15.0-1030.32_armhf.deb 
  -rw--- root/root   6633048 2018-12-07 06:38 
./boot/vmlinuz-4.15.0-1030-raspi2
  $ dpkg-deb -c linux-image-4.15.0-1030-raspi2_4.15.0-1030.32_arm64.deb 
  -rw--- root/root  23914504 2018-12-07 06:38 
./boot/vmlinuz-4.15.0-1030-raspi2

  This forced us to make the boot partition larger for the raspi3 b+
  arm64 image we made.

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

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


[Kernel-packages] [Bug 1824690] Re: proc_thermal flooding dmesg

2019-06-12 Thread Colin Ian King
@Giovanni - any progress on testing this?

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

Title:
  proc_thermal flooding dmesg

Status in linux package in Ubuntu:
  Incomplete
Status in thermald package in Ubuntu:
  Incomplete

Bug description:
  [   11.520358] proc_thermal :00:00.1: Unsupported event [0x91]
  [   16.532358] proc_thermal :00:00.1: Unsupported event [0x91]
  [   21.572719] proc_thermal :00:00.1: Unsupported event [0x91]
  [   26.580855] proc_thermal :00:00.1: Unsupported event [0x91]
  [   31.588851] proc_thermal :00:00.1: Unsupported event [0x91]
  [   36.592827] proc_thermal :00:00.1: Unsupported event [0x91]
  [   41.572682] random: crng init done
  [   41.572690] random: 7 urandom warning(s) missed due to ratelimiting

  Kernel 4.18.0-18-generic
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 18.04.2 LTS
  Release:  18.04
  Codename: bionic
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.6
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  juno   1175 F pulseaudio
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 18.04
  InstallationDate: Installed on 2019-04-15 (0 days ago)
  InstallationMedia: Xubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 8087:0025 Intel Corp. 
   Bus 001 Device 003: ID 04f2:b59e Chicony Electronics Co., Ltd 
   Bus 001 Device 002: ID 1ea7:0064  
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Notebook N24_25GU
  Package: thermald 1.7.0-5ubuntu2
  PackageArchitecture: amd64
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-18-generic 
root=UUID=a23ca3ac-6284-45ce-9aa8-6670879910e7 ro quiet splash acpi_osi= 
acpi_os_name=Linux vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-18.19~18.04.1-generic 4.18.20
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-18-generic N/A
   linux-backports-modules-4.18.0-18-generic  N/A
   linux-firmware 1.173.5
  Tags:  bionic
  Uname: Linux 4.18.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 05/18/2018
  dmi.bios.vendor: INSYDE Corp.
  dmi.bios.version: 1.07.06
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: N24_25GU
  dmi.board.vendor: Notebook
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Notebook
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnINSYDECorp.:bvr1.07.06:bd05/18/2018:svnNotebook:pnN24_25GU:pvrNotApplicable:rvnNotebook:rnN24_25GU:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
  dmi.product.family: Not Applicable
  dmi.product.name: N24_25GU
  dmi.product.sku: Not Applicable
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook

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

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


[Kernel-packages] [Bug 1831978] Re: linux-oem: 4.15.0-1040.45 -proposed tracker

2019-06-12 Thread Stefan Bader
*** This bug is a duplicate of bug 1832468 ***
https://bugs.launchpad.net/bugs/1832468

** This bug is no longer a duplicate of bug 1832206
   linux-oem: 4.15.0-1041.46 -proposed tracker
** This bug has been marked a duplicate of bug 1832468
   linux-oem:  -proposed tracker

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

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

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

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

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

  -- swm properties --
  boot-testing-requested: true
  phase: Ready for Promote to Proposed
  phase-changed: Sunday, 09. June 2019 11:32 UTC
  reason:
promote-to-proposed: Pending -- ready for review
  variant: debs

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

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


[Kernel-packages] [Bug 1829173] Re: linux: 5.0.0-16.17 -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
-   https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
+   https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
- backports: bug 1829171 (bionic/linux-hwe-edge)
+ backports: bug 1829171 (bionic/linux-hwe-edge), bug 1832464 
(bionic/linux-oem-osp1)
  derivatives: bug 1829164 (linux-raspi2), bug 1829165 (linux-aws), bug 1829166 
(linux-azure), bug 1829168 (linux-gcp), bug 1829169 (linux-kvm), bug 1829170 
(linux-snapdragon)
  
  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Security
  phase-changed: Wednesday, 05. June 2019 13:00 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true

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

Title:
  linux: 5.0.0-16.17 -proposed tracker

Status in Kernel SRU Workflow:
  Fix Released
Status in Kernel SRU Workflow automated-testing series:
  Fix Released
Status in Kernel SRU Workflow certification-testing series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-lrm series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Fix Released
Status in Kernel SRU Workflow promote-to-updates series:
  Fix Released
Status in Kernel SRU Workflow regression-testing series:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Disco:
  Fix Released

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

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

  backports: bug 1829171 (bionic/linux-hwe-edge), bug 1832464 
(bionic/linux-oem-osp1)
  derivatives: bug 1829164 (linux-raspi2), bug 1829165 (linux-aws), bug 1829166 
(linux-azure), bug 1829168 (linux-gcp), bug 1829169 (linux-kvm), bug 1829170 
(linux-snapdragon)

  -- swm properties --
  boot-testing-requested: true
  bugs-spammed: true
  phase: Security
  phase-changed: Wednesday, 05. June 2019 13:00 UTC
  proposed-announcement-sent: true
  proposed-testing-requested: true

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

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


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

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

apport-collect 1823725

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

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

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

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

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

Title:
  packet: reset network header if packet shorter than ll reserved space

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After backport of linux upstream commit 9ed988cd5915 ("packet:
  validate variable length ll headers")
  (https://kernel.ubuntu.com/git/ubuntu/ubuntu-
  bionic.git/commit/?id=c6026847a0a1) the following upstream patch is
  missing :

  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=9ed988cd5915

  9ed988cd5915 ("packet: validate variable length ll headers")

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

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


[Kernel-packages] [Bug 1832468] [NEW] linux-oem: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

-- swm properties --
kernel-stable-master-bug: 1829219
phase: Ready for Packaging
phase-changed: Wednesday, 12. June 2019 09:06 UTC
reason:
  prepare-package: Pending -- version not specified
variant: debs

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

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

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux-oem (Ubuntu Bionic)
 Importance: Medium
 Status: Confirmed


** Tags: bionic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.05.13-6 kernel-sru-derivative-of-1829219

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

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

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

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

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

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

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

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

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

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

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

** Tags added: bionic

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

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

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

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

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

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

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

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

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

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

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

** Changed in: 

[Kernel-packages] [Bug 1832468] Re: linux-oem: 4.15.0-1042.47 -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1829219
- phase: Ready for Packaging
- phase-changed: Wednesday, 12. June 2019 09:06 UTC
+ phase: Packaging
+ phase-changed: Wednesday, 12. June 2019 09:30 UTC
  reason:
-   prepare-package: Pending -- version not specified
+   prepare-package: Pending -- package not yet uploaded
+   prepare-package-meta: Pending -- package not yet uploaded
+   prepare-package-signed: Pending -- package not yet uploaded
  variant: debs

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

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

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

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

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

  -- swm properties --
  kernel-stable-master-bug: 1829219
  phase: Packaging
  phase-changed: Wednesday, 12. June 2019 09:30 UTC
  reason:
prepare-package: Pending -- package not yet uploaded
prepare-package-meta: Pending -- package not yet uploaded
prepare-package-signed: Pending -- package not yet uploaded
  variant: debs

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

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


[Kernel-packages] [Bug 1832299] Re: Add new sound card PCIID into the alsa driver

2019-06-12 Thread AceLan Kao
** Also affects: linux-oem (Ubuntu)
   Importance: Undecided
   Status: New

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

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

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

** Changed in: linux-oem (Ubuntu Bionic)
   Status: New => Fix Committed

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

Title:
  Add new sound card PCIID into the alsa driver

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

Bug description:
  BugLink: https://bugs.launchpad.net/bugs/1832299

  The 0001-xxx.patch is for adding the ICL pciid, it is not in the bionic 
kernel,
  so bionic kernel needs two patches.

  The 0002-xxx.patch is in the upstream from v5.2-rc1, it is needed for
  b/c/d/e.

  [Impact]
  We have some cometlake machines, after installing the bionic kernel, the sound
  can't work at all, we found the sound driver didn't load into the kernel.

  [Fix]
  After add the pciid in the pci_driver, the sound driver can be loaded and 
sound
  worked well.

  [Test Case]
  Boot the system and play sound or record sound, they all worked well

  [Regression Risk]
  Low. Adding new pciid, will not change existing functions.

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

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


[Kernel-packages] [Bug 1832472] PulseList.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270314/+files/PulseList.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 

[Kernel-packages] [Bug 1832472] ProcInterrupts.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270326/+files/ProcInterrupts.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] 

[Kernel-packages] [Bug 1832472] ProcCpuinfo.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270323/+files/ProcCpuinfo.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  

[Kernel-packages] [Bug 1832468] Re: linux-oem: 4.15.0-1042.47 -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1829219
  phase: Packaging
  phase-changed: Wednesday, 12. June 2019 09:30 UTC
  reason:
prepare-package-meta: Pending -- package tag not yet published
-   promote-to-proposed: Pending -- builds not complete in ppa 
meta:building,main:building,signed:building
+   promote-to-proposed: Pending -- builds not complete in ppa 
main:building,meta:building,signed:building
  variant: debs

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

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

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

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

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

  -- swm properties --
  kernel-stable-master-bug: 1829219
  phase: Packaging
  phase-changed: Wednesday, 12. June 2019 09:30 UTC
  reason:
prepare-package-meta: Pending -- package tag not yet published
promote-to-proposed: Pending -- builds not complete in ppa 
main:building,meta:building,signed:building
  variant: debs

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

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


[Kernel-packages] [Bug 1832472] WifiSyslog.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270317/+files/WifiSyslog.txt

** Description changed:

  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek chip
  RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog with
  unneccessary status info.
  
  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.
  
  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:
  
  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]
  
  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 
  
  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.628055] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.660060] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 

[Kernel-packages] [Bug 1832472] CurrentDmesg.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270320/+files/CurrentDmesg.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
 

[Kernel-packages] [Bug 1832472] AlsaInfo.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270318/+files/AlsaInfo.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 

[Kernel-packages] [Bug 1832472] ProcEnviron.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270311/+files/ProcEnviron.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  

[Kernel-packages] [Bug 1832472] ProcCpuinfoMinimal.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270324/+files/ProcCpuinfoMinimal.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: 

[Kernel-packages] [Bug 1832472] IwConfig.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270321/+files/IwConfig.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 

[Kernel-packages] [Bug 1832472] ProcModules.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270327/+files/ProcModules.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  

[Kernel-packages] [Bug 1832472] RfKill.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1832472/+attachment/5270329/+files/RfKill.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 

[Kernel-packages] [Bug 1832472] ProcInterrupts.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270312/+files/ProcInterrupts.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] 

[Kernel-packages] [Bug 1832472] CRDA.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1832472/+attachment/5270319/+files/CRDA.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 10:49:01 

[Kernel-packages] [Bug 1832506] [NEW] linux-kvm: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

-- swm properties --
kernel-stable-master-bug: 1832508
variant: debs

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

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux-kvm (Ubuntu Cosmic)
 Importance: Medium
 Status: New


** Tags: cosmic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1 kernel-sru-derivative-of-1832508

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

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

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

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

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

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

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

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

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

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

** Tags added: cosmic

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

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided => Medium

** Changed in: 

[Kernel-packages] [Bug 1832505] [NEW] linux-gcp: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

backports: bug 1832504 (bionic/linux-gcp-edge)

-- swm properties --
kernel-stable-master-bug: 1832508
variant: debs

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

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

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux-gcp (Ubuntu Cosmic)
 Importance: Medium
 Status: New


** Tags: cosmic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1 kernel-sru-derivative-of-1832508

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

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

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

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

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

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

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

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

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

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

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

** Tags added: cosmic

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

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

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

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

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

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

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

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

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

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

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

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

** Changed in: 

[Kernel-packages] [Bug 1832502] Re: linux-azure: -proposed tracker

2019-06-12 Thread Stefan Bader
** Changed in: kernel-sru-workflow
   Status: New => In Progress

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

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

Title:
  linux-azure:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow prepare-package-signed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure package in Ubuntu:
  Invalid
Status in linux-azure source package in Bionic:
  New

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

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

  derivatives: bug 1832500 (azure-kernel), bug 1832501 (linux-azure-
  edge)

  -- swm properties --
  kernel-stable-master-bug: 1832503
  variant: debs

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

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


[Kernel-packages] [Bug 1832496] Re: linux-raspi2: -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
+ kernel-stable-master-bug: 1832508
  variant: debs

** Tags added: kernel-sru-derivative-of-1832508

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

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

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

Title:
  linux-raspi2:  -proposed tracker

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

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

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

  -- swm properties --
  kernel-stable-master-bug: 1832508
  variant: debs

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

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


[Kernel-packages] [Bug 1832508] Re: linux: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package
   Status: New => Confirmed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1832507 (bionic/linux-hwe)
  derivatives: bug 1832496 (linux-raspi2), bug 1832499 (linux-aws), bug 1832503 
(linux-azure), bug 1832505 (linux-gcp), bug 1832506 (linux-kvm)
  
  -- swm properties --
+ phase: Ready for Packaging
+ phase-changed: Wednesday, 12. June 2019 11:33 UTC
+ reason:
+   prepare-package: Pending -- version not specified
  variant: debs

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

Title:
  linux:  -proposed tracker

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

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

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

  backports: bug 1832507 (bionic/linux-hwe)
  derivatives: bug 1832496 (linux-raspi2), bug 1832499 (linux-aws), bug 1832503 
(linux-azure), bug 1832505 (linux-gcp), bug 1832506 (linux-kvm)

  -- swm properties --
  phase: Ready for Packaging
  phase-changed: Wednesday, 12. June 2019 11:33 UTC
  reason:
prepare-package: Pending -- version not specified
  variant: debs

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

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


[Kernel-packages] [Bug 1832533] Re: linux-ibm-gt: -proposed tracker

2019-06-12 Thread Stefan Bader
** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-updates
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

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

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

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

** Changed in: kernel-sru-workflow/security-signoff
 Assignee: (unassigned) => Canonical Security Team (canonical-security)

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

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

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

Title:
  linux-ibm-gt:  -proposed tracker

Status in Kernel SRU Workflow:
  New
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  Incomplete

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

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

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

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


[Kernel-packages] [Bug 1832041] [NEW] The mouse stops working

2019-06-12 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Sometime the wifi is not getting detected and the mouse is not working
and and i am using touch instead of mouse, the external mouse is also
not working

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: xorg 1:7.7+19ubuntu7.1
ProcVersionSignature: Ubuntu 4.18.0-21.22~18.04.1-generic 4.18.20
Uname: Linux 4.18.0-21-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.6
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Sat Jun  8 00:40:19 2019
DistUpgraded: Fresh install
DistroCodename: bionic
DistroVariant: ubuntu
DkmsStatus:
 nvidia, 390.116, 4.15.0-47-generic, x86_64: installed
 nvidia, 390.116, 4.15.0-51-generic, x86_64: installed
 nvidia, 390.116, 4.18.0-17-generic, x86_64: installed
 nvidia, 390.116, 4.18.0-21-generic, x86_64: installed
ExtraDebuggingInterest: Yes, including running git bisection searches
GraphicsCard:
 Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA 
controller])
   Subsystem: Hewlett-Packard Company UHD Graphics 620 [103c:83ba]
   Subsystem: Hewlett-Packard Company GP108M [GeForce MX150] [103c:83ba]
InstallationDate: Installed on 2019-04-04 (64 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 004: ID 8087:0025 Intel Corp. 
 Bus 001 Device 003: ID 05c8:0815 Cheng Uei Precision Industry Co., Ltd 
(Foxlink) 
 Bus 001 Device 009: ID 03f0:0941 Hewlett-Packard 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: HP HP Spectre x360 Convertible 15-ch0xx
ProcEnviron:
 LANGUAGE=en_IN:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_IN
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-21-generic 
root=UUID=a759c10c-be50-4caf-bd43-1516b97d1c6a ro quiet splash vt.handoff=1
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/15/2018
dmi.bios.vendor: AMI
dmi.bios.version: F.23
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 83BA
dmi.board.vendor: HP
dmi.board.version: 57.31
dmi.chassis.type: 31
dmi.chassis.vendor: HP
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAMI:bvrF.23:bd10/15/2018:svnHP:pnHPSpectrex360Convertible15-ch0xx:pvr:rvnHP:rn83BA:rvr57.31:cvnHP:ct31:cvrChassisVersion:
dmi.product.family: 103C_5335KV HP Spectre
dmi.product.name: HP Spectre x360 Convertible 15-ch0xx
dmi.product.sku: 2FW61AV
dmi.sys.vendor: HP
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.95-1~18.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 18.2.8-0ubuntu0~18.04.2
version.libgl1-mesa-glx: libgl1-mesa-glx 18.2.8-0ubuntu0~18.04.2
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

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


** Tags: amd64 apport-bug bionic performance ubuntu
-- 
The mouse stops working
https://bugs.launchpad.net/bugs/1832041
You received this bug notification because you are a member of Kernel Packages, 
which is subscribed to linux in Ubuntu.

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


[Kernel-packages] [Bug 1832472] CRDA.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1832472/+attachment/5270304/+files/CRDA.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 10:49:01 

[Kernel-packages] [Bug 1832472] CurrentDmesg.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270305/+files/CurrentDmesg.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
 

[Kernel-packages] [Bug 1832472] IwConfig.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270306/+files/IwConfig.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 

[Kernel-packages] [Bug 1832472] Lspci.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1832472/+attachment/5270307/+files/Lspci.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 

[Kernel-packages] [Bug 1832472] ProcCpuinfoMinimal.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270310/+files/ProcCpuinfoMinimal.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: 

[Kernel-packages] [Bug 1832472] ProcCpuinfo.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1832472/+attachment/5270309/+files/ProcCpuinfo.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  

[Kernel-packages] [Bug 1832472] Lsusb.txt

2019-06-12 Thread Ernst Ahlers
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1832472/+attachment/5270308/+files/Lsusb.txt

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

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 

[Kernel-packages] [Bug 1832472] Re: cdc_ncm floods syslog unneccessarily

2019-06-12 Thread Ernst Ahlers
apport information

** Tags added: apport-collected

** Description changed:

  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek chip
  RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog with
  unneccessary status info.
  
  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.
  
  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:
  
  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]
  
  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 
  
  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.628055] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.660060] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.692055] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s 

[Kernel-packages] [Bug 1832499] Re: linux-aws: -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1832497 (bionic/linux-aws-edge)
  
  -- swm properties --
+ kernel-stable-master-bug: 1832508
  variant: debs

** Tags added: kernel-sru-derivative-of-1832508

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

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

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

Title:
  linux-aws:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-aws package in Ubuntu:
  Invalid
Status in linux-aws source package in Cosmic:
  New

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

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

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

  -- swm properties --
  kernel-stable-master-bug: 1832508
  variant: debs

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

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


[Kernel-packages] [Bug 1832503] Re: linux-azure: -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1832502 (bionic/linux-azure)
  
  -- swm properties --
+ kernel-stable-master-bug: 1832508
  variant: debs

** Tags added: kernel-sru-derivative-of-1832508

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

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

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

Title:
  linux-azure:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow prepare-package-signed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure package in Ubuntu:
  Invalid
Status in linux-azure source package in Cosmic:
  New

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

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

  backports: bug 1832502 (bionic/linux-azure)

  -- swm properties --
  kernel-stable-master-bug: 1832508
  variant: debs

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

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


[Kernel-packages] [Bug 1832508] [NEW] linux: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

backports: bug 1832507 (bionic/linux-hwe)
derivatives: bug 1832496 (linux-raspi2), bug 1832499 (linux-aws), bug 1832503 
(linux-azure), bug 1832505 (linux-gcp), bug 1832506 (linux-kvm)

-- swm properties --
variant: debs

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

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

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux (Ubuntu Cosmic)
 Importance: Medium
 Status: New


** Tags: cosmic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1

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

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

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

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

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

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

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

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

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

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

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

** Tags added: cosmic

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

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

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/promote-to-proposed
   

[Kernel-packages] [Bug 1387334] Re: linux: Add unionmount-testsuite to dep8 testing

2019-06-12 Thread Po-Hsu Lin
https://kernel.ubuntu.com/git/ubuntu/kernel-
testing.git/commit/?id=b3d5992b1cc2efc42be5906faf26029b89b0ea3a

** Changed in: ubuntu-kernel-tests
   Status: In Progress => Fix Released

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

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

Title:
  linux: Add unionmount-testsuite to dep8 testing

Status in ubuntu-kernel-tests:
  Fix Released
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Vivid:
  Won't Fix

Bug description:
  https://lkml.org/lkml/2014/5/29/818

  git://git.infradead.org/users/dhowells/unionmount-testsuite.git

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

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


[Kernel-packages] [Bug 1832485] [NEW] linux-azure: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

-- swm properties --
kernel-stable-master-bug: 1832492
variant: debs

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

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

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

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

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

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

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

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

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

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

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

** Affects: kernel-sru-workflow/stakeholder-signoff
 Importance: Medium
 Assignee: linux-azure stakeholder signoff (linux-azure-signoff)
 Status: New

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

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

** Affects: linux-azure (Ubuntu Disco)
 Importance: Medium
 Status: New


** Tags: disco kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1 kernel-sru-derivative-of-1832492

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

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

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

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

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

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

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

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

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

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

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

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

** Tags added: disco

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

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

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

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

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

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

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

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

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

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

** Changed in: 

[Kernel-packages] [Bug 1832487] [NEW] linux-kvm: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

-- swm properties --
kernel-stable-master-bug: 1832492
variant: debs

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

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux-kvm (Ubuntu Disco)
 Importance: Medium
 Status: New


** Tags: disco kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1 kernel-sru-derivative-of-1832492

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

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

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

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

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

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

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

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

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

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

** Tags added: disco

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

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided => Medium

** Changed in: 

[Kernel-packages] [Bug 1832472] [NEW] cdc_ncm floods syslog unneccessarily

2019-06-12 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Upon plugging in a USB adapter for NBase-T ethernet with an Realtek chip
RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog with
unneccessary status info.

The status lines either say that there's no ethernet link or show the
interface as connected and state the link speed.

The relevant parts from /var/log/syslog after attaching the adapter
without ethernet link read like this:

[...]
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 1 
USB device number 5 using xhci_hcd
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device found, 
idVendor=0bda, idProduct=8156, bcdDevice=30.00
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: Realtek
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: MAC-Address: 
00:13:3b:68:00:e9
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: register 
'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation is 
unset or enabled, the speed and duplex are not writable.
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] device 
(usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 'vlan-network-interface 
UDEV' failed with exit code 1.
Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] device 
(enx00133b6800e9): state change: unmanaged -> unavailable (reason 'managed', 
sys-iface-state: 'external')
Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
[...]

Upon plugging in the ethernet cable I see
[...]
Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
[...]
and Network Manager starts its work. 

After the interface is up the flooding continues:
[...]
Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route is: 
/org/freedesktop/NetworkManager/ActiveConnection/4
Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
Jun 12 10:49:01 resdz-v13 kernel: [ 4243.628055] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
Jun 12 10:49:01 resdz-v13 kernel: [ 4243.660060] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
Jun 12 10:49:01 resdz-v13 kernel: [ 4243.692055] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
Jun 12 10:49:01 resdz-v13 kernel: [ 4243.724054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
Jun 12 

[Kernel-packages] [Bug 1832486] [NEW] linux-gcp: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

-- swm properties --
kernel-stable-master-bug: 1832492
variant: debs

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

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

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux-gcp (Ubuntu Disco)
 Importance: Medium
 Status: New


** Tags: disco kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1 kernel-sru-derivative-of-1832492

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

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

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

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

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

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

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

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

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

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

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

** Tags added: disco

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

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

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

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided 

[Kernel-packages] [Bug 1832484] [NEW] linux-aws: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

-- swm properties --
kernel-stable-master-bug: 1832492
variant: debs

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

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux-aws (Ubuntu Disco)
 Importance: Medium
 Status: New


** Tags: disco kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1 kernel-sru-derivative-of-1832492

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

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

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

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

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

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

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

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

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

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

** Tags added: disco

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

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided => Medium

** Changed in: 

[Kernel-packages] [Bug 1832499] [NEW] linux-aws: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

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

-- swm properties --
kernel-stable-master-bug: 1832508
variant: debs

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux-aws (Ubuntu Cosmic)
 Importance: Medium
 Status: New


** Tags: cosmic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1 kernel-sru-derivative-of-1832508

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

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

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

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

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

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

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

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

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

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

** Tags added: cosmic

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

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided 

[Kernel-packages] [Bug 1832502] [NEW] linux-azure: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

derivatives: bug 1832500 (azure-kernel), bug 1832501 (linux-azure-edge)

-- swm properties --
kernel-stable-master-bug: 1832503
variant: debs

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

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

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

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

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

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

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

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

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

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

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

** Affects: kernel-sru-workflow/stakeholder-signoff
 Importance: Medium
 Assignee: linux-azure stakeholder signoff (linux-azure-signoff)
 Status: New

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

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

** Affects: linux-azure (Ubuntu Bionic)
 Importance: Medium
 Status: New


** Tags: bionic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-backport-of-1832503 kernel-sru-cycle-2019.06.03-1

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

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

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

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

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

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

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

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

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

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

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

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

** Tags added: bionic

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

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

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

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

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

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

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

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

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

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

[Kernel-packages] [Bug 1832503] [NEW] linux-azure: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

backports: bug 1832502 (bionic/linux-azure)

-- swm properties --
variant: debs

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

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

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

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

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

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

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

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

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

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

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

** Affects: kernel-sru-workflow/stakeholder-signoff
 Importance: Medium
 Assignee: linux-azure stakeholder signoff (linux-azure-signoff)
 Status: New

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

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

** Affects: linux-azure (Ubuntu Cosmic)
 Importance: Medium
 Status: New


** Tags: cosmic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1

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

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

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

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

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

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

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

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

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

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

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

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

** Tags added: cosmic

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

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/prepare-package-signed
 

[Kernel-packages] [Bug 1832496] [NEW] linux-raspi2: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

-- swm properties --
kernel-stable-master-bug: 1832508
variant: debs

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

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux-raspi2 (Ubuntu Cosmic)
 Importance: Medium
 Status: New


** Tags: cosmic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1 kernel-sru-derivative-of-1832508

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

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

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

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

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

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

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

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

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

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

** Tags added: cosmic

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-updates
 Assignee: (unassigned) => Ubuntu Stable Release 

[Kernel-packages] [Bug 1832496] Re: linux-raspi2: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1832508
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 11:32 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

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

Title:
  linux-raspi2:  -proposed tracker

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

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

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

  -- swm properties --
  kernel-stable-master-bug: 1832508
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 11:32 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

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

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


[Kernel-packages] [Bug 1832499] Re: linux-aws: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1832497 (bionic/linux-aws-edge)
  
  -- swm properties --
  kernel-stable-master-bug: 1832508
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 11:32 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

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

Title:
  linux-aws:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-aws package in Ubuntu:
  Invalid
Status in linux-aws source package in Cosmic:
  New

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

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

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

  -- swm properties --
  kernel-stable-master-bug: 1832508
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 11:32 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

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

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


[Kernel-packages] [Bug 1832502] Re: linux-azure: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  derivatives: bug 1832500 (azure-kernel), bug 1832501 (linux-azure-edge)
  
  -- swm properties --
  kernel-stable-master-bug: 1832503
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 11:32 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

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

Title:
  linux-azure:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow prepare-package-signed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure package in Ubuntu:
  Invalid
Status in linux-azure source package in Bionic:
  New

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

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

  derivatives: bug 1832500 (azure-kernel), bug 1832501 (linux-azure-
  edge)

  -- swm properties --
  kernel-stable-master-bug: 1832503
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 11:32 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

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

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


[Kernel-packages] [Bug 1832533] Re: linux-ibm-gt: -proposed tracker

2019-06-12 Thread Stefan Bader
** Changed in: kernel-sru-workflow/certification-testing
   Status: New => Invalid

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

Title:
  linux-ibm-gt:  -proposed tracker

Status in Kernel SRU Workflow:
  New
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  Incomplete

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

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

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

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


[Kernel-packages] [Bug 1832533] Re: linux-ibm-gt: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Changed in: linux (Ubuntu)
   Status: New => Incomplete

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

Title:
  linux-ibm-gt:  -proposed tracker

Status in Kernel SRU Workflow:
  New
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  Incomplete

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

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

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

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


[Kernel-packages] [Bug 1832516] [NEW] linux-raspi2: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

derivatives: bug 1832515 (pi-kernel)

-- swm properties --
variant: debs

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux-raspi2 (Ubuntu Bionic)
 Importance: Medium
 Status: New


** Tags: bionic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1

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

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

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

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

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

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

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

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

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

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

** Tags added: bionic

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-updates
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed 

[Kernel-packages] [Bug 1832533] [NEW] linux-ibm-gt: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

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

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

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

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

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

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

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

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

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

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

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

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


** Tags: bionic

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

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

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

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

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

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

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

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

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

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

** Tags added: bionic

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

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

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

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

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

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

Title:
  linux-ibm-gt:  -proposed tracker

Status in Kernel SRU Workflow:
  New
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  Incomplete

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

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

To manage notifications about this bug go to:

[Kernel-packages] [Bug 1832518] [NEW] linux-snapdragon: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

derivatives: bug 1832517 (dragonboard-kernel)

-- swm properties --
variant: debs

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

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

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

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

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

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

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

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

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

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

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

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

** Affects: linux-snapdragon (Ubuntu Bionic)
 Importance: Medium
 Status: New


** Tags: bionic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1

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

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

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

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

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

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

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

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

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

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

** Tags added: bionic

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

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

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

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

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

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

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

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

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

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-updates
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team 

[Kernel-packages] [Bug 1832519] [NEW] linux-oem: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

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

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

-- swm properties --
variant: debs

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

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

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

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

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

** Affects: kernel-sru-workflow/prepare-package-signed
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: linux-oem (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Affects: linux-oem (Ubuntu Bionic)
 Importance: Medium
 Status: New


** Tags: bionic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1

** Also affects: kernel-sru-workflow/automated-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Tags added: bionic

** Also affects: linux-oem (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow/automated-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/automated-testing
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) => Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-signed
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: 

[Kernel-packages] [Bug 1832488] [NEW] linux-snapdragon: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

This bug will contain status and test results related to a kernel source
(or snap) as stated in the title.

For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

-- swm properties --
kernel-stable-master-bug: 1832492
variant: debs

** Affects: kernel-sru-workflow
 Importance: Medium
 Status: In Progress

** Affects: kernel-sru-workflow/automated-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Assignee: Canonical Hardware Certification (canonical-hw-cert)
 Status: New

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: Invalid

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: linux-snapdragon (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Affects: linux-snapdragon (Ubuntu Disco)
 Importance: Medium
 Status: New


** Tags: disco kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1 kernel-sru-derivative-of-1832492

** Also affects: kernel-sru-workflow/automated-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Tags added: disco

** Also affects: linux-snapdragon (Ubuntu Disco)
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow/automated-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/automated-testing
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) => Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-updates
 Assignee: (unassigned) => Ubuntu Stable 

[Kernel-packages] [Bug 1832492] [NEW] linux: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

This bug will contain status and test results related to a kernel source
(or snap) as stated in the title.

For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

backports: bug 1832489 (bionic/linux-hwe-edge), bug 1832491 
(bionic/linux-oem-osp1)
derivatives: bug 1832483 (linux-raspi2), bug 1832484 (linux-aws), bug 1832485 
(linux-azure), bug 1832486 (linux-gcp), bug 1832487 (linux-kvm), bug 1832488 
(linux-snapdragon)

-- swm properties --
variant: debs

** Affects: kernel-sru-workflow
 Importance: Medium
 Status: In Progress

** Affects: kernel-sru-workflow/automated-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Assignee: Canonical Hardware Certification (canonical-hw-cert)
 Status: New

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-lrm
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-signed
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Affects: linux (Ubuntu Disco)
 Importance: Medium
 Status: New


** Tags: disco kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1

** Also affects: kernel-sru-workflow/automated-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-lrm
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Tags added: disco

** Also affects: linux (Ubuntu Disco)
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow/automated-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/automated-testing
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) => Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-lrm
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-lrm
 Assignee: (unassigned) => 

[Kernel-packages] [Bug 1832483] Re: linux-raspi2: -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
+ kernel-stable-master-bug: 1832492
  variant: debs

** Tags added: kernel-sru-derivative-of-1832492

** Changed in: kernel-sru-workflow
   Status: New => In Progress

** Changed in: kernel-sru-workflow
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1832483

Title:
  linux-raspi2:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  New
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-raspi2 package in Ubuntu:
  Invalid
Status in linux-raspi2 source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 10:31 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832483/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832487] Re: linux-kvm: -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
+ kernel-stable-master-bug: 1832492
  variant: debs

** Tags added: kernel-sru-derivative-of-1832492

** Changed in: kernel-sru-workflow
   Status: New => In Progress

** Changed in: kernel-sru-workflow
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/1832487

Title:
  linux-kvm:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-kvm package in Ubuntu:
  Invalid
Status in linux-kvm source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832487/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832472] Re: cdc_ncm floods syslog unneccessarily

2019-06-12 Thread Paul White
** Tags added: disco

** Package changed: ubuntu => linux (Ubuntu)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1832472

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] The default IPv4 route 
is: /org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Not a paid data plan: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] Found usable connection: 
/org/freedesktop/NetworkManager/ActiveConnection/4
  Jun 12 10:49:01 resdz-v13 whoopsie[1530]: [10:49:01] online
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.628055] cdc_ncm 2-3:2.0 

[Kernel-packages] [Bug 1832485] Re: linux-azure: -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
+ kernel-stable-master-bug: 1832492
  variant: debs

** Tags added: kernel-sru-derivative-of-1832492

** Changed in: kernel-sru-workflow
   Status: New => In Progress

** Changed in: kernel-sru-workflow
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-azure in Ubuntu.
https://bugs.launchpad.net/bugs/1832485

Title:
  linux-azure:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow prepare-package-signed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure package in Ubuntu:
  Invalid
Status in linux-azure source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 10:31 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832485/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832484] Re: linux-aws: -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
+ kernel-stable-master-bug: 1832492
  variant: debs

** Tags added: kernel-sru-derivative-of-1832492

** Changed in: kernel-sru-workflow
   Status: New => In Progress

** Changed in: kernel-sru-workflow
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-aws in Ubuntu.
https://bugs.launchpad.net/bugs/1832484

Title:
  linux-aws:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-aws package in Ubuntu:
  Invalid
Status in linux-aws source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 10:31 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832484/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832486] Re: linux-gcp: -proposed tracker

2019-06-12 Thread Stefan Bader
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
+ kernel-stable-master-bug: 1832492
  variant: debs

** Tags added: kernel-sru-derivative-of-1832492

** Changed in: kernel-sru-workflow
   Status: New => In Progress

** Changed in: kernel-sru-workflow
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-gcp in Ubuntu.
https://bugs.launchpad.net/bugs/1832486

Title:
  linux-gcp:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow prepare-package-signed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-gcp package in Ubuntu:
  Invalid
Status in linux-gcp source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 10:31 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832486/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832041] Re: The mouse stops working

2019-06-12 Thread Daniel van Vugt
Please let us know which problem you would like this bug to be about.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1832041

Title:
  The mouse stops working

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Sometime the wifi is not getting detected and the mouse is not working
  and and i am using touch instead of mouse, the external mouse is also
  not working

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: xorg 1:7.7+19ubuntu7.1
  ProcVersionSignature: Ubuntu 4.18.0-21.22~18.04.1-generic 4.18.20
  Uname: Linux 4.18.0-21-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.6
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Jun  8 00:40:19 2019
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia, 390.116, 4.15.0-47-generic, x86_64: installed
   nvidia, 390.116, 4.15.0-51-generic, x86_64: installed
   nvidia, 390.116, 4.18.0-17-generic, x86_64: installed
   nvidia, 390.116, 4.18.0-21-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA 
controller])
 Subsystem: Hewlett-Packard Company UHD Graphics 620 [103c:83ba]
 Subsystem: Hewlett-Packard Company GP108M [GeForce MX150] [103c:83ba]
  InstallationDate: Installed on 2019-04-04 (64 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 8087:0025 Intel Corp. 
   Bus 001 Device 003: ID 05c8:0815 Cheng Uei Precision Industry Co., Ltd 
(Foxlink) 
   Bus 001 Device 009: ID 03f0:0941 Hewlett-Packard 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: HP HP Spectre x360 Convertible 15-ch0xx
  ProcEnviron:
   LANGUAGE=en_IN:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_IN
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-21-generic 
root=UUID=a759c10c-be50-4caf-bd43-1516b97d1c6a ro quiet splash vt.handoff=1
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/15/2018
  dmi.bios.vendor: AMI
  dmi.bios.version: F.23
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 83BA
  dmi.board.vendor: HP
  dmi.board.version: 57.31
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAMI:bvrF.23:bd10/15/2018:svnHP:pnHPSpectrex360Convertible15-ch0xx:pvr:rvnHP:rn83BA:rvr57.31:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Spectre
  dmi.product.name: HP Spectre x360 Convertible 15-ch0xx
  dmi.product.sku: 2FW61AV
  dmi.sys.vendor: HP
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.95-1~18.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 18.2.8-0ubuntu0~18.04.2
  version.libgl1-mesa-glx: libgl1-mesa-glx 18.2.8-0ubuntu0~18.04.2
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1832041/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832041] Re: The mouse stops working

2019-06-12 Thread Daniel van Vugt
The wifi problem is a kernel/firmware issue:

[20460.034389] ieee80211 phy0: Hardware restart was requested
[20461.205415] iwlwifi :3b:00.0: Microcode SW error detected. Restarting 
0x0.

---

The mouse problem seems to be a hardware/connection/kernel issue:

[20772.768458] usb 1-3: new low-speed USB device number 7 using xhci_hcd
[20772.926068] usb 1-3: New USB device found, idVendor=03f0, idProduct=0941, 
bcdDevice= 1.00
[20772.926075] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[20772.926079] usb 1-3: Product: HP X500 USB Optical Mouse
[20772.926083] usb 1-3: Manufacturer: PixArt
[20772.930813] input: PixArt HP X500 USB Optical Mouse as 
/devices/pci:00/:00:14.0/usb1/1-3/1-3:1.0/0003:03F0:0941.0009/input/input35
[20772.931310] hid-generic 0003:03F0:0941.0009: input,hidraw0: USB HID v1.11 
Mouse [PixArt HP X500 USB Optical Mouse] on usb-:00:14.0-3/input0
[20772.946513] usb 1-3: USB disconnect, device number 7
[20773.488475] usb 1-3: new low-speed USB device number 8 using xhci_hcd
[20773.646432] usb 1-3: New USB device found, idVendor=03f0, idProduct=0941, 
bcdDevice= 1.00
[20773.646439] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[20773.646443] usb 1-3: Product: HP X500 USB Optical Mouse
[20773.646447] usb 1-3: Manufacturer: PixArt
[20773.650364] input: PixArt HP X500 USB Optical Mouse as 
/devices/pci:00/:00:14.0/usb1/1-3/1-3:1.0/0003:03F0:0941.000A/input/input36
[20773.651117] hid-generic 0003:03F0:0941.000A: input,hidraw0: USB HID v1.11 
Mouse [PixArt HP X500 USB Optical Mouse] on usb-:00:14.0-3/input0
[20956.341624] usb 1-3: USB disconnect, device number 8
[20960.080857] usb 1-3: new low-speed USB device number 9 using xhci_hcd
[20960.937374] usb 1-3: New USB device found, idVendor=03f0, idProduct=0941, 
bcdDevice= 1.00
[20960.937378] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[20960.937381] usb 1-3: Product: HP X500 USB Optical Mouse
[20960.937384] usb 1-3: Manufacturer: PixArt
[20960.940944] input: PixArt HP X500 USB Optical Mouse as 
/devices/pci:00/:00:14.0/usb1/1-3/1-3:1.0/0003:03F0:0941.000B/input/input37
[20961.001941] hid-generic 0003:03F0:0941.000B: input,hidraw0: USB HID v1.11 
Mouse [PixArt HP X500 USB Optical Mouse] on usb-:00:14.0-3/input0

** Package changed: ubuntu => linux (Ubuntu)

** Changed in: linux (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1832041

Title:
  The mouse stops working

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Sometime the wifi is not getting detected and the mouse is not working
  and and i am using touch instead of mouse, the external mouse is also
  not working

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: xorg 1:7.7+19ubuntu7.1
  ProcVersionSignature: Ubuntu 4.18.0-21.22~18.04.1-generic 4.18.20
  Uname: Linux 4.18.0-21-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.6
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Jun  8 00:40:19 2019
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia, 390.116, 4.15.0-47-generic, x86_64: installed
   nvidia, 390.116, 4.15.0-51-generic, x86_64: installed
   nvidia, 390.116, 4.18.0-17-generic, x86_64: installed
   nvidia, 390.116, 4.18.0-21-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA 
controller])
 Subsystem: Hewlett-Packard Company UHD Graphics 620 [103c:83ba]
 Subsystem: Hewlett-Packard Company GP108M [GeForce MX150] [103c:83ba]
  InstallationDate: Installed on 2019-04-04 (64 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 8087:0025 Intel Corp. 
   Bus 001 Device 003: ID 05c8:0815 Cheng Uei Precision Industry Co., Ltd 
(Foxlink) 
   Bus 001 Device 009: ID 03f0:0941 Hewlett-Packard 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: HP HP Spectre x360 Convertible 15-ch0xx
  ProcEnviron:
   LANGUAGE=en_IN:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_IN
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-21-generic 
root=UUID=a759c10c-be50-4caf-bd43-1516b97d1c6a ro quiet splash vt.handoff=1
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/15/2018
  dmi.bios.vendor: AMI
  dmi.bios.version: F.23
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 83BA
  dmi.board.vendor: HP
  dmi.board.version: 57.31
  dmi.chassis.type: 31
  

[Kernel-packages] [Bug 1826868] Re: Sound device not detected after resume from hibernate

2019-06-12 Thread AceLan Kao
** Also affects: linux-oem (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: linux-oem (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Changed in: linux-oem (Ubuntu)
   Status: New => Invalid

** Changed in: linux-oem (Ubuntu Bionic)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oem in Ubuntu.
https://bugs.launchpad.net/bugs/1826868

Title:
  Sound device not detected after resume from hibernate

Status in linux package in Ubuntu:
  Confirmed
Status in linux-oem package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  New
Status in linux-oem source package in Bionic:
  Fix Committed

Bug description:
  The patch is already in the v5.2-rc1, so don't send the patch
  to unstable.

  In the V2, I added 3 more patches. The 0001-xxx.patch is for fixing
  the issue of "audio doesn't work after s3/s4 on cln and glk machines",
  but it introduces a new issue of "screen flickering when CDCLK changes",
  So I added 0002/3/4-xxx.patch to fix the new issue.

  [Impact]
  After s3 or s4, the hdmi audio driver will re-probe the hw, if the hdmi
  monitor is not plugged before s3 or s4, the re-probe will fail on cnl
  and glk machines.

  [Fix]
  Keep the cdclk alive when re-probing

  [Test Case]
  I applied the patches to bionic kernel and disco kernel, and tested them
  on Whiskeylake, cannonlake, kabylake, skylake and geminilake
  machines, before s3, I verified analogue audio, hdmi audio and screen
  dispaly all worked well, then let the system enter s3 and resume, recheck
  the analogue audio, hdmi audio and screen display, all worked well too.
  And repeated the test 5 times.

  
  [Regression Risk]
  Low. I have tested the patched kernel on different Dell and Lenovo machines,
  they include Whiskeylake, cannonlake, kabylake, skylake and geminilake.


  dmesg -w shows the following:

  snd_hda_codec_realtek hdaudioC0D0: out of range cmd 0:20:400:
  snd_hda_codec_realtek hdaudioC0D0: Unable to sync register 0x2b8000.
  -5

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: linux-image-5.0.0-13-generic 5.0.0-13.14
  ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
  Uname: Linux 5.0.0-13-generic x86_64
  ApportVersion: 2.20.10-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  rob1551 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Apr 29 21:22:18 2019
  InstallationDate: Installed on 2019-04-24 (4 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 05c8:022a Cheng Uei Precision Industry Co., Ltd 
(Foxlink)
   Bus 001 Device 002: ID 0bda:b00b Realtek Semiconductor Corp.
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: HP HP Stream x360 Convertible 11-ag1XX
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.0.0-13-generic 
root=UUID=e0182eac-9bb3-45c5-b4e9-3b21715dbc95 ro quiet splash vt.handoff=1
  RelatedPackageVersions:
   linux-restricted-modules-5.0.0-13-generic N/A
   linux-backports-modules-5.0.0-13-generic  N/A
   linux-firmware1.178
  SourcePackage: linux
  StagingDrivers: r8822be
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/22/2018
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 8501
  dmi.board.vendor: HP
  dmi.board.version: 05.21
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsyde:bvrF.10:bd05/22/2018:svnHP:pnHPStreamx360Convertible11-ag1XX:pvrType1ProductConfigId:rvnHP:rn8501:rvr05.21:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Notebook
  dmi.product.name: HP Stream x360 Convertible 11-ag1XX
  dmi.product.sku: 4RV86PA#ABG
  dmi.product.version: Type1ProductConfigId
  dmi.sys.vendor: HP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1826868/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832483] [NEW] linux-raspi2: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

This bug will contain status and test results related to a kernel source
(or snap) as stated in the title.

For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

-- swm properties --
variant: debs

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

** Affects: kernel-sru-workflow/automated-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Assignee: Canonical Hardware Certification (canonical-hw-cert)
 Status: New

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: Invalid

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: linux-raspi2 (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Affects: linux-raspi2 (Ubuntu Disco)
 Importance: Medium
 Status: New


** Tags: disco kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1

** Also affects: kernel-sru-workflow/automated-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Tags added: disco

** Also affects: linux-raspi2 (Ubuntu Disco)
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow/automated-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/automated-testing
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) => Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-updates
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: 

[Kernel-packages] [Bug 1832472] Missing required logs.

2019-06-12 Thread Ubuntu Kernel Bot
This bug is missing log files that will aid in diagnosing the problem.
While running an Ubuntu kernel (not a mainline or third-party kernel)
please enter the following command in a terminal window:

apport-collect 1832472

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

** Changed in: linux (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1832472

Title:
  cdc_ncm floods syslog unneccessarily

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Upon plugging in a USB adapter for NBase-T ethernet with an Realtek
  chip RTL8156 the kernel module cdc_ncm starts flooding /var/log/syslog
  with unneccessary status info.

  The status lines either say that there's no ethernet link or show the
  interface as connected and state the link speed.

  The relevant parts from /var/log/syslog after attaching the adapter
  without ethernet link read like this:

  [...]
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.398485] usb 2-3: new SuperSpeed Gen 
1 USB device number 5 using xhci_hcd
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419463] usb 2-3: New USB device 
found, idVendor=0bda, idProduct=8156, bcdDevice=30.00
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419469] usb 2-3: New USB device 
strings: Mfr=1, Product=2, SerialNumber=6
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419472] usb 2-3: Product: USB 
10/100/1G/2.5G LAN
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419475] usb 2-3: Manufacturer: 
Realtek
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.419477] usb 2-3: SerialNumber: 
1
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447769] cdc_ncm 2-3:2.0: 
MAC-Address: 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447775] cdc_ncm 2-3:2.0: setting 
rx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.447929] cdc_ncm 2-3:2.0: setting 
tx_max = 16384
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.448901] cdc_ncm 2-3:2.0 usb0: 
register 'cdc_ncm' at usb-:00:14.0-3, CDC NCM, 00:13:3b:68:00:e9
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.1872] 
manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/8)
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Using default interface naming 
scheme 'v240'.
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: link_config: autonegotiation 
is unset or enabled, the speed and duplex are not writable.
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.466476] cdc_ncm 2-3:2.0 
enx00133b6800e9: renamed from usb0
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2315] 
device (usb0): interface index 7 renamed iface from 'usb0' to 'enx00133b6800e9'
  Jun 12 10:48:58 resdz-v13 systemd-udevd[4299]: Process 
'vlan-network-interface UDEV' failed with exit code 1.
  Jun 12 10:48:58 resdz-v13 NetworkManager[916]:   [1560329338.2431] 
device (enx00133b6800e9): state change: unmanaged -> unavailable (reason 
'managed', sys-iface-state: 'external')
  Jun 12 10:48:58 resdz-v13 charon: 12[KNL] interface enx00133b6800e9 activated
  Jun 12 10:48:58 resdz-v13 mtp-probe: checking bus 2, device 5: 
"/sys/devices/pci:00/:00:14.0/usb2/2-3"
  Jun 12 10:48:58 resdz-v13 mtp-probe: bus: 2, device: 5 was not an MTP device
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.524052] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.556109] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.588054] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.620383] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  Jun 12 10:48:58 resdz-v13 kernel: [ 4240.652415] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: disconnected
  [...]

  Upon plugging in the ethernet cable I see
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.372273] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.404278] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected
  [...]
  and Network Manager starts its work. 

  After the interface is up the flooding continues:
  [...]
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.564056] cdc_ncm 2-3:2.0 
enx00133b6800e9: 1000 mbit/s downlink 1000 mbit/s uplink
  Jun 12 10:49:01 resdz-v13 kernel: [ 4243.596051] cdc_ncm 2-3:2.0 
enx00133b6800e9: network connection: connected

[Kernel-packages] [Bug 1832485] Re: linux-azure: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1832492
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 10:31 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-azure in Ubuntu.
https://bugs.launchpad.net/bugs/1832485

Title:
  linux-azure:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow prepare-package-signed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure package in Ubuntu:
  Invalid
Status in linux-azure source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 10:31 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832485/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832484] Re: linux-aws: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1832492
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 10:31 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-aws in Ubuntu.
https://bugs.launchpad.net/bugs/1832484

Title:
  linux-aws:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-aws package in Ubuntu:
  Invalid
Status in linux-aws source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 10:31 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832484/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832468] Re: linux-oem: 4.15.0-1042.47 -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package
   Status: In Progress => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: In Progress => Fix Released

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1829219
  phase: Packaging
  phase-changed: Wednesday, 12. June 2019 09:30 UTC
  reason:
-   prepare-package: Pending -- package not yet uploaded
-   prepare-package-meta: Pending -- package not yet uploaded
-   prepare-package-signed: Pending -- package not yet uploaded
+   prepare-package-meta: Pending -- package tag not yet published
+   promote-to-proposed: Pending -- builds not complete in ppa 
meta:building,main:building,signed:building
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-oem in Ubuntu.
https://bugs.launchpad.net/bugs/1832468

Title:
  linux-oem: 4.15.0-1042.47 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  New
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  In Progress
Status in Kernel SRU Workflow prepare-package-signed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-oem package in Ubuntu:
  Invalid
Status in linux-oem source package in Bionic:
  Confirmed

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
    https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1829219
  phase: Packaging
  phase-changed: Wednesday, 12. June 2019 09:30 UTC
  reason:
prepare-package-meta: Pending -- package tag not yet published
promote-to-proposed: Pending -- builds not complete in ppa 
meta:building,main:building,signed:building
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832468/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832483] Re: linux-raspi2: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1832492
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 10:31 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-raspi2 in Ubuntu.
https://bugs.launchpad.net/bugs/1832483

Title:
  linux-raspi2:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  New
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-raspi2 package in Ubuntu:
  Invalid
Status in linux-raspi2 source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 10:31 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832483/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832492] Re: linux: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Changed in: kernel-sru-workflow/prepare-package
   Status: New => Confirmed

** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1832489 (bionic/linux-hwe-edge), bug 1832491 
(bionic/linux-oem-osp1)
  derivatives: bug 1832483 (linux-raspi2), bug 1832484 (linux-aws), bug 1832485 
(linux-azure), bug 1832486 (linux-gcp), bug 1832487 (linux-kvm), bug 1832488 
(linux-snapdragon)
  
  -- swm properties --
+ phase: Ready for Packaging
+ phase-changed: Wednesday, 12. June 2019 10:32 UTC
+ reason:
+   prepare-package: Pending -- version not specified
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1832492

Title:
  linux:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  New
Status in Kernel SRU Workflow prepare-package series:
  Confirmed
Status in Kernel SRU Workflow prepare-package-lrm series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow prepare-package-signed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  backports: bug 1832489 (bionic/linux-hwe-edge), bug 1832491 
(bionic/linux-oem-osp1)
  derivatives: bug 1832483 (linux-raspi2), bug 1832484 (linux-aws), bug 1832485 
(linux-azure), bug 1832486 (linux-gcp), bug 1832487 (linux-kvm), bug 1832488 
(linux-snapdragon)

  -- swm properties --
  phase: Ready for Packaging
  phase-changed: Wednesday, 12. June 2019 10:32 UTC
  reason:
prepare-package: Pending -- version not specified
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832492/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832486] Re: linux-gcp: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1832492
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 10:31 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-gcp in Ubuntu.
https://bugs.launchpad.net/bugs/1832486

Title:
  linux-gcp:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow prepare-package-signed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-gcp package in Ubuntu:
  Invalid
Status in linux-gcp source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 10:31 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832486/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832488] Re: linux-snapdragon: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1832492
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 10:31 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-snapdragon in Ubuntu.
https://bugs.launchpad.net/bugs/1832488

Title:
  linux-snapdragon:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  New
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  Invalid
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-snapdragon package in Ubuntu:
  Invalid
Status in linux-snapdragon source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 10:31 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832488/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832487] Re: linux-kvm: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1832492
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 10:31 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/1832487

Title:
  linux-kvm:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-kvm package in Ubuntu:
  Invalid
Status in linux-kvm source package in Disco:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832492
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 10:31 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832487/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832506] Re: linux-kvm: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  kernel-stable-master-bug: 1832508
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 11:32 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/1832506

Title:
  linux-kvm:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-kvm package in Ubuntu:
  Invalid
Status in linux-kvm source package in Cosmic:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  -- swm properties --
  kernel-stable-master-bug: 1832508
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 11:32 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832506/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832505] Re: linux-gcp: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1832504 (bionic/linux-gcp-edge)
  
  -- swm properties --
  kernel-stable-master-bug: 1832508
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 11:32 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-gcp in Ubuntu.
https://bugs.launchpad.net/bugs/1832505

Title:
  linux-gcp:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow prepare-package-signed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-gcp package in Ubuntu:
  Invalid
Status in linux-gcp source package in Cosmic:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  backports: bug 1832504 (bionic/linux-gcp-edge)

  -- swm properties --
  kernel-stable-master-bug: 1832508
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 11:32 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832505/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832503] Re: linux-azure: -proposed tracker

2019-06-12 Thread Ubuntu Kernel Bot
** Description changed:

  This bug will contain status and test results related to a kernel source
  (or snap) as stated in the title.
  
  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  backports: bug 1832502 (bionic/linux-azure)
  
  -- swm properties --
  kernel-stable-master-bug: 1832508
+ phase: Holding before Packaging
+ phase-changed: Wednesday, 12. June 2019 11:32 UTC
+ reason:
+   prepare-package: Stalled -- waiting for master bug
  variant: debs

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-azure in Ubuntu.
https://bugs.launchpad.net/bugs/1832503

Title:
  linux-azure:  -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow prepare-package-signed series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow stakeholder-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux-azure package in Ubuntu:
  Invalid
Status in linux-azure source package in Cosmic:
  New

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

  backports: bug 1832502 (bionic/linux-azure)

  -- swm properties --
  kernel-stable-master-bug: 1832508
  phase: Holding before Packaging
  phase-changed: Wednesday, 12. June 2019 11:32 UTC
  reason:
prepare-package: Stalled -- waiting for master bug
  variant: debs

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832503/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1832528] [NEW] linux-gcp: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

This bug will contain status and test results related to a kernel source
(or snap) as stated in the title.

For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

derivatives: bug 1832525 (gcp-kernel), bug 1832527 (gke-kernel)

-- swm properties --
kernel-stable-master-bug: 1832529
variant: debs

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

** Affects: kernel-sru-workflow/automated-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Assignee: Canonical Hardware Certification (canonical-hw-cert)
 Status: Invalid

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-signed
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: linux-gcp (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Affects: linux-gcp (Ubuntu Xenial)
 Importance: Medium
 Status: New


** Tags: kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-backport-of-1832529 kernel-sru-cycle-2019.06.03-1 xenial

** Also affects: kernel-sru-workflow/automated-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Tags added: xenial

** Also affects: linux-gcp (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow/automated-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/automated-testing
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) => Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/certification-testing
   Status: New => Invalid

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-signed
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: 

[Kernel-packages] [Bug 1832523] [NEW] linux-aws: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

This bug will contain status and test results related to a kernel source
(or snap) as stated in the title.

For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

backports: bug 1832521 (xenial/linux-aws-hwe)
derivatives: bug 1832520 (aws-kernel)

-- swm properties --
variant: debs

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

** Affects: kernel-sru-workflow/automated-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Assignee: Canonical Hardware Certification (canonical-hw-cert)
 Status: Invalid

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: linux-aws (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Affects: linux-aws (Ubuntu Bionic)
 Importance: Medium
 Status: New


** Tags: bionic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1

** Also affects: kernel-sru-workflow/automated-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Tags added: bionic

** Also affects: linux-aws (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow/automated-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/automated-testing
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) => Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/certification-testing
   Status: New => Invalid

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) => Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided => Medium

** Changed in: 

[Kernel-packages] [Bug 1832529] [NEW] linux-gcp: -proposed tracker

2019-06-12 Thread Stefan Bader
Public bug reported:

This bug will contain status and test results related to a kernel source
(or snap) as stated in the title.

For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

backports: bug 1832528 (xenial/linux-gcp)
derivatives: bug 1832524 (gcp-kernel)

-- swm properties --
variant: debs

** Affects: kernel-sru-workflow
 Importance: Undecided
 Status: New

** Affects: kernel-sru-workflow/automated-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Assignee: Canonical Hardware Certification (canonical-hw-cert)
 Status: Invalid

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-signed
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: linux-gcp (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Affects: linux-gcp (Ubuntu Bionic)
 Importance: Medium
 Status: New


** Tags: bionic kernel-release-tracking-bug kernel-release-tracking-bug-live 
kernel-sru-cycle-2019.06.03-1

** Also affects: kernel-sru-workflow/automated-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Tags added: bionic

** Also affects: linux-gcp (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow/automated-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/automated-testing
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) => Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/certification-testing
   Status: New => Invalid

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-signed
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/promote-to-proposed
   

[Kernel-packages] [Bug 1832533] Re: linux-ibm-gt: -proposed tracker

2019-06-12 Thread Stefan Bader
** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided => Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1832533

Title:
  linux-ibm-gt:  -proposed tracker

Status in Kernel SRU Workflow:
  New
Status in Kernel SRU Workflow automated-testing series:
  New
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow prepare-package series:
  New
Status in Kernel SRU Workflow prepare-package-meta series:
  New
Status in Kernel SRU Workflow promote-to-proposed series:
  New
Status in Kernel SRU Workflow promote-to-security series:
  New
Status in Kernel SRU Workflow promote-to-updates series:
  New
Status in Kernel SRU Workflow regression-testing series:
  New
Status in Kernel SRU Workflow security-signoff series:
  New
Status in Kernel SRU Workflow verification-testing series:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Bionic:
  Incomplete

Bug description:
  This bug will contain status and test results related to a kernel
  source (or snap) as stated in the title.

  For an explanation of the tasks and the associated workflow see:
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1832533/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


  1   2   3   >