[Kernel-packages] [Bug 2051733] Re: Specifying nohz_full breaks CPU frequency reporting

2024-02-02 Thread Lastique
I'm not familiar with Linux kernel internals, or how scaling_cur_freq is
implemented internally, but that doesn't look like a valid logic to me.
If it takes an IPI (or two, as the commit message suggests) to read the
core frequency, then make those IPIs. It doesn't matter how expensive it
is - if the user wants to read the current frequency then he is willing
to pay for that information. This likely won't be a frequent operation
anyway. Providing an interface to read this information and then feeding
bogus data through it is not acceptable, IMO.

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

Title:
  Specifying nohz_full breaks CPU frequency reporting

Status in linux-signed-lowlatency-hwe-6.5 package in Ubuntu:
  Confirmed

Bug description:
  With the lowlatency kernel, if I specify "nohz_full=1-15" boot
  parameter then CPU frequency reporting doesn't work for the logical
  cores 1-15. That is, only logical core 0 shows varying CPU frequency
  in its /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq file, all
  other cores constantly show 80 in their scaling_cur_freq files
  (which is the lowest supported frequency) regardless of the CPU load.

  Steps to reproduce:

  1. Add "nohz_full=1-15" (specify the core numbers to include all logical 
cores except 0) to kernel boot options in /etc/default/grub.
  2. Run `sudo update-grub` and reboot.
  3. Upon booting, run a multithreaded workload. For example, run `openssl 
speed -multi $(nproc --all)`.
  4. In another console, monitor CPU frequencies by running `watch cat 
/sys/devices/system/cpu/cpu[0-9]*/cpufreq/scaling_cur_freq`.

  Actual results:

  All cores specified in "nohz_full" parameter always report their
  lowest frequency.

  Despite that, the actual performance seems to be as if frequency
  scaling actually works (i.e. according to benchmarks, the performance
  seems to be similar with and without the "nohz_full" parameter).

  Expected results:

  All cores must report their actual frequency depending on the load.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.5.0-15-lowlatency 6.5.0-15.15.1.1~22.04.1
  ProcVersionSignature: Ubuntu 6.5.0-15.15.1.1~22.04.1-lowlatency 6.5.3
  Uname: Linux 6.5.0-15-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: KDE
  Date: Tue Jan 30 23:39:51 2024
  InstallationDate: Installed on 2015-05-01 (3196 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: linux-signed-lowlatency-hwe-6.5
  UpgradeStatus: Upgraded to jammy on 2022-05-14 (626 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-lowlatency-hwe-6.5/+bug/2051733/+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 2051342] Re: Enable lowlatency settings in the generic kernel

2024-02-01 Thread Lastique
@arighi: Did you consider applying lowlatency settings to generic kernel
but keeping CONFIG_HZ=250?

I suspect, the majority of desktop usage issues (i.e. responsiveness)
would be solved by `preempt=full rcu_nocbs=all` being the default (or
whatever the equivalent boot options are). While keeping CONFIG_HZ=250
would mitigate the potential throughput loss.

-- 
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/2051342

Title:
  Enable lowlatency settings in the generic kernel

Status in linux package in Ubuntu:
  New
Status in linux source package in Noble:
  New

Bug description:
  [Impact]

  Ubuntu provides the "lowlatency" kernel: a kernel optimized for
  applications that have special "low latency" requirements.

  Currently, this kernel does not include any specific UBUNTU SAUCE
  patches to improve the extra "low latency" requirements, but the only
  difference is a small subset of .config options.

  Almost all these options are now configurable either at boot-time or
  even at run-time, with the only exception of CONFIG_HZ (250 in the
  generic kernel vs 1000 in the lowlatency kernel).

  Maintaining a separate kernel for a single config option seems a bit
  overkill and it is a significant cost of engineering hours, build
  time, regression testing time and resources. Not to mention the risk
  of the low-latency kernel falling behind and not being perfectly in
  sync with the latest generic kernel.

  Enabling the low-latency settings in the generic kernel has been
  evaluated before, but it has been never finalized due to the potential
  risk of performance regressions in CPU-intensive applications
  (increasing HZ from 250 to 1000 may introduce more kernel jitter in
  number crunching workloads). The outcome of the original proposal
  resulted in a re-classification of the lowlatency kernel as a desktop-
  oriented kernel, enabling additional low latency features (LP:
  #2023007).

  As we are approaching the release of the new Ubuntu 24.04 we may want
  to re-consider merging the low-latency settings in the generic kernel
  again.

  Following a detailed analysis of the specific low-latency features:

  - CONFIG_NO_HZ_FULL=y: enable access to "Full tickless mode" (shutdown
  clock tick when possible across all the enabled CPUs if they are
  either idle or running 1 task - reduce kernel jitter of running tasks
  due to the periodic clock tick, must be enabled at boot time passing
  `nohz_full=`); this can actually help CPU-intensive
  workloads and it could provide much more benefits than the CONFIG_HZ
  difference (since it can potentially shutdown any kernel jitter on
  specific CPUs), this one should really be enabled anyway, considering
  that it is configurable at boot time

   - CONFIG_RCU_NOCB_CPU=y: move RCU callbacks from softirq context to
  kthread context (reduce time spent in softirqs with preemption
  disabled to improve the overall system responsiveness, at the cost of
  introducing a potential performance penalty, because RCU callbacks are
  not processed by kernel threads); this should be enabled as well,
  since it is configurable at boot time (via the rcu_nocbs=
  parameter)

   - CONFIG_RCU_LAZY=y: batch RCU callbacks and then flush them after a
  timed delay instead of executing them immediately (c'an provide 5~10%
  power-savings for idle or lightly-loaded systems, this is extremely
  useful for laptops / portable devices -
  
https://lore.kernel.org/lkml/20221016162305.2489629-3-j...@joelfernandes.org/);
  this has the potential to introduce significant performance
  regressions, but in the Noble kernel we already have a SAUCE patch
  that allows to enable/disable this option at boot time (see LP:
  #2045492), and by default it will be disabled
  (CONFIG_RCU_LAZY_DEFAULT_OFF=y)

   - CONFIG_HZ=1000 last but not least, the only option that is *only*
  tunable at compile time. As already mentioned there is a potential
  risk of regressions for CPU-intensive applications, but they can be
  mitigated (and maybe they could even outperformed) with NO_HZ_FULL. On
  the other hand, HZ=1000 can improve system responsiveness, that means
  most of the desktop and server applications will benefit from this
  (the largest part of the server workloads is I/O bound, more than CPU-
  bound, so they can benefit from having a kernel that can react faster
  at switching tasks), not to mention the benefit for the typical end
  users applications (gaming, live conferencing, multimedia, etc.).

  With all of that in place we can provide a kernel that has the
  flexibility to be more responsive, more performant and more power
  efficient (therefore more "generic"), simply by tuning run-time and
  boot-time options.

  Moreover, once these changes are applied we will be able to deprecate
  the lowlatency kernel, saving engineering time and also reducing power
  consumption (required to build the 

[Kernel-packages] [Bug 2051733] Re: Specifying nohz_full disables CPU frequency scaling

2024-01-31 Thread Lastique
I have run a quick `7z b` benchmark on the lowlatency kernel with and
without `nohz_full` parameter, and the results are fairly close:

No `nohz_full` parameter:

   Compressing  |  Decompressing
Dict Speed UsageR/U Rating  |  Speed UsageR/U Rating
 KiB/s %   MIPS   MIPS  |  KiB/s %   MIPS   MIPS

22:  82694  1333   6033  80445  | 741767  1584   3994  63265
23:  81022  1400   5896  82552  | 736593  1589   4011  63731
24:  79427  1429   5978  85401  | 722675  1581   4011  63433
25:  77665  1459   6077  88676  | 711778  1587   3990  63346
--  | --
Avr:1405   5996  84269  | 1585   4002  63444
Tot:1495   4999  73856

With `nohz_full=1-15` parameter:

   Compressing  |  Decompressing
Dict Speed UsageR/U Rating  |  Speed UsageR/U Rating
 KiB/s %   MIPS   MIPS  |  KiB/s %   MIPS   MIPS

22:  84475  1357   6055  82177  | 738578  1552   4060  62993
23:  80361  1376   5951  81878  | 726439  1482   4240  62852
24:  80275  1437   6006  86312  | 715778  1496   4199  62827
25:  77007  1448   6073  87924  | 708632  1563   4034  63066
--  | --
Avr:1404   6021  84573  | 1523   4133  62935
Tot:1464   5077  73754

In the latter case, decompressing is slightly slower, but definitely not
"800MHz" slower, so it looks like the problem is indeed with frequency
reporting rather than scaling.


** Summary changed:

- Specifying nohz_full disables CPU frequency scaling
+ Specifying nohz_full breaks CPU frequency reporting

** Description changed:

  With the lowlatency kernel, if I specify "nohz_full=1-15" boot parameter
- then CPU frequency scaling doesn't work for the logical cores 1-15. That
- is, only logical core 0 shows varying CPU frequency in its
+ then CPU frequency reporting doesn't work for the logical cores 1-15.
+ That is, only logical core 0 shows varying CPU frequency in its
  /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq file, all other
  cores constantly show 80 in their scaling_cur_freq files (which is
  the lowest supported frequency) regardless of the CPU load.
  
  Steps to reproduce:
  
  1. Add "nohz_full=1-15" (specify the core numbers to include all logical 
cores except 0) to kernel boot options in /etc/default/grub.
  2. Run `sudo update-grub` and reboot.
  3. Upon booting, run a multithreaded workload. For example, run `openssl 
speed -multi $(nproc --all)`.
  4. In another console, monitor CPU frequencies by running `watch cat 
/sys/devices/system/cpu/cpu[0-9]*/cpufreq/scaling_cur_freq`.
  
  Actual results:
  
- All cores specified in "nohz_full" parameter are always at their lowest
+ All cores specified in "nohz_full" parameter always report their lowest
  frequency.
+ 
+ Despite that, the actual performance seems to be as if frequency scaling
+ actually works (i.e. according to benchmarks, the performance seems to
+ be similar with and without the "nohz_full" parameter).
  
  Expected results:
  
- All cores must scale the frequency up with active load.
+ All cores must report their actual frequency depending on the load.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.5.0-15-lowlatency 6.5.0-15.15.1.1~22.04.1
  ProcVersionSignature: Ubuntu 6.5.0-15.15.1.1~22.04.1-lowlatency 6.5.3
  Uname: Linux 6.5.0-15-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: KDE
  Date: Tue Jan 30 23:39:51 2024
  InstallationDate: Installed on 2015-05-01 (3196 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: linux-signed-lowlatency-hwe-6.5
  UpgradeStatus: Upgraded to jammy on 2022-05-14 (626 days ago)

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

Title:
  Specifying nohz_full breaks CPU frequency reporting

Status in linux-signed-lowlatency-hwe-6.5 package in Ubuntu:
  Confirmed

Bug description:
  With the lowlatency kernel, if I specify "nohz_full=1-15" boot
  parameter then CPU frequency reporting doesn't work for the logical
  cores 1-15. That is, only logical core 0 shows varying CPU frequency
  in its /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq file, all
  other cores constantly show 80 in their scaling_cur_freq files
  (which is the lowest supported frequency) regardless of the CPU load.

  Steps to reproduce:

  1. Add "nohz_full=1-15" (specify the core numbers to include all logical 
cores except 0) to kernel boot options in /etc/default/grub.
  2. 

[Kernel-packages] [Bug 2051733] Re: Specifying nohz_full disables CPU frequency scaling

2024-01-31 Thread Lastique
> Note also, in my case, the CPU frequencies actually seem to be scaling
properly, it is just that they are not being reported properly via
"/sys/devices/system/cpu/cpu*/cpufreq/scaling_cur_freq".

To be clear, I cannot be sure whether that was also the case in my
testing. I didn't test the actual performance much. In a few short tests
it did seem like the performance was lower, but that was not in any way
scientific, so it is possible that the problem is just representation in
scaling_cur_freq files.

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

Title:
  Specifying nohz_full disables CPU frequency scaling

Status in linux-signed-lowlatency-hwe-6.5 package in Ubuntu:
  Confirmed

Bug description:
  With the lowlatency kernel, if I specify "nohz_full=1-15" boot
  parameter then CPU frequency scaling doesn't work for the logical
  cores 1-15. That is, only logical core 0 shows varying CPU frequency
  in its /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq file, all
  other cores constantly show 80 in their scaling_cur_freq files
  (which is the lowest supported frequency) regardless of the CPU load.

  Steps to reproduce:

  1. Add "nohz_full=1-15" (specify the core numbers to include all logical 
cores except 0) to kernel boot options in /etc/default/grub.
  2. Run `sudo update-grub` and reboot.
  3. Upon booting, run a multithreaded workload. For example, run `openssl 
speed -multi $(nproc --all)`.
  4. In another console, monitor CPU frequencies by running `watch cat 
/sys/devices/system/cpu/cpu[0-9]*/cpufreq/scaling_cur_freq`.

  Actual results:

  All cores specified in "nohz_full" parameter are always at their
  lowest frequency.

  Expected results:

  All cores must scale the frequency up with active load.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.5.0-15-lowlatency 6.5.0-15.15.1.1~22.04.1
  ProcVersionSignature: Ubuntu 6.5.0-15.15.1.1~22.04.1-lowlatency 6.5.3
  Uname: Linux 6.5.0-15-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: KDE
  Date: Tue Jan 30 23:39:51 2024
  InstallationDate: Installed on 2015-05-01 (3196 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: linux-signed-lowlatency-hwe-6.5
  UpgradeStatus: Upgraded to jammy on 2022-05-14 (626 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-lowlatency-hwe-6.5/+bug/2051733/+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 2051342] Re: Enable lowlatency settings in the generic kernel

2024-01-30 Thread Lastique
While testing locally, I have found this problem:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-lowlatency-
hwe-6.5/+bug/2051733

If this is indeed a valid bug and not something weirdly specific to my
system, I'd say `nohz_full` is non-functional.

-- 
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/2051342

Title:
  Enable lowlatency settings in the generic kernel

Status in linux package in Ubuntu:
  New
Status in linux source package in Noble:
  New

Bug description:
  [Impact]

  Ubuntu provides the "lowlatency" kernel: a kernel optimized for
  applications that have special "low latency" requirements.

  Currently, this kernel does not include any specific UBUNTU SAUCE
  patches to improve the extra "low latency" requirements, but the only
  difference is a small subset of .config options.

  Almost all these options are now configurable either at boot-time or
  even at run-time, with the only exception of CONFIG_HZ (250 in the
  generic kernel vs 1000 in the lowlatency kernel).

  Maintaining a separate kernel for a single config option seems a bit
  overkill and it is a significant cost of engineering hours, build
  time, regression testing time and resources. Not to mention the risk
  of the low-latency kernel falling behind and not being perfectly in
  sync with the latest generic kernel.

  Enabling the low-latency settings in the generic kernel has been
  evaluated before, but it has been never finalized due to the potential
  risk of performance regressions in CPU-intensive applications
  (increasing HZ from 250 to 1000 may introduce more kernel jitter in
  number crunching workloads). The outcome of the original proposal
  resulted in a re-classification of the lowlatency kernel as a desktop-
  oriented kernel, enabling additional low latency features (LP:
  #2023007).

  As we are approaching the release of the new Ubuntu 24.04 we may want
  to re-consider merging the low-latency settings in the generic kernel
  again.

  Following a detailed analysis of the specific low-latency features:

  - CONFIG_NO_HZ_FULL=y: enable access to "Full tickless mode" (shutdown
  clock tick when possible across all the enabled CPUs if they are
  either idle or running 1 task - reduce kernel jitter of running tasks
  due to the periodic clock tick, must be enabled at boot time passing
  `nohz_full=`); this can actually help CPU-intensive
  workloads and it could provide much more benefits than the CONFIG_HZ
  difference (since it can potentially shutdown any kernel jitter on
  specific CPUs), this one should really be enabled anyway, considering
  that it is configurable at boot time

   - CONFIG_RCU_NOCB_CPU=y: move RCU callbacks from softirq context to
  kthread context (reduce time spent in softirqs with preemption
  disabled to improve the overall system responsiveness, at the cost of
  introducing a potential performance penalty, because RCU callbacks are
  not processed by kernel threads); this should be enabled as well,
  since it is configurable at boot time (via the rcu_nocbs=
  parameter)

   - CONFIG_RCU_LAZY=y: batch RCU callbacks and then flush them after a
  timed delay instead of executing them immediately (c'an provide 5~10%
  power-savings for idle or lightly-loaded systems, this is extremely
  useful for laptops / portable devices -
  
https://lore.kernel.org/lkml/20221016162305.2489629-3-j...@joelfernandes.org/);
  this has the potential to introduce significant performance
  regressions, but in the Noble kernel we already have a SAUCE patch
  that allows to enable/disable this option at boot time (see LP:
  #2045492), and by default it will be disabled
  (CONFIG_RCU_LAZY_DEFAULT_OFF=y)

   - CONFIG_HZ=1000 last but not least, the only option that is *only*
  tunable at compile time. As already mentioned there is a potential
  risk of regressions for CPU-intensive applications, but they can be
  mitigated (and maybe they could even outperformed) with NO_HZ_FULL. On
  the other hand, HZ=1000 can improve system responsiveness, that means
  most of the desktop and server applications will benefit from this
  (the largest part of the server workloads is I/O bound, more than CPU-
  bound, so they can benefit from having a kernel that can react faster
  at switching tasks), not to mention the benefit for the typical end
  users applications (gaming, live conferencing, multimedia, etc.).

  With all of that in place we can provide a kernel that has the
  flexibility to be more responsive, more performant and more power
  efficient (therefore more "generic"), simply by tuning run-time and
  boot-time options.

  Moreover, once these changes are applied we will be able to deprecate
  the lowlatency kernel, saving engineering time and also reducing power
  consumption (required to build the kernel and do all the testing).

  Optionally, we can also provide optimal "lowlatency" settings as a

[Kernel-packages] [Bug 2051733] [NEW] Specifying nohz_full disables CPU frequency scaling

2024-01-30 Thread Lastique
Public bug reported:

With the lowlatency kernel, if I specify "nohz_full=1-15" boot parameter
then CPU frequency scaling doesn't work for the logical cores 1-15. That
is, only logical core 0 shows varying CPU frequency in its
/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq file, all other
cores constantly show 80 in their scaling_cur_freq files (which is
the lowest supported frequency) regardless of the CPU load.

Steps to reproduce:

1. Add "nohz_full=1-15" (specify the core numbers to include all logical cores 
except 0) to kernel boot options in /etc/default/grub.
2. Run `sudo update-grub` and reboot.
3. Upon booting, run a multithreaded workload. For example, run `openssl speed 
-multi $(nproc --all)`.
4. In another console, monitor CPU frequencies by running `watch cat 
/sys/devices/system/cpu/cpu[0-9]*/cpufreq/scaling_cur_freq`.

Actual results:

All cores specified in "nohz_full" parameter are always at their lowest
frequency.

Expected results:

All cores must scale the frequency up with active load.

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: linux-image-6.5.0-15-lowlatency 6.5.0-15.15.1.1~22.04.1
ProcVersionSignature: Ubuntu 6.5.0-15.15.1.1~22.04.1-lowlatency 6.5.3
Uname: Linux 6.5.0-15-lowlatency x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: KDE
Date: Tue Jan 30 23:39:51 2024
InstallationDate: Installed on 2015-05-01 (3196 days ago)
InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
SourcePackage: linux-signed-lowlatency-hwe-6.5
UpgradeStatus: Upgraded to jammy on 2022-05-14 (626 days ago)

** Affects: linux-signed-lowlatency-hwe-6.5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug jammy

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

Title:
  Specifying nohz_full disables CPU frequency scaling

Status in linux-signed-lowlatency-hwe-6.5 package in Ubuntu:
  New

Bug description:
  With the lowlatency kernel, if I specify "nohz_full=1-15" boot
  parameter then CPU frequency scaling doesn't work for the logical
  cores 1-15. That is, only logical core 0 shows varying CPU frequency
  in its /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq file, all
  other cores constantly show 80 in their scaling_cur_freq files
  (which is the lowest supported frequency) regardless of the CPU load.

  Steps to reproduce:

  1. Add "nohz_full=1-15" (specify the core numbers to include all logical 
cores except 0) to kernel boot options in /etc/default/grub.
  2. Run `sudo update-grub` and reboot.
  3. Upon booting, run a multithreaded workload. For example, run `openssl 
speed -multi $(nproc --all)`.
  4. In another console, monitor CPU frequencies by running `watch cat 
/sys/devices/system/cpu/cpu[0-9]*/cpufreq/scaling_cur_freq`.

  Actual results:

  All cores specified in "nohz_full" parameter are always at their
  lowest frequency.

  Expected results:

  All cores must scale the frequency up with active load.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-6.5.0-15-lowlatency 6.5.0-15.15.1.1~22.04.1
  ProcVersionSignature: Ubuntu 6.5.0-15.15.1.1~22.04.1-lowlatency 6.5.3
  Uname: Linux 6.5.0-15-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: KDE
  Date: Tue Jan 30 23:39:51 2024
  InstallationDate: Installed on 2015-05-01 (3196 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: linux-signed-lowlatency-hwe-6.5
  UpgradeStatus: Upgraded to jammy on 2022-05-14 (626 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-lowlatency-hwe-6.5/+bug/2051733/+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 2051342] Re: Enable lowlatency settings in the generic kernel

2024-01-30 Thread Lastique
I couldn't find this in the benchmark description on Phoronix, so I'm
assuming the lowlatency kernel was booted with default parameters. Which
means CONFIG_NO_HZ_FULL basically had no effect. This is probably fair
for most users who won't specify `nohz_full` kernel parameter and will
observe the performance difference between generic and lowlatency as
shown by Phoronix tests.

But the claim in this ticket is that `nohz_full` can potentially win
back some performance losses caused by CONFIG_HZ=1000. It would be
useful if testing could confirm or disprove that. Ideally, Phoronix Test
Suite would need to be run on generic, lowlatency without any extra
kernel parameters and lowlatency with `nohz_full` parameter.

-- 
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/2051342

Title:
  Enable lowlatency settings in the generic kernel

Status in linux package in Ubuntu:
  New
Status in linux source package in Noble:
  New

Bug description:
  [Impact]

  Ubuntu provides the "lowlatency" kernel: a kernel optimized for
  applications that have special "low latency" requirements.

  Currently, this kernel does not include any specific UBUNTU SAUCE
  patches to improve the extra "low latency" requirements, but the only
  difference is a small subset of .config options.

  Almost all these options are now configurable either at boot-time or
  even at run-time, with the only exception of CONFIG_HZ (250 in the
  generic kernel vs 1000 in the lowlatency kernel).

  Maintaining a separate kernel for a single config option seems a bit
  overkill and it is a significant cost of engineering hours, build
  time, regression testing time and resources. Not to mention the risk
  of the low-latency kernel falling behind and not being perfectly in
  sync with the latest generic kernel.

  Enabling the low-latency settings in the generic kernel has been
  evaluated before, but it has been never finalized due to the potential
  risk of performance regressions in CPU-intensive applications
  (increasing HZ from 250 to 1000 may introduce more kernel jitter in
  number crunching workloads). The outcome of the original proposal
  resulted in a re-classification of the lowlatency kernel as a desktop-
  oriented kernel, enabling additional low latency features (LP:
  #2023007).

  As we are approaching the release of the new Ubuntu 24.04 we may want
  to re-consider merging the low-latency settings in the generic kernel
  again.

  Following a detailed analysis of the specific low-latency features:

  - CONFIG_NO_HZ_FULL=y: enable access to "Full tickless mode" (shutdown
  clock tick when possible across all the enabled CPUs if they are
  either idle or running 1 task - reduce kernel jitter of running tasks
  due to the periodic clock tick, must be enabled at boot time passing
  `nohz_full=`); this can actually help CPU-intensive
  workloads and it could provide much more benefits than the CONFIG_HZ
  difference (since it can potentially shutdown any kernel jitter on
  specific CPUs), this one should really be enabled anyway, considering
  that it is configurable at boot time

   - CONFIG_RCU_NOCB_CPU=y: move RCU callbacks from softirq context to
  kthread context (reduce time spent in softirqs with preemption
  disabled to improve the overall system responsiveness, at the cost of
  introducing a potential performance penalty, because RCU callbacks are
  not processed by kernel threads); this should be enabled as well,
  since it is configurable at boot time (via the rcu_nocbs=
  parameter)

   - CONFIG_RCU_LAZY=y: batch RCU callbacks and then flush them after a
  timed delay instead of executing them immediately (c'an provide 5~10%
  power-savings for idle or lightly-loaded systems, this is extremely
  useful for laptops / portable devices -
  
https://lore.kernel.org/lkml/20221016162305.2489629-3-j...@joelfernandes.org/);
  this has the potential to introduce significant performance
  regressions, but in the Noble kernel we already have a SAUCE patch
  that allows to enable/disable this option at boot time (see LP:
  #2045492), and by default it will be disabled
  (CONFIG_RCU_LAZY_DEFAULT_OFF=y)

   - CONFIG_HZ=1000 last but not least, the only option that is *only*
  tunable at compile time. As already mentioned there is a potential
  risk of regressions for CPU-intensive applications, but they can be
  mitigated (and maybe they could even outperformed) with NO_HZ_FULL. On
  the other hand, HZ=1000 can improve system responsiveness, that means
  most of the desktop and server applications will benefit from this
  (the largest part of the server workloads is I/O bound, more than CPU-
  bound, so they can benefit from having a kernel that can react faster
  at switching tasks), not to mention the benefit for the typical end
  users applications (gaming, live conferencing, multimedia, etc.).

  With all of that in place we can provide a ke

[Kernel-packages] [Bug 1924939] Re: Intel GPU lockups and graphical glitches in KDE

2021-04-19 Thread Lastique
*** This bug is a duplicate of bug 1924624 ***
https://bugs.launchpad.net/bugs/1924624

It seems, it started happening with kernel version 5.8.0-49. With
5.8.0-48 I can't reproduce this behavior, at least not as easily.

-- 
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/1924939

Title:
  Intel GPU lockups and graphical glitches in KDE

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After a recent package update (at this point, I believe it was a
  kernel package upgrade) I began experiencing Intel GPU hangs and
  graphical glitches, such as blinking or corrupt textures in the panels
  and windows. In dmesg I can see messages like these:

  [   24.825956] i915 :00:02.0: [drm] GPU HANG: ecode 7:1:86d2bff9, in 
plasmashell [1625]
  [   24.826005] i915 :00:02.0: [drm] Resetting chip for stopped heartbeat 
on rcs0
  [   24.927993] i915 :00:02.0: [drm] plasmashell[1625] context reset due 
to GPU hang

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: linux-image-5.8.0-50-lowlatency 5.8.0-50.56
  ProcVersionSignature: Ubuntu 5.8.0-50.56-lowlatency 5.8.18
  Uname: Linux 5.8.0-50-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu50.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   1319 F pulseaudio
   /dev/snd/controlC1:  lastique   1319 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  Date: Mon Apr 19 02:18:39 2021
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2013-10-11 (2746 days ago)
  InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  MachineType: ASUSTeK COMPUTER INC. N550JV
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-50-lowlatency 
root=UUID=bafa6509-dea3-48a1-a308-129b1514ab28 ro quiet splash nmi_watchdog=0
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-50-lowlatency N/A
   linux-backports-modules-5.8.0-50-lowlatency  N/A
   linux-firmware   1.190.3
  SourcePackage: linux
  UpgradeStatus: Upgraded to groovy on 2020-11-21 (148 days ago)
  WifiSyslog:
   
  dmi.bios.date: 11/19/2013
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N550JV.208
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N550JV
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN550JV.208:bd11/19/2013:br4.6:svnASUSTeKCOMPUTERINC.:pnN550JV:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN550JV:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.family: N
  dmi.product.name: N550JV
  dmi.product.sku: ASUS-NotebookSKU
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1924939/+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 1924939] [NEW] Intel GPU lockups and graphical glitches in KDE

2021-04-18 Thread Lastique
Public bug reported:

After a recent package update (at this point, I believe it was a kernel
package upgrade) I began experiencing Intel GPU hangs and graphical
glitches, such as blinking or corrupt textures in the panels and
windows. In dmesg I can see messages like these:

[   24.825956] i915 :00:02.0: [drm] GPU HANG: ecode 7:1:86d2bff9, in 
plasmashell [1625]
[   24.826005] i915 :00:02.0: [drm] Resetting chip for stopped heartbeat on 
rcs0
[   24.927993] i915 :00:02.0: [drm] plasmashell[1625] context reset due to 
GPU hang

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: linux-image-5.8.0-50-lowlatency 5.8.0-50.56
ProcVersionSignature: Ubuntu 5.8.0-50.56-lowlatency 5.8.18
Uname: Linux 5.8.0-50-lowlatency x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu50.5
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  lastique   1319 F pulseaudio
 /dev/snd/controlC1:  lastique   1319 F pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: KDE
Date: Mon Apr 19 02:18:39 2021
HibernationDevice:
 # Prevents "gave up waiting for suspend/resume device" timeout on boot
 RESUME=none
InstallationDate: Installed on 2013-10-11 (2746 days ago)
InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
MachineType: ASUSTeK COMPUTER INC. N550JV
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-50-lowlatency 
root=UUID=bafa6509-dea3-48a1-a308-129b1514ab28 ro quiet splash nmi_watchdog=0
RelatedPackageVersions:
 linux-restricted-modules-5.8.0-50-lowlatency N/A
 linux-backports-modules-5.8.0-50-lowlatency  N/A
 linux-firmware   1.190.3
SourcePackage: linux
UpgradeStatus: Upgraded to groovy on 2020-11-21 (148 days ago)
WifiSyslog:
 
dmi.bios.date: 11/19/2013
dmi.bios.release: 4.6
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N550JV.208
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N550JV
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN550JV.208:bd11/19/2013:br4.6:svnASUSTeKCOMPUTERINC.:pnN550JV:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN550JV:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.family: N
dmi.product.name: N550JV
dmi.product.sku: ASUS-NotebookSKU
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.

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


** Tags: amd64 apport-bug groovy

-- 
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/1924939

Title:
  Intel GPU lockups and graphical glitches in KDE

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After a recent package update (at this point, I believe it was a
  kernel package upgrade) I began experiencing Intel GPU hangs and
  graphical glitches, such as blinking or corrupt textures in the panels
  and windows. In dmesg I can see messages like these:

  [   24.825956] i915 :00:02.0: [drm] GPU HANG: ecode 7:1:86d2bff9, in 
plasmashell [1625]
  [   24.826005] i915 :00:02.0: [drm] Resetting chip for stopped heartbeat 
on rcs0
  [   24.927993] i915 :00:02.0: [drm] plasmashell[1625] context reset due 
to GPU hang

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: linux-image-5.8.0-50-lowlatency 5.8.0-50.56
  ProcVersionSignature: Ubuntu 5.8.0-50.56-lowlatency 5.8.18
  Uname: Linux 5.8.0-50-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu50.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   1319 F pulseaudio
   /dev/snd/controlC1:  lastique   1319 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  Date: Mon Apr 19 02:18:39 2021
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2013-10-11 (2746 days ago)
  InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  MachineType: ASUSTeK COMPUTER INC. N550JV
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-50-lowlatency 
root=UUID=bafa6509-dea3-48a1-a308-129b1514ab28 ro quiet splash nmi_watchdog=0
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-50-lowlatency N/A
   linux-backports-modules-5.8.0-50-lowlatency  N/A
   linux-firmware   1.190.3
  SourcePackage: linux
  UpgradeStatus: Upgraded to groovy on 2020-11-21 (148 days ago)
  WifiSyslog:
   
  dmi.bios.date: 11/19/2013
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N550JV.208
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.

[Kernel-packages] [Bug 1875408] Re: Logitech G700s extra G buttons don't work in wireless mode

2020-04-27 Thread Lastique
The workaround is to blacklist hid_logitech_hidpp and hid_logitech_dj
modules by adding /etc/modprobe.d/blacklist-hid_logitech.conf with this
content:

```
blacklist hid_logitech_hidpp
blacklist hid_logitech_dj
```

and running `update-initramfs -u -k all`. After reboot, the buttons
start working as expected.

-- 
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/1875408

Title:
  Logitech G700s extra G buttons don't work in wireless mode

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Starting with Linux kernel 5.4.0, extra buttons G4-G10 on the side and
  top of the Logitech G700s mouse don't work when the mouse is connected
  over the wireless dongle. The buttons do work in wired connection.

  The problem is not present with kernel 5.3.18. It is present with
  5.4.28, 5.5.19, 5.6.7.

  In wireless mode, the `libinput list-devices` command does not show
  additional input devices, including the keyboard device, associated
  with the mouse. Only the "Logitech G700s" pointer device is shown.

  This problem appeared after upgrading Kubuntu 19.10 to 20.04. It was
  not present on 19.10.

  Upstream bug: https://bugzilla.kernel.org/show_bug.cgi?id=207465

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-lowlatency 5.4.0.26.32
  ProcVersionSignature: Ubuntu 5.4.0-26.30-lowlatency 5.4.30
  Uname: Linux 5.4.0-26-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2015 F pulseaudio
   /dev/snd/controlC0:  lastique   2015 F pulseaudio
   /dev/snd/controlC2:  lastique   2015 F pulseaudio
   /dev/snd/controlC1:  lastique   2015 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  Date: Mon Apr 27 17:09:22 2020
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2015-05-01 (1822 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-26-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-26-lowlatency N/A
   linux-backports-modules-5.4.0-26-lowlatency  N/A
   linux-firmware   1.187
  RfKill:
   0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-04-25 (1 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1875408/+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 1875408] [NEW] Logitech G700s extra G buttons don't work in wireless mode

2020-04-27 Thread Lastique
Public bug reported:

Starting with Linux kernel 5.4.0, extra buttons G4-G10 on the side and
top of the Logitech G700s mouse don't work when the mouse is connected
over the wireless dongle. The buttons do work in wired connection.

The problem is not present with kernel 5.3.18. It is present with
5.4.28, 5.5.19, 5.6.7.

In wireless mode, the `libinput list-devices` command does not show
additional input devices, including the keyboard device, associated with
the mouse. Only the "Logitech G700s" pointer device is shown.

This problem appeared after upgrading Kubuntu 19.10 to 20.04. It was not
present on 19.10.

Upstream bug: https://bugzilla.kernel.org/show_bug.cgi?id=207465

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: linux-image-lowlatency 5.4.0.26.32
ProcVersionSignature: Ubuntu 5.4.0-26.30-lowlatency 5.4.30
Uname: Linux 5.4.0-26-lowlatency x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC3:  lastique   2015 F pulseaudio
 /dev/snd/controlC0:  lastique   2015 F pulseaudio
 /dev/snd/controlC2:  lastique   2015 F pulseaudio
 /dev/snd/controlC1:  lastique   2015 F pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: KDE
Date: Mon Apr 27 17:09:22 2020
HibernationDevice:
 # Prevents "gave up waiting for suspend/resume device" timeout on boot
 RESUME=none
InstallationDate: Installed on 2015-05-01 (1822 days ago)
InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: System manufacturer System Product Name
ProcFB: 0 EFI VGA
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-26-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.4.0-26-lowlatency N/A
 linux-backports-modules-5.4.0-26-lowlatency  N/A
 linux-firmware   1.187
RfKill:
 0: hci0: Bluetooth
  Soft blocked: no
  Hard blocked: no
SourcePackage: linux
UpgradeStatus: Upgraded to focal on 2020-04-25 (1 days ago)
dmi.bios.date: 11/09/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 3603
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: P8Z68-V PRO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.family: To be filled by O.E.M.
dmi.product.name: System Product Name
dmi.product.sku: SKU
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: amd64 apport-bug focal

-- 
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/1875408

Title:
  Logitech G700s extra G buttons don't work in wireless mode

Status in linux package in Ubuntu:
  New

Bug description:
  Starting with Linux kernel 5.4.0, extra buttons G4-G10 on the side and
  top of the Logitech G700s mouse don't work when the mouse is connected
  over the wireless dongle. The buttons do work in wired connection.

  The problem is not present with kernel 5.3.18. It is present with
  5.4.28, 5.5.19, 5.6.7.

  In wireless mode, the `libinput list-devices` command does not show
  additional input devices, including the keyboard device, associated
  with the mouse. Only the "Logitech G700s" pointer device is shown.

  This problem appeared after upgrading Kubuntu 19.10 to 20.04. It was
  not present on 19.10.

  Upstream bug: https://bugzilla.kernel.org/show_bug.cgi?id=207465

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-lowlatency 5.4.0.26.32
  ProcVersionSignature: Ubuntu 5.4.0-26.30-lowlatency 5.4.30
  Uname: Linux 5.4.0-26-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2015 F pulseaudio
   /dev/snd/controlC0:  lastique   2015 F pulseaudio
   /dev/snd/controlC2:  lastique   2015 F pulseaudio
   /dev/snd/controlC1:  lastique   2015 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  Date: Mon Apr 27 17:09:22 2020
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2015-05-01 (1822 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Pro

[Kernel-packages] [Bug 1875408] Re: Logitech G700s extra G buttons don't work in wireless mode

2020-04-27 Thread Lastique
** Attachment added: "Output of `libinput list-devices` when the mouse is wired"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1875408/+attachment/5361704/+files/libinput_wired.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/1875408

Title:
  Logitech G700s extra G buttons don't work in wireless mode

Status in linux package in Ubuntu:
  New

Bug description:
  Starting with Linux kernel 5.4.0, extra buttons G4-G10 on the side and
  top of the Logitech G700s mouse don't work when the mouse is connected
  over the wireless dongle. The buttons do work in wired connection.

  The problem is not present with kernel 5.3.18. It is present with
  5.4.28, 5.5.19, 5.6.7.

  In wireless mode, the `libinput list-devices` command does not show
  additional input devices, including the keyboard device, associated
  with the mouse. Only the "Logitech G700s" pointer device is shown.

  This problem appeared after upgrading Kubuntu 19.10 to 20.04. It was
  not present on 19.10.

  Upstream bug: https://bugzilla.kernel.org/show_bug.cgi?id=207465

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-lowlatency 5.4.0.26.32
  ProcVersionSignature: Ubuntu 5.4.0-26.30-lowlatency 5.4.30
  Uname: Linux 5.4.0-26-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2015 F pulseaudio
   /dev/snd/controlC0:  lastique   2015 F pulseaudio
   /dev/snd/controlC2:  lastique   2015 F pulseaudio
   /dev/snd/controlC1:  lastique   2015 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  Date: Mon Apr 27 17:09:22 2020
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2015-05-01 (1822 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-26-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-26-lowlatency N/A
   linux-backports-modules-5.4.0-26-lowlatency  N/A
   linux-firmware   1.187
  RfKill:
   0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-04-25 (1 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1875408/+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 1875408] Re: Logitech G700s extra G buttons don't work in wireless mode

2020-04-27 Thread Lastique
** Attachment added: "Output of `libinput list-devices` when the mouse is 
wireless"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1875408/+attachment/5361705/+files/libinput_wireless.txt

** Description changed:

  Starting with Linux kernel 5.4.0, extra buttons G4-G10 on the side and
  top of the Logitech G700s mouse don't work when the mouse is connected
  over the wireless dongle. The buttons do work in wired connection.
  
  The problem is not present with kernel 5.3.18. It is present with
  5.4.28, 5.5.19, 5.6.7.
  
  In wireless mode, the `libinput list-devices` command does not show
  additional input devices, including the keyboard device, associated with
  the mouse. Only the "Logitech G700s" pointer device is shown.
+ 
+ This problem appeared after upgrading Kubuntu 19.10 to 20.04. It was not
+ present on 19.10.
  
  Upstream bug: https://bugzilla.kernel.org/show_bug.cgi?id=207465
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-lowlatency 5.4.0.26.32
  ProcVersionSignature: Ubuntu 5.4.0-26.30-lowlatency 5.4.30
  Uname: Linux 5.4.0-26-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC3:  lastique   2015 F pulseaudio
-  /dev/snd/controlC0:  lastique   2015 F pulseaudio
-  /dev/snd/controlC2:  lastique   2015 F pulseaudio
-  /dev/snd/controlC1:  lastique   2015 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC3:  lastique   2015 F pulseaudio
+  /dev/snd/controlC0:  lastique   2015 F pulseaudio
+  /dev/snd/controlC2:  lastique   2015 F pulseaudio
+  /dev/snd/controlC1:  lastique   2015 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  Date: Mon Apr 27 17:09:22 2020
  HibernationDevice:
-  # Prevents "gave up waiting for suspend/resume device" timeout on boot
-  RESUME=none
+  # Prevents "gave up waiting for suspend/resume device" timeout on boot
+  RESUME=none
  InstallationDate: Installed on 2015-05-01 (1822 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-26-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
  RelatedPackageVersions:
-  linux-restricted-modules-5.4.0-26-lowlatency N/A
-  linux-backports-modules-5.4.0-26-lowlatency  N/A
-  linux-firmware   1.187
+  linux-restricted-modules-5.4.0-26-lowlatency N/A
+  linux-backports-modules-5.4.0-26-lowlatency  N/A
+  linux-firmware   1.187
  RfKill:
-  0: hci0: Bluetooth
-   Soft blocked: no
-   Hard blocked: no
+  0: hci0: Bluetooth
+   Soft blocked: no
+   Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-04-25 (1 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

-- 
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/1875408

Title:
  Logitech G700s extra G buttons don't work in wireless mode

Status in linux package in Ubuntu:
  New

Bug description:
  Starting with Linux kernel 5.4.0, extra buttons G4-G10 on the side and
  top of the Logitech G700s mouse don't work when the mouse is connected
  over the wireless dongle. The buttons do work in wired connection.

  The problem is not present with kernel 5.3.18. It is present with
  5.4.28, 5.5.19, 5.6.7.

  In wireless mode, the `libinput list-devices` command does not show
  additional input devices, including the keyboard device, associated
  with the mouse. Only the "Logitech G700s" pointer device is shown.

  This problem appeared after upgrading Kubuntu 19.10 to 20.04. It was
  not present on 19.10.

  Upstream bug: https://bugzilla.kernel.org/show_bug.cgi?id=207465

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-lowlatency 5.4.0.26.32
  ProcVersionSignature: Ubuntu 5.4.0-26.30-lowlate

[Kernel-packages] [Bug 1849993] Re: DualShock 4 over Bluetooth does not work

2019-12-03 Thread Lastique
Fixed in 5.3.0-24.

-- 
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/1849993

Title:
  DualShock 4 over Bluetooth does not work

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Connecting Sony DualShock 4 over Bluetooth does not work on kernel
  5.3. After pressing the PS button on the gamepad, the LED blinks for a
  few seconds while connecting and then stays constantly lit when
  Bluetooth connection is established. However, while "connected", lsusb
  doesn't show the gamepad and it doesn't work in games.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-lowlatency 5.3.0.19.22
  ProcVersionSignature: Ubuntu 5.3.0-19.20-lowlatency 5.3.1
  Uname: Linux 5.3.0-19-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2092 F pulseaudio
   /dev/snd/controlC0:  lastique   2092 F pulseaudio
   /dev/snd/controlC2:  lastique   2092 F pulseaudio
   /dev/snd/controlC1:  lastique   2092 F pulseaudio
  CurrentDesktop: KDE
  Date: Sat Oct 26 23:55:45 2019
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2015-05-01 (1639 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-19-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-19-lowlatency N/A
   linux-backports-modules-5.3.0-19-lowlatency  N/A
   linux-firmware   1.183.1
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to eoan on 2019-10-26 (0 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1849993/+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 1850443] Re: Bluetooth: hidp: Fix assumptions on the return value of hidp_send_message

2019-12-03 Thread Lastique
This bug duplicates
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1849993.

-- 
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/1850443

Title:
  Bluetooth: hidp: Fix assumptions on the return value of
  hidp_send_message

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Disco:
  Fix Released
Status in linux source package in Eoan:
  Fix Released

Bug description:
  Please apply this mainline commit to affected Ubuntu kernels:

  8bb3537095f1 Bluetooth: hidp: Fix assumptions on the return value of 
hidp_send_message
  ...
  Fixes: 48d9cc9d85dd ("Bluetooth: hidp: Let hidp_send_message return number of 
queued bytes")

  Specifically:
Eoan requires 8bb3537095f1.
Disco does not actually require 8bb3537095f1 (since it doesn't carry 48d9) 
but its a good safety measure anyway.
kernels < Disco don't need 8bb3537095f1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1850443/+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 1849993] Re: DualShock 4 over Bluetooth does not work

2019-11-13 Thread Lastique
The bug is still present in 5.3.0-22.

-- 
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/1849993

Title:
  DualShock 4 over Bluetooth does not work

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Connecting Sony DualShock 4 over Bluetooth does not work on kernel
  5.3. After pressing the PS button on the gamepad, the LED blinks for a
  few seconds while connecting and then stays constantly lit when
  Bluetooth connection is established. However, while "connected", lsusb
  doesn't show the gamepad and it doesn't work in games.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-lowlatency 5.3.0.19.22
  ProcVersionSignature: Ubuntu 5.3.0-19.20-lowlatency 5.3.1
  Uname: Linux 5.3.0-19-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2092 F pulseaudio
   /dev/snd/controlC0:  lastique   2092 F pulseaudio
   /dev/snd/controlC2:  lastique   2092 F pulseaudio
   /dev/snd/controlC1:  lastique   2092 F pulseaudio
  CurrentDesktop: KDE
  Date: Sat Oct 26 23:55:45 2019
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2015-05-01 (1639 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-19-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-19-lowlatency N/A
   linux-backports-modules-5.3.0-19-lowlatency  N/A
   linux-firmware   1.183.1
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to eoan on 2019-10-26 (0 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1849993/+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 1849993] Re: DualShock 4 over Bluetooth does not work

2019-11-03 Thread Lastique
I can confirm that the patch[1] in the upstream bug indeed fixes the
problem for me.

[1]: https://git.kernel.org/pub/scm/linux/kernel/git/bluetooth
/bluetooth-next.git/commit/?id=8bb3537095f107ed55ad51f6241165b397aaafac

-- 
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/1849993

Title:
  DualShock 4 over Bluetooth does not work

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Connecting Sony DualShock 4 over Bluetooth does not work on kernel
  5.3. After pressing the PS button on the gamepad, the LED blinks for a
  few seconds while connecting and then stays constantly lit when
  Bluetooth connection is established. However, while "connected", lsusb
  doesn't show the gamepad and it doesn't work in games.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-lowlatency 5.3.0.19.22
  ProcVersionSignature: Ubuntu 5.3.0-19.20-lowlatency 5.3.1
  Uname: Linux 5.3.0-19-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2092 F pulseaudio
   /dev/snd/controlC0:  lastique   2092 F pulseaudio
   /dev/snd/controlC2:  lastique   2092 F pulseaudio
   /dev/snd/controlC1:  lastique   2092 F pulseaudio
  CurrentDesktop: KDE
  Date: Sat Oct 26 23:55:45 2019
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2015-05-01 (1639 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-19-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-19-lowlatency N/A
   linux-backports-modules-5.3.0-19-lowlatency  N/A
   linux-firmware   1.183.1
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to eoan on 2019-10-26 (0 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1849993/+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 1849993] Re: DualShock 4 over Bluetooth does not work

2019-11-03 Thread Lastique
Possible upstream bug:
https://bugzilla.kernel.org/show_bug.cgi?id=204877

The bug contains a link with a fix. Please, backport.

-- 
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/1849993

Title:
  DualShock 4 over Bluetooth does not work

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Connecting Sony DualShock 4 over Bluetooth does not work on kernel
  5.3. After pressing the PS button on the gamepad, the LED blinks for a
  few seconds while connecting and then stays constantly lit when
  Bluetooth connection is established. However, while "connected", lsusb
  doesn't show the gamepad and it doesn't work in games.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-lowlatency 5.3.0.19.22
  ProcVersionSignature: Ubuntu 5.3.0-19.20-lowlatency 5.3.1
  Uname: Linux 5.3.0-19-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2092 F pulseaudio
   /dev/snd/controlC0:  lastique   2092 F pulseaudio
   /dev/snd/controlC2:  lastique   2092 F pulseaudio
   /dev/snd/controlC1:  lastique   2092 F pulseaudio
  CurrentDesktop: KDE
  Date: Sat Oct 26 23:55:45 2019
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2015-05-01 (1639 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-19-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-19-lowlatency N/A
   linux-backports-modules-5.3.0-19-lowlatency  N/A
   linux-firmware   1.183.1
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to eoan on 2019-10-26 (0 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1849993/+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 1849993] Re: DualShock 4 over Bluetooth does not work

2019-11-03 Thread Lastique
Upon connecting the gamepad, kern.log contains the following lines:

Nov  3 12:03:00 lastique-pc kernel: [  189.682027] sony 0005:054C:05C4.0009: 
unknown main item tag 0x0
Nov  3 12:03:00 lastique-pc kernel: [  189.682133] sony 0005:054C:05C4.0009: 
DualShock 4 calibration report's CRC check failed, received crc 0x0 != 
0x2666b240
Nov  3 12:03:00 lastique-pc kernel: [  189.682135] sony 0005:054C:05C4.0009: 
Retrying DualShock 4 get calibration report request
Nov  3 12:03:00 lastique-pc kernel: [  189.682137] sony 0005:054C:05C4.0009: 
DualShock 4 calibration report's CRC check failed, received crc 0x0 != 
0x2666b240
Nov  3 12:03:00 lastique-pc kernel: [  189.682138] sony 0005:054C:05C4.0009: 
Retrying DualShock 4 get calibration report request
Nov  3 12:03:00 lastique-pc kernel: [  189.682142] sony 0005:054C:05C4.0009: 
DualShock 4 calibration report's CRC check failed, received crc 0x0 != 
0x2666b240
Nov  3 12:03:00 lastique-pc kernel: [  189.682144] sony 0005:054C:05C4.0009: 
Failed to get calibration data from Dualshock 4
Nov  3 12:03:00 lastique-pc kernel: [  189.682212] sony 0005:054C:05C4.0009: 
hidraw8: BLUETOOTH HID v81.00 Gamepad [Wireless Controller] on 5c:f3:70:69:51:4e
Nov  3 12:03:00 lastique-pc kernel: [  189.682214] sony 0005:054C:05C4.0009: 
failed to claim input


** Bug watch added: Linux Kernel Bug Tracker #204877
   https://bugzilla.kernel.org/show_bug.cgi?id=204877

-- 
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/1849993

Title:
  DualShock 4 over Bluetooth does not work

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Connecting Sony DualShock 4 over Bluetooth does not work on kernel
  5.3. After pressing the PS button on the gamepad, the LED blinks for a
  few seconds while connecting and then stays constantly lit when
  Bluetooth connection is established. However, while "connected", lsusb
  doesn't show the gamepad and it doesn't work in games.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-lowlatency 5.3.0.19.22
  ProcVersionSignature: Ubuntu 5.3.0-19.20-lowlatency 5.3.1
  Uname: Linux 5.3.0-19-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2092 F pulseaudio
   /dev/snd/controlC0:  lastique   2092 F pulseaudio
   /dev/snd/controlC2:  lastique   2092 F pulseaudio
   /dev/snd/controlC1:  lastique   2092 F pulseaudio
  CurrentDesktop: KDE
  Date: Sat Oct 26 23:55:45 2019
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2015-05-01 (1639 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-19-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-19-lowlatency N/A
   linux-backports-modules-5.3.0-19-lowlatency  N/A
   linux-firmware   1.183.1
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to eoan on 2019-10-26 (0 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1849993/+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 1849993] [NEW] DualShock 4 over Bluetooth does not work

2019-10-26 Thread Lastique
Public bug reported:

Connecting Sony DualShock 4 over Bluetooth does not work on kernel 5.3.
After pressing the PS button on the gamepad, the LED blinks for a few
seconds while connecting and then stays constantly lit when Bluetooth
connection is established. However, while "connected", lsusb doesn't
show the gamepad and it doesn't work in games.

ProblemType: Bug
DistroRelease: Ubuntu 19.10
Package: linux-image-lowlatency 5.3.0.19.22
ProcVersionSignature: Ubuntu 5.3.0-19.20-lowlatency 5.3.1
Uname: Linux 5.3.0-19-lowlatency x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu8
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC3:  lastique   2092 F pulseaudio
 /dev/snd/controlC0:  lastique   2092 F pulseaudio
 /dev/snd/controlC2:  lastique   2092 F pulseaudio
 /dev/snd/controlC1:  lastique   2092 F pulseaudio
CurrentDesktop: KDE
Date: Sat Oct 26 23:55:45 2019
HibernationDevice:
 # Prevents "gave up waiting for suspend/resume device" timeout on boot
 RESUME=none
InstallationDate: Installed on 2015-05-01 (1639 days ago)
InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: System manufacturer System Product Name
ProcFB: 0 EFI VGA
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-19-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.3.0-19-lowlatency N/A
 linux-backports-modules-5.3.0-19-lowlatency  N/A
 linux-firmware   1.183.1
RfKill:
 0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
SourcePackage: linux
UpgradeStatus: Upgraded to eoan on 2019-10-26 (0 days ago)
dmi.bios.date: 11/09/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 3603
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: P8Z68-V PRO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.family: To be filled by O.E.M.
dmi.product.name: System Product Name
dmi.product.sku: SKU
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: amd64 apport-bug eoan

-- 
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/1849993

Title:
  DualShock 4 over Bluetooth does not work

Status in linux package in Ubuntu:
  New

Bug description:
  Connecting Sony DualShock 4 over Bluetooth does not work on kernel
  5.3. After pressing the PS button on the gamepad, the LED blinks for a
  few seconds while connecting and then stays constantly lit when
  Bluetooth connection is established. However, while "connected", lsusb
  doesn't show the gamepad and it doesn't work in games.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-lowlatency 5.3.0.19.22
  ProcVersionSignature: Ubuntu 5.3.0-19.20-lowlatency 5.3.1
  Uname: Linux 5.3.0-19-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2092 F pulseaudio
   /dev/snd/controlC0:  lastique   2092 F pulseaudio
   /dev/snd/controlC2:  lastique   2092 F pulseaudio
   /dev/snd/controlC1:  lastique   2092 F pulseaudio
  CurrentDesktop: KDE
  Date: Sat Oct 26 23:55:45 2019
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2015-05-01 (1639 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-19-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-19-lowlatency N/A
   linux-backports-modules-5.3.0-19-lowlatency  N/A
   linux-firmware   1.183.1
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to eoan on 2019-10-26 (0 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.ven

[Kernel-packages] [Bug 1849993] Re: DualShock 4 over Bluetooth does not work

2019-10-26 Thread Lastique
The problem exists in the mainline kernel 5.3.7 and does NOT exist with
5.2.21. I cannot test 5.4-rc4 because Nvidia driver doesn't compile for
this 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/1849993

Title:
  DualShock 4 over Bluetooth does not work

Status in linux package in Ubuntu:
  New

Bug description:
  Connecting Sony DualShock 4 over Bluetooth does not work on kernel
  5.3. After pressing the PS button on the gamepad, the LED blinks for a
  few seconds while connecting and then stays constantly lit when
  Bluetooth connection is established. However, while "connected", lsusb
  doesn't show the gamepad and it doesn't work in games.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-lowlatency 5.3.0.19.22
  ProcVersionSignature: Ubuntu 5.3.0-19.20-lowlatency 5.3.1
  Uname: Linux 5.3.0-19-lowlatency x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2092 F pulseaudio
   /dev/snd/controlC0:  lastique   2092 F pulseaudio
   /dev/snd/controlC2:  lastique   2092 F pulseaudio
   /dev/snd/controlC1:  lastique   2092 F pulseaudio
  CurrentDesktop: KDE
  Date: Sat Oct 26 23:55:45 2019
  HibernationDevice:
   # Prevents "gave up waiting for suspend/resume device" timeout on boot
   RESUME=none
  InstallationDate: Installed on 2015-05-01 (1639 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-19-lowlatency 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-19-lowlatency N/A
   linux-backports-modules-5.3.0-19-lowlatency  N/A
   linux-firmware   1.183.1
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to eoan on 2019-10-26 (0 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1849993/+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 1800164] Re: Keyboard backlight control doesn't work on Asus N550JV

2018-11-06 Thread Lastique
I've upgraded to upower 0.99.8-2ubuntu0.1 and it seems to have fixed the
problem. Keyboard backlight is working now. Thanks!

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

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

Title:
  Keyboard backlight control doesn't work on Asus N550JV

Status in linux package in Ubuntu:
  Fix Released

Bug description:
  Pressing Fn+F3 or Fn+F4 keys (which are the combinations to increase
  or decrease keyboard backlight brightness, respectively) doesn't do
  anything, the keyboard backlight stays off. Other key combinations,
  like adjusting display brightness or audio volume, do work.

  Keyboard backlight control worked in Kubuntu 18.04 on the same
  machine.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: linux-image-4.18.0-10-generic 4.18.0-10.11
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2820 F pulseaudio
   /dev/snd/controlC1:  lastique   2820 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Oct 26 17:40:24 2018
  InstallationDate: Installed on 2013-10-11 (1840 days ago)
  InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  MachineType: ASUSTeK COMPUTER INC. N550JV
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=bafa6509-dea3-48a1-a308-129b1514ab28 ro quiet splash nmi_watchdog=0
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  SourcePackage: linux
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (6 days ago)
  WifiSyslog:
   
  dmi.bios.date: 11/19/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N550JV.208
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N550JV
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN550JV.208:bd11/19/2013:svnASUSTeKCOMPUTERINC.:pnN550JV:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN550JV:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.family: N
  dmi.product.name: N550JV
  dmi.product.sku: ASUS-NotebookSKU
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1800164/+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 1800164] Re: Keyboard backlight control doesn't work on Asus N550JV

2018-10-31 Thread Lastique
The keyboard backlight control doesn't work in 4.18.16.

** Tags added: kernel-bug-exists-upstream

-- 
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/1800164

Title:
  Keyboard backlight control doesn't work on Asus N550JV

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Pressing Fn+F3 or Fn+F4 keys (which are the combinations to increase
  or decrease keyboard backlight brightness, respectively) doesn't do
  anything, the keyboard backlight stays off. Other key combinations,
  like adjusting display brightness or audio volume, do work.

  Keyboard backlight control worked in Kubuntu 18.04 on the same
  machine.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: linux-image-4.18.0-10-generic 4.18.0-10.11
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2820 F pulseaudio
   /dev/snd/controlC1:  lastique   2820 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Oct 26 17:40:24 2018
  InstallationDate: Installed on 2013-10-11 (1840 days ago)
  InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  MachineType: ASUSTeK COMPUTER INC. N550JV
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=bafa6509-dea3-48a1-a308-129b1514ab28 ro quiet splash nmi_watchdog=0
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  SourcePackage: linux
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (6 days ago)
  WifiSyslog:
   
  dmi.bios.date: 11/19/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N550JV.208
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N550JV
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN550JV.208:bd11/19/2013:svnASUSTeKCOMPUTERINC.:pnN550JV:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN550JV:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.family: N
  dmi.product.name: N550JV
  dmi.product.sku: ASUS-NotebookSKU
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1800164/+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 1800164] Re: Keyboard backlight control doesn't work on Asus N550JV

2018-10-26 Thread Lastique
I tested with the mainline Linux kernel 4.19 and the key combinations
work.

http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19


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

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

Title:
  Keyboard backlight control doesn't work on Asus N550JV

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Pressing Fn+F3 or Fn+F4 keys (which are the combinations to increase
  or decrease keyboard backlight brightness, respectively) doesn't do
  anything, the keyboard backlight stays off. Other key combinations,
  like adjusting display brightness or audio volume, do work.

  Keyboard backlight control worked in Kubuntu 18.04 on the same
  machine.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: linux-image-4.18.0-10-generic 4.18.0-10.11
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2820 F pulseaudio
   /dev/snd/controlC1:  lastique   2820 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Oct 26 17:40:24 2018
  InstallationDate: Installed on 2013-10-11 (1840 days ago)
  InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  MachineType: ASUSTeK COMPUTER INC. N550JV
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=bafa6509-dea3-48a1-a308-129b1514ab28 ro quiet splash nmi_watchdog=0
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  SourcePackage: linux
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (6 days ago)
  WifiSyslog:
   
  dmi.bios.date: 11/19/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N550JV.208
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N550JV
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN550JV.208:bd11/19/2013:svnASUSTeKCOMPUTERINC.:pnN550JV:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN550JV:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.family: N
  dmi.product.name: N550JV
  dmi.product.sku: ASUS-NotebookSKU
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1800164/+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 1800164] [NEW] Keyboard backlight control doesn't work on Asus N550JV

2018-10-26 Thread Lastique
Public bug reported:

Pressing Fn+F3 or Fn+F4 keys (which are the combinations to increase or
decrease keyboard backlight brightness, respectively) doesn't do
anything, the keyboard backlight stays off. Other key combinations, like
adjusting display brightness or audio volume, do work.

Keyboard backlight control worked in Kubuntu 18.04 on the same machine.

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: linux-image-4.18.0-10-generic 4.18.0-10.11
ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
Uname: Linux 4.18.0-10-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.10-0ubuntu13
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  lastique   2820 F pulseaudio
 /dev/snd/controlC1:  lastique   2820 F pulseaudio
CurrentDesktop: KDE
Date: Fri Oct 26 17:40:24 2018
InstallationDate: Installed on 2013-10-11 (1840 days ago)
InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
MachineType: ASUSTeK COMPUTER INC. N550JV
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=bafa6509-dea3-48a1-a308-129b1514ab28 ro quiet splash nmi_watchdog=0
RelatedPackageVersions:
 linux-restricted-modules-4.18.0-10-generic N/A
 linux-backports-modules-4.18.0-10-generic  N/A
 linux-firmware 1.175
SourcePackage: linux
UpgradeStatus: Upgraded to cosmic on 2018-10-20 (6 days ago)
WifiSyslog:
 
dmi.bios.date: 11/19/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N550JV.208
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N550JV
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN550JV.208:bd11/19/2013:svnASUSTeKCOMPUTERINC.:pnN550JV:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN550JV:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.family: N
dmi.product.name: N550JV
dmi.product.sku: ASUS-NotebookSKU
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.

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


** Tags: amd64 apport-bug cosmic kernel-fixed-upstream

** Tags added: kernel-fixed-upstream

-- 
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/1800164

Title:
  Keyboard backlight control doesn't work on Asus N550JV

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Pressing Fn+F3 or Fn+F4 keys (which are the combinations to increase
  or decrease keyboard backlight brightness, respectively) doesn't do
  anything, the keyboard backlight stays off. Other key combinations,
  like adjusting display brightness or audio volume, do work.

  Keyboard backlight control worked in Kubuntu 18.04 on the same
  machine.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: linux-image-4.18.0-10-generic 4.18.0-10.11
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2820 F pulseaudio
   /dev/snd/controlC1:  lastique   2820 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Oct 26 17:40:24 2018
  InstallationDate: Installed on 2013-10-11 (1840 days ago)
  InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  MachineType: ASUSTeK COMPUTER INC. N550JV
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=bafa6509-dea3-48a1-a308-129b1514ab28 ro quiet splash nmi_watchdog=0
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  SourcePackage: linux
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (6 days ago)
  WifiSyslog:
   
  dmi.bios.date: 11/19/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N550JV.208
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N550JV
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN550JV.208:bd11/19/2013:svnASUSTeKCOMPUTERINC.:pnN550JV:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN550JV:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.family: N
  dmi.product.name: N550JV
  dmi.product.sku: ASUS-NotebookSKU
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

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

-- 
Mailing list: https://lau

[Kernel-packages] [Bug 1799541] Re: ASUS Xonar D2X not detected in PulseAudio

2018-10-23 Thread Lastique
ions
  plughw:CARD=D2X,DEV=0
  Xonar D2X, Multichannel
  Hardware device with all software conversions
  plughw:CARD=D2X,DEV=1
  Xonar D2X, Digital
  Hardware device with all software conversions
  sysdefault:CARD=PCH
  HDA Intel PCH, ALC892 Analog
  Default Audio Device
  front:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Front speakers
  surround21:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  2.1 Surround output to Front and Subwoofer speakers
  surround40:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.0 Surround output to Front and Rear speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-back

[Kernel-packages] [Bug 1799541] Re: ASUS Xonar D2X not detected in PulseAudio

2018-10-23 Thread Lastique
e with all software conversions
  sysdefault:CARD=PCH
  HDA Intel PCH, ALC892 Analog
  Default Audio Device
  front:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Front speakers
  surround21:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  2.1 Surround output to Front and Subwoofer speakers
  surround40:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.0 Surround output to Front and Rear speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  

[Kernel-packages] [Bug 1799541] Re: ASUS Xonar D2X not detected in PulseAudio

2018-10-23 Thread Lastique
put to Front and Rear speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] PulseList.txt

2018-10-23 Thread Lastique
ar speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] WifiSyslog.txt

2018-10-23 Thread Lastique
and Rear speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] UdevDb.txt

2018-10-23 Thread Lastique
 speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] ProcModules.txt

2018-10-23 Thread Lastique
and Rear speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] ProcCpuinfoMinimal.txt

2018-10-23 Thread Lastique
und output to Front and Rear speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] ProcInterrupts.txt

2018-10-23 Thread Lastique
ont and Rear speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] ProcCpuinfo.txt

2018-10-23 Thread Lastique
and Rear speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] ProcEnviron.txt

2018-10-23 Thread Lastique
and Rear speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] Lsusb.txt

2018-10-23 Thread Lastique
 speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] Lspci.txt

2018-10-23 Thread Lastique
 speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] CRDA.txt

2018-10-23 Thread Lastique
 speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] IwConfig.txt

2018-10-23 Thread Lastique
 speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] CurrentDmesg.txt

2018-10-23 Thread Lastique
and Rear speakers
  surround41:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  4.1 Surround output to Front, Rear and Subwoofer speakers
  surround50:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.0 Surround output to Front, Center and Rear speakers
  surround51:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  5.1 Surround output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique   6439 F pulseaudio
   /dev/snd/controlC2:  lastique   6439 F pulseaudio
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2015-05-01 (1271 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1799541/+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 1799541] Re: ASUS Xonar D2X not detected in PulseAudio

2018-10-23 Thread Lastique
nd output to Front, Center, Rear and Subwoofer speakers
  surround71:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
  iec958:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Digital
  IEC958 (S/PDIF) Digital Audio Output
  hdmi:CARD=PCH,DEV=0
  HDA Intel PCH, HDMI 0
  HDMI Audio Output
  dmix:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample mixing device
  dmix:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample mixing device
  dmix:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample mixing device
  dsnoop:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct sample snooping device
  dsnoop:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct sample snooping device
  hw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Direct hardware device without any conversions
  hw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Direct hardware device without any conversions
  plughw:CARD=PCH,DEV=0
  HDA Intel PCH, ALC892 Analog
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=1
  HDA Intel PCH, ALC892 Digital
  Hardware device with all software conversions
  plughw:CARD=PCH,DEV=3
  HDA Intel PCH, HDMI 0
  Hardware device with all software conversions
  
  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: pulseaudio 1:12.2-0ubuntu4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lastique  12503 F pulseaudio
   /dev/snd/controlC2:  lastique  12503 F pulseaudio
  CurrentDesktop: KDE
  Date: Tue Oct 23 20:13:43 2018
  InstallationDate: Installed on 2015-05-01 (1270 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  modified.conffile..etc.pulse.daemon.conf: [modified]
  mtime.conffile..etc.pulse.daemon.conf: 2018-08-27T17:20:33.914988
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.10-0ubuntu13
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  lastique   6439 F pulseaudio
+  /dev/snd/controlC2:  lastique   6439 F pulseaudio
+ CurrentDesktop: KDE
+ DistroRelease: Ubuntu 18.10
+ InstallationDate: Installed on 2015-05-01 (1271 days ago)
+ InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
+ MachineType: System manufacturer System Product Name
+ Package: linux (not installed)
+ ProcFB: 0 inteldrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
+ ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
+ RelatedPackageVersions:
+  linux-restricted-modules-4.18.0-10-generic N/A
+  linux-backports-modules-4.18.0-10-generic  N/A
+  linux-firmware 1.175
+ RfKill:
+  0: hci0: Bluetooth
+   Soft blocked: no
+   Hard blocked: no
+ Tags:  cosmic
+ Uname: Linux 4.18.0-10-generic x86_64
+ UpgradeStatus: Upgraded to cosmic on 2018-10-20 (3 days ago)
+ UserGroups: adm audio autologin cdrom davfs2 debian-tor dip libvirt libvirtd 
lpadmin netdev plugdev sambashare sudo wireshark
+ _MarkForUpload: True
+ dmi.bios.date: 11/09/2012
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: 3603
+ dmi.board.asset.tag: To be filled by O.E.M.
+ dmi.board.name: P8Z68-V PRO
+ dmi.board.vendor: ASUSTeK Computer INC.
+ dmi.board.version: Rev 1.xx
+ dmi.chassis.asset.tag: Asset-1234567890
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: Chassis Manufacture
+ dmi.chassis.version: Chassis Version
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductNam

[Kernel-packages] [Bug 1798979] Re: Hama "Slim" USB 3.0 Multi Card Reader doesn't work

2018-10-20 Thread Lastique
> Did this issue start happening after an update/upgrade? Was there a
> prior kernel version where you were not having this particular problem?

As said in the description, it started happening after upgrading from
Kubuntu 18.04 to 18.10. 18.04 has kernel 4.15.

> Would it be possible for you to test the latest upstream kernel?

The problem reproduces with kernel 4.19 rc8. The is the dmesg lines that
start appearing when the problem happens:

[  136.161611] xhci_hcd :05:00.0: WARN Cannot submit Set TR Deq Ptr
[  136.161615] xhci_hcd :05:00.0: A Set TR Deq Ptr command is pending.
[  136.293090] usb 6-1: reset SuperSpeed Gen 1 USB device number 2 using 
xhci_hcd
[  166.865743] xhci_hcd :05:00.0: WARN Cannot submit Set TR Deq Ptr
[  166.865747] xhci_hcd :05:00.0: A Set TR Deq Ptr command is pending.
[  167.001317] usb 6-1: reset SuperSpeed Gen 1 USB device number 2 using 
xhci_hcd


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

** Tags added: kernel-bug-exists-upstream

-- 
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/1798979

Title:
  Hama "Slim" USB 3.0 Multi Card Reader doesn't work

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have problems with Hama "Slim" USB 3.0 Multi Card Reader (model
  number 00114837, https://www.hama.com/00114837/hama-slim-usb-30-multi-
  card-reader-black) attached to a USB 3.0. After attaching the reader
  (or booting the system) the device works for some time, about a minute
  or so. It's blue power led is on. Then CPU load goes up to 30-50% and
  the power led on the reader starts turning off and on with a several
  seconds interval. It looks like the device is being repeatedly
  reinitialized. dmesg shows these lines while this is happening:

  [  147.251654] xhci_hcd :05:00.0: WARN Set TR Deq Ptr cmd failed due to 
incorrect slot or ep state.
  [  147.447251] xhci_hcd :05:00.0: WARN Event TRB for slot 1 ep 4 with no 
TDs queued?
  [  220.546280] xhci_hcd :05:00.0: WARN Cannot submit Set TR Deq Ptr
  [  220.546283] xhci_hcd :05:00.0: A Set TR Deq Ptr command is pending.
  [  220.685727] usb 6-2: reset SuperSpeed Gen 1 USB device number 2 using 
xhci_hcd
  [  251.266583] xhci_hcd :05:00.0: WARN Cannot submit Set TR Deq Ptr
  [  251.266584] xhci_hcd :05:00.0: A Set TR Deq Ptr command is pending.
  [  251.398028] usb 6-2: reset SuperSpeed Gen 1 USB device number 2 using 
xhci_hcd
  [  284.045003] xhci_hcd :05:00.0: WARN Cannot submit Set TR Deq Ptr
  [  284.045006] xhci_hcd :05:00.0: A Set TR Deq Ptr command is pending.
  [  284.180500] usb 6-2: reset SuperSpeed Gen 1 USB device number 2 using 
xhci_hcd
  [  314.761869] xhci_hcd :05:00.0: WARN Cannot submit Set TR Deq Ptr
  [  314.761873] xhci_hcd :05:00.0: A Set TR Deq Ptr command is pending.
  [  314.893338] usb 6-2: reset SuperSpeed Gen 1 USB device number 2 using 
xhci_hcd

  and so on.

  No cards are inserted in the device and no user activity on the
  system, the problem starts happening "on its own". I tried plugging
  the device in a different USB 3.0 slot, it doesn't help. The device
  worked on the same system in Kubuntu 18.04, linux kernel 4.15.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: linux-image-generic 4.18.0.10.11
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USER    PID ACCESS COMMAND
   /dev/snd/controlC2:  lastique   3112 F pulseaudio
   /dev/snd/controlC1:  lastique   3112 F pulseaudio
  CurrentDesktop: KDE
  Date: Sat Oct 20 19:31:35 2018
  InstallationDate: Installed on 2015-05-01 (1267 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to cosmic on 2018-10-20 (0 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version

[Kernel-packages] [Bug 1798979] [NEW] Hama "Slim" USB 3.0 Multi Card Reader doesn't work

2018-10-20 Thread Lastique
Public bug reported:

I have problems with Hama "Slim" USB 3.0 Multi Card Reader (model number
00114837, https://www.hama.com/00114837/hama-slim-usb-30-multi-card-
reader-black) attached to a USB 3.0. After attaching the reader (or
booting the system) the device works for some time, about a minute or
so. It's blue power led is on. Then CPU load goes up to 30-50% and the
power led on the reader starts turning off and on with a several seconds
interval. It looks like the device is being repeatedly reinitialized.
dmesg shows these lines while this is happening:

[  147.251654] xhci_hcd :05:00.0: WARN Set TR Deq Ptr cmd failed due to 
incorrect slot or ep state.
[  147.447251] xhci_hcd :05:00.0: WARN Event TRB for slot 1 ep 4 with no 
TDs queued?
[  220.546280] xhci_hcd :05:00.0: WARN Cannot submit Set TR Deq Ptr
[  220.546283] xhci_hcd :05:00.0: A Set TR Deq Ptr command is pending.
[  220.685727] usb 6-2: reset SuperSpeed Gen 1 USB device number 2 using 
xhci_hcd
[  251.266583] xhci_hcd :05:00.0: WARN Cannot submit Set TR Deq Ptr
[  251.266584] xhci_hcd :05:00.0: A Set TR Deq Ptr command is pending.
[  251.398028] usb 6-2: reset SuperSpeed Gen 1 USB device number 2 using 
xhci_hcd
[  284.045003] xhci_hcd :05:00.0: WARN Cannot submit Set TR Deq Ptr
[  284.045006] xhci_hcd :05:00.0: A Set TR Deq Ptr command is pending.
[  284.180500] usb 6-2: reset SuperSpeed Gen 1 USB device number 2 using 
xhci_hcd
[  314.761869] xhci_hcd :05:00.0: WARN Cannot submit Set TR Deq Ptr
[  314.761873] xhci_hcd :05:00.0: A Set TR Deq Ptr command is pending.
[  314.893338] usb 6-2: reset SuperSpeed Gen 1 USB device number 2 using 
xhci_hcd

and so on.

No cards are inserted in the device and no user activity on the system,
the problem starts happening "on its own". I tried plugging the device
in a different USB 3.0 slot, it doesn't help. The device worked on the
same system in Kubuntu 18.04, linux kernel 4.15.

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: linux-image-generic 4.18.0.10.11
ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
Uname: Linux 4.18.0-10-generic x86_64
ApportVersion: 2.20.10-0ubuntu13
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC2:  lastique   3112 F pulseaudio
 /dev/snd/controlC1:  lastique   3112 F pulseaudio
CurrentDesktop: KDE
Date: Sat Oct 20 19:31:35 2018
InstallationDate: Installed on 2015-05-01 (1267 days ago)
InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: System manufacturer System Product Name
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw vt.handoff=1
RelatedPackageVersions:
 linux-restricted-modules-4.18.0-10-generic N/A
 linux-backports-modules-4.18.0-10-generic  N/A
 linux-firmware 1.175
RfKill:
 0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
SourcePackage: linux
UpgradeStatus: Upgraded to cosmic on 2018-10-20 (0 days ago)
dmi.bios.date: 11/09/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 3603
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: P8Z68-V PRO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.family: To be filled by O.E.M.
dmi.product.name: System Product Name
dmi.product.sku: SKU
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: amd64 apport-bug cosmic

-- 
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/1798979

Title:
  Hama "Slim" USB 3.0 Multi Card Reader doesn't work

Status in linux package in Ubuntu:
  New

Bug description:
  I have problems with Hama "Slim" USB 3.0 Multi Card Reader (model
  number 00114837, https://www.hama.com/00114837/hama-slim-usb-30-multi-
  card-reader-black) attached to a USB 3.0. After attaching the reader
  (or booting the system) the device works for some time, about a minute
  or so. It's blue power led is on. Then CPU load goes up to 30-50% and
  the power led on the reader starts turning off and on with a several
  seconds interval. It looks like the device is being repeatedly
  reinitialized. dmesg shows these lines while this is happening:

  [  147.251654] xhci_hcd :05:00.0: WARN Set TR Deq Ptr cmd failed due to 
incorrect slot or ep state.

[Kernel-packages] [Bug 1783822] Re: [netem] Incorrect jitter delays

2018-07-28 Thread Lastique
 icmp_seq=17 ttl=64 time=103 ms

  In this case the delays are as expected.

  The 192.168.1.2 host is a machine in the local network. The problem
  appears with different network interfaces, including loopback (in
  which case the delays are doubled) and on multiple machines.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-29-generic 4.15.0-29.31
  ProcVersionSignature: Ubuntu 4.15.0-29.31-generic 4.15.18
  Uname: Linux 4.15.0-29-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.9-0ubuntu7.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2087 F pulseaudio
   /dev/snd/controlC1:  lastique   2087 F pulseaudio
  CurrentDesktop: KDE
  Date: Thu Jul 26 19:31:25 2018
  InstallationDate: Installed on 2013-10-11 (1748 days ago)
  InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  MachineType: ASUSTeK COMPUTER INC. N550JV
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-29-generic 
root=UUID=bafa6509-dea3-48a1-a308-129b1514ab28 ro quiet splash nmi_watchdog=0 
acpi_osi= acpi_backlight=vendor
  RelatedPackageVersions:
   linux-restricted-modules-4.15.0-29-generic N/A
   linux-backports-modules-4.15.0-29-generic  N/A
   linux-firmware 1.173.1
  SourcePackage: linux
  UpgradeStatus: Upgraded to bionic on 2018-05-05 (82 days ago)
  WifiSyslog:
   
  dmi.bios.date: 11/19/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N550JV.208
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N550JV
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN550JV.208:bd11/19/2013:svnASUSTeKCOMPUTERINC.:pnN550JV:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN550JV:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.family: N
  dmi.product.name: N550JV
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1783822/+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 1783822] [NEW] [netem] Incorrect jitter delays

2018-07-26 Thread Lastique
Public bug reported:

If I configure a netem rule with a delay and jitter, the actual network
delay jitter is significantly different from the configured value.

With no netem rules:

$ ping 192.168.1.2
PING 192.168.1.2 (192.168.1.2) 56(84) bytes of data.
64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=3.06 ms
64 bytes from 192.168.1.2: icmp_seq=2 ttl=64 time=2.88 ms
64 bytes from 192.168.1.2: icmp_seq=3 ttl=64 time=3.01 ms
64 bytes from 192.168.1.2: icmp_seq=4 ttl=64 time=2.86 ms
64 bytes from 192.168.1.2: icmp_seq=5 ttl=64 time=2.94 ms

With netem rule with delay and jitter:

$ sudo tc qdisc add dev wlp4s0 root netem delay 100ms 40ms

$ ping 192.168.1.2
PING 192.168.1.2 (192.168.1.2) 56(84) bytes of data.
64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=106 ms
64 bytes from 192.168.1.2: icmp_seq=2 ttl=64 time=111 ms
64 bytes from 192.168.1.2: icmp_seq=3 ttl=64 time=115 ms
64 bytes from 192.168.1.2: icmp_seq=6 ttl=64 time=124 ms
64 bytes from 192.168.1.2: icmp_seq=7 ttl=64 time=136 ms
64 bytes from 192.168.1.2: icmp_seq=8 ttl=64 time=120 ms
64 bytes from 192.168.1.2: icmp_seq=4 ttl=64 time=4371 ms
64 bytes from 192.168.1.2: icmp_seq=9 ttl=64 time=1487 ms
64 bytes from 192.168.1.2: icmp_seq=5 ttl=64 time=5513 ms
64 bytes from 192.168.1.2: icmp_seq=10 ttl=64 time=457 ms
64 bytes from 192.168.1.2: icmp_seq=15 ttl=64 time=137 ms
64 bytes from 192.168.1.2: icmp_seq=11 ttl=64 time=4367 ms
64 bytes from 192.168.1.2: icmp_seq=16 ttl=64 time=111 ms
64 bytes from 192.168.1.2: icmp_seq=12 ttl=64 time=4366 ms
64 bytes from 192.168.1.2: icmp_seq=13 ttl=64 time=4378 ms
64 bytes from 192.168.1.2: icmp_seq=18 ttl=64 time=132 ms
64 bytes from 192.168.1.2: icmp_seq=14 ttl=64 time=4373 ms
64 bytes from 192.168.1.2: icmp_seq=21 ttl=64 time=103 ms
64 bytes from 192.168.1.2: icmp_seq=17 ttl=64 time=4375 ms
64 bytes from 192.168.1.2: icmp_seq=23 ttl=64 time=112 ms
64 bytes from 192.168.1.2: icmp_seq=19 ttl=64 time=4502 ms

Delays >4 seconds are unexpected, the expected delays are approximately
60 - 140 ms.

With netem rule with delay and *no* jitter:

$ sudo tc qdisc add dev wlp4s0 root netem delay 100ms

$ ping 192.168.1.2
PING 192.168.1.2 (192.168.1.2) 56(84) bytes of data.
64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=103 ms
64 bytes from 192.168.1.2: icmp_seq=2 ttl=64 time=103 ms
64 bytes from 192.168.1.2: icmp_seq=3 ttl=64 time=102 ms
64 bytes from 192.168.1.2: icmp_seq=4 ttl=64 time=102 ms
64 bytes from 192.168.1.2: icmp_seq=5 ttl=64 time=103 ms
64 bytes from 192.168.1.2: icmp_seq=6 ttl=64 time=102 ms
64 bytes from 192.168.1.2: icmp_seq=7 ttl=64 time=103 ms
64 bytes from 192.168.1.2: icmp_seq=8 ttl=64 time=102 ms
64 bytes from 192.168.1.2: icmp_seq=9 ttl=64 time=102 ms
64 bytes from 192.168.1.2: icmp_seq=10 ttl=64 time=102 ms
64 bytes from 192.168.1.2: icmp_seq=11 ttl=64 time=102 ms
64 bytes from 192.168.1.2: icmp_seq=12 ttl=64 time=103 ms
64 bytes from 192.168.1.2: icmp_seq=13 ttl=64 time=102 ms
64 bytes from 192.168.1.2: icmp_seq=14 ttl=64 time=102 ms
64 bytes from 192.168.1.2: icmp_seq=15 ttl=64 time=103 ms
64 bytes from 192.168.1.2: icmp_seq=16 ttl=64 time=103 ms
64 bytes from 192.168.1.2: icmp_seq=17 ttl=64 time=103 ms

In this case the delays are as expected.

The 192.168.1.2 host is a machine in the local network. The problem
appears with different network interfaces, including loopback (in which
case the delays are doubled) and on multiple machines.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: linux-image-4.15.0-29-generic 4.15.0-29.31
ProcVersionSignature: Ubuntu 4.15.0-29.31-generic 4.15.18
Uname: Linux 4.15.0-29-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.9-0ubuntu7.2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  lastique   2087 F pulseaudio
 /dev/snd/controlC1:  lastique   2087 F pulseaudio
CurrentDesktop: KDE
Date: Thu Jul 26 19:31:25 2018
InstallationDate: Installed on 2013-10-11 (1748 days ago)
InstallationMedia: Kubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
MachineType: ASUSTeK COMPUTER INC. N550JV
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-29-generic 
root=UUID=bafa6509-dea3-48a1-a308-129b1514ab28 ro quiet splash nmi_watchdog=0 
acpi_osi= acpi_backlight=vendor
RelatedPackageVersions:
 linux-restricted-modules-4.15.0-29-generic N/A
 linux-backports-modules-4.15.0-29-generic  N/A
 linux-firmware 1.173.1
SourcePackage: linux
UpgradeStatus: Upgraded to bionic on 2018-05-05 (82 days ago)
WifiSyslog:
 
dmi.bios.date: 11/19/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N550JV.208
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N550JV
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN550JV.208:bd11/19/2013:svnASUSTeKCOMPUTERINC.:pn

[Kernel-packages] [Bug 1685794] Re: Boot delayed for about 90 seconds until 'random: crng init done'

2018-05-05 Thread Lastique
For me this problem appeared after I upgraded from 17.10 to 18.04 two of
my machines. Both machines increased their boot times substantially (by
around 30 seconds).

-- 
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/1685794

Title:
  Boot delayed for about 90 seconds until 'random: crng init done'

Status in linux package in Ubuntu:
  Confirmed

Bug description:

  Shortened dmesg output, notice the unnaturally long delay before crng
  init finishes:

  [8.533630] Bluetooth: hci0: Intel Bluetooth firmware patch completed and 
activated
  [8.542239] input: HDA Intel PCH Mic as 
/devices/pci:00/:00:1b.0/sound/card1/input18
  [8.542313] input: HDA Intel PCH Line as 
/devices/pci:00/:00:1b.0/sound/card1/input19
  [8.542382] input: HDA Intel PCH Dock Line Out as 
/devices/pci:00/:00:1b.0/sound/card1/input20
  [8.542449] input: HDA Intel PCH Headphone as 
/devices/pci:00/:00:1b.0/sound/card1/input21
  [8.544240] cdc_ether 2-6:2.0 usb0: register 'cdc_ether' at 
usb-:00:14.0-6, CDC Ethernet Device, 02:1e:10:1f:00:00
  [8.544271] usbcore: registered new interface driver cdc_ether
  [8.637660] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
  [8.654022] input: HP WMI hotkeys as /devices/virtual/input/input22
  [8.688226] cdc_ether 2-6:2.0 enp0s20u6c2: renamed from usb0
  [8.713288] iwlwifi :02:00.0 wlo1: renamed from wlan0
  [9.804308] input: ST LIS3LV02DL Accelerometer as 
/devices/platform/lis3lv02d/input/input23
  [   98.327857] random: crng init done
  [   98.330072] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
  [   98.330073] Bluetooth: BNEP filters: protocol multicast
  [   98.330077] Bluetooth: BNEP socket layer initialized
  [   98.443281] kauditd_printk_skb: 90 callbacks suppressed
  [   98.492927] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
  [   98.681030] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
  [   98.685672] IPv6: ADDRCONF(NETDEV_UP): enp0s20u6c2: link is not ready
  [   98.685789] cdc_ether 2-6:2.0 enp0s20u6c2: kevent 12 may have been dropped
  [   98.688384] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
  [   98.690915] iwlwifi :02:00.0: L1 Enabled - LTR Enabled

  ProblemType: Bug
  DistroRelease: Ubuntu 17.04
  Package: linux-image-4.10.0-19-generic 4.10.0-19.21 [modified: 
boot/vmlinuz-4.10.0-19-generic]
  ProcVersionSignature: Ubuntu 4.10.0-19.21-generic 4.10.8
  Uname: Linux 4.10.0-19-generic x86_64
  ApportVersion: 2.20.4-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/hwC1D0', '/dev/snd/pcmC1D0c', '/dev/snd/pcmC1D0p', 
'/dev/snd/controlC1', '/dev/snd/hwC0D0', '/dev/snd/pcmC0D8p', 
'/dev/snd/pcmC0D7p', '/dev/snd/pcmC0D3p', '/dev/snd/controlC0', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: Unity:Unity7
  Date: Mon Apr 24 14:58:33 2017
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2017-04-18 (5 days ago)
  InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Release amd64 (20170412)
  MachineType: Hewlett-Packard HP EliteBook 840 G1
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.10.0-19-generic.efi.signed 
root=UUID=9fb9fc1d-15a4-4e98-a2ae-bf572e0900d5 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-4.10.0-19-generic N/A
   linux-backports-modules-4.10.0-19-generic  N/A
   linux-firmware 1.164
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/23/2016
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: L71 Ver. 01.37
  dmi.board.name: 198F
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: KBC Version 15.59
  dmi.chassis.asset.tag: USH452L0B1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrL71Ver.01.37:bd05/23/2016:svnHewlett-Packard:pnHPEliteBook840G1:pvrA3009DD10203:rvnHewlett-Packard:rn198F:rvrKBCVersion15.59:cvnHewlett-Packard:ct10:cvr:
  dmi.product.name: HP EliteBook 840 G1
  dmi.product.version: A3009DD10203
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1685794/+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 1744379] Re: tcp_fastretrans_alert kernel warnings

2018-01-25 Thread Lastique
Just for the record, I have found the problem that caused the lockups.
It was the nvidia driver ForceCompositionPipeline parameter in
xorg.conf. Without it the hangs no longer happen, but the warnings are
still present in the log.

-- 
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/1744379

Title:
  tcp_fastretrans_alert kernel warnings

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have experienced a full system lockup, not even SysRq+REISUB could
  reboot the system. In the kernel logs I noticed multiple
  tcp_fastretrans_alert warnings and the upstream bug
  (https://bugzilla.kernel.org/show_bug.cgi?id=195835,
  https://bugzilla.kernel.org/show_bug.cgi?id=60779) seems to indicate
  this may be the reason.

  In the attached kernel log, the hang happened immediately before the
  last reboot.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: linux-image-4.13.0-25-generic 4.13.0-25.29
  ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
  Uname: Linux 4.13.0-25-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   3183 F pulseaudio
   /dev/snd/controlC1:  lastique   3183 F pulseaudio
   /dev/snd/controlC2:  lastique   3183 F pulseaudio
   /dev/snd/controlC0:  lastique   3183 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Jan 19 22:26:36 2018
  InstallationDate: Installed on 2015-05-01 (993 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:

  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-25-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-4.13.0-25-generic N/A
   linux-backports-modules-4.13.0-25-generic  N/A
   linux-firmware 1.169.1
  RfKill:
   0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to artful on 2017-11-03 (76 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1744379/+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 1744379] Re: tcp_fastretrans_alert kernel warnings, possible system hardlock

2018-01-24 Thread Lastique
The errors in the kernel log don't appear with kernel version 4.10.17.
However, I still get lockups with that kernel as well.

At this point I think the lockups are probably not related to the
warnings and are possibly caused by a hardware failure. The errors in
the log are still a valid issue, IMHO.


** Summary changed:

- tcp_fastretrans_alert kernel warnings, possible system hardlock
+ tcp_fastretrans_alert kernel warnings

-- 
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/1744379

Title:
  tcp_fastretrans_alert kernel warnings

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have experienced a full system lockup, not even SysRq+REISUB could
  reboot the system. In the kernel logs I noticed multiple
  tcp_fastretrans_alert warnings and the upstream bug
  (https://bugzilla.kernel.org/show_bug.cgi?id=195835,
  https://bugzilla.kernel.org/show_bug.cgi?id=60779) seems to indicate
  this may be the reason.

  In the attached kernel log, the hang happened immediately before the
  last reboot.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: linux-image-4.13.0-25-generic 4.13.0-25.29
  ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
  Uname: Linux 4.13.0-25-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   3183 F pulseaudio
   /dev/snd/controlC1:  lastique   3183 F pulseaudio
   /dev/snd/controlC2:  lastique   3183 F pulseaudio
   /dev/snd/controlC0:  lastique   3183 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Jan 19 22:26:36 2018
  InstallationDate: Installed on 2015-05-01 (993 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:

  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-25-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-4.13.0-25-generic N/A
   linux-backports-modules-4.13.0-25-generic  N/A
   linux-firmware 1.169.1
  RfKill:
   0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to artful on 2017-11-03 (76 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1744379/+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 1744379] Re: tcp_fastretrans_alert kernel warnings, possible system hardlock

2018-01-24 Thread Lastique
** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

** Tags added: kernel-bug-exists-upstream

-- 
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/1744379

Title:
  tcp_fastretrans_alert kernel warnings, possible system hardlock

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have experienced a full system lockup, not even SysRq+REISUB could
  reboot the system. In the kernel logs I noticed multiple
  tcp_fastretrans_alert warnings and the upstream bug
  (https://bugzilla.kernel.org/show_bug.cgi?id=195835,
  https://bugzilla.kernel.org/show_bug.cgi?id=60779) seems to indicate
  this may be the reason.

  In the attached kernel log, the hang happened immediately before the
  last reboot.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: linux-image-4.13.0-25-generic 4.13.0-25.29
  ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
  Uname: Linux 4.13.0-25-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   3183 F pulseaudio
   /dev/snd/controlC1:  lastique   3183 F pulseaudio
   /dev/snd/controlC2:  lastique   3183 F pulseaudio
   /dev/snd/controlC0:  lastique   3183 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Jan 19 22:26:36 2018
  InstallationDate: Installed on 2015-05-01 (993 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:

  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-25-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-4.13.0-25-generic N/A
   linux-backports-modules-4.13.0-25-generic  N/A
   linux-firmware 1.169.1
  RfKill:
   0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to artful on 2017-11-03 (76 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1744379/+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 1744379] Re: tcp_fastretrans_alert kernel warnings, possible system hardlock

2018-01-24 Thread Lastique
I tried kernel 4.15.0-rc9 and had the same kind of hard lockup. The
system wouldn't react to mouse or keypresses after some idle time. The
log is attached (the kernel was upgraded on Jan 24-th). There are many
errors about soft lockups in the log, although the backtraces are
different from 4.13.

** Attachment added: "Kernel 4.15.0-rc9 log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1744379/+attachment/5042206/+files/kern_4.15.0rc9.log.gz

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

Title:
  tcp_fastretrans_alert kernel warnings, possible system hardlock

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I have experienced a full system lockup, not even SysRq+REISUB could
  reboot the system. In the kernel logs I noticed multiple
  tcp_fastretrans_alert warnings and the upstream bug
  (https://bugzilla.kernel.org/show_bug.cgi?id=195835,
  https://bugzilla.kernel.org/show_bug.cgi?id=60779) seems to indicate
  this may be the reason.

  In the attached kernel log, the hang happened immediately before the
  last reboot.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: linux-image-4.13.0-25-generic 4.13.0-25.29
  ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
  Uname: Linux 4.13.0-25-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   3183 F pulseaudio
   /dev/snd/controlC1:  lastique   3183 F pulseaudio
   /dev/snd/controlC2:  lastique   3183 F pulseaudio
   /dev/snd/controlC0:  lastique   3183 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Jan 19 22:26:36 2018
  InstallationDate: Installed on 2015-05-01 (993 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:

  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-25-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-4.13.0-25-generic N/A
   linux-backports-modules-4.13.0-25-generic  N/A
   linux-firmware 1.169.1
  RfKill:
   0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to artful on 2017-11-03 (76 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1744379/+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 1744379] Re: tcp_fastretrans_alert kernel warnings, possible system hardlock

2018-01-24 Thread Lastique
Is it possible that the lockups are caused by the buggy microcode update
from Intel? Did Canonical revert the microcode update?

-- 
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/1744379

Title:
  tcp_fastretrans_alert kernel warnings, possible system hardlock

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I have experienced a full system lockup, not even SysRq+REISUB could
  reboot the system. In the kernel logs I noticed multiple
  tcp_fastretrans_alert warnings and the upstream bug
  (https://bugzilla.kernel.org/show_bug.cgi?id=195835,
  https://bugzilla.kernel.org/show_bug.cgi?id=60779) seems to indicate
  this may be the reason.

  In the attached kernel log, the hang happened immediately before the
  last reboot.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: linux-image-4.13.0-25-generic 4.13.0-25.29
  ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
  Uname: Linux 4.13.0-25-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   3183 F pulseaudio
   /dev/snd/controlC1:  lastique   3183 F pulseaudio
   /dev/snd/controlC2:  lastique   3183 F pulseaudio
   /dev/snd/controlC0:  lastique   3183 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Jan 19 22:26:36 2018
  InstallationDate: Installed on 2015-05-01 (993 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:

  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-25-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-4.13.0-25-generic N/A
   linux-backports-modules-4.13.0-25-generic  N/A
   linux-firmware 1.169.1
  RfKill:
   0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to artful on 2017-11-03 (76 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1744379/+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 1744379] Re: tcp_fastretrans_alert kernel warnings, possible system hardlock

2018-01-22 Thread Lastique
> Did this issue start happening after an update/upgrade?

I did not have hard lockups before upgrading to 4.13.0-25. The lockup
happened once, after several days past the upgrade. I did not look in
the logs until after the lockup, so I can't tell if the
tcp_fastretrans_alert errors were there with older kernels.

> Would it be possible for you to test the latest upstream kernel?

Given that I had only one lockup so far and tcp_fastretrans_alert errors
happen at unknown points, I can only see if such errors appear in logs
after a few days of use. I cannot be sure if it fixes the lockup.

-- 
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/1744379

Title:
  tcp_fastretrans_alert kernel warnings, possible system hardlock

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I have experienced a full system lockup, not even SysRq+REISUB could
  reboot the system. In the kernel logs I noticed multiple
  tcp_fastretrans_alert warnings and the upstream bug
  (https://bugzilla.kernel.org/show_bug.cgi?id=195835,
  https://bugzilla.kernel.org/show_bug.cgi?id=60779) seems to indicate
  this may be the reason.

  In the attached kernel log, the hang happened immediately before the
  last reboot.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: linux-image-4.13.0-25-generic 4.13.0-25.29
  ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
  Uname: Linux 4.13.0-25-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   3183 F pulseaudio
   /dev/snd/controlC1:  lastique   3183 F pulseaudio
   /dev/snd/controlC2:  lastique   3183 F pulseaudio
   /dev/snd/controlC0:  lastique   3183 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Jan 19 22:26:36 2018
  InstallationDate: Installed on 2015-05-01 (993 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:

  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-25-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-4.13.0-25-generic N/A
   linux-backports-modules-4.13.0-25-generic  N/A
   linux-firmware 1.169.1
  RfKill:
   0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to artful on 2017-11-03 (76 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1744379/+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 1744379] [NEW] tcp_fastretrans_alert kernel warnings, possible system hardlock

2018-01-19 Thread Lastique
Public bug reported:

I have experienced a full system lockup, not even SysRq+REISUB could
reboot the system. In the kernel logs I noticed multiple
tcp_fastretrans_alert warnings and the upstream bug
(https://bugzilla.kernel.org/show_bug.cgi?id=195835,
https://bugzilla.kernel.org/show_bug.cgi?id=60779) seems to indicate
this may be the reason.

In the attached kernel log, the hang happened immediately before the
last reboot.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: linux-image-4.13.0-25-generic 4.13.0-25.29
ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
Uname: Linux 4.13.0-25-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.7-0ubuntu3.7
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC3:  lastique   3183 F pulseaudio
 /dev/snd/controlC1:  lastique   3183 F pulseaudio
 /dev/snd/controlC2:  lastique   3183 F pulseaudio
 /dev/snd/controlC0:  lastique   3183 F pulseaudio
CurrentDesktop: KDE
Date: Fri Jan 19 22:26:36 2018
InstallationDate: Installed on 2015-05-01 (993 days ago)
InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: System manufacturer System Product Name
ProcFB:

ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-25-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
RelatedPackageVersions:
 linux-restricted-modules-4.13.0-25-generic N/A
 linux-backports-modules-4.13.0-25-generic  N/A
 linux-firmware 1.169.1
RfKill:
 0: hci0: Bluetooth
  Soft blocked: no
  Hard blocked: no
SourcePackage: linux
UpgradeStatus: Upgraded to artful on 2017-11-03 (76 days ago)
dmi.bios.date: 11/09/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 3603
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: P8Z68-V PRO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.family: To be filled by O.E.M.
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: amd64 apport-bug artful

** Attachment added: "Kernel log"
   https://bugs.launchpad.net/bugs/1744379/+attachment/5039732/+files/kern.log

** Description changed:

  I have experienced a full system lockup, not even SysRq+REISUB could
  reboot the system. In the kernel logs I noticed multiple
  tcp_fastretrans_alert warnings and the upstream bug
- (https://bugzilla.kernel.org/show_bug.cgi?id=60779) seems to indicate
+ (https://bugzilla.kernel.org/show_bug.cgi?id=195835) seems to indicate
  this may be the reason.
  
  In the attached kernel log, the hang happened immediately before the
  last reboot.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: linux-image-4.13.0-25-generic 4.13.0-25.29
  ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
  Uname: Linux 4.13.0-25-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC3:  lastique   3183 F pulseaudio
-  /dev/snd/controlC1:  lastique   3183 F pulseaudio
-  /dev/snd/controlC2:  lastique   3183 F pulseaudio
-  /dev/snd/controlC0:  lastique   3183 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC3:  lastique   3183 F pulseaudio
+  /dev/snd/controlC1:  lastique   3183 F pulseaudio
+  /dev/snd/controlC2:  lastique   3183 F pulseaudio
+  /dev/snd/controlC0:  lastique   3183 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Jan 19 22:26:36 2018
  InstallationDate: Installed on 2015-05-01 (993 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
-  
+ 
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-25-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
-  linux-restricted-modules-4.13.0-25-generic N/A
-  linux-backports-modules-4.13.0-25-generic  N/A
-  linux-firmware 1.169.1
+  linux-restricted-modules-4.13.0-25-generic N/A
+  linux-backports-modules-4.13.0-25-generic  N/A
+  linux-firmware 1.169.1
  RfKill:
-  0: hci0: Bluetooth
-   Soft blocked: no
-   Hard blocked: no
+  0: hci0: Bluetooth
+   Soft blocked: no
+   Hard blocked: no
  SourcePackage: linux
  UpgradeStat

[Kernel-packages] [Bug 1742302] Re: Kernel 4.13.0-25 broke nvidia driver

2018-01-12 Thread Lastique
I have fixed the problem by installing nvidia driver 390.12.

-- 
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/1742302

Title:
  Kernel 4.13.0-25 broke nvidia driver

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After updating to linux-image-4.13.0-25-generic the binary nvidia
  driver 387.22 cannot be built. As a result the system does not boot
  into the desktop environment (in my case, KDE).

  I've attached the driver build log.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: linux-image-4.13.0-25-generic 4.13.0-25.29
  ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
  Uname: Linux 4.13.0-21-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   3049 F pulseaudio
   /dev/snd/controlC2:  lastique   3049 F pulseaudio
   /dev/snd/controlC3:  lastique   3049 F pulseaudio
   /dev/snd/controlC1:  lastique   3049 F pulseaudio
  CurrentDesktop: KDE
  Date: Wed Jan 10 02:00:46 2018
  InstallationDate: Installed on 2015-05-01 (984 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-21-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-4.13.0-21-generic N/A
   linux-backports-modules-4.13.0-21-generic  N/A
   linux-firmware 1.169.1
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to artful on 2017-11-03 (67 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1742302/+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 1742302] [NEW] Kernel 4.13.0-25 broke nvidia driver

2018-01-09 Thread Lastique
Public bug reported:

After updating to linux-image-4.13.0-25-generic the binary nvidia driver
387.22 cannot be built. As a result the system does not boot into the
desktop environment (in my case, KDE).

I've attached the driver build log.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: linux-image-4.13.0-25-generic 4.13.0-25.29
ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
Uname: Linux 4.13.0-21-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.7-0ubuntu3.7
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  lastique   3049 F pulseaudio
 /dev/snd/controlC2:  lastique   3049 F pulseaudio
 /dev/snd/controlC3:  lastique   3049 F pulseaudio
 /dev/snd/controlC1:  lastique   3049 F pulseaudio
CurrentDesktop: KDE
Date: Wed Jan 10 02:00:46 2018
InstallationDate: Installed on 2015-05-01 (984 days ago)
InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: System manufacturer System Product Name
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-21-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
RelatedPackageVersions:
 linux-restricted-modules-4.13.0-21-generic N/A
 linux-backports-modules-4.13.0-21-generic  N/A
 linux-firmware 1.169.1
RfKill:
 0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
SourcePackage: linux
UpgradeStatus: Upgraded to artful on 2017-11-03 (67 days ago)
dmi.bios.date: 11/09/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 3603
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: P8Z68-V PRO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.family: To be filled by O.E.M.
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: amd64 apport-bug artful

** Attachment added: "nvidia driver build log"
   https://bugs.launchpad.net/bugs/1742302/+attachment/5033818/+files/make.log

-- 
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/1742302

Title:
  Kernel 4.13.0-25 broke nvidia driver

Status in linux package in Ubuntu:
  New

Bug description:
  After updating to linux-image-4.13.0-25-generic the binary nvidia
  driver 387.22 cannot be built. As a result the system does not boot
  into the desktop environment (in my case, KDE).

  I've attached the driver build log.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: linux-image-4.13.0-25-generic 4.13.0-25.29
  ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
  Uname: Linux 4.13.0-21-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   3049 F pulseaudio
   /dev/snd/controlC2:  lastique   3049 F pulseaudio
   /dev/snd/controlC3:  lastique   3049 F pulseaudio
   /dev/snd/controlC1:  lastique   3049 F pulseaudio
  CurrentDesktop: KDE
  Date: Wed Jan 10 02:00:46 2018
  InstallationDate: Installed on 2015-05-01 (984 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-21-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-4.13.0-21-generic N/A
   linux-backports-modules-4.13.0-21-generic  N/A
   linux-firmware 1.169.1
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to artful on 2017-11-03 (67 days ago)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-V

[Kernel-packages] [Bug 1455915] Re: Windows keys not working with Logitech G15 keyboard

2015-06-12 Thread Lastique
I have solved the problem. Apparently, the keys were disabled in the
keyboard by a hardware switch, and I didn't notice that. Sorry for the
noise.

** Changed in: linux (Ubuntu)
   Status: Incomplete => 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/1455915

Title:
  Windows keys not working with Logitech G15 keyboard

Status in linux package in Ubuntu:
  Invalid

Bug description:
  Neither Windows key nor Context menu key work on Logitech G15 keyboard
  (Russian layout). I tried running xev and evtest but neither of these
  tools output anything when I press these keys (they do produce output
  when I press other keys). The keys are physically working, I verified
  that in Windows. Other keys, including the multimedia keys, are
  working.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-16-generic 3.19.0-16.16
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  lastique   2083 F pulseaudio
   /dev/snd/controlC1:  lastique   2083 F pulseaudio
   /dev/snd/controlC3:  lastique   2083 F pulseaudio
   /dev/snd/controlC0:  lastique   2083 F pulseaudio
  CurrentDesktop: KDE
  Date: Sun May 17 16:52:05 2015
  InstallationDate: Installed on 2015-05-01 (15 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-16-generic N/A
   linux-backports-modules-3.19.0-16-generic  N/A
   linux-firmware 1.143
  RfKill:
   
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+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 1455915] Re: Windows keys not working with Logitech G15 keyboard

2015-06-06 Thread Lastique
I tried the 4.1.0-040100rc6-generic and it still doesn't work. I'm
attaching the output of evtest.

** Attachment added: "The output of evtest."
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+attachment/4410852/+files/event4.txt

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

** Tags added: kernel-bug-exists-upstream kernel-bug-exists-
upstream-4.1-rc6

-- 
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/1455915

Title:
  Windows keys not working with Logitech G15 keyboard

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Neither Windows key nor Context menu key work on Logitech G15 keyboard
  (Russian layout). I tried running xev and evtest but neither of these
  tools output anything when I press these keys (they do produce output
  when I press other keys). The keys are physically working, I verified
  that in Windows. Other keys, including the multimedia keys, are
  working.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-16-generic 3.19.0-16.16
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  lastique   2083 F pulseaudio
   /dev/snd/controlC1:  lastique   2083 F pulseaudio
   /dev/snd/controlC3:  lastique   2083 F pulseaudio
   /dev/snd/controlC0:  lastique   2083 F pulseaudio
  CurrentDesktop: KDE
  Date: Sun May 17 16:52:05 2015
  InstallationDate: Installed on 2015-05-01 (15 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-16-generic N/A
   linux-backports-modules-3.19.0-16-generic  N/A
   linux-firmware 1.143
  RfKill:
   
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+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 1455915] Re: Windows keys not working with Logitech G15 keyboard

2015-05-17 Thread Lastique
I'll add that Windows keys worked on G15 keyboard in previous Kubuntu
releases (at least 14.10).

-- 
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/1455915

Title:
  Windows keys not working with Logitech G15 keyboard

Status in linux package in Ubuntu:
  New

Bug description:
  Neither Windows key nor Context menu key work on Logitech G15 keyboard
  (Russian layout). I tried running xev and evtest but neither of these
  tools output anything when I press these keys (they do produce output
  when I press other keys). The keys are physically working, I verified
  that in Windows. Other keys, including the multimedia keys, are
  working.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-16-generic 3.19.0-16.16
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  lastique   2083 F pulseaudio
   /dev/snd/controlC1:  lastique   2083 F pulseaudio
   /dev/snd/controlC3:  lastique   2083 F pulseaudio
   /dev/snd/controlC0:  lastique   2083 F pulseaudio
  CurrentDesktop: KDE
  Date: Sun May 17 16:52:05 2015
  InstallationDate: Installed on 2015-05-01 (15 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-16-generic N/A
   linux-backports-modules-3.19.0-16-generic  N/A
   linux-firmware 1.143
  RfKill:
   
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+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 1455915] [NEW] Windows keys not working with Logitech G15 keyboard

2015-05-17 Thread Lastique
Public bug reported:

Neither Windows key nor Context menu key work on Logitech G15 keyboard
(Russian layout). I tried running xev and evtest but neither of these
tools output anything when I press these keys (they do produce output
when I press other keys). The keys are physically working, I verified
that in Windows. Other keys, including the multimedia keys, are working.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: linux-image-3.19.0-16-generic 3.19.0-16.16
ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
Uname: Linux 3.19.0-16-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC2:  lastique   2083 F pulseaudio
 /dev/snd/controlC1:  lastique   2083 F pulseaudio
 /dev/snd/controlC3:  lastique   2083 F pulseaudio
 /dev/snd/controlC0:  lastique   2083 F pulseaudio
CurrentDesktop: KDE
Date: Sun May 17 16:52:05 2015
InstallationDate: Installed on 2015-05-01 (15 days ago)
InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: System manufacturer System Product Name
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
RelatedPackageVersions:
 linux-restricted-modules-3.19.0-16-generic N/A
 linux-backports-modules-3.19.0-16-generic  N/A
 linux-firmware 1.143
RfKill:
 
SourcePackage: linux
UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/09/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 3603
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: P8Z68-V PRO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: amd64 apport-bug g15 logitech third-party-packages vivid winkeys

** Attachment added: "dmesg log"
   https://bugs.launchpad.net/bugs/1455915/+attachment/4398908/+files/dmesg.log

-- 
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/1455915

Title:
  Windows keys not working with Logitech G15 keyboard

Status in linux package in Ubuntu:
  New

Bug description:
  Neither Windows key nor Context menu key work on Logitech G15 keyboard
  (Russian layout). I tried running xev and evtest but neither of these
  tools output anything when I press these keys (they do produce output
  when I press other keys). The keys are physically working, I verified
  that in Windows. Other keys, including the multimedia keys, are
  working.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-16-generic 3.19.0-16.16
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  lastique   2083 F pulseaudio
   /dev/snd/controlC1:  lastique   2083 F pulseaudio
   /dev/snd/controlC3:  lastique   2083 F pulseaudio
   /dev/snd/controlC0:  lastique   2083 F pulseaudio
  CurrentDesktop: KDE
  Date: Sun May 17 16:52:05 2015
  InstallationDate: Installed on 2015-05-01 (15 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-16-generic N/A
   linux-backports-modules-3.19.0-16-generic  N/A
   linux-firmware 1.143
  RfKill:
   
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  d

[Kernel-packages] [Bug 1455915] Re: Windows keys not working with Logitech G15 keyboard

2015-05-17 Thread Lastique
** Attachment added: ""xkbcomp -xkb :0 -" output"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+attachment/4398944/+files/xkbcomp.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/1455915

Title:
  Windows keys not working with Logitech G15 keyboard

Status in linux package in Ubuntu:
  New

Bug description:
  Neither Windows key nor Context menu key work on Logitech G15 keyboard
  (Russian layout). I tried running xev and evtest but neither of these
  tools output anything when I press these keys (they do produce output
  when I press other keys). The keys are physically working, I verified
  that in Windows. Other keys, including the multimedia keys, are
  working.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-16-generic 3.19.0-16.16
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  lastique   2083 F pulseaudio
   /dev/snd/controlC1:  lastique   2083 F pulseaudio
   /dev/snd/controlC3:  lastique   2083 F pulseaudio
   /dev/snd/controlC0:  lastique   2083 F pulseaudio
  CurrentDesktop: KDE
  Date: Sun May 17 16:52:05 2015
  InstallationDate: Installed on 2015-05-01 (15 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-16-generic N/A
   linux-backports-modules-3.19.0-16-generic  N/A
   linux-firmware 1.143
  RfKill:
   
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+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 1455915] Re: Windows keys not working with Logitech G15 keyboard

2015-05-17 Thread Lastique
** Attachment added: "lsinput log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+attachment/4398942/+files/lsinput.log

-- 
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/1455915

Title:
  Windows keys not working with Logitech G15 keyboard

Status in linux package in Ubuntu:
  New

Bug description:
  Neither Windows key nor Context menu key work on Logitech G15 keyboard
  (Russian layout). I tried running xev and evtest but neither of these
  tools output anything when I press these keys (they do produce output
  when I press other keys). The keys are physically working, I verified
  that in Windows. Other keys, including the multimedia keys, are
  working.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-16-generic 3.19.0-16.16
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  lastique   2083 F pulseaudio
   /dev/snd/controlC1:  lastique   2083 F pulseaudio
   /dev/snd/controlC3:  lastique   2083 F pulseaudio
   /dev/snd/controlC0:  lastique   2083 F pulseaudio
  CurrentDesktop: KDE
  Date: Sun May 17 16:52:05 2015
  InstallationDate: Installed on 2015-05-01 (15 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-16-generic N/A
   linux-backports-modules-3.19.0-16-generic  N/A
   linux-firmware 1.143
  RfKill:
   
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+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 1455915] Re: Windows keys not working with Logitech G15 keyboard

2015-05-17 Thread Lastique
** Attachment added: "udev-db"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+attachment/4398943/+files/udev-db.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/1455915

Title:
  Windows keys not working with Logitech G15 keyboard

Status in linux package in Ubuntu:
  New

Bug description:
  Neither Windows key nor Context menu key work on Logitech G15 keyboard
  (Russian layout). I tried running xev and evtest but neither of these
  tools output anything when I press these keys (they do produce output
  when I press other keys). The keys are physically working, I verified
  that in Windows. Other keys, including the multimedia keys, are
  working.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-16-generic 3.19.0-16.16
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  lastique   2083 F pulseaudio
   /dev/snd/controlC1:  lastique   2083 F pulseaudio
   /dev/snd/controlC3:  lastique   2083 F pulseaudio
   /dev/snd/controlC0:  lastique   2083 F pulseaudio
  CurrentDesktop: KDE
  Date: Sun May 17 16:52:05 2015
  InstallationDate: Installed on 2015-05-01 (15 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-16-generic N/A
   linux-backports-modules-3.19.0-16-generic  N/A
   linux-firmware 1.143
  RfKill:
   
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+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 1455915] Re: Windows keys not working with Logitech G15 keyboard

2015-05-17 Thread Lastique
** Attachment added: ""setxkbmap -print" output"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+attachment/4398947/+files/xkbmap.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/1455915

Title:
  Windows keys not working with Logitech G15 keyboard

Status in linux package in Ubuntu:
  New

Bug description:
  Neither Windows key nor Context menu key work on Logitech G15 keyboard
  (Russian layout). I tried running xev and evtest but neither of these
  tools output anything when I press these keys (they do produce output
  when I press other keys). The keys are physically working, I verified
  that in Windows. Other keys, including the multimedia keys, are
  working.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-16-generic 3.19.0-16.16
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  lastique   2083 F pulseaudio
   /dev/snd/controlC1:  lastique   2083 F pulseaudio
   /dev/snd/controlC3:  lastique   2083 F pulseaudio
   /dev/snd/controlC0:  lastique   2083 F pulseaudio
  CurrentDesktop: KDE
  Date: Sun May 17 16:52:05 2015
  InstallationDate: Installed on 2015-05-01 (15 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: System manufacturer System Product Name
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=a03f1835-52f9-4409-9da7-fe45770637ae ro quiet splash nomdmonddf 
nomdmonisw
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-16-generic N/A
   linux-backports-modules-3.19.0-16-generic  N/A
   linux-firmware 1.143
  RfKill:
   
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1455915/+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 1401425] Re: Uninstalling unused kernel requires a reboot

2014-12-18 Thread Lastique
Addition: I suspect this may be related to Nvidia driver packages and
DKMS. When I removed the packages, the offer to reboot appeared again. I
can understand why that happened - even though I don't have a Nvidia
card on this machine, the module is built for all kernels, including the
active one, and removing it requires reconfiguring the active kernel.
However, this should not happen when unused kernel is removed.

I attached apt logs of the Nvidia packages removal.


** Attachment added: "/var/log/apt/history.log and term.log of Nvidia drivers 
removal"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1401425/+attachment/4283313/+files/apt.log

-- 
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/1401425

Title:
  Uninstalling unused kernel requires a reboot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  When Linux kernel is updated, a package with the new kernel version is
  installed, and the system offers to reboot the machine (an icon
  appears in the system tray). After reboot the new kernel is loaded,
  but the old one is still installed. When I remove the old kernel
  packages (e.g. linux-image-3.16.0-25-generic, linux-image-
  extra-3.16.0-25-generic, linux-headers-3.16.0-25, linux-
  headers-3.16.0-25-generic) the system offers to reboot again, even
  though that kernel is not used. In essence this means that kernel
  upgrade requires two reboots.

  Removing unused kernel packages should not require a reboot, and some
  time ago it actually worked that way. I can't remember exactly which
  kernel release broke that (probably, 3.16.0-24 or so).

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: linux-image-3.16.0-25-generic (not installed)
  ProcVersionSignature: Ubuntu 3.16.0-26.35-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-26-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2670 F pulseaudio
   /dev/snd/controlC2:  lastique   2670 F pulseaudio
   /dev/snd/controlC0:  lastique   2670 F pulseaudio
   /dev/snd/controlC1:  lastique   2670 F pulseaudio
  CurrentDesktop: KDE
  Date: Thu Dec 11 10:58:29 2014
  HibernationDevice: RESUME=UUID=91d1b3ae-bbf2-489a-93b8-87323a08a6e8
  InstallationDate: Installed on 2013-11-01 (404 days ago)
  InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro8,2
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-26-generic 
root=UUID=d61403bb-991b-45fe-8052-ffc7a7e0db80 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.16.0-26-generic N/A
   linux-backports-modules-3.16.0-26-generic  N/A
   linux-firmware 1.138
  SourcePackage: linux
  UpgradeStatus: Upgraded to utopic on 2014-11-01 (39 days ago)
  dmi.bios.date: 01/24/12
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP81.88Z.0047.B27.1201241646
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-94245A3940C91C80
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro8,2
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-94245A3940C91C80
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP81.88Z.0047.B27.1201241646:bd01/24/12:svnAppleInc.:pnMacBookPro8,2:pvr1.0:rvnAppleInc.:rnMac-94245A3940C91C80:rvrMacBookPro8,2:cvnAppleInc.:ct10:cvrMac-94245A3940C91C80:
  dmi.product.name: MacBookPro8,2
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1401425/+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 1401425] Re: Uninstalling unused kernel requires a reboot

2014-12-17 Thread Lastique
I'm on Kubuntu, I don't use Software Center. I install/remove packages
with Muon package manager or apt-get from console. The offer to reboot
appears regardless of the package manager I use.

I attached the console log from a kernel removal. The reboot offer
appeared at some point during DKMS uninstall stage.


** Attachment added: "Unised kernel removal log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1401425/+attachment/4283312/+files/kernel_remove.log

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

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

Title:
  Uninstalling unused kernel requires a reboot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  When Linux kernel is updated, a package with the new kernel version is
  installed, and the system offers to reboot the machine (an icon
  appears in the system tray). After reboot the new kernel is loaded,
  but the old one is still installed. When I remove the old kernel
  packages (e.g. linux-image-3.16.0-25-generic, linux-image-
  extra-3.16.0-25-generic, linux-headers-3.16.0-25, linux-
  headers-3.16.0-25-generic) the system offers to reboot again, even
  though that kernel is not used. In essence this means that kernel
  upgrade requires two reboots.

  Removing unused kernel packages should not require a reboot, and some
  time ago it actually worked that way. I can't remember exactly which
  kernel release broke that (probably, 3.16.0-24 or so).

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: linux-image-3.16.0-25-generic (not installed)
  ProcVersionSignature: Ubuntu 3.16.0-26.35-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-26-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  lastique   2670 F pulseaudio
   /dev/snd/controlC2:  lastique   2670 F pulseaudio
   /dev/snd/controlC0:  lastique   2670 F pulseaudio
   /dev/snd/controlC1:  lastique   2670 F pulseaudio
  CurrentDesktop: KDE
  Date: Thu Dec 11 10:58:29 2014
  HibernationDevice: RESUME=UUID=91d1b3ae-bbf2-489a-93b8-87323a08a6e8
  InstallationDate: Installed on 2013-11-01 (404 days ago)
  InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro8,2
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-26-generic 
root=UUID=d61403bb-991b-45fe-8052-ffc7a7e0db80 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.16.0-26-generic N/A
   linux-backports-modules-3.16.0-26-generic  N/A
   linux-firmware 1.138
  SourcePackage: linux
  UpgradeStatus: Upgraded to utopic on 2014-11-01 (39 days ago)
  dmi.bios.date: 01/24/12
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP81.88Z.0047.B27.1201241646
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-94245A3940C91C80
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro8,2
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-94245A3940C91C80
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP81.88Z.0047.B27.1201241646:bd01/24/12:svnAppleInc.:pnMacBookPro8,2:pvr1.0:rvnAppleInc.:rnMac-94245A3940C91C80:rvrMacBookPro8,2:cvnAppleInc.:ct10:cvrMac-94245A3940C91C80:
  dmi.product.name: MacBookPro8,2
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1401425/+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 1401425] [NEW] Uninstalling unused kernel requires a reboot

2014-12-11 Thread Lastique
Public bug reported:

When Linux kernel is updated, a package with the new kernel version is
installed, and the system offers to reboot the machine (an icon appears
in the system tray). After reboot the new kernel is loaded, but the old
one is still installed. When I remove the old kernel packages (e.g.
linux-image-3.16.0-25-generic, linux-image-extra-3.16.0-25-generic,
linux-headers-3.16.0-25, linux-headers-3.16.0-25-generic) the system
offers to reboot again, even though that kernel is not used. In essence
this means that kernel upgrade requires two reboots.

Removing unused kernel packages should not require a reboot, and some
time ago it actually worked that way. I can't remember exactly which
kernel release broke that (probably, 3.16.0-24 or so).

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: linux-image-3.16.0-25-generic (not installed)
ProcVersionSignature: Ubuntu 3.16.0-26.35-generic 3.16.7-ckt1
Uname: Linux 3.16.0-26-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.14.7-0ubuntu8
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC3:  lastique   2670 F pulseaudio
 /dev/snd/controlC2:  lastique   2670 F pulseaudio
 /dev/snd/controlC0:  lastique   2670 F pulseaudio
 /dev/snd/controlC1:  lastique   2670 F pulseaudio
CurrentDesktop: KDE
Date: Thu Dec 11 10:58:29 2014
HibernationDevice: RESUME=UUID=91d1b3ae-bbf2-489a-93b8-87323a08a6e8
InstallationDate: Installed on 2013-11-01 (404 days ago)
InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Release amd64 (20131016.1)
MachineType: Apple Inc. MacBookPro8,2
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-26-generic 
root=UUID=d61403bb-991b-45fe-8052-ffc7a7e0db80 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.16.0-26-generic N/A
 linux-backports-modules-3.16.0-26-generic  N/A
 linux-firmware 1.138
SourcePackage: linux
UpgradeStatus: Upgraded to utopic on 2014-11-01 (39 days ago)
dmi.bios.date: 01/24/12
dmi.bios.vendor: Apple Inc.
dmi.bios.version: MBP81.88Z.0047.B27.1201241646
dmi.board.asset.tag: Base Board Asset Tag#
dmi.board.name: Mac-94245A3940C91C80
dmi.board.vendor: Apple Inc.
dmi.board.version: MacBookPro8,2
dmi.chassis.type: 10
dmi.chassis.vendor: Apple Inc.
dmi.chassis.version: Mac-94245A3940C91C80
dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP81.88Z.0047.B27.1201241646:bd01/24/12:svnAppleInc.:pnMacBookPro8,2:pvr1.0:rvnAppleInc.:rnMac-94245A3940C91C80:rvrMacBookPro8,2:cvnAppleInc.:ct10:cvrMac-94245A3940C91C80:
dmi.product.name: MacBookPro8,2
dmi.product.version: 1.0
dmi.sys.vendor: Apple Inc.

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


** Tags: amd64 apport-bug utopic

** Description changed:

  When Linux kernel is updated, a package with the new kernel version is
  installed, and the system offers to reboot the machine (an icon appears
  in the system tray). After reboot the new kernel is loaded, but the old
  one is still installed. When I remove the old kernel packages (e.g.
  linux-image-3.16.0-25-generic, linux-image-extra-3.16.0-25-generic,
- linux-headers-3.16.0-25, linux-headers-3.16.0-26-generic) the system
+ linux-headers-3.16.0-25, linux-headers-3.16.0-25-generic) the system
  offers to reboot again, even though that kernel is not used. In essence
  this means that kernel upgrade requires two reboots.
  
  Removing unused kernel packages should not require a reboot, and some
  time ago it actually worked that way. I can't remember exactly which
  kernel release broke that (probably, 3.16.0-24 or so).
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: linux-image-3.16.0-25-generic (not installed)
  ProcVersionSignature: Ubuntu 3.16.0-26.35-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-26-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC3:  lastique   2670 F pulseaudio
-  /dev/snd/controlC2:  lastique   2670 F pulseaudio
-  /dev/snd/controlC0:  lastique   2670 F pulseaudio
-  /dev/snd/controlC1:  lastique   2670 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC3:  lastique   2670 F pulseaudio
+  /dev/snd/controlC2:  lastique   2670 F pulseaudio
+  /dev/snd/controlC0:  lastique   2670 F pulseaudio
+  /dev/snd/controlC1:  lastique   2670 F pulseaudio
  CurrentDesktop: KDE
  Date: Thu Dec 11 10:58:29 2014
  HibernationDevice: RESUME=UUID=91d1b3ae-bbf2-489a-93b8-87323a08a6e8
  InstallationDate: Installed on 2013-11-01 (404 days ago)
  InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro8,2
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-26-generic 
root=UUID=d61403bb-991b-45fe-8052-ffc7a7e0db80 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
-  linu

[Kernel-packages] [Bug 1264654] Re: 046d:082d [Asus P8Z68-V PRO] No sound from Logitech HD Pro Webcam C920

2014-01-04 Thread Lastique
It seems it is as unstable as in Saucy. Maybe it works more often than
in Saucy but it is possible that I was just more lucky while testing.

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

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

Title:
  046d:082d [Asus P8Z68-V PRO] No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufactu

[Kernel-packages] [Bug 1264654] Re: 046d:082d [Asus P8Z68-V PRO] No sound from Logitech HD Pro Webcam C920

2014-01-03 Thread Lastique
I can't tell, I got the camera when I already had Saucy installed.

-- 
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/1264654

Title:
  046d:082d [Asus P8Z68-V PRO] No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmerican

[Kernel-packages] [Bug 1264654] Re: 046d:082d [Asus P8Z68-V PRO] No sound from Logitech HD Pro Webcam C920

2014-01-03 Thread Lastique
> After some experimenting I found that when I connect the camera to one
of the black USB 2.0 ports I get the audio.

I spoke too soon. The audio disappeared after reboot. I tried re-
plugging the camera in the same or different USB port but it doesn't
help. It seems the problem is not stable.

I tried booting Trusty live and installing 3.13 rc6 kernel on Saucy. In
both cases I get no audio from the camera.


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

** Tags removed: needs-upstream-testing
** Tags added: kernel-bug-exists-upstream kernel-bug-exists-upstream-v3.13-rc6

-- 
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/1264654

Title:
  046d:082d [Asus P8Z68-V PRO] No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip

[Kernel-packages] [Bug 1264654] Re: 046d:082d [Asus P8Z68-V PRO] No sound from Logitech HD Pro Webcam C920

2014-01-02 Thread Lastique
After some experimenting I found that when I connect the camera to one
of the black USB 2.0 ports I get the audio. The problem persists when I
connect it to a USB 3.0 port or a red USB 2.0 port. I'm not sure what is
the difference between the black and red ports. For the record, I have
Asus P8Z68-V PRO GEN1.

-- 
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/1264654

Title:
  046d:082d [Asus P8Z68-V PRO] No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.

[Kernel-packages] [Bug 1264654] Re: 046d:082d [Asus P8Z68-V PRO] No sound from Logitech HD Pro Webcam C920

2014-01-02 Thread Lastique
Sorry, this is my main working machine and it's inconvenient to install
an unstable OS on it.

I installed 3.12 kernel for saucy though, and the problem persists. I
didn't find 3.13 kernel for saucy, so I don't know if the problem is
present in it as well.

** Attachment added: "PulseAudio log with kernel 3.12 when changing capture 
volume."
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1264654/+attachment/3939154/+files/pulseverbose.log

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

** Tags removed: needs-upstream-testing
** Tags added: kernel-bug-exists-upstream kernel-bug-exists-upstream-3.12

-- 
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/1264654

Title:
  046d:082d [Asus P8Z68-V PRO] No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F.... pulseaudio
   /dev/snd/controlC1:  lastique   2393 F.... pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USER    PID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on

[Kernel-packages] [Bug 1264654] Re: No sound from Logitech HD Pro Webcam C920

2014-01-01 Thread Lastique
Done. I changed the capture volume in pavucontrol for the camera device.

** Attachment added: "PulseAudio log when changing capture volume."
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1264654/+attachment/3938555/+files/pulseverbose.log

-- 
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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: C

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936873/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936874/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

[Kernel-packages] [Bug 1264654] UdevDb.txt

2013-12-28 Thread Lastique
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1264654/+attachment/3936878/+files/UdevDb.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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936877/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936875/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

[Kernel-packages] [Bug 1264654] UdevLog.txt

2013-12-28 Thread Lastique
apport information

** Attachment added: "UdevLog.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936879/+files/UdevLog.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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936876/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

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

2013-12-28 Thread Lastique
apport information

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

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

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

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chas

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1264654/+attachment/3936872/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1264654/+attachment/3936869/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

[Kernel-packages] [Bug 1264654] BootDmesg.txt

2013-12-28 Thread Lastique
apport information

** Attachment added: "BootDmesg.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936863/+files/BootDmesg.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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1264654/+attachment/3936871/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936867/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936870/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

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

2013-12-28 Thread Lastique
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1264654/+attachment/3936864/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

[Kernel-packages] [Bug 1264654] BootDmesg.txt

2013-12-28 Thread Lastique
apport information

** Attachment added: "BootDmesg.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936868/+files/BootDmesg.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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAme

[Kernel-packages] [Bug 1264654] Re: No sound from Logitech HD Pro Webcam C920

2013-12-28 Thread Lastique
apport information

** Tags added: apport-collected saucy

** Description changed:

  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and displayed
  in Pulseaudio volume control, it's not muted but the audio level bar
  always stays at 0. I can see video from it in Skype or WebRTC apps in
  Chrome, but no audio. I can see no errors in dmesg or other logs.
  
  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
+ --- 
+ ApportVersion: 2.12.5-0ubuntu2.2
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  lastique   2393 F pulseaudio
+  /dev/snd/controlC1:  lastique   2393 F pulseaudio
+  /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
+  /dev/snd/controlC2:  lastique   2393 F pulseaudio
+ DistroRelease: Ubuntu 13.10
+ InstallationDate: Installed on 2012-12-29 (363 days ago)
+ InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
+ IwConfig:
+  eth0  no wireless extensions.
+  
+  lono wireless extensions.
+  
+  virbr0no wireless extensions.
+ MachineType: System manufacturer System Product Name
+ MarkForUpload: True
+ NonfreeKernelModules: nvidia
+ Package: linux (not installed)
+ ProcFB:
+  
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
+ ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
+ RelatedPackageVersions:
+  linux-restricted-modules-3.11.0-14-generic N/A
+  linux-backports-modules-3.11.0-14-generic  N/A
+  linux-firmware 1.116
+ RfKill:
+  0: hci0: Bluetooth
+   Soft blocked: no
+   Hard blocked: no
+ Tags:  saucy
+ Uname: Linux 3.11.0-14-generic x86_64
+ UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
+ UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
+ dmi.bios.date: 11/09/2012
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: 3603
+ dmi.board.asset.tag: To be filled by O.E.M.
+ dmi.board.name: P8Z68-V PRO
+ dmi.board.vendor: ASUSTeK Computer INC.
+ dmi.board.version: Rev 1.xx
+ dmi.chassis.asset.tag: Asset-1234567890
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: Chassis Manufacture
+ dmi.chassis.version: Chassis Version
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
+ dmi.product.name: System Product Name
+ dmi.product.version: System Version
+ dmi.sys.vendor: System manufacturer

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936862/+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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 d

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

2013-12-28 Thread Lastique
apport information

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

** Description changed:

  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and displayed
  in Pulseaudio volume control, it's not muted but the audio level bar
  always stays at 0. I can see video from it in Skype or WebRTC apps in
  Chrome, but no audio. I can see no errors in dmesg or other logs.
  
  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lastique   2393 F pulseaudio
   /dev/snd/controlC1:  lastique   2393 F pulseaudio
   /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
   /dev/snd/controlC2:  lastique   2393 F pulseaudio
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2012-12-29 (363 days ago)
  InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
   
   virbr0no wireless extensions.
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
  ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-14-generic N/A
   linux-backports-modules-3.11.0-14-generic  N/A
   linux-firmware 1.116
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  Tags:  saucy
  Uname: Linux 3.11.0-14-generic x86_64
  UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
  UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
  dmi.bios.date: 11/09/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3603
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z68-V PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
+ --- 
+ ApportVersion: 2.12.5-0ubuntu2.2
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  lastique   2393 F pulseaudio
+  /dev/snd/controlC1:  lastique   2393 F pulseaudio
+  /dev/snd/pcmC1D0p:   lastique   2393 F...m pulseaudio
+  /dev/snd/controlC2:  lastique   2393 F pulseaudio
+ DistroRelease: Ubuntu 13.10
+ InstallationDate: Installed on 2012-12-29 (363 days ago)
+ InstallationMedia: Kubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
+ IwConfig:
+  eth0  no wireless extensions.
+  
+  lono wireless extensions.
+  
+  virbr0no wireless extensions.
+ MachineType: System manufacturer System Product Name
+ MarkForUpload: True
+ NonfreeKernelModules: nvidia
+ Package: linux (not installed)
+ ProcFB:
+  
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-14-generic 
root=UUID=9e81b2ba-5525-4d9d-b45c-48093a115d64 ro quiet splash nomodeset
+ ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
+ RelatedPackageVersions:
+  linux-restricted-modules-3.11.0-14-generic N/A
+  linux-backports-modules-3.11.0-14-generic  N/A
+  linux-firmware 1.116
+ RfKill:
+  0: hci0: Bluetooth
+   Soft blocked: no
+   Hard blocked: no
+ Tags:  saucy
+ Uname: Linux 3.11.0-14-generic x86_64
+ UpgradeStatus: Upgraded to saucy on 2013-10-17 (71 days ago)
+ UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo
+ dmi.bios.date: 11/09/2012
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: 3603
+ dmi.board.asset.tag: To be filled by O.E.M.
+ dmi.board.name: P8Z68-V PRO
+ dmi.board.vendor: ASUSTeK Computer INC.
+ dmi.board.version: Rev 1.xx
+ dmi.chassis.asset.tag: Asset-1234567890
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: Chassis Manufacture
+ dmi.chassis.version: Chassis Version
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3603:bd11/09/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP8Z68-VPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
+ dmi.product.name: System Product Name
+ dmi.product.version: System Version
+ dmi.

[Kernel-packages] [Bug 1264654] [NEW] No sound from Logitech HD Pro Webcam C920

2013-12-28 Thread Lastique
Public bug reported:

I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
getting any sound from it. The camera is detected properly and displayed
in Pulseaudio volume control, it's not muted but the audio level bar
always stays at 0. I can see video from it in Skype or WebRTC apps in
Chrome, but no audio. I can see no errors in dmesg or other logs.

Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
pulseaudio version: 1:4.0-0ubuntu6

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

** Attachment added: "lspci output"
   
https://bugs.launchpad.net/bugs/1264654/+attachment/3936809/+files/lspci-vnvn.log

-- 
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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  New

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1264654/+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 1264654] Re: No sound from Logitech HD Pro Webcam C920

2013-12-28 Thread Lastique
** Attachment added: "lsusb output"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1264654/+attachment/3936810/+files/lsusb.log

-- 
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/1264654

Title:
  No sound from Logitech HD Pro Webcam C920

Status in “linux” package in Ubuntu:
  New

Bug description:
  I'm trying to use Logitech HD Pro Webcam C920 on Ubuntu 13.10, but not
  getting any sound from it. The camera is detected properly and
  displayed in Pulseaudio volume control, it's not muted but the audio
  level bar always stays at 0. I can see video from it in Skype or
  WebRTC apps in Chrome, but no audio. I can see no errors in dmesg or
  other logs.

  Kernel version: Ubuntu 3.11.0-14.21-generic 3.11.7
  pulseaudio version: 1:4.0-0ubuntu6

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